/* =========================================================
   TOKENS
========================================================= */
:root{
  --ink:        #0a0908;
  --ink-soft:   #0f0d0a;
  --surface:    #16130e;
  --surface-2:  #1c1810;
  --surface-brd: rgba(232,201,118,.14);
  --surface-brd-soft: rgba(244,238,224,.08);

  --gold-1:  #f2d489;
  --gold-2:  #cf9f43;
  --gold-3:  #8a6a24;
  --gold-soft: rgba(242,212,137,.14);

  --parchment:      #f4eee1;
  --parchment-dim:  #b7ad98;
  --parchment-faint:#7d7666;

  --seal:       #833131;
  --seal-light: #a8483f;

  --shadow-1: 0 1px 2px rgba(0,0,0,.4);
  --shadow-2: 0 18px 50px -18px rgba(0,0,0,.75);
  --shadow-gold: 0 14px 34px -12px rgba(207,159,67,.45);

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
  --dur-1: .5s;
  --dur-2: .8s;

  --header-h: 84px;
}

/* =========================================================
   RESET / BASE
========================================================= */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--parchment);
  font-family:'Inter',system-ui,sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font:inherit; color:inherit; background:none; border:none; cursor:pointer; }
input,select,textarea{ font:inherit; color:inherit; }
::selection{ background:var(--gold-2); color:var(--ink); }

/* Custom scrollbar — quiet, on-brand */
html{ scrollbar-width:thin; scrollbar-color:var(--surface-2) var(--ink); }
::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background:var(--ink); }
::-webkit-scrollbar-thumb{ background:var(--surface-2); border-radius:10px; border:2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover{ background:var(--gold-3); }

/* Keyboard focus — accessible and on-brand, invisible for mouse users */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible{
  outline:2px solid var(--gold-2); outline-offset:3px; border-radius:4px;
}

/* Tactile press feedback (skipped for elements the magnetic-button script
   already moves via inline transform, which would otherwise fight this) */
.btn:not([data-magnetic]):active,
.faq-q:active, .filter-btn:active, .nav-toggle:active, .back-to-top:active{
  transform:scale(.96);
}

/* Cross-page navigation — quiet fade instead of an abrupt browser cut */
body{ transition:opacity .28s var(--ease); }
body.page-leaving{ opacity:0; }
@media (prefers-reduced-motion: reduce){ body{ transition:none; } }


/* Faint film-grain / vignette so pure black never feels flat */
body::before{
  content:"";
  position:fixed; inset:0;
  z-index:0;
  pointer-events:none;
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(232,201,118,.07), transparent 60%),
    radial-gradient(ellipse 90% 50% at 100% 100%, rgba(131,49,49,.08), transparent 60%);
}
/* Subtle tactile grain overlay — adds depth without ever reading as a bug (kept very faint) */
body::after{
  content:"";
  position:fixed; inset:0;
  z-index:1;
  pointer-events:none;
  opacity:.035;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1,h2,h3{ font-family:'Fraunces',serif; font-weight:600; letter-spacing:-.01em; color:var(--parchment); }

.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; position:relative; z-index:1; }

.eyebrow{
  display:flex; align-items:center; gap:9px;
  font-size:12.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color:var(--gold-1); margin:0 0 16px;
}
.eyebrow-dot{ width:6px; height:6px; border-radius:50%; background:var(--gold-2); box-shadow:0 0 10px var(--gold-2); flex:none; }

.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(32px,4vw,50px); line-height:1.12; }

section{ position:relative; z-index:1; padding:120px 0; }

/* =========================================================
   KINETIC TEXT REVEAL — signature motion used on every major
   headline. Each line rises out from behind a hidden mask,
   like type being set into a page. Pure CSS transform, no
   external assets, degrades to plain visible text if JS never
   adds .in-view (e.g. no-JS), so it can never look "broken".
========================================================= */
.kinetic-line{ display:block; overflow:hidden; padding-bottom:.08em; margin-bottom:-.08em; }
.kinetic-line > span{
  display:inline-block;
  transform:translateY(112%);
  transition:transform .9s var(--ease-soft);
}
.kinetic-line:nth-child(1) > span{ transition-delay:0ms; }
.kinetic-line:nth-child(2) > span{ transition-delay:90ms; }
.kinetic-line:nth-child(3) > span{ transition-delay:180ms; }
.kinetic-line:nth-child(4) > span{ transition-delay:270ms; }
.kinetic.in-view .kinetic-line > span{ transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  .kinetic-line > span{ transform:none; transition:none; }
}

/* =========================================================
   SECTION DIVIDER — a hairline that draws itself in, used
   sparingly between major sections for quiet rhythm.
========================================================= */
.divider{ position:relative; height:1px; }
.divider-line{
  position:absolute; top:0; left:50%; height:1px; width:0;
  background:linear-gradient(90deg,transparent,var(--gold-2),transparent);
  transform:translateX(-50%);
  transition:width 1.4s var(--ease-soft);
}
.divider.in-view .divider-line{ width:220px; }

/* =========================================================
   REVEAL-ON-SCROLL
========================================================= */
[data-reveal]{
  opacity:0;
  transform:translateY(10px);
  transition:opacity .6s var(--ease-soft), transform .6s var(--ease-soft);
  transition-delay:calc(var(--reveal-delay, 0) * 80ms);
}
[data-reveal].in-view{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* =========================================================
   PRELOADER
========================================================= */
.preloader{
  position:fixed; inset:0; z-index:999;
  background:var(--ink);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:18px;
  transition:opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-seal{ animation:preloaderPulse 1.8s var(--ease-soft) infinite; }
.preloader-seal .seal-ring{ fill:none; stroke:var(--gold-2); stroke-width:1.6; }
.preloader-seal .seal-mono{ fill:var(--gold-1); }
.preloader-label{ font-family:'Fraunces',serif; font-style:italic; font-size:14px; letter-spacing:.06em; color:var(--parchment-dim); }
@keyframes preloaderPulse{
  0%,100%{ transform:scale(1); opacity:.85; }
  50%{ transform:scale(1.06); opacity:1; }
}

/* =========================================================
   SCROLL PROGRESS
========================================================= */
.scroll-progress{
  position:fixed; top:0; left:0; height:2px; width:0%;
  background:linear-gradient(90deg,var(--gold-3),var(--gold-1));
  z-index:900; transition:width .12s linear;
  box-shadow:0 0 8px rgba(242,212,137,.5);
}

/* =========================================================
   AMBIENT BACKGROUND
========================================================= */
.ambient-canvas{
  position:fixed; inset:0; width:100%; height:100%;
  z-index:0; pointer-events:none; opacity:.55;
}
.cursor-glow{
  position:fixed; top:0; left:0; width:560px; height:560px;
  border-radius:50%; pointer-events:none; z-index:0;
  background:radial-gradient(circle, rgba(242,212,137,.10) 0%, rgba(242,212,137,.03) 45%, transparent 72%);
  transform:translate(-50%,-50%);
  will-change:transform; opacity:0; transition:opacity .5s;
}
@media (pointer:coarse){ .cursor-glow{ display:none; } }

/* =========================================================
   HEADER
========================================================= */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:500;
  height:var(--header-h);
  display:flex; align-items:center;
  transition:background .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header.scrolled{
  height:68px;
  background:rgba(10,9,8,.78);
  backdrop-filter:blur(16px) saturate(140%);
  -webkit-backdrop-filter:blur(16px) saturate(140%);
  border-bottom:1px solid var(--surface-brd);
  box-shadow:0 12px 30px -18px rgba(0,0,0,.7);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; width:100%; }

.brand{ display:flex; align-items:center; gap:10px; }
.brand-seal .seal-ring{ fill:none; stroke:var(--gold-2); stroke-width:2.2; }
.brand-seal .seal-mono{ fill:var(--gold-1); }
.brand-text{ font-family:'Fraunces',serif; font-size:18px; font-weight:600; letter-spacing:-.01em; }

.main-nav{ display:flex; align-items:center; gap:36px; }
.main-nav a{
  position:relative; font-size:14.5px; font-weight:500; color:var(--parchment-dim);
  transition:color .3s;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:1px;
  background:var(--gold-1); transform:scaleX(0); transform-origin:left;
  transition:transform .35s var(--ease);
}
.main-nav a:hover, .main-nav a.active{ color:var(--parchment); }
.main-nav a:hover::after, .main-nav a.active::after{ transform:scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:16px; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; width:34px; height:34px; align-items:center; justify-content:center; }
.nav-toggle span{ width:20px; height:1.6px; background:var(--parchment); transition:transform .35s var(--ease), opacity .35s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform:translateY(6.6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-6.6px) rotate(-45deg); }

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding:14px 26px; border-radius:100px;
  font-size:14.5px; font-weight:600; letter-spacing:.01em;
  white-space:nowrap; position:relative; overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.btn-sm{ padding:10px 18px; font-size:13.5px; }

.btn-primary{
  background:linear-gradient(135deg,var(--gold-1),var(--gold-2));
  color:#221a09;
  box-shadow:var(--shadow-gold);
}
.btn-primary::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.55) 50%,transparent 70%);
  transform:translateX(-120%);
  transition:transform .7s var(--ease);
}
.btn-primary:hover::before{ transform:translateX(120%); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 20px 40px -12px rgba(207,159,67,.55); }
.btn-primary:active{ transform:translateY(0); }

.btn-ghost{
  background:rgba(244,238,224,.04);
  border:1px solid var(--surface-brd-soft);
  color:var(--parchment);
  backdrop-filter:blur(6px);
}
.btn-ghost:hover{ border-color:var(--gold-2); color:var(--gold-1); transform:translateY(-2px); }

.btn-outline{
  background:transparent; border:1px solid var(--surface-brd);
  color:var(--gold-1);
}
.btn-outline:hover{ background:var(--gold-soft); border-color:var(--gold-2); transform:translateY(-2px); }

.btn-submit{ width:100%; margin-top:6px; position:relative; }
.btn-spinner{
  display:none; width:16px; height:16px; border-radius:50%;
  border:2px solid rgba(34,26,9,.35); border-top-color:#221a09;
  animation:spin .7s linear infinite;
}
.btn-submit.loading .btn-label{ opacity:.55; }
.btn-submit.loading .btn-spinner{ display:inline-block; }
.btn.loading .btn-label{ opacity:.55; }
.btn.loading .btn-spinner{ display:inline-block; }
@keyframes spin{ to{ transform:rotate(360deg); } }

/* =========================================================
   HERO
========================================================= */
.hero{ padding-top:calc(var(--header-h) + 64px); padding-bottom:90px; overflow:hidden; }
.hero-glow{
  position:absolute; top:-10%; right:-10%; width:640px; height:640px;
  background:radial-gradient(circle, rgba(242,212,137,.13), transparent 68%);
  filter:blur(10px); z-index:0; pointer-events:none;
}
.hero-flourish{
  position:absolute; left:-40px; bottom:20px; width:520px; max-width:60vw; z-index:0; pointer-events:none; opacity:.5;
}
.hero-flourish path{ fill:none; stroke:var(--gold-3); stroke-width:1; stroke-dasharray:900; stroke-dashoffset:900; animation:drawFlourish 2.6s var(--ease-soft) .5s forwards; }
@keyframes drawFlourish{ to{ stroke-dashoffset:0; } }

.hero-grid{
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:start;
}
.hero-title{
  font-size:clamp(44px,6.4vw,84px); line-height:1.01; margin-bottom:24px;
  color:var(--parchment);
}

.hero-text{ font-size:16.5px; color:var(--parchment-dim); max-width:480px; margin-bottom:26px; }

.pzu-link{
  display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600;
  color:var(--gold-1); padding-bottom:2px; border-bottom:1px solid var(--gold-3);
  margin-bottom:34px; transition:gap .3s var(--ease), border-color .3s;
}
.pzu-link:hover{ gap:12px; border-color:var(--gold-1); }
.pzu-link .link-arrow{ transition:transform .3s var(--ease); }
.pzu-link:hover .link-arrow{ transform:translateX(3px); }

.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; }

/* =========================================================
   FORM CARD
========================================================= */
.tilt-card{ transition:transform .45s var(--ease), box-shadow .45s var(--ease); }
.tilt-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-2); }

.form-card{
  position:relative;
  background:linear-gradient(165deg,var(--surface),var(--surface-2));
  border:1px solid var(--surface-brd);
  border-radius:var(--radius-lg);
  padding:40px 34px 30px;
  box-shadow:var(--shadow-2);
  overflow:hidden;
}
.form-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--gold-3),var(--gold-1) 50%,var(--gold-3));
}
.form-card-seal{ position:absolute; top:-18px; right:28px; background:var(--ink); border-radius:50%; padding:8px; border:1px solid var(--surface-brd); }
.form-card-seal .seal-ring{ fill:none; stroke:var(--gold-2); stroke-width:2.4; }
.form-card-seal .seal-mono{ fill:var(--gold-1); }

.form-card-title{ font-size:23px; margin-bottom:8px; }
.form-card-sub{ font-size:13.5px; color:var(--parchment-faint); margin-bottom:18px; }

.form-trust-row{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; }
.form-trust-row span{
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:600; letter-spacing:.02em; color:var(--parchment-dim);
  background:rgba(244,238,224,.04); border:1px solid var(--surface-brd-soft);
  border-radius:100px; padding:5px 10px;
}
.form-trust-row svg{ color:var(--gold-1); flex:none; }

.field{ position:relative; margin-bottom:20px; }
.field input, .field select, .field textarea{
  width:100%; background:rgba(244,238,224,.03);
  border:1px solid var(--surface-brd-soft); border-radius:var(--radius-sm);
  padding:17px 16px 9px; color:var(--parchment); font-size:14.5px;
  transition:border-color .3s, background .3s, box-shadow .3s;
  appearance:none; -webkit-appearance:none;
}
.field textarea{ resize:vertical; min-height:96px; padding-top:20px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none; border-color:var(--gold-2);
  background:rgba(244,238,224,.05);
  box-shadow:0 0 0 3px rgba(207,159,67,.14);
}
.field label{
  position:absolute; left:16px; top:16px; font-size:14.5px; color:var(--parchment-faint);
  pointer-events:none; transform-origin:left top;
  transition:transform .2s var(--ease), color .2s, top .2s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label{
  top:8px; transform:scale(.74); color:var(--gold-1);
}

/* Honeypot anti-spam field — visually and physically off-screen (not
   display:none, which some bots skip when filling forms), unreachable by
   Tab, hidden from screen readers. See js/main.js hp_topic handling. */
.hp-field{
  position:absolute; left:-9999px; top:-9999px;
  width:1px; height:1px; overflow:hidden;
}

/* Service <select> — a fully separate, static-label pattern (not the
   floating-label one used above). Selects always show a chosen value,
   so a floating label has nowhere safe to go without colliding with it;
   a plain caption above the box sidesteps that entirely. */
.field-select{ margin-bottom:20px; }
.field-static-label{
  display:block; margin-bottom:9px;
  font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--gold-1);
}
.select-shell{ position:relative; }
.select-shell select{
  width:100%; background:rgba(244,238,224,.03);
  border:1px solid var(--surface-brd-soft); border-radius:var(--radius-sm);
  padding:15px 40px 15px 16px; color:var(--parchment); font-size:14.5px; line-height:1.4;
  appearance:none; -webkit-appearance:none; cursor:pointer;
  transition:border-color .3s, background .3s, box-shadow .3s;
}
.select-shell select:focus{
  outline:none; border-color:var(--gold-2);
  background:rgba(244,238,224,.05);
  box-shadow:0 0 0 3px rgba(207,159,67,.14);
}
.select-shell .select-caret{ position:absolute; right:16px; top:50%; transform:translateY(-50%); color:var(--parchment-faint); pointer-events:none; }
.select-shell select option{ background:var(--surface); color:var(--parchment); }

.char-counter{ position:absolute; right:14px; bottom:-18px; font-size:11px; color:var(--parchment-faint); }

.form-disclaimer{ font-size:11.5px; line-height:1.6; color:var(--parchment-faint); margin-top:18px; }
.form-disclaimer a{ color:var(--gold-2); text-decoration:underline; text-underline-offset:2px; }

.form-success{
  display:none; flex-direction:column; align-items:center; text-align:center; gap:10px;
  padding:40px 10px; color:var(--gold-1);
}
.form-success svg{ color:var(--gold-1); }
.form-success p{ font-family:'Fraunces',serif; font-size:20px; color:var(--parchment); }
.form-success span{ font-size:13px; color:var(--parchment-faint); }
.form-card.sent form{ display:none; }
.form-card.sent .form-success{ display:flex; animation:fadeUp .6s var(--ease-soft); }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:none; } }

.scroll-cue{
  position:absolute; left:50%; bottom:18px; transform:translateX(-50%);
  width:26px; height:42px; border:1.4px solid var(--surface-brd); border-radius:20px;
  display:flex; justify-content:center; padding-top:7px;
}
.scroll-cue span{ width:3px; height:8px; border-radius:2px; background:var(--gold-1); animation:cueMove 1.8s ease-in-out infinite; }
@keyframes cueMove{ 0%{ opacity:1; transform:translateY(0); } 70%{ opacity:0; transform:translateY(12px); } 100%{ opacity:0; } }

/* =========================================================
   TAGLINE BAND
========================================================= */
.tagline-band{ padding:80px 0; text-align:center; }
.tagline-text{
  font-family:'Fraunces',serif; font-style:italic; font-weight:500;
  font-size:clamp(22px,3vw,34px); line-height:1.4;
  background:linear-gradient(100deg,var(--gold-2) 0%,var(--gold-1) 25%,var(--parchment) 50%,var(--gold-1) 75%,var(--gold-2) 100%);
  background-size:250% 100%;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  animation:shimmer 8s linear infinite;
}
@keyframes shimmer{ to{ background-position:-250% 0; } }

/* =========================================================
   SERVICES
========================================================= */
.services-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.service-card{
  position:relative;
  background:linear-gradient(165deg,var(--surface),var(--surface-2));
  border:1px solid var(--surface-brd);
  border-radius:var(--radius-lg);
  padding:30px 26px 28px;
  transition:border-color .35s, box-shadow .35s;
}
.service-card:hover{ border-color:var(--gold-3); box-shadow:var(--shadow-2); }
.service-tag{
  display:inline-block; font-size:10.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--parchment-faint); border:1px solid var(--surface-brd-soft); border-radius:100px;
  padding:4px 10px; margin-bottom:18px;
}
.service-tag-alt{ color:var(--seal-light); border-color:rgba(168,72,63,.35); }
.service-icon{
  width:54px; height:54px; border-radius:14px; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center;
  background:var(--gold-soft); color:var(--gold-1);
  transition:transform .4s var(--ease);
}
.service-card:hover .service-icon{ transform:rotate(-6deg) scale(1.06); }
.service-card h3{ font-size:18.5px; line-height:1.3; margin-bottom:10px; }
.service-card p{ font-size:13.8px; color:var(--parchment-dim); margin-bottom:22px; min-height:80px; }

/* =========================================================
   ABOUT
========================================================= */
.about{ background:linear-gradient(180deg,transparent,rgba(244,238,224,.02) 40%,transparent); }
.about-grid{ display:grid; grid-template-columns:1fr .8fr; gap:60px; align-items:center; }
.about-grid h2{ font-size:clamp(26px,3vw,36px); margin-bottom:18px; }
.about-text{ font-size:16px; color:var(--parchment-dim); max-width:480px; margin-bottom:28px; }
.about-list{ display:flex; flex-direction:column; gap:13px; }
.about-list li{ display:flex; align-items:center; gap:11px; font-size:14.5px; color:var(--parchment); }
.about-list svg{ flex:none; color:var(--gold-1); background:var(--gold-soft); border-radius:50%; padding:4px; width:24px; height:24px; }

.about-photo-wrap{ max-width:360px; margin:0 auto; position:relative; }
.about-photo-wrap::before{
  content:""; position:absolute; inset:18px -18px -18px 18px; z-index:0;
  border:1px solid var(--gold-3); border-radius:var(--radius-lg);
}
.about-photo-frame{
  position:relative; z-index:1; border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--surface-brd); box-shadow:var(--shadow-2);
  aspect-ratio:4/5; background:var(--surface);
}
.about-photo-frame img{
  width:100%; height:100%; object-fit:cover; object-position:center 15%;
  filter:grayscale(35%) contrast(1.06) brightness(.9) saturate(1.05);
  clip-path:inset(0 0 0 100%);
  transition:filter .5s var(--ease), transform .6s var(--ease), clip-path 1.1s var(--ease-soft);
}
.about-photo-frame.in-view img{ clip-path:inset(0 0 0 0%); }
.about-photo-frame:hover img{ filter:grayscale(12%) contrast(1.06) brightness(.96) saturate(1.08); transform:scale(1.03); }
@media (prefers-reduced-motion: reduce){
  .about-photo-frame img{ clip-path:inset(0 0 0 0%); transition:filter .5s var(--ease), transform .6s var(--ease); }
}
.about-photo-frame::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(10,9,8,0) 55%, rgba(10,9,8,.88) 100%),
    linear-gradient(15deg, rgba(10,9,8,.5), transparent 45%),
    radial-gradient(circle at 30% 20%, rgba(242,212,137,.10), transparent 55%);
}
.about-photo-caption{
  position:absolute; left:20px; bottom:18px; z-index:1;
  font-family:'Fraunces',serif; font-size:16.5px; color:var(--parchment);
  display:flex; flex-direction:column;
}
.about-photo-caption em{ font-style:italic; font-weight:400; font-size:12.5px; color:var(--gold-1); margin-top:2px; }

.seal-ring{ fill:none; }
.seal-mono{ font-family:'Fraunces',serif; font-weight:600; font-size:32px; letter-spacing:-1px; }

/* =========================================================
   TEAM
========================================================= */
.team-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; }
.team-card{
  background:linear-gradient(165deg,var(--surface),var(--surface-2));
  border:1px solid var(--surface-brd); border-radius:var(--radius-lg);
  padding:30px 20px; text-align:center;
  transition:border-color .35s, box-shadow .35s, transform .35s var(--ease);
}
.team-card:hover{ border-color:var(--gold-3); box-shadow:var(--shadow-2); transform:translateY(-4px); }
.team-photo{
  width:88px; height:88px; border-radius:50%; margin:0 auto 18px;
  overflow:hidden; border:1.5px solid var(--gold-2); box-shadow:0 0 0 5px rgba(242,212,137,.07);
}
.team-photo img{ width:100%; height:100%; object-fit:cover; filter:grayscale(25%) contrast(1.05); }
.team-card h3{ font-size:15.5px; margin-bottom:4px; line-height:1.3; }
.team-role{ font-size:12px; color:var(--parchment-faint); margin-bottom:16px; }
.team-phone{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12.5px; font-weight:600; color:var(--gold-1);
  border:1px solid var(--surface-brd-soft); border-radius:100px; padding:7px 13px;
  transition:border-color .3s, transform .3s var(--ease);
}
.team-phone:hover{ border-color:var(--gold-2); transform:translateY(-2px); }
.team-phone svg{ flex:none; }

.team-contact{ display:flex; align-items:center; justify-content:center; gap:7px; flex-wrap:wrap; }
.team-email{
  width:31px; height:31px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-1); border:1px solid var(--surface-brd-soft);
  transition:border-color .3s, transform .3s var(--ease);
}
.team-email:hover{ border-color:var(--gold-2); transform:translateY(-2px); }

.team-card-empty{ border-style:dashed; }
.team-card-empty:hover{ transform:none; box-shadow:none; }
.team-photo-empty{
  display:flex; align-items:center; justify-content:center;
  border-style:dashed; color:var(--parchment-faint); font-size:30px; font-weight:300;
}
.team-card-empty h3{ color:var(--parchment-faint); font-weight:500; font-size:15.5px; }
.team-card-empty .team-role{ margin-bottom:0; }

/* =========================================================
   FAQ
========================================================= */
.faq-list{ max-width:760px; }
.faq-item{ border-bottom:1px solid var(--surface-brd-soft); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:22px 4px; text-align:left; font-size:16px; font-weight:500; color:var(--parchment);
  transition:color .3s;
}
.faq-q:hover{ color:var(--gold-1); }
.faq-icon{ flex:none; color:var(--gold-1); transition:transform .4s var(--ease); }
.faq-item.open .faq-icon{ transform:rotate(135deg); }
.faq-a{
  display:grid; grid-template-rows:0fr; overflow:hidden;
  transition:grid-template-rows .45s var(--ease);
}
.faq-a > p{ overflow:hidden; padding:0 4px 0; font-size:14.5px; color:var(--parchment-dim); max-width:640px; }
.faq-item.open .faq-a{ grid-template-rows:1fr; }
.faq-item.open .faq-a > p{ padding-bottom:22px; }

/* =========================================================
   CONTACT
========================================================= */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.contact-card{
  background:linear-gradient(165deg,var(--surface),var(--surface-2));
  border:1px solid var(--surface-brd); border-radius:var(--radius-lg);
  padding:32px 30px;
}
.contact-card h3{ font-size:17px; margin-bottom:20px; color:var(--gold-1); }
.contact-lines{ display:flex; flex-direction:column; gap:15px; }
.contact-lines li{ display:flex; align-items:center; gap:12px; font-size:14.5px; color:var(--parchment-dim); }
.contact-lines svg{ flex:none; color:var(--gold-2); }
.contact-lines a{ transition:color .3s; }
.contact-lines a:hover{ color:var(--gold-1); }
.contact-lines-plain li{ padding-left:29px; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ border-top:1px solid var(--surface-brd-soft); padding:44px 0; position:relative; z-index:1; }
.footer-inner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.brand-footer .brand-text{ font-size:16px; }
.footer-nav{ display:flex; gap:26px; }
.footer-nav a{ font-size:13.5px; color:var(--parchment-dim); transition:color .3s; }
.footer-nav a:hover{ color:var(--gold-1); }
.footer-meta{ display:flex; flex-direction:column; align-items:flex-end; gap:6px; }
.footer-copy{ font-size:12.5px; color:var(--parchment-faint); }
.footer-legal{ display:flex; align-items:center; gap:8px; flex-wrap:wrap; justify-content:flex-end; }
.footer-legal a{ font-size:11.5px; color:var(--parchment-faint); transition:color .3s; }
.footer-legal a:hover{ color:var(--gold-1); }
.footer-legal span{ font-size:11px; color:var(--parchment-faint); opacity:.5; }

/* =========================================================
   BACK TO TOP
========================================================= */
.back-to-top{
  position:fixed; right:26px; bottom:26px; z-index:400;
  width:46px; height:46px; display:flex; align-items:center; justify-content:center;
  color:var(--gold-1); opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .4s, visibility .4s, transform .4s;
}
.back-to-top.visible{ opacity:1; visibility:visible; transform:none; }
.back-to-top svg:last-child{ position:absolute; }
.ring-progress{ position:absolute; inset:0; transform:rotate(-90deg); }
.ring-bg{ fill:rgba(22,19,14,.85); stroke:var(--surface-brd); stroke-width:2; }
.ring-fg{ fill:none; stroke:var(--gold-1); stroke-width:2; stroke-linecap:round; stroke-dasharray:125.6; stroke-dashoffset:125.6; transition:stroke-dashoffset .1s linear; }

/* =========================================================
   TOAST
========================================================= */
.toast{
  position:fixed; left:50%; bottom:30px; transform:translate(-50%,20px);
  background:var(--surface-2); border:1px solid var(--surface-brd); color:var(--parchment);
  padding:13px 22px; border-radius:100px; font-size:13.5px; z-index:950;
  opacity:0; pointer-events:none; box-shadow:var(--shadow-2);
  transition:opacity .4s var(--ease), transform .4s var(--ease);
}
.toast.show{ opacity:1; transform:translate(-50%,0); }

/* =========================================================
   SECTION RAIL — quiet desktop-only scrollspy dots
========================================================= */
.section-rail{
  position:fixed; right:26px; top:50%; transform:translateY(-50%); z-index:300;
  display:flex; flex-direction:column; align-items:center; gap:14px;
}
.section-rail a{
  width:7px; height:7px; border-radius:50%; background:var(--surface-brd);
  transition:background .35s, transform .35s var(--ease), box-shadow .35s;
}
.section-rail a:hover{ background:var(--parchment-dim); }
.section-rail a.active{
  background:var(--gold-1); transform:scale(1.6);
  box-shadow:0 0 12px rgba(242,212,137,.55);
}
@media (max-width:1180px){ .section-rail{ display:none; } }
@media (max-width:1180px){ .team-grid{ grid-template-columns:repeat(3,1fr); } }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:980px){
  .services-grid{ grid-template-columns:repeat(2,1fr); }
  .team-grid{ grid-template-columns:repeat(2,1fr); }
  .hero-grid{ grid-template-columns:1fr; }
  .hero-form-wrap{ max-width:520px; }
  .about-grid{ grid-template-columns:1fr; }
  .about-photo-wrap{ order:-1; margin:0 auto 8px; }
}
@media (max-width:860px){
  .main-nav{
    position:fixed; top:var(--header-h); left:0; right:0;
    flex-direction:column; align-items:flex-start; gap:0;
    background:rgba(10,9,8,.97); backdrop-filter:blur(16px);
    border-bottom:1px solid var(--surface-brd);
    max-height:0; overflow:hidden; transition:max-height .45s var(--ease);
  }
  .main-nav.open{ max-height:320px; }
  .main-nav a{ padding:16px 32px; width:100%; border-bottom:1px solid var(--surface-brd-soft); }
  .nav-toggle{ display:flex; }
  .header-actions .btn-ghost span{ display:none; }
  .header-actions .btn-ghost{ padding:11px; }
}
@media (max-width:720px){
  .wrap{ padding:0 22px; }
  section{ padding:84px 0; }
  .services-grid{ grid-template-columns:1fr; }
  .team-grid{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }
  .hero{ padding-top:calc(var(--header-h) + 36px); }
  .form-card{ padding:30px 22px 26px; }
  .footer-inner{ flex-direction:column; align-items:flex-start; text-align:left; }
  .footer-meta{ align-items:flex-start; }
  .footer-legal{ justify-content:flex-start; }
}
