:root {
  --gold: #CBA153;
  --gold-soft: #E6D9B8;
  --gold-deep: #8B7A4F;
  --ink: #0A0A0A;
  --ink2: #111110;
  --bone: #F5F1E8;
}

* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; background: var(--ink); }

body {
  font-family: 'Inter', sans-serif;
  color: #E5DFD1;
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.55;
}

/* mobile typography scale */
@media (max-width: 640px) {
  body { font-size: 16px; }
  h1, h2, h3 { letter-spacing: -0.03em; }
  section { padding-top: clamp(3.5rem, 10vw, 6rem); padding-bottom: clamp(3.5rem, 10vw, 6rem); }
}

::selection { background: var(--gold); color: var(--ink); }

.font-display { font-family: 'Space Grotesk', sans-serif; }
.font-mono    { font-family: 'JetBrains Mono', monospace; }

.tracking-tightest { letter-spacing: -0.04em; }
.tracking-wider2   { letter-spacing: 0.18em; }
.tracking-widest2  { letter-spacing: 0.32em; }

/* grain overlay */
.grain::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.65 0 0 0 0 0.33 0 0 0 0.38 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .06;
  mix-blend-mode: overlay;
}
@media (max-width: 899px) { .grain::after { display: none; } }

/* ——— INTRO: GOLDEN SCAN ——— */
#intro {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 200;
  overflow: hidden;
  pointer-events: all;
}
#intro .scan {
  position: absolute;
  top: -10vh;
  left: 50%;
  width: 1px;
  height: 120vh;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  background: linear-gradient(to bottom, transparent, var(--gold) 15%, var(--gold-soft) 50%, var(--gold) 85%, transparent);
  box-shadow:
    0 0 18px rgba(203,161,83,.9),
    0 0 40px rgba(203,161,83,.5),
    0 0 80px rgba(203,161,83,.3);
  animation: scanDown 1.3s cubic-bezier(.7,0,.2,1) .15s forwards;
}
#intro .scan::before, #intro .scan::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px var(--gold), 0 0 24px var(--gold-soft);
}
#intro .scan::before { top: 0; }
#intro .scan::after  { bottom: 0; }

#intro .flash {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(203,161,83,.22), transparent 55%);
  opacity: 0;
  animation: introFlash 1.3s ease .8s forwards;
}

#intro .mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: markIn 1s cubic-bezier(.2,.7,.2,1) 1.35s forwards;
}
#intro .mark .logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 12vw, 8.5rem);
  letter-spacing: -0.05em;
  color: #FAF5E8;
  line-height: .9;
  text-shadow: 0 0 30px rgba(203,161,83,.25);
}
#intro .mark .logo span { color: var(--gold); }
#intro .mark .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  letter-spacing: .32em;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-top: 1.25rem;
}

#intro.done {
  animation: introOut 1.4s cubic-bezier(.6,0,.25,1) forwards;
  pointer-events: none;
}
#intro.done .scan  { animation: scanOut .7s ease-out forwards; }
#intro.done .mark  { animation: markOut 1.1s cubic-bezier(.4,0,.2,1) forwards; }

@keyframes scanDown {
  0%   { transform: translateX(-50%) scaleY(0); opacity: 1; }
  55%  { transform: translateX(-50%) scaleY(1); opacity: 1; }
  100% { transform: translateX(-50%) scaleY(1); opacity: 1; }
}
@keyframes introFlash { 0%{opacity:0} 40%{opacity:1} 100%{opacity:0} }
@keyframes markIn {
  0%   { opacity: 0; transform: translate(-50%, -46%); filter: blur(6px); }
  100% { opacity: 1; transform: translate(-50%, -50%); filter: blur(0); }
}
@keyframes markOut {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -52%) scale(1.06); }
}
@keyframes scanOut {
  0%   { opacity: 1; transform: translateX(-50%) scaleY(1); }
  100% { opacity: 0; transform: translateX(-50%) scaleY(1.4); }
}
@keyframes introOut {
  0%   { opacity: 1; clip-path: inset(0 0 0 0); }
  100% { opacity: 0; clip-path: inset(50% 0 50% 0); visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  #intro { display: none; }
}

/* ——— CUSTOM CURSOR (dot only) ——— */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 210;
  border-radius: 50%;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(203,161,83,.6);
  transition: width .25s ease, height .25s ease, background .25s ease, box-shadow .25s ease;
  will-change: transform;
}
.cursor-dot.hover {
  width: 16px; height: 16px;
  background: var(--gold-soft);
  box-shadow: 0 0 24px rgba(203,161,83,.9);
}
body.intro-playing .cursor-dot { opacity: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot { display: none; }
  html, body { cursor: auto; }
}
@media (hover: hover) and (pointer: fine) {
  html, body, a, button, [data-hover] { cursor: none !important; }
}

/* ——— SCROLL REVEAL ——— */
.r { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.r.in { opacity: 1; transform: translateY(0); }
.r.d1 { transition-delay: .08s; }
.r.d2 { transition-delay: .16s; }
.r.d3 { transition-delay: .24s; }
.r.d4 { transition-delay: .32s; }
.r.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; transition: none; }
}

/* ——— HERO BG ——— */
.hero-photo {
  filter: grayscale(.2) contrast(1.05) brightness(.55);
  mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 18%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, #000 18%, #000 100%);
}

/* Shimmer title */
.shimmer {
  background: linear-gradient(100deg, #FAF5E8 0%, #FAF5E8 35%, var(--gold) 50%, #FAF5E8 65%, #FAF5E8 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerMove 7s linear infinite;
}
@keyframes shimmerMove {
  0%   { background-position: 200% 50%; }
  100% { background-position: -200% 50%; }
}

/* pulsing dot */
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(203,161,83,.7);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(203,161,83,.7); }
  70%  { box-shadow: 0 0 0 14px rgba(203,161,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(203,161,83,0); }
}

/* ——— BENTO CARD ——— */
.bento {
  position: relative;
  background: #111110;
  border: 1px solid rgba(255,255,255,.04);
  transition: border-color .4s ease, transform .6s cubic-bezier(.2,.7,.2,1), background .4s ease;
  overflow: hidden;
}
.bento::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(203,161,83,.08), transparent 45%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.bento::after {
  content: "";
  position: absolute; inset: -1px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .45s ease, box-shadow .45s ease;
}
.bento:hover { border-color: rgba(203,161,83,.35); transform: translateY(-2px); }
.bento:hover::before { opacity: 1; }
.bento:hover::after  {
  border-color: rgba(203,161,83,.85);
  box-shadow: 0 0 40px rgba(203,161,83,.15), inset 0 0 40px rgba(203,161,83,.04);
}
.bento-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .22;
  filter: grayscale(.5) contrast(1.1) brightness(.55);
  transition: opacity .55s ease, filter .55s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.bento:hover .bento-bg {
  opacity: .42;
  filter: grayscale(.2) contrast(1.15) brightness(.65);
  transform: scale(1.04);
}
.bento-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.2) 0%, rgba(10,10,10,.85) 70%, #0A0A0A 100%);
  pointer-events: none;
}
.bento > * { position: relative; z-index: 2; }
.bento > .bento-bg, .bento > .bento-gradient { z-index: 1; }
.bento .arr { transform: translate(0,0); transition: transform .45s cubic-bezier(.2,.7,.2,1), color .3s; }
.bento:hover .arr { transform: translate(6px,-6px); color: var(--gold); }

/* ——— GALLERY ——— */
.gal-card {
  position: relative;
  overflow: hidden;
  background: #111110;
  border: 1px solid rgba(255,255,255,.04);
  transition: border-color .5s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}
.gal-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.05) brightness(.82);
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s ease;
}
.gal-card:hover { border-color: rgba(203,161,83,.45); }
.gal-card:hover img {
  transform: scale(1.09);
  filter: grayscale(0) contrast(1.1) brightness(.95);
}
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,.92) 100%);
  pointer-events: none;
}
.gal-meta {
  position: absolute;
  left: 1.25rem; right: 1.25rem; bottom: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}
@media (min-width: 768px) {
  .gal-meta { left: 1.75rem; right: 1.75rem; bottom: 1.75rem; }
}
.gal-meta .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(10,10,10,.7);
  border: 1px solid rgba(203,161,83,.35);
  padding: .4rem .7rem;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.gal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #F5F1E8;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  line-height: 1.05;
}
.gal-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .88rem;
  color: rgba(229,223,209,.88);
  margin-top: .35rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.gal-idx {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem;
  letter-spacing: .26em;
  color: rgba(245,241,232,.6);
  background: rgba(10,10,10,.5);
  backdrop-filter: blur(6px);
  padding: .35rem .55rem;
  border: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) { .gal-idx { top: 1.5rem; left: 1.5rem; } }

/* gallery filters */
.gal-filter {
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: .7rem 1.1rem;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(245,241,232,.7);
  background: transparent;
  cursor: pointer;
  transition: border-color .3s, color .3s, background .3s;
}
.gal-filter:hover { color: var(--bone); border-color: rgba(255,255,255,.25); }
.gal-filter.active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}
.gal-card.hide { display: none; }

/* ——— CTA PULSING BUTTON ——— */
.cta-pulse {
  position: relative;
  background: linear-gradient(135deg, var(--gold) 0%, #B58B3F 55%, var(--gold) 100%);
  color: #0A0A0A;
  box-shadow:
    0 0 0 0 rgba(203,161,83,.55),
    0 30px 60px -20px rgba(203,161,83,.4),
    inset 0 1px 0 rgba(255,255,255,.35);
  animation: ctaPulse 3s ease-in-out infinite;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.cta-pulse:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 0 0 6px rgba(203,161,83,.12),
    0 40px 80px -20px rgba(203,161,83,.55),
    inset 0 1px 0 rgba(255,255,255,.35);
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(203,161,83,.5), 0 30px 60px -20px rgba(203,161,83,.4), inset 0 1px 0 rgba(255,255,255,.35); }
  50%      { box-shadow: 0 0 0 22px rgba(203,161,83,0),  0 30px 60px -20px rgba(203,161,83,.55), inset 0 1px 0 rgba(255,255,255,.35); }
}

/* marquee */
.marquee { display: flex; gap: 3.5rem; animation: marquee 38s linear infinite; white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* links underline */
.ulink { position: relative; display: inline-block; }
.ulink::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  height: 1px; width: 100%;
  background: currentColor;
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform .5s cubic-bezier(.7,0,.2,1);
}
.ulink:hover::after { transform-origin: left center; transform: scaleX(1); }

/* active nav link */
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform-origin: left center; transform: scaleX(1); background: var(--gold); }

/* vert rule */
.vrule { width: 1px; background: linear-gradient(to bottom, transparent, rgba(203,161,83,.3), transparent); }

/* numeric counter */
.num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.gold-line { height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }

/* focus rings */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [role="slider"]:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

/* skip-to-content link */
.skip-link {
  position: fixed;
  top: -100px; left: 1rem;
  z-index: 300;
  padding: .75rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  transition: top .25s cubic-bezier(.2,.7,.2,1);
}
.skip-link:focus {
  top: 1rem;
  outline: none;
}

/* cookie consent banner */
#cookieBanner {
  position: fixed;
  left: 1rem; right: 1rem;
  bottom: 1rem;
  z-index: 150;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(203,161,83,.3);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .6s ease;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(203,161,83,.1);
}
#cookieBanner.show { transform: translateY(0); opacity: 1; }
#cookieBanner p {
  font-size: .9rem;
  color: var(--bone);
  line-height: 1.55;
  flex: 1;
  min-width: 260px;
  max-width: 720px;
}
#cookieBanner a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
#cookieBanner .actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
#cookieBanner button {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: .8rem 1.25rem;
  border: 1px solid;
  cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
#cookieBanner .btn-accept {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
#cookieBanner .btn-accept:hover { background: #D9B266; border-color: #D9B266; }
#cookieBanner .btn-decline {
  background: transparent;
  color: var(--bone);
  border-color: rgba(255,255,255,.25);
}
#cookieBanner .btn-decline:hover { border-color: var(--bone); }

@media (max-width: 640px) {
  #cookieBanner { flex-direction: column; align-items: stretch; }
  #cookieBanner .actions { justify-content: stretch; }
  #cookieBanner .actions button { flex: 1; }
}

/* sticky nav styling on scroll */
#nav.scrolled {
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ——— MOBILE MENU ——— */
.mobile-menu-btn {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.mobile-menu-btn span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1px;
  background: var(--bone);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.mobile-menu-btn span:nth-child(1) { top: 14px; }
.mobile-menu-btn span:nth-child(2) { top: 20px; }
.mobile-menu-btn span:nth-child(3) { top: 26px; }
body.menu-open .mobile-menu-btn span:nth-child(1) { top: 20px; transform: rotate(45deg); background: var(--gold); }
body.menu-open .mobile-menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .mobile-menu-btn span:nth-child(3) { top: 20px; transform: rotate(-45deg); background: var(--gold); }

#mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(20px);
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s cubic-bezier(.2,.7,.2,1), visibility .4s;
}
body.menu-open #mobileMenu { opacity: 1; visibility: visible; }

#mobileMenu a.mm-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--bone);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .3s ease, padding .3s ease;
  transform: translateX(-20px);
  opacity: 0;
  transition-property: color, padding, transform, opacity;
  transition-duration: .3s, .3s, .5s, .5s;
  transition-timing-function: ease, ease, cubic-bezier(.2,.7,.2,1), cubic-bezier(.2,.7,.2,1);
}
body.menu-open #mobileMenu a.mm-link { transform: translateX(0); opacity: 1; }
body.menu-open #mobileMenu a.mm-link:nth-child(1) { transition-delay: 0.1s; }
body.menu-open #mobileMenu a.mm-link:nth-child(2) { transition-delay: 0.16s; }
body.menu-open #mobileMenu a.mm-link:nth-child(3) { transition-delay: 0.22s; }
body.menu-open #mobileMenu a.mm-link:nth-child(4) { transition-delay: 0.28s; }

#mobileMenu a.mm-link:hover, #mobileMenu a.mm-link.active { color: var(--gold); padding-left: 1rem; }
#mobileMenu a.mm-link .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .65rem;
  letter-spacing: .26em;
  color: rgba(245,241,232,.4);
}

#mobileMenu .mm-foot {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#mobileMenu .mm-foot a {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
#mobileMenu .mm-foot address {
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,241,232,.5);
  font-style: normal;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .mobile-menu-btn { display: block; }
  body.menu-open { overflow: hidden; }
  body.menu-open .cursor-dot { opacity: 0; }
}

/* ——— FORM (contact page) ——— */
.field {
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: border-color .4s ease;
}
.field:focus-within { border-color: var(--gold); }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(245,241,232,.65);
  margin-bottom: .5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  padding: .35rem 0 .9rem;
  color: var(--bone);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,241,232,.2); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1 L5 5 L9 1' stroke='%23CBA153' stroke-width='1' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .25rem center; padding-right: 1.5rem; }
.field select option { background: var(--ink2); color: var(--bone); }

/* ——— FAQ accordion ——— */
.faq details {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem 0;
  transition: border-color .3s;
}
.faq details[open] { border-color: rgba(203,161,83,.4); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
  color: var(--bone);
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq details[open] summary { color: var(--gold); }
.faq summary .plus {
  position: relative;
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: .25rem;
}
.faq summary .plus::before, .faq summary .plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.faq summary .plus::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq summary .plus::after  { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.faq details[open] summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq .a {
  margin-top: 1.1rem;
  color: rgba(229,223,209,.85);
  font-weight: 400;
  line-height: 1.7;
  max-width: 65ch;
  font-size: 1.02rem;
}

/* ——— PRICING TABLE ——— */
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
  align-items: baseline;
}
.price-row:last-child { border-bottom: 0; }
.price-row .from {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  color: var(--gold);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-row .from small { color: rgba(203,161,83,.55); font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; margin-right: .35rem; }
.price-row .name { color: var(--bone); font-weight: 400; }
.price-row .sub { display: block; font-size: .85rem; color: rgba(212,206,193,.78); margin-top: .25rem; font-weight: 300; }
