@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root{
    --sand:#faf7ee;
    --paper:#fff;
    --ink:#0e1720;
    --ink-weak:#3b4250;
    --line:#e4dfd4;

    --container:1200px;
    --radius:14px;
    --shadow:0 12px 40px rgba(8,12,20,.08);

    --header-h:74px;
}

/* ========== Base ========== */
*{ box-sizing:border-box }
html,body{ margin:0; height:100% }
body{
    font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    line-height:1.7;
    background:var(--sand);
    color:var(--ink);
    padding-top:var(--header-h);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}
img{ max-width:100%; display:block }
a{ color:inherit; text-decoration:none }

:target{ scroll-margin-top: calc(var(--header-h) + 12px) }

.container{ max-width:var(--container); margin:0 auto; padding:0 18px; padding-top: 2vh; }

h1,h2,h3,.brand-word{ font-family:Cinzel,serif }
.display{ font-size:clamp(50px,6vw,72px); line-height:1.05 }
.h2{ font-size:clamp(26px,4vw,42px); line-height:1.15 }
.eyebrow{
    letter-spacing:.18em; text-transform:uppercase;
    font-size:.8rem; color:var(--ink-weak); margin-bottom:.6rem
}


.site-header{
    position:fixed; top:0; left:0; right:0;
    height:var(--header-h);
    background:var(--sand);
    border-bottom:1px solid var(--line);
    backdrop-filter:saturate(120%) blur(2px);
    z-index:9999; /* above any hero overlays */
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

/* Nav bar content */
.nav{ height:var(--header-h); }
.nav-inner.split{
    display:grid; grid-template-columns:1fr auto 1fr;
    align-items:center; 
}

/* Menus */
.menu{ display:flex; gap:26px; align-items:center }
.menu.left{ justify-content:flex-start }
.menu.right{ justify-content:flex-end }
.menu a{
    position:relative; font-weight:600; font-size:.78rem;
    letter-spacing:.14em; text-transform:uppercase; color:#111;
    transition:color .2s ease;
}
.menu a::after{
    content:""; position:absolute; left:50%; transform:translateX(-50%);
    bottom:-12px; width:0; height:2px; background:#9ca3af; opacity:0;
    transition:.25s ease;
}
.menu a:hover,.menu a:focus-visible{ color:#9ca3af }
.menu a:hover::after,.menu a:focus-visible::after{ width:26px; opacity:1 }

/* Center brand */
.brand-link{ justify-self:center; display:inline-flex; align-items:center; gap:10px }
.brand{ display:inline-flex; gap:12px; align-items:center }
.brand-mark{
    width:36px; height:36px; border-radius:12px; background:#fff; border:1px solid var(--line);
    box-shadow:0 2px 10px rgba(8,12,20,.06) inset;
}
.brand-word{
    font-weight:700; letter-spacing:.06em; font-size:1.05rem; line-height:1; text-transform:uppercase;
}
.brand-word .amp{ font-weight:600; letter-spacing:.12em }

/* Mobile nav */
.hamburger{ display:none; background:none; border:none; line-height:0; padding:8px; border-radius:10px }
.hamburger:focus-visible{ outline:3px solid rgba(16,185,129,.35); outline-offset:2px }

.mobile-panel{
    position:fixed; left:0; right:0; top:var(--header-h);
    background:var(--sand); border-bottom:1px solid var(--line);
    box-shadow:0 14px 30px rgba(8,12,20,.06);
    max-height:calc(100dvh - var(--header-h));
    overflow:auto; z-index:9998;
}
.mobile-links{ display:grid; gap:12px; padding:16px 22px }
.mobile-links a{ font-weight:600; font-size:.86rem; letter-spacing:.08em; text-transform:uppercase }
.mobile-links hr{ border:0; border-top:1px solid var(--line); margin:6px 0 }

body.menu-open{ overflow:hidden }

@media (max-width:980px){
    .menu.left,.menu.right{ display:none }
    .hamburger{ display:block; justify-self:end }
    .brand-link{ justify-self:start }
    .nav-inner.split { grid-template-columns: 1fr 1fr;}
}

/* ===== HERO (soft frame + subtle motion) ===== */
.hero-banner{position:relative;background:var(--sand);overflow:hidden;}
.hero-banner .hero-media{
    position:relative; border:1px solid var(--line); border-radius:18px;
    overflow:hidden; box-shadow:var(--shadow); background:#fff; z-index:0;
    height:70vh; min-height:320px; max-height:820px;
}
.hero-banner .hero-media::after{
    content:""; position:absolute; inset:0; pointer-events:none;
    background:
        linear-gradient(to bottom, rgba(0,0,0,.06), transparent 22%),
        linear-gradient(to right, rgba(0,0,0,.04), transparent 18%, transparent 82%, rgba(0,0,0,.04));
    mix-blend-mode:multiply;
}
.hero-banner .hero-media img{
    width:100%; height:min(70vh,820px); object-fit:cover; display:block
}

.hero-banner .hero-content{ position:absolute; bottom:12%; left:0; right:0; z-index:2 }
.hero-banner .hero-copy{ max-width:640px; margin-left:clamp(16px,6vw,80px) }

.link-cta{ display:inline-block; margin-top:18px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:.8rem }
.link-cta:after{ content:""; display:block; width:140px; height:2px; background:currentColor; margin-top:6px }
.link-cta.small:after{ width:120px }

/* Subtle motion */
.hero-banner:hover .hero-media{ box-shadow:0 18px 50px rgba(2,6,23,.10) }
.hero-banner .hero-media img{
    transform:scale(1.01); will-change:transform,filter,box-shadow;
    transition:transform .60s cubic-bezier(.22,.61,.36,1), filter .40s ease, box-shadow .30s ease;
    filter:saturate(96%) contrast(98%);
}
.hero-banner:hover .hero-media img,
.hero-banner:focus-within .hero-media img{
    transform:scale(1.04); filter:saturate(104%) contrast(102%);
}
@media (prefers-reduced-motion:reduce){
    .hero-banner .hero-media img{ transition:none; transform:none }
}


.section-pad{ padding:0 0 88px 0 }
.sand{ background:var(--sand) }
.two-col{ display:grid; grid-template-columns:1.05fr 1fr; gap:40px; align-items:center }
@media (max-width:980px){ .two-col{ grid-template-columns:1fr } }
.img-frame{ border-radius:18px; border:1px solid var(--line); box-shadow:var(--shadow); background:#fff; overflow:hidden }
.img-frame > img{ width:100%; height:100%; object-fit:cover; display:block }


.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:28px }
@media (max-width:1024px){ .svc-grid{ grid-template-columns:repeat(2,1fr) } }
@media (max-width:680px){ .svc-grid{ grid-template-columns:1fr } }
.svc-card{ text-align:center }
.svc-card img{
    border-radius:18px; border:1px solid var(--line); box-shadow:var(--shadow);
    margin-bottom:16px; height:420px; object-fit:cover; width:100%;
}
.card-title{ font-family:Cinzel,serif; font-size:clamp(20px,3vw,28px); letter-spacing:.02em }


.testimonial-slider-wrapper{ position:relative; margin-top:14px }
.t-row{
    display:flex; gap:16px; overflow-x:auto; overflow-y:hidden;
    scroll-snap-type:x mandatory; padding:6px 2px 10px; -webkit-overflow-scrolling:touch
}
.t-card{
    flex:0 0 320px; scroll-snap-align:start; border:1px solid var(--line); border-radius:16px;
    padding:16px; background:#fff; box-shadow:0 8px 24px rgba(2,6,23,.06);
    display:flex; flex-direction:column; gap:8px
}
.t-quote{ font-size:.98rem; line-height:1.55; color:var(--ink) }
.t-meta{ display:flex; align-items:center; gap:10px; color:var(--ink-weak); font-weight:700 }
.t-stars{ font-size:.9rem; color:#f59e0b }
.no-testimonials{ border:1px dashed var(--line); border-radius:12px; padding:16px; color:var(--ink-weak); background:#fff }
.t-row:focus-within .t-card,.t-card:focus{ outline:2px solid rgba(2,6,23,.15); outline-offset:2px }
.t-row::-webkit-scrollbar{ height:10px }
.t-row::-webkit-scrollbar-track{ background:transparent }
.t-row::-webkit-scrollbar-thumb{ background:rgba(2,6,23,.12); border-radius:999px }
.t-row:hover::-webkit-scrollbar-thumb{ background:rgba(2,6,23,.22) }
@media (prefers-reduced-motion:reduce){
    .t-row{ scroll-behavior:auto } .t-card{ transition:none }
}


.btn{
    display:inline-flex; align-items:center; justify-content:center; gap:6px;
    padding:10px 18px; border-radius:12px; border:1px solid var(--line);
    font-weight:700; font-size:.95rem; cursor:pointer; text-decoration:none;
    transition:background-color .2s ease,color .2s ease,transform .15s ease;
}
.btn.primary{ background-color:var(--ink); color:#fff; border-color:var(--ink) }
.btn.primary:hover,.btn.primary:focus{ background-color:#1f2937; transform:translateY(-1px) }
.btn.primary:active{ transform:translateY(0); background-color:#111827 }
.btn.primary.disabled,.btn.primary[disabled]{ opacity:.6; pointer-events:none; cursor:default }


footer{ padding:48px 0 66px; background:var(--sand); margin-top:56px }
.foot{ display:flex; justify-content:space-between; align-items:center; border-top:1px solid var(--line); padding-top:18px }


#content, main, .container, .page, .wrap, .shell{
    transform:none !important; filter:none !important; perspective:none !important; overflow:visible;
}
/* ===== Story & Mission image frames ===== */
.img-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.img-frame > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

