/* ═══════════════════════════════════════════════════
   David & Stone Group — Shared Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
    --navy:       #0B2040;
    --navy-mid:   #14325A;
    --gold:       #B8842A;
    --gold-light: #D4A44E;
    --gold-pale:  rgba(184,132,42,0.1);
    --gold-line:  rgba(184,132,42,0.3);
    --white:      #FFFFFF;
    --cream:      #FAF8F4;
    --cream-2:    #F2EEE6;
    --border:     #E4DFD6;
    --text:       #1C1C1C;
    --text-muted: #6A6560;
    --text-light: #9B9390;
    --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:  0 6px 30px rgba(0,0,0,0.1);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--white);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── Utility ───────────────────────────────── */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2.5rem;
}
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }
.section-alt  { background: var(--cream); }
.section-alt2 { background: var(--cream-2); }
.section-navy { background: var(--navy); color: #fff; }

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

/* ── Section label / title helpers ─────────── */
.sec-eyebrow {
    display: inline-flex; align-items: center; gap: .75rem;
    margin-bottom: 1.1rem;
}
.sec-eyebrow-line { width: 26px; height: 1px; background: var(--gold); }
.sec-eyebrow-text {
    font-size: .65rem; letter-spacing: .3em;
    text-transform: uppercase; color: var(--gold); font-weight: 400;
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300; line-height: 1.1;
    letter-spacing: -.02em; color: var(--navy);
    margin-bottom: 1.4rem;
}
.sec-title em   { font-style: italic; color: var(--gold); }
.sec-title.lite { color: #fff; }
.sec-title.lite em { color: var(--gold-light); }

.sec-intro {
    font-size: .98rem; color: var(--text-muted);
    line-height: 1.9; max-width: 560px;
}

/* ── Gold divider ──────────────────────────── */
.gold-rule {
    width: 48px; height: 2px;
    background: var(--gold); margin: 1.6rem 0;
}

/* ── Reveal on scroll ──────────────────────── */
.rv {
    opacity: 0; transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}
.rv.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
    position: sticky; top: 0; z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s, border-color .3s;
}
.navbar.scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,0.12);
    border-bottom-color: rgba(184,132,42,0.25);
}
.navbar-inner {
    max-width: 1260px; margin: 0 auto;
    padding: 0 2.5rem; height: 72px;
    display: flex; align-items: center; gap: 2rem;
}

/* Logo */
.navbar-logo {
    flex-shrink: 0;
    display: flex; align-items: center; gap: .75rem;
}
.navbar-logo img { height: 40px; width: auto; }
.navbar-logo-text { line-height: 1; }
.navbar-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600;
    color: var(--navy); letter-spacing: .04em; display: block;
}
.navbar-brand-sub {
    font-size: .58rem; letter-spacing: .3em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 400; display: block; margin-top: 2px;
}

/* Nav links */
.navbar-menu {
    flex: 1;
    display: flex; align-items: stretch;
    height: 72px;
}
.navbar-menu > li {
    position: relative; display: flex; align-items: stretch;
}
.navbar-menu > li > a {
    display: flex; align-items: center; gap: .3rem;
    padding: 0 1rem;
    font-size: .77rem; font-weight: 400;
    letter-spacing: .13em; text-transform: uppercase;
    color: var(--navy); white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
}
.navbar-menu > li > a:hover,
.navbar-menu > li.active > a {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
.navbar-menu > li > a .caret {
    width: 10px; height: 10px;
    stroke: currentColor; stroke-width: 2; fill: none;
    transition: transform .25s;
    flex-shrink: 0;
}
.navbar-menu > li:hover > a .caret { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
    position: absolute; top: 100%; left: 0;
    min-width: 230px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    opacity: 0; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .25s, transform .25s;
    z-index: 999;
}
.navbar-menu > li:hover .nav-dropdown {
    opacity: 1; pointer-events: auto; transform: none;
}
.nav-dropdown a {
    display: block; padding: .85rem 1.4rem;
    font-size: .79rem; color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: background .2s, color .2s, padding-left .2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
    background: var(--cream); color: var(--gold); padding-left: 1.8rem;
}

/* Right side CTA */
.navbar-right {
    flex-shrink: 0; display: flex; align-items: center; gap: 1.4rem;
}
.navbar-phone {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8rem; color: var(--navy); font-weight: 400;
    white-space: nowrap;
}
.navbar-phone svg { width: 15px; height: 15px; stroke: var(--gold); stroke-width: 2; fill: none; }
.navbar-cta {
    font-size: .73rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--white); background: var(--navy);
    padding: .55rem 1.3rem; white-space: nowrap;
    transition: background .25s;
}
.navbar-cta:hover { background: var(--gold); }

/* Mobile hamburger */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: .5rem; background: none; border: none;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--navy); transition: all .3s;
}

/* ══════════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
══════════════════════════════════════════════ */
.page-hero {
    background: var(--navy);
    padding: 6.5rem 0 5.5rem;
    position: relative; overflow: hidden;
}
.page-hero-bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .1; mix-blend-mode: luminosity;
}
.page-hero .container { position: relative; }

.page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: .75rem;
    margin-bottom: 1rem;
    opacity: 0; transform: translateY(14px);
    animation: fadeUp .65s ease .1s forwards;
}
.page-hero-eyebrow-line { width: 26px; height: 1px; background: var(--gold); }
.page-hero-eyebrow-text {
    font-size: .65rem; letter-spacing: .3em;
    text-transform: uppercase; color: var(--gold); font-weight: 400;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 300; line-height: 1.1;
    color: #fff; letter-spacing: -.02em;
    opacity: 0; transform: translateY(22px);
    animation: fadeUp .8s ease .22s forwards;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

.breadcrumb {
    margin-top: 1.6rem;
    display: flex; align-items: center; gap: .5rem;
    font-size: .76rem; color: rgba(255,255,255,.45);
    opacity: 0;
    animation: fadeIn .7s ease .45s forwards;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════════ */
.home-hero {
    background: var(--navy);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative; overflow: hidden;
}
.home-hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, var(--navy) 42%, rgba(11,32,64,.88) 56%, rgba(11,32,64,.5) 74%, rgba(11,32,64,.04) 100%);
    z-index: 1;
}
.home-hero-img {
    position: absolute; inset: 0;
    background: url('../images/London.jpg') center/cover;
    opacity: .45;
}
.home-hero-content {
    position: relative; z-index: 2;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 7rem 2.5rem;
}
.home-hero-eyebrow {
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: 2rem;
    opacity: 0; transform: translateY(18px);
    animation: fadeUp .7s ease .2s forwards;
}
.home-hero-eyebrow-line { width: 30px; height: 1px; background: var(--gold); }
.home-hero-eyebrow-text {
    font-size: .65rem; letter-spacing: .3em;
    text-transform: uppercase; color: var(--gold); font-weight: 400;
}
.home-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.4rem, 6vw, 6rem);
    font-weight: 300; line-height: .96;
    letter-spacing: -.025em; color: #fff;
    margin-bottom: 2.4rem;
    max-width: 620px;
    opacity: 0; transform: translateY(28px);
    animation: fadeUp .85s ease .35s forwards;
}
.home-hero h1 em { font-style: italic; color: var(--gold-light); }
.home-hero h1 span { display: block; }

.home-hero-tagline {
    max-width: 480px;
    font-size: 1rem; color: rgba(255,255,255,.7);
    line-height: 1.85; margin-bottom: 2.8rem;
    opacity: 0; transform: translateY(18px);
    animation: fadeUp .8s ease .55s forwards;
}
.home-hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; transform: translateY(18px);
    animation: fadeUp .8s ease .7s forwards;
}
.btn-primary {
    display: inline-block;
    background: var(--gold); color: #fff;
    padding: .8rem 2rem;
    font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 400;
    transition: background .25s, transform .2s;
}
.btn-primary:hover { background: #9A6D1F; transform: translateY(-1px); }

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,.35); color: #fff;
    padding: .8rem 2rem;
    font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 400;
    transition: border-color .25s, background .25s;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-pale); }

.btn-navy {
    display: inline-block;
    background: var(--navy); color: #fff;
    padding: .8rem 2rem;
    font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 400;
    transition: background .25s;
}
.btn-navy:hover { background: var(--navy-mid); }

/* ── Pillars strip ─────────────────────────── */
.pillars {
    display: flex; background: var(--gold);
}
.pillar {
    flex: 1; padding: 1.6rem 2rem;
    border-right: 1px solid rgba(255,255,255,.2);
    text-align: center;
    transition: background .25s;
    cursor: default;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(0,0,0,.12); }
.pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 500;
    color: #fff; letter-spacing: .04em;
}
.pillar-sub {
    font-size: .7rem; color: rgba(255,255,255,.75);
    letter-spacing: .1em; text-transform: uppercase;
    margin-top: .2rem;
}

/* ══════════════════════════════════════════════
   ABOUT / INFO SPLIT
══════════════════════════════════════════════ */
.info-split { display: grid; grid-template-columns: 1fr 1fr; column-gap: 6rem; row-gap: 0; align-items: center; }
.info-split .info-img { grid-row: 1 / 3; align-self: center; }
.info-split .info-text-top { align-self: end; padding-bottom: 1.5rem; }
.info-split .info-text-bottom { align-self: start; }
.info-img {
    position: relative;
}
.info-img img {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover;
}
.info-img-frame {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--gold-line);
    z-index: -1;
}
.info-content { }
.info-body {
    font-size: .97rem; color: var(--text-muted);
    line-height: 1.9; margin-bottom: 1.4rem;
}

/* ══════════════════════════════════════════════
   STAT BAR
══════════════════════════════════════════════ */
.stat-bar {
    display: grid; grid-template-columns: repeat(4,1fr);
    background: var(--navy);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem; font-weight: 300;
    color: var(--gold-light); line-height: 1; letter-spacing: -.02em;
    transition: color .3s;
}
.stat-lbl {
    font-size: .68rem; letter-spacing: .22em;
    text-transform: uppercase; color: rgba(255,255,255,.5);
    margin-top: .5rem; transition: color .3s;
}
.stat-item {
    padding: 3rem 2rem;
    border-right: 1px solid rgba(255,255,255,.1);
    text-align: center; cursor: default;
    transition: background .3s;
}
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-item:hover .stat-num { color: #fff; }
.stat-item:hover .stat-lbl { color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.4rem 2rem;
    position: relative; overflow: hidden;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.svc-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
}
.svc-card:hover { border-color: var(--gold-line); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale); border: 1px solid var(--gold-line);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.6rem;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--gold); stroke-width: 1.5; fill: none; }
.svc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 500;
    color: var(--navy); margin-bottom: .7rem;
}
.svc-desc { font-size: .86rem; color: var(--text-muted); line-height: 1.8; }

/* ══════════════════════════════════════════════
   COMPANY CARDS
══════════════════════════════════════════════ */
.co-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--border); }
.co-card {
    padding: 2.4rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: background .3s, box-shadow .3s;
}
.co-card:nth-child(3n) { border-right: none; }
.co-card:nth-last-child(-n+3) { border-bottom: none; }
.co-card:hover { background: var(--cream); box-shadow: inset 0 0 0 1px var(--gold-line); }

.co-card-tag {
    font-size: .6rem; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: .9rem; font-weight: 400;
}
.co-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 500;
    color: var(--navy); margin-bottom: .7rem; line-height: 1.2;
}
.co-card-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.78; }

.co-card-arrow {
    display: inline-flex; align-items: center; gap: .5rem;
    margin-top: 1.2rem;
    font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--gold); font-weight: 400;
    transition: gap .25s;
}
.co-card:hover .co-card-arrow { gap: .8rem; }
.co-card-arrow svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

/* ══════════════════════════════════════════════
   VALUES
══════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); }
.value-card {
    padding: 3rem 2.2rem;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background .3s;
}
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--cream); }

.value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem; font-weight: 300;
    color: rgba(11,32,64,.07); line-height: 1;
    letter-spacing: -.05em; margin-bottom: 1.3rem;
}
.value-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 500;
    color: var(--navy); margin-bottom: .8rem;
}
.value-bar {
    width: 0; height: 2px; background: var(--gold);
    margin-bottom: .9rem;
    transition: width .4s ease;
}
.value-card:hover .value-bar { width: 36px; }
.value-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.82; }

/* ══════════════════════════════════════════════
   QUOTE BLOCK
══════════════════════════════════════════════ */
.quote-block {
    background: var(--navy);
    padding: 5rem 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.quote-block::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 20rem; line-height: 1;
    color: rgba(255,255,255,.03);
    position: absolute; top: -3rem; left: 2rem;
}
.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300; font-style: italic;
    color: #fff; line-height: 1.45;
    max-width: 820px; margin: 0 auto 1.6rem;
}
.quote-attr {
    font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold-light);
}

/* ══════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
}
.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(11,32,64,.35);
    opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
    max-width: 90vw; max-height: 86vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .2s;
}
.lightbox-close:hover { background: var(--gold); }

/* ══════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════ */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-label {
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--navy); font-weight: 400;
}
.form-input, .form-textarea, .form-select {
    border: 1px solid var(--border); background: var(--white);
    padding: .85rem 1rem;
    font-family: 'Outfit', sans-serif; font-size: .9rem;
    color: var(--text); font-weight: 300;
    transition: border-color .2s, box-shadow .2s;
    outline: none; width: 100%;
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-pale);
}

/* ══════════════════════════════════════════════
   OFFICE CARDS
══════════════════════════════════════════════ */
.office-card {
    padding: 2.4rem;
    border: 1px solid var(--border);
    background: var(--cream);
}
.office-card + .office-card { margin-top: 1.2rem; }
.office-tag {
    font-size: .62rem; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: .9rem; font-weight: 400;
}
.office-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem; font-weight: 500;
    color: var(--navy); margin-bottom: .7rem;
}
.office-addr { font-size: .88rem; color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════ */
.sidebar-block {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.6rem;
}
.sidebar-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 500;
    color: var(--navy); margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--border);
}
.sidebar-list li {
    padding: .55rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .86rem; color: var(--text-muted);
    transition: color .2s, padding-left .2s;
    cursor: default;
}
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li::before {
    content: '–';
    color: var(--gold);
    margin-right: .5rem;
}
.sidebar-list li:hover { color: var(--gold); padding-left: .3rem; }

.sidebar-contact-item {
    display: flex; align-items: flex-start; gap: .75rem;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .86rem; color: var(--text-muted);
}
.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); stroke-width: 1.8; fill: none; flex-shrink: 0; margin-top: .15rem; }

/* Two-column content layout */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
    background: var(--navy);
    color: rgba(255,255,255,.65);
}
.footer-main {
    padding: 5rem 0 3rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    color: #fff; letter-spacing: .04em;
    display: block; margin-bottom: .4rem;
}
.footer-brand-sub {
    font-size: .6rem; letter-spacing: .3em;
    text-transform: uppercase; color: var(--gold);
}
.footer-about {
    font-size: .84rem; line-height: 1.85;
    color: rgba(255,255,255,.5);
    margin-top: 1.2rem; margin-bottom: 1.6rem;
}
.footer-contact-line {
    display: flex; align-items: center; gap: .6rem;
    font-size: .82rem; color: rgba(255,255,255,.55);
    margin-bottom: .5rem;
}
.footer-contact-line svg { width: 14px; height: 14px; stroke: var(--gold); stroke-width: 1.8; fill: none; }

.footer-col-title {
    font-size: .68rem; letter-spacing: .28em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 1.4rem; font-weight: 400;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
    font-size: .84rem; color: rgba(255,255,255,.5);
    transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.6rem 0;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 1.6rem; }
.footer-legal a {
    font-size: .75rem; color: rgba(255,255,255,.3); transition: color .2s;
}
.footer-legal a:hover { color: var(--gold-light); }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.3); transition: color .2s;
}
.footer-social a:hover { color: var(--gold-light); }
.footer-social svg { width: 1.1rem; height: 1.1rem; }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .info-split, .content-with-sidebar { grid-template-columns: 1fr; gap: 2rem; }
    .info-split .info-img { grid-row: auto; }
    /* index.html: title → image → body text */
    .info-split .info-text-top { order: 1; padding-bottom: 0; }
    .info-split .info-img { order: 2; }
    .info-split .info-text-bottom { order: 3; }
    /* about.html: image moves above body text */
    .info-split.img-right .info-img { order: -1; }
    .info-img-frame { display: none; }
    .home-hero-bg { background: linear-gradient(to bottom, rgba(11,32,64,.92) 0%, rgba(11,32,64,.7) 100%); }
    .home-hero-content { padding: 5rem 1.8rem; }
    .svc-grid { grid-template-columns: repeat(2,1fr); }
    .co-grid  { grid-template-columns: repeat(2,1fr); }
    .values-grid { grid-template-columns: repeat(2,1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(3,1fr); }
    .stat-bar { grid-template-columns: repeat(2,1fr); }
    .navbar-phone { display: none; }
}

@media (max-width: 768px) {
    .navbar-menu, .navbar-cta, .navbar-phone { display: none; }
    .hamburger { display: flex; margin-left: auto; }
    .navbar-menu.open {
        display: flex; flex-direction: column; align-items: flex-start;
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md); padding: 1rem 0;
        height: auto;
    }
    .navbar-menu.open > li { width: 100%; }
    .navbar-menu.open > li > a {
        height: auto; padding: .85rem 2rem;
        border-bottom: 1px solid var(--border); border-left: none;
    }
    .nav-dropdown {
        position: static; transform: none; opacity: 1;
        pointer-events: auto; border: none; box-shadow: none;
        border-top: none; background: var(--cream);
        display: none;
    }
    .navbar-menu.open > li.open .nav-dropdown { display: block; }
    .svc-grid, .co-grid, .values-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); }
    .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
    .pillars { flex-direction: column; }
    .stat-bar { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── Form consent checkbox ─────────────────── */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.form-consent input[type="checkbox"] {
    margin-top: .3rem;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--gold);
}
.form-consent a { color: var(--navy); text-decoration: underline; }

/* ── Legal / policy content pages ──────────── */
.policy-content { max-width: 820px; }
.policy-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem; font-weight: 400;
    color: var(--navy); margin: 2.6rem 0 1rem;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem; font-weight: 500;
    color: var(--navy); margin: 1.6rem 0 .6rem;
}
.policy-content p { font-size: .95rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.1rem; }
.policy-content ul { margin: 0 0 1.1rem; }
.policy-content li {
    font-size: .95rem; color: var(--text-muted); line-height: 1.85;
    padding-left: 1.3rem; position: relative; margin-bottom: .5rem;
}
.policy-content li::before {
    content: ""; position: absolute; left: 0; top: .75em;
    width: 5px; height: 5px; background: var(--gold);
}
.policy-content a { color: var(--navy); text-decoration: underline; }
.policy-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; font-size: .9rem; }
.policy-content th, .policy-content td {
    text-align: left; padding: .75rem 1rem; border: 1px solid var(--border);
    color: var(--text-muted); vertical-align: top;
}
.policy-content th { color: var(--navy); font-weight: 500; background: var(--cream); }
.policy-updated { font-size: .82rem; color: var(--text-light); margin-bottom: 2.4rem; }
