/* ═══════════════════════════════════════════════════════════════
   FAHAM ART — Art Nouveau Botanical Portfolio
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
    --cream:      #F5ECD8;
    --parchment:  #EDE0C4;
    --canvas:     #F5ECD8;
    --olive:      #7A8C5E;
    --olive-dk:   #4C5E38;
    --rose:       #C9A8A2;
    --rose-dk:    #9B6B62;
    --gold:       #B5922E;
    --gold-lt:    #CFA94A;
    --ink:        #2A2014;
    --muted:      #9C8448;
    --rule:       #D9CBA8;
    --panel-bg:   #F5ECD8;
    --contact-bg: #2E2619;

    --font-disp:  'Cormorant Garamond', Georgia, serif;
    --font-body:  'Jost', 'Helvetica Neue', sans-serif;

    --ease-expo:  cubic-bezier(0.19, 1, 0.22, 1);
    --ease-circ:  cubic-bezier(0.4, 0, 0.2, 1);
    --dur-m:      0.55s;
    --dur-s:      0.3s;

    --sp-xs: 0.5rem;
    --sp-s:  1rem;
    --sp-m:  2rem;
    --sp-l:  4rem;
    --sp-xl: 7rem;
    --sp-2xl:10rem;

    --r-sm:  2px;
    --r-md:  4px;
    --max-w: 1240px;
    --track-h: 460px;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* ─── GRAIN OVERLAY ──────────────────────────────────────────── */
.grain {
    position: fixed; inset: 0; z-index: 9000;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: 1;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.overline {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.8rem;
}
.h-section {
    font-family: var(--font-disp);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.h-section em { font-style: italic; font-weight: 300; color: var(--muted); }
.body-serif {
    font-family: var(--font-disp);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--muted);
}

/* ─── HELPERS ────────────────────────────────────────────────── */
.site-container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-m); }
.hidden { display: none !important; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: 0.85em 2.4em;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--ink);
    border: 1px solid var(--ink);
    transition: background var(--dur-s), color var(--dur-s), border-color var(--dur-s);
    margin-top: var(--sp-m);
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.btn-primary.wide { width: 100%; text-align: center; margin-top: var(--sp-s); }

.btn-outline {
    display: inline-block;
    padding: 0.8em 2.2em;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    border: 1px solid var(--rule);
    transition: border-color var(--dur-s), color var(--dur-s);
    margin-top: var(--sp-m);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── ORNAMENT ROW ───────────────────────────────────────────── */
.ornament-row {
    display: flex; justify-content: center; align-items: center;
    padding: var(--sp-l) var(--sp-m);
}
.ornament-svg { width: 100%; max-width: 600px; }

/* ═══════════════════════════════ NAVIGATION ════════════════════ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(244, 239, 228, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(210, 201, 180, 0.3);
    transition: box-shadow var(--dur-s);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(42, 32, 20, 0.06); }

.nav-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-m);
    height: 72px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.nav-left, .nav-right {
    display: flex; gap: var(--sp-l);
    align-items: center;
}
.nav-right { justify-content: flex-end; }
.nlink {
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    transition: color var(--dur-s);
}
.nlink::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--dur-s) var(--ease-expo);
}
.nlink:hover { color: var(--ink); }
.nlink:hover::after { width: 100%; }

.monogram {
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px;
    color: var(--ink);
    transition: color var(--dur-s);
    justify-self: center;
}
.monogram:hover { color: var(--gold); }
.mono-svg { width: 48px; height: 48px; }

/* Burger */
.burger {
    display: none;
    flex-direction: column; justify-content: center; gap: 6px;
    width: 36px; height: 36px;
    grid-column: 3; justify-self: end;
}
.bar {
    display: block; width: 24px; height: 1px;
    background: var(--ink);
    transition: transform var(--dur-s), opacity var(--dur-s);
    transform-origin: center;
}
.burger[aria-expanded="true"] .bar:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] .bar:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--cream);
    border-top: 1px solid var(--rule);
    padding: var(--sp-s) 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s var(--ease-expo), padding 0.4s var(--ease-expo);
}
.mobile-menu.open {
    display: flex;
    max-height: 300px;
    padding: var(--sp-s) 0;
}
.mm-link {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.75rem var(--sp-m);
    border-bottom: 1px solid rgba(210, 201, 180, 0.3);
    transition: color var(--dur-s);
}
.mm-link:last-child { border-bottom: none; }
.mm-link:hover { color: var(--gold); }

/* ═══════════════════════════════ HERO ══════════════════════════ */
.hero {
    min-height: 100svh;
    display: flex; align-items: center; justify-content: center;
    padding: 140px var(--sp-m) var(--sp-xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Botanical panels — full height side columns */
.bot-panel {
    position: absolute; top: 0; bottom: 0;
    width: clamp(180px, 22vw, 340px);
    pointer-events: none;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.bot-panel-l { left: 0; }
.bot-panel-r { right: 0; }
.bp-svg { width: 100%; height: 100%; object-fit: cover; }
.bot-panel-l .bp-svg { animation: flower-sway-left 10s ease-in-out infinite; transform-origin: center bottom; }
.bot-panel-r .bp-svg { animation: flower-sway-right 11s ease-in-out infinite; transform-origin: center bottom; }

@keyframes flower-sway-left {
    0%, 100% { transform: translateY(0) rotate(-1.2deg); }
    50% { transform: translateY(-10px) rotate(1.1deg); }
}

@keyframes flower-sway-right {
    0%, 100% { transform: translateY(0) scaleX(-1) rotate(1deg); }
    50% { transform: translateY(-12px) scaleX(-1) rotate(-1.1deg); }
}

/* Hero content */
.hero-content {
    position: relative; z-index: 2;
    max-width: 620px;
    display: flex; flex-direction: column; align-items: center;
    gap: 0.6rem;
    margin-top: 0.75rem;
}

/* Curved arc text */
.hero-arc { width: clamp(220px, 36vw, 320px); margin-bottom: -0.5rem; }
.arc-svg  { width: 100%; overflow: visible; }
.arc-text { fill: var(--muted); }

/* Ornamental rules */
.hero-rule { width: clamp(260px, 40vw, 400px); }
.rule-svg  { width: 100%; }

.hero-rule:first-of-type { margin-bottom: 0.15rem; }
.hero-rule:last-of-type { margin-top: 0.15rem; }

/* Main headline */
.hero-title-new {
    display: flex; flex-direction: column; align-items: center;
    margin: 0.2rem 0;
    line-height: 1.0;
}
.ht-sub {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.ht-name {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: clamp(3.4rem, 9vw, 7.5rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 0.92;
}

/* Keep old classes for other sections that may still use them */
.ht-line  { font-family: var(--font-disp); font-size: clamp(3rem,7vw,5.5rem); font-weight:600; color:var(--ink); }
.ht-italic{ font-family: var(--font-disp); font-size: clamp(2.6rem,6vw,4.8rem); font-weight:300; font-style:italic; color:var(--muted); }
.ht-large { font-family: var(--font-disp); font-size: clamp(5rem,14vw,11rem); font-weight:700; color:var(--ink); }

.hero-sub {
    font-family: var(--font-disp);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: var(--sp-xs);
    max-width: 480px;
}

/* ═══════════════════════════════ INTRO / ABOUT ═════════════════ */
.section-about { padding: var(--sp-xl) 0 calc(var(--sp-xl) + 1rem); }
.intro-grid {
    display: grid;
    grid-template-columns: minmax(320px, 860px);
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
    justify-content: center;
}
.intro-copy {
    max-width: 860px;
}
.intro-title {
    font-family: 'Cinzel', var(--font-disp), serif;
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0.25rem 0 1rem;
}
.intro-rule {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}
.intro-rule span,
.intro-rule i {
    display: block;
    height: 1px;
    background: var(--rule);
}
.intro-rule span { flex: 1; }
.intro-rule i { width: 10px; transform: rotate(45deg); background: var(--muted); }
.intro-text {
    font-family: var(--font-disp);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 1rem;
}

.intro-text strong {
    font-weight: 700;
    color: var(--ink);
}

.intro-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.intro-circle {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 1 / 1.12;
    border-radius: 50% 50% 0 0 / 38% 38% 0 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 45%, rgba(156, 132, 72, 0.55) 0%, rgba(126, 132, 32, 0.98) 62%, rgba(94, 90, 31, 1) 100%);
    box-shadow: 0 30px 80px rgba(42, 32, 20, 0.12);
}
.intro-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    mix-blend-mode: soft-light;
    opacity: 0.55;
    filter: sepia(0.9) saturate(0.6) contrast(1.05);
}
.intro-tint {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 55% 30%, rgba(245, 236, 216, 0.15), transparent 45%), linear-gradient(to bottom, rgba(245, 236, 216, 0.05), rgba(42, 32, 20, 0.15));
}
.intro-ring {
    position: absolute;
    top: 24px;
    right: 22px;
    width: 190px;
    pointer-events: none;
    transform: rotate(18deg);
}

/* Scroll cue */
.scroll-cue {
    position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
}
.sc-line {
    display: block; width: 1px; height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: sc-pulse 2.2s ease-in-out infinite;
}
@keyframes sc-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%       { opacity: 0.8; transform: scaleY(1); }
}

/* ═══════════════════════════════ GALLERY ════════════════════════ */
.section-gallery { padding: var(--sp-xl) 0; }
.sec-head { margin-bottom: var(--sp-l); text-align: center; }

/* Gallery viewport — full bleed */
.gallery-viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    position: relative;
}
.gallery-viewport:active { cursor: grabbing; }

/* Track */
.gallery-track {
    display: flex; gap: 1.5rem;
    align-items: flex-end;
    padding: 1rem 3rem;
    width: max-content;
    will-change: transform;
    animation: scroll-ltr 50s linear infinite;
}
.gallery-track:hover,
.gallery-track.drag { animation-play-state: paused; }

@keyframes scroll-ltr {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Gallery card */
.g-card {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--parchment);
    border-radius: var(--r-sm);
    transition: transform 0.5s var(--ease-expo), box-shadow 0.5s var(--ease-expo);
}
.g-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(42, 32, 20, 0.14);
}
.g-card:nth-child(odd)  { height: var(--track-h); }
.g-card:nth-child(even) { height: calc(var(--track-h) * 0.78); }
.g-card img {
    width: clamp(220px, 22vw, 320px);
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--parchment);
    display: block;
    transition: transform 0.7s var(--ease-expo);
    pointer-events: none;
}
.g-card:hover img { transform: scale(1.05); }

/* Card overlay */
.g-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(42, 32, 20, 0.65) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--dur-m) var(--ease-circ);
    display: flex; align-items: flex-end;
    padding: 1.4rem;
}
.g-card:hover .g-card-overlay { opacity: 1; }
.g-card-label {
    font-family: var(--font-disp);
    font-size: 1.0rem;
    font-weight: 400;
    color: #F9F5EE;
    pointer-events: none;
}
.g-card-label em { display: block; font-size: 0.78rem; font-weight: 300; opacity: 0.7; font-style: normal; font-family: var(--font-body); letter-spacing: 0.08em; margin-top: 2px; }

/* Gallery hint */
.gallery-hint {
    display: flex; align-items: center; justify-content: center;
    gap: var(--sp-m);
    margin-top: var(--sp-m);
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.hint-line { display: block; width: 48px; height: 1px; background: var(--rule); }
.hint-text { font-family: var(--font-body); }

/* ═══════════════════════════════ ABOUT ══════════════════════════ */
.section-about { padding: var(--sp-xl) 0 calc(var(--sp-xl) + 1rem); }
.about-grid {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    gap: var(--sp-l);
    align-items: center;
}
.about-text { max-width: 560px; }
.about-text .h-section { margin-bottom: var(--sp-m); }
.about-text .body-serif { margin-bottom: var(--sp-s); }

.about-deco {
    display: flex; justify-content: center; align-items: flex-end;
    height: 260px;
    opacity: 0.7;
}
.about-bot { width: 130px; }

/* ═══════════════════════════════ SERVICES ═══════════════════════ */
.section-services {
    padding: var(--sp-xl) 0;
    background: var(--parchment);
    position: relative;
}
.section-services::before,
.section-services::after {
    content: '';
    position: absolute; left: 0; right: 0; height: 1px;
    background: linear-gradient(to right, transparent, var(--rule), transparent);
}
.section-services::before { top: 0; }
.section-services::after  { bottom: 0; }

.section-services .sec-head { margin-bottom: var(--sp-l); text-align: center; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-m);
    margin-top: var(--sp-l);
}
.svc-card {
    padding: var(--sp-l) var(--sp-m);
    background: var(--cream);
    border: 1px solid var(--rule);
    position: relative;
    transition: border-color var(--dur-s), box-shadow var(--dur-s), transform var(--dur-m) var(--ease-expo);
    overflow: hidden;
}
.svc-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.5s var(--ease-expo);
}
.svc-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(42,32,20,0.07); transform: translateY(-4px); }
.svc-card:hover::after { width: 100%; }

.svc-icon {
    width: 44px; height: 44px; margin-bottom: var(--sp-m);
    color: var(--olive);
}
.svc-num {
    position: absolute; top: var(--sp-m); right: var(--sp-m);
    font-family: var(--font-disp);
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(42, 32, 20, 0.06);
    line-height: 1;
    pointer-events: none;
}
.svc-title {
    font-family: var(--font-disp);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--sp-s);
}
.svc-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 400;
}

/* ═══════════════════════════════ CONTACT ════════════════════════ */
.section-contact {
    padding: var(--sp-xl) 0;
    background: var(--contact-bg);
    color: var(--cream);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
    align-items: start;
}
.contact-left .overline { color: var(--gold-lt); }
.contact-heading {
    font-family: var(--font-disp);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: var(--sp-m);
}
.contact-heading em { font-style: italic; font-weight: 300; color: var(--rose); }
.contact-left .body-serif { color: rgba(244, 239, 228, 0.65); }
.c-email { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 4px; transition: color var(--dur-s); }
.c-email:hover { color: var(--cream); }
.contact-bot { margin-top: var(--sp-l); opacity: 0.45; width: 110px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: var(--sp-s); }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, 0.5);
    font-family: var(--font-body);
}
.form-row input,
.form-row select,
.form-row textarea {
    background: rgba(244, 239, 228, 0.06);
    border: 1px solid rgba(210, 201, 180, 0.2);
    color: var(--cream);
    padding: 0.85rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--dur-s), background var(--dur-s);
    border-radius: var(--r-sm);
    appearance: none;
    -webkit-appearance: none;
}
.form-row select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CFA94A' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row select option { background: var(--contact-bg); color: var(--cream); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(244, 239, 228, 0.28); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--gold);
    background: rgba(244, 239, 228, 0.09);
}
.form-row textarea { resize: vertical; min-height: 120px; }

.form-ok {
    font-family: var(--font-disp);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(244, 239, 228, 0.75);
    text-align: center;
    padding: var(--sp-s) 0;
    border-top: 1px solid rgba(210, 201, 180, 0.2);
    margin-top: var(--sp-xs);
    line-height: 1.7;
}

/* ═══════════════════════════════ FOOTER ═════════════════════════ */
.site-footer {
    background: var(--ink);
    padding: var(--sp-l) 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: var(--sp-m);
}
.footer-logo {
    font-family: var(--font-disp);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--cream);
    transition: color var(--dur-s);
}
.footer-logo span { color: var(--gold); }
.footer-logo:hover { color: var(--gold); }

.footer-copy {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(244, 239, 228, 0.35);
    font-family: var(--font-body);
}
.footer-socials { display: flex; gap: var(--sp-s); }
.fsoc {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(210, 201, 180, 0.15);
    color: rgba(244, 239, 228, 0.45);
    border-radius: 50%;
    transition: border-color var(--dur-s), color var(--dur-s), background var(--dur-s);
}
.fsoc:hover { border-color: var(--gold); color: var(--gold); background: rgba(181, 146, 46, 0.1); }

/* ═══════════════════════════════ ART DETAIL PANEL ══════════════ */
.art-panel {
    position: fixed; inset: 0; z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--dur-m) var(--ease-circ);
}
.art-panel.open {
    pointer-events: all;
    opacity: 1;
}
.art-panel-backdrop {
    position: absolute; inset: 0;
    background: rgba(42, 32, 20, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.art-panel-inner {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: clamp(320px, 60vw, 900px);
    background: var(--panel-bg);
    transform: translateX(100%);
    transition: transform 0.6s var(--ease-expo);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex; flex-direction: column;
}
.art-panel.open .art-panel-inner { transform: translateX(0); }

/* Close / nav */
.ap-close {
    position: absolute; top: 1.2rem; right: 1.4rem; z-index: 10;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; line-height: 1;
    color: var(--muted);
    border: 1px solid var(--rule);
    border-radius: 50%;
    transition: border-color var(--dur-s), color var(--dur-s);
}
.ap-close:hover { border-color: var(--gold); color: var(--gold); }

.ap-nav {
    position: absolute; top: 50%; z-index: 10;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--cream);
    background: rgba(42, 32, 20, 0.55);
    border-radius: 50%;
    transition: background var(--dur-s);
}
.ap-nav:hover { background: var(--gold); }
.ap-prev { left: -20px; }
.ap-next { right: -20px; }

/* Content */
.ap-content {
    display: flex; flex-direction: column;
    height: 100%;
}
.ap-img-wrap {
    width: 100%;
    height: clamp(360px, 65vh, 780px);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--parchment);
}
.ap-img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center;
    background: var(--parchment);
    transition: transform 0.8s var(--ease-expo);
}
.art-panel.open .ap-img { transform: scale(1); }

.ap-meta {
    padding: var(--sp-l) var(--sp-l) var(--sp-xl);
    flex: 1;
}
.ap-title {
    font-family: var(--font-disp);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: var(--sp-s);
    letter-spacing: -0.01em;
}
.ap-attrs {
    display: flex; gap: var(--sp-m); flex-wrap: wrap;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--font-body);
    margin-bottom: var(--sp-m);
}
.ap-desc {
    font-family: var(--font-disp);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: var(--sp-m);
}
.ap-divider { width: 200px; margin: var(--sp-m) 0; }

/* ═══════════════════════════════ SCROLL REVEAL ══════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* staggered children */
.services-grid .svc-card:nth-child(1) { transition-delay: 0s; }
.services-grid .svc-card:nth-child(2) { transition-delay: 0.1s; }
.services-grid .svc-card:nth-child(3) { transition-delay: 0.2s; }
.services-grid .svc-card:nth-child(4) { transition-delay: 0.3s; }

/* ═══════════════════════════════ RESPONSIVE ═════════════════════ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-grid { grid-template-columns: 1fr; }
    .intro-copy { max-width: 780px; justify-self: center; text-align: left; }
    .intro-rule { max-width: 360px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 860px) {
    .nav-left, .nav-right { display: none; }
    .burger { display: flex; }
    .monogram { grid-column: 2; }

    .botanical { width: clamp(100px, 14vw, 160px); }
    .bot-l { transform: translateX(-18%); }
    .bot-r { transform: translateX(18%) scaleX(-1); }

    .intro-copy { text-align: left; }
    .intro-text { font-size: 1.05rem; }

    .contact-inner { grid-template-columns: 1fr; gap: var(--sp-l); }
    .contact-heading { font-size: clamp(2rem, 7vw, 3rem); }

    .art-panel-inner { width: 100%; }
    .ap-prev { left: 0.5rem; }
    .ap-next { right: 0.5rem; }
}

@media (max-width: 600px) {
    :root {
        --sp-xl:  4rem;
        --sp-2xl: 6rem;
        --track-h: 340px;
    }
    .hero { padding-top: 90px; }
    .ht-large { font-size: clamp(4rem, 20vw, 6rem); }
    .hero-arc { width: 250px; }
    .hero-rule { width: 290px; }
    .ht-name { font-size: clamp(2.8rem, 17vw, 5rem); }
    .intro-title { font-size: clamp(2.4rem, 14vw, 3.4rem); }
    .services-grid { grid-template-columns: 1fr; gap: var(--sp-s); }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .ornament-svg { max-width: 90vw; }
    .ap-meta { padding: var(--sp-m); }
}
