/* =============================================================
   HARLEY COURT MEDICAL CENTRE
   ============================================================= */

:root {
    --g950:  #091A10;
    --g900:  #122B1C;
    --g800:  #1B3D2C;
    --g700:  #2A6248;
    --g600:  #3A8A64;
    --g500:  #50A87C;
    --g400:  #6EC898;
    --g100:  #D4F0E2;
    --g50:   #EDF8F2;

    --cream:  #F9F6F2;
    --cream2: #F2EDE6;
    --white:  #FFFFFF;

    --gold:   #A07828;
    --gold2:  #C49840;
    --gold3:  #DDB860;

    --ink:    #181818;
    --ink-md: #464646;
    --ink-lt: #7A7A7A;
    --ink-xl: #BABABA;

    --border:  #E4DDD4;
    --border2: #CEC7BC;

    --sh-sm:  0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.06);
    --sh-md:  0 4px 8px rgba(0,0,0,.05), 0 12px 32px rgba(0,0,0,.10);
    --sh-lg:  0 8px 16px rgba(0,0,0,.07), 0 24px 56px rgba(0,0,0,.14);

    --font: 'Poppins', system-ui, -apple-system, sans-serif;

    --w:    1140px;
    --vpad: clamp(4.5rem, 7vw, 7rem);
    --r:    8px;
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
hr { border: none; }
address { font-style: normal; }

.container {
    max-width: var(--w);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}


/* =============================================================
   HEADER
   ============================================================= */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(9, 26, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
    max-width: var(--w);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: .9rem;
    text-decoration: none;
}

.logo-cross {
    width: 28px;
    height: 28px;
    color: var(--g400);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-family: var(--font);
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1;
}

.brand-sub {
    font-family: var(--font);
    font-size: .5rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.32);
    line-height: 1;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-family: var(--font);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}

.main-nav a:hover {
    color: #fff;
    border-bottom-color: var(--gold3);
}


/* =============================================================
   HERO — solid background, no images
   ============================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(4rem, 7vw, 6.5rem);
    overflow: hidden;
    background-color: var(--g900);
    background-image:
        radial-gradient(ellipse 70% 60% at 10% 60%, rgba(42,98,72,.45) 0%, transparent 100%),
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(26,61,44,.30) 0%, transparent 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 72px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: .85rem;
    font-family: var(--font);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold3);
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--gold3);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-sub {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,.58);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: var(--font);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--g700);
    padding: .95rem 2.25rem;
    border-radius: var(--r);
    border: 2px solid var(--g700);
    transition: background .2s, border-color .2s, transform .15s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--g600);
    border-color: var(--g600);
    transform: translateY(-1px);
}

.btn-ghost {
    font-family: var(--font);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    background: transparent;
    padding: .95rem 2.25rem;
    border-radius: var(--r);
    border: 2px solid rgba(255,255,255,.28);
    transition: color .2s, border-color .2s;
    display: inline-block;
}

.btn-ghost:hover {
    color: #fff;
    border-color: rgba(255,255,255,.6);
}


/* =============================================================
   STATS BAR
   ============================================================= */

.stats-bar {
    background: var(--g800);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.stats-grid {
    display: flex;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    padding: 2.25rem 1.5rem;
    text-align: center;
}

.stat-divider {
    width: 1px;
    background: rgba(255,255,255,.08);
    margin: 1.25rem 0;
    flex-shrink: 0;
}

.stat-val {
    font-family: var(--font);
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: .45rem;
    letter-spacing: -.02em;
}

.stat-lbl {
    font-family: var(--font);
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.38);
}


/* =============================================================
   SHARED TYPOGRAPHY
   ============================================================= */

.eyebrow {
    display: block;
    font-family: var(--font);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--g600);
    margin-bottom: 1rem;
}

.eyebrow-light {
    color: var(--gold3);
    opacity: .7;
}

.section-heading {
    font-family: var(--font);
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
}


/* =============================================================
   ABOUT
   ============================================================= */

.about-section {
    padding: var(--vpad) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 6rem;
    align-items: center;
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.about-body {
    font-size: .93rem;
    font-weight: 300;
    color: var(--ink-md);
    line-height: 1.9;
    margin-bottom: 1.1rem;
}

.about-features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.feat {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .78rem;
    font-weight: 500;
    color: var(--ink-md);
}

.feat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g600);
    flex-shrink: 0;
}

.about-visual {
    position: relative;
    padding-bottom: 3rem;
}

.about-img-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sh-lg);
    aspect-ratio: 4/3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.about-badge {
    position: absolute;
    bottom: 0;
    left: -1rem;
    background: var(--g800);
    color: #fff;
    padding: 1.1rem 1.4rem;
    border-radius: 10px;
    box-shadow: var(--sh-md);
    display: flex;
    align-items: center;
    gap: .85rem;
    z-index: 1;
}

.about-badge svg {
    color: var(--gold3);
    flex-shrink: 0;
}

.badge-name {
    font-family: var(--font);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.badge-sub {
    font-size: .7rem;
    font-weight: 300;
    color: rgba(255,255,255,.52);
}


/* =============================================================
   GALLERY SECTION
   ============================================================= */

.gallery-section {
    background: var(--g950);
    line-height: 0;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 320px;
}

.gallery-frame {
    overflow: hidden;
    position: relative;
}

.gallery-frame + .gallery-frame {
    border-left: 2px solid var(--g950);
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .6s ease;
}

.gallery-frame:hover img {
    transform: scale(1.05);
}


/* =============================================================
   PRACTITIONERS HEADER
   ============================================================= */

.prac-header {
    background: var(--g800);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.prac-header::after {
    content: 'SPECIALISTS';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font);
    font-size: 7rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: rgba(255,255,255,.03);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.prac-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.prac-title {
    font-family: var(--font);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.15;
}

.prac-sub {
    font-size: .9rem;
    font-weight: 300;
    color: rgba(255,255,255,.48);
    line-height: 1.8;
    max-width: 380px;
}

#practitioners {
    scroll-margin-top: 82px;
}


/* =============================================================
   BLOCK SECTIONS
   ============================================================= */

.block-section {
    padding: var(--vpad) 0;
    background: var(--cream);
}

.block-section.alt-bg {
    background: var(--cream2);
}

#block-a, #block-b {
    scroll-margin-top: 82px;
}

.block-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.block-letter-wrap {
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.block-tag {
    font-family: var(--font);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ink-lt);
}

.block-letter {
    font-family: var(--font);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--g800);
    letter-spacing: -.03em;
}

.block-count {
    font-size: .82rem;
    font-weight: 300;
    color: var(--ink-lt);
    padding-bottom: .5rem;
}


/* =============================================================
   SUITE CARDS
   ============================================================= */

.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.suite-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--sh-sm);
    transition: box-shadow .3s, transform .3s;
    position: relative;
    overflow: hidden;
}

.suite-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--g600), var(--g400));
    border-radius: 12px 0 0 12px;
}

.suite-card:hover {
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

.suite-card.suite-pending {
    opacity: .62;
}
.suite-card.suite-pending::before {
    background: var(--border2);
}

.suite-card.suite-tbc {
    opacity: .35;
    background: #F8F8F8;
}
.suite-card.suite-tbc::before {
    background: var(--border);
}

.suite-card.suite-pending:hover,
.suite-card.suite-tbc:hover {
    transform: none;
    box-shadow: var(--sh-sm);
}

.suite-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1.1rem;
}

.suite-tag {
    font-family: var(--font);
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--g700);
    background: var(--g50);
    border: 1px solid rgba(58,138,100,.2);
    padding: .26rem .7rem;
    border-radius: 100px;
}

.clinic-badge {
    font-family: var(--font);
    font-size: .8rem;
    font-weight: 500;
    color: var(--gold);
}

.suite-title {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: .35rem;
    letter-spacing: -.01em;
}

.suite-specialty {
    font-family: var(--font);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g600);
    margin-bottom: .5rem;
}

.suite-contact {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: .9rem;
    font-size: .85rem;
    font-weight: 300;
    color: var(--ink-md);
}

.contact-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--g500);
    flex-shrink: 0;
}

.coming-soon {
    font-size: .78rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-xl);
    margin-top: .5rem;
}

.tbc-text {
    font-size: .85rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink-xl);
    margin-top: .35rem;
}

.practitioner-item {
    padding: .9rem 0;
}
.practitioner-item:first-child { padding-top: 0; }

.divider {
    height: 1px;
    background: var(--border);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-top: .65rem;
}

.clink {
    font-size: .8rem;
    font-weight: 400;
    color: var(--g700);
    border-bottom: 1px solid rgba(42,98,72,.22);
    padding-bottom: 1px;
    width: fit-content;
    transition: color .2s, border-color .2s;
}
.clink:hover {
    color: var(--g900);
    border-bottom-color: var(--g900);
}


/* =============================================================
   CORK ORAL SURGERY
   ============================================================= */

.cork-card { /* full-width, outside .suites-grid */ }

.cork-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3.5rem;
    padding-top: .25rem;
}

.cork-desc {
    font-size: .93rem;
    font-weight: 300;
    color: var(--ink-md);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.cork-contacts {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: 2rem;
}

.opening-hours {
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.hours-label {
    font-family: var(--font);
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-lt);
    margin-bottom: .7rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: .85rem;
    color: var(--ink-md);
    padding: .22rem 0;
    max-width: 300px;
}
.hours-row span:first-child { font-weight: 600; color: var(--ink); }

.cork-team {
    border-left: 1px solid var(--border);
    padding-left: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-label {
    font-family: var(--font);
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-lt);
    margin-bottom: 1rem;
}

.team-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.team-list li {
    font-family: var(--font);
    font-size: .93rem;
    font-weight: 600;
    color: var(--ink);
    padding-left: .85rem;
    border-left: 2px solid var(--g400);
    line-height: 1.3;
}


/* =============================================================
   SUITE 5 — IMPLANT & RESTORATIVE
   ============================================================= */

.suite5-section {
    background: var(--g900);
    padding: var(--vpad) 0;
    position: relative;
    overflow: hidden;
}

.suite5-section::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(58,138,100,.1) 0%, transparent 70%);
    pointer-events: none;
}

.suite5-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.suite5-block-tag {
    font-family: var(--font);
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: rgba(255,255,255,.25);
    display: block;
    margin-bottom: 1rem;
}

.suite5-title {
    font-family: var(--font);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 1.5rem;
}

.suite5-desc {
    font-size: .93rem;
    font-weight: 300;
    color: rgba(255,255,255,.48);
    line-height: 1.9;
    max-width: 580px;
}

.suite5-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0;
}

.suite5-logo {
    width: 105px;
    height: 105px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .78;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 2rem;
}

.doctor-card { text-align: center; }

.doc-photo-wrap {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.35rem;
    border: 2px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    background: var(--g800);
}

.doc-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.doc-name {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: .4rem;
    letter-spacing: -.01em;
}

.doc-specialty {
    font-family: var(--font);
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--g400);
}


/* =============================================================
   CONTACT SECTION
   ============================================================= */

.contact-section {
    padding: var(--vpad) 0;
    background: var(--white);
}

#contact { scroll-margin-top: 82px; }

.contact-top {
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-card {
    padding: 2.5rem 2.25rem;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: box-shadow .3s;
}

.contact-card:hover {
    box-shadow: var(--sh-sm);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    background: var(--g50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(58,138,100,.15);
}

.contact-card-icon svg {
    width: 21px;
    height: 21px;
    color: var(--g700);
}

.contact-card-title {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .9rem;
    letter-spacing: -.01em;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    font-size: .88rem;
    font-weight: 300;
    color: var(--ink-md);
    line-height: 1.7;
}

.contact-text {
    font-size: .88rem;
    font-weight: 300;
    color: var(--ink-md);
    line-height: 1.85;
}


/* =============================================================
   FOOTER
   ============================================================= */

.site-footer {
    background: var(--g950);
    padding-top: 5rem;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--g700), var(--g500), var(--g700));
    opacity: .5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.5rem;
}

.footer-cross {
    width: 26px;
    height: 26px;
    color: var(--g400);
    flex-shrink: 0;
}

.footer-tagline {
    font-size: .83rem;
    font-weight: 300;
    color: rgba(255,255,255,.34);
    line-height: 1.85;
    max-width: 235px;
}

.footer-col-title {
    font-family: var(--font);
    font-size: .54rem;
    font-weight: 600;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
    margin-bottom: 1.4rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.footer-links a {
    font-size: .83rem;
    font-weight: 300;
    color: rgba(255,255,255,.5);
    transition: color .2s;
}
.footer-links a:hover { color: #fff; }

.footer-address {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.footer-address p {
    font-size: .83rem;
    font-weight: 300;
    color: rgba(255,255,255,.5);
}

.footer-addr-name {
    font-weight: 600 !important;
    color: rgba(255,255,255,.72) !important;
    margin-bottom: .2rem;
}

.footer-bottom {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.footer-copy {
    font-size: .7rem;
    color: rgba(255,255,255,.18);
    letter-spacing: .04em;
}


/* =============================================================
   SUITE LINK
   ============================================================= */

.suite-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--g600);
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s, gap .2s;
}
.suite-link:hover { color: var(--g700); }

/* =============================================================
   SUITE 6 — CORK ORAL SURGERY DETAIL
   ============================================================= */

.suite6-section {
    background: var(--cream);
    padding: var(--vpad) 0;
    border-top: 1px solid var(--border);
}

.suite6-header {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.suite6-block-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--g600);
    margin-bottom: 1rem;
}

.suite6-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.suite6-desc {
    font-size: .95rem;
    font-weight: 300;
    color: var(--ink-md);
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 1.5rem;
}

.suite6-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.2rem;
}

.suite6-hours {
    background: var(--g900);
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    align-self: start;
}

.suite6-team {
    border-top: 1px solid var(--border);
    padding-top: 2.5rem;
}

.suite6-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.suite6-member {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: .9rem 1.25rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink);
}

/* =============================================================
   MAP
   ============================================================= */

.map-wrap {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    line-height: 0;
}

/* =============================================================
   CONTACT LABEL
   ============================================================= */

.contact-label {
    font-size: .75rem !important;
    font-weight: 500 !important;
    color: var(--ink-lt) !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .25rem;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 360px; gap: 4rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { display: none; }

    .gallery-strip { height: 240px; }

    .prac-header-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

    .suite5-header { grid-template-columns: 1fr; gap: 2.5rem; }
    .suite6-header { grid-template-columns: 1fr; gap: 2.5rem; }
    .doctors-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }

    .cork-layout { grid-template-columns: 1fr; gap: 2rem; }
    .cork-team { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 2rem; }

    .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .contact-top { flex-direction: column; align-items: flex-start; }

    .stats-grid { flex-wrap: wrap; }
    .stat-item { flex: 1 1 45%; }
    .stat-divider { display: none; }
}

@media (max-width: 640px) {
    .main-nav { gap: 1.5rem; }
    .main-nav a { font-size: .6rem; }
    .brand-sub { display: none; }

    .suites-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .gallery-strip { grid-template-columns: 1fr; height: auto; }
    .gallery-frame { height: 220px; }
    .gallery-frame + .gallery-frame { border-left: none; border-top: 2px solid var(--g950); }

    .hero-actions { flex-direction: column; align-items: flex-start; }
    .stat-item { flex: 1 1 40%; }
}
