/* ==========================================================================
   LuxeVisuals — Design System
   Palette: void black / rich ink / antique gold / bright gold / champagne
   Type: Cormorant Garamond (display), Manrope (body), Space Mono (data)
   Signature: the "gold seam" — a diagonal shimmering line that echoes the
   brand mark's cut corners, used as a recurring structural device.
   ========================================================================== */

:root {
  --void-solid: #08070a;
  --ink: #121014;
  --ink-2: #17141a;
  --line: rgba(212, 175, 55, 0.18);
  --line-bright: rgba(212, 175, 55, 0.5);
  --gold: #cda44e;
  --gold-bright: #f3d17e;
  --gold-deep: #8a6a26;
  --champagne: #ece3cf;
  --champagne-dim: rgba(236, 227, 207, 0.62);
  --champagne-faint: rgba(236, 227, 207, 0.38);
  --danger: #c9704f;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --sidebar-w: 264px;
  --edge: 22px;
  --radius: 2px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-shim: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void-solid);
  color: var(--champagne);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(205, 164, 78, 0.08), transparent 60%),
    radial-gradient(ellipse 700px 500px at 110% 20%, rgba(205, 164, 78, 0.06), transparent 55%),
    radial-gradient(ellipse 800px 600px at 50% 120%, rgba(205, 164, 78, 0.05), transparent 60%);
}

img, video { max-width: 100%; display: block; }

a { color: var(--gold-bright); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--champagne);
  margin: 0 0 0.4em;
  letter-spacing: 0.01em;
}

::selection { background: var(--gold-deep); color: var(--void-solid); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--void-solid); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--gold-deep), var(--gold)); border-radius: 6px; }

/* ==========================================================================
   Utility
   ========================================================================== */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.gold-text {
  background: linear-gradient(100deg, var(--gold-deep) 0%, var(--gold-bright) 45%, var(--gold) 70%, var(--gold-bright) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer-sweep 7s var(--ease-shim) infinite;
}

@keyframes shimmer-sweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .gold-text { animation: none; background-position: 40% 50%; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Cut-corner card — the recurring geometric signature echoing the brand mark */
.cut-card {
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  clip-path: polygon(
    0 var(--edge), var(--edge) 0,
    calc(100% - var(--edge)) 0, 100% var(--edge),
    100% calc(100% - var(--edge)), calc(100% - var(--edge)) 100%,
    var(--edge) 100%, 0 calc(100% - var(--edge))
  );
  border: 1px solid var(--line);
  transition: border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.cut-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -20px rgba(205, 164, 78, 0.35);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--void-solid);
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-bright));
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), filter 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(212, 175, 55, 0.55); filter: brightness(1.08); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  color: var(--gold-bright);
  background: transparent;
  border: 1px solid var(--line-bright);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.08); box-shadow: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* ==========================================================================
   Layout shell — fixed atelier sidebar + content
   ========================================================================== */

.shell { position: relative; z-index: 1; display: flex; min-height: 100vh; }

.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sidebar-w);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(14px);
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 46px;
  text-decoration: none;
}
.brand-mark {
  width: 46px; height: 46px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.35));
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--champagne);
  line-height: 1.15;
}
.brand-name span { display: block; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.nav-link {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne-dim);
  padding: 13px 4px 13px 20px;
  border-left: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s, padding-left 0.25s;
}
.nav-link:hover { color: var(--gold-bright); padding-left: 26px; }
.nav-link.active { color: var(--gold-bright); border-left-color: var(--gold); }
.nav-link .num { color: var(--gold-deep); margin-right: 10px; }
.nav-link.active .num { color: var(--gold); }

.nav-sub {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0 0 4px 20px;
  padding-left: 13px;
  border-left: 1px solid var(--line);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav-sub.open { max-height: 160px; opacity: 1; }
.nav-sub a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne-faint);
  padding: 8px 4px;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-sub a:hover { color: var(--gold-bright); padding-left: 6px; }
.nav-sub a.active { color: var(--gold-bright); }

.sidebar-foot { padding-top: 24px; border-top: 1px solid var(--line); font-family: var(--font-mono); font-size: 10px; color: var(--champagne-faint); letter-spacing: 0.08em; }
.sidebar-foot a { color: var(--champagne-faint); transition: color 0.25s; }
.sidebar-foot a:hover { color: var(--gold-bright); }

.content { margin-left: var(--sidebar-w); flex: 1; width: calc(100% - var(--sidebar-w)); }

/* Mobile top bar */
.topbar { display: none; }

/* ==========================================================================
   Page hero
   ========================================================================== */

.page-hero {
  padding: 90px 0 60px;
  position: relative;
}
.page-hero h1 { font-size: clamp(34px, 4.4vw, 56px); margin: 14px 0 16px; }
.page-hero p.lede { max-width: 620px; color: var(--champagne-dim); font-size: 17px; }

.seam {
  position: relative;
  height: 1px;
  margin: 8px 0 0;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  overflow: hidden;
}
.seam::after {
  content: "";
  position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: seam-run 3.4s ease-in-out infinite;
}
@keyframes seam-run { 0% { left: -40%; } 100% { left: 120%; } }

section { padding: 0 0 100px; position: relative; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   HOME
   ========================================================================== */

.hero-home {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0 80px;
}
.hero-home h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.05; }
.hero-home .stat-row { display: flex; gap: 34px; margin-top: 34px; }
.stat b { display: block; font-family: var(--font-display); font-size: 34px; color: var(--gold-bright); }
.stat span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--champagne-faint); }

.hero-portrait { position: relative; justify-self: center; }
.portrait-frame {
  width: 300px; height: 300px;
  padding: 10px;
  position: relative;
  clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
  background: linear-gradient(150deg, var(--gold-deep), var(--ink), var(--gold));
  animation: portrait-glow 5s ease-in-out infinite;
}
@keyframes portrait-glow {
  0%, 100% { box-shadow: 0 0 40px -10px rgba(212, 175, 55, 0.25); }
  50% { box-shadow: 0 0 70px -6px rgba(212, 175, 55, 0.5); }
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  background: var(--void-solid);
}
.portrait-ring {
  position: absolute; inset: -18px;
  border: 1px solid var(--line);
  clip-path: polygon(46px 0, 100% 0, 100% calc(100% - 46px), calc(100% - 46px) 100%, 0 100%, 0 46px);
  animation: ring-rotate 14s linear infinite;
}
@keyframes ring-rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.section-head { max-width: 620px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 40px); }

.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cap-grid-single { grid-template-columns: minmax(0, 360px); justify-content: center; }
.cap-card { padding: 32px 26px; }
.cap-card .icon { width: 40px; height: 40px; margin-bottom: 18px; color: var(--gold); }
.cap-card h3 { font-size: 20px; margin-bottom: 10px; }
.cap-card p { color: var(--champagne-dim); font-size: 14.5px; margin: 0; }
.cap-card .tag { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); padding: 4px 10px; }

.process-strip { display: flex; flex-direction: column; gap: 0; }
.process-row {
  display: grid; grid-template-columns: 70px 1fr; gap: 26px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-row .idx { font-family: var(--font-display); font-size: 30px; color: var(--gold-deep); }
.process-row h4 { font-size: 18px; margin-bottom: 6px; }
.process-row p { color: var(--champagne-dim); font-size: 14.5px; margin: 0; max-width: 640px; }

.cta-band {
  margin-top: 20px;
  padding: 56px 50px;
  text-align: center;
  position: relative;
}
.cta-band h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 14px; }
.cta-band p { color: var(--champagne-dim); margin-bottom: 28px; }

/* ==========================================================================
   TOS PAGE
   ========================================================================== */

.tos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 22px; }
.tos-card { padding: 30px; }
.tos-card h3 { font-size: 19px; display: flex; align-items: center; gap: 10px; }
.tos-card h3 .badge { font-family: var(--font-mono); font-size: 10px; padding: 3px 9px; border: 1px solid var(--line-bright); color: var(--gold-bright); text-transform: uppercase; letter-spacing: 0.1em; }
.split-bar { display: flex; height: 10px; margin: 18px 0 14px; clip-path: polygon(6px 0,100% 0,100% calc(100% - 6px),calc(100% - 6px) 100%,0 100%,0 6px); overflow:hidden; }
.split-bar .a { background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.split-bar .b { background: rgba(236,227,207,0.12); }
.split-label { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--champagne-faint); }
.split-label b { color: var(--gold-bright); font-weight: 600; }

.rule-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.rule-list li {
  padding: 22px 0 22px 34px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--champagne-dim);
  font-size: 15px;
}
.rule-list li:last-child { border-bottom: 1px solid var(--line); }
.rule-list li::before {
  content: "";
  position: absolute; left: 0; top: 26px;
  width: 14px; height: 1px; background: var(--gold);
}
.rule-list li strong { color: var(--champagne); font-weight: 600; }

.min-note {
  margin-top: 30px;
  padding: 22px 28px;
  border-left: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.05);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   PRICING PAGE
   ========================================================================== */

.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.price-card { padding: 36px 30px; display: flex; flex-direction: column; }
.price-card .ptag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.price-card .pval { font-family: var(--font-display); font-size: 42px; color: var(--champagne); margin: 14px 0 6px; }
.price-card .pval small { font-size: 16px; color: var(--champagne-faint); font-family: var(--font-body); }
.price-card .pdesc { color: var(--champagne-dim); font-size: 14px; margin-bottom: 20px; flex: 1; }
.price-card .pfeat { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; font-size: 13px; color: var(--champagne-dim); }
.price-card .pfeat li { display: flex; gap: 8px; align-items: baseline; }
.price-card .pfeat li::before { content: "—"; color: var(--gold-deep); }
.price-card.highlight { background: linear-gradient(165deg, var(--ink-2), rgba(212,175,55,0.07)); border-color: var(--line-bright); }

.price-note-strip { margin-top: 26px; display: flex; gap: 18px; flex-wrap: wrap; }
.pill { font-family: var(--font-mono); font-size: 11.5px; padding: 10px 18px; border: 1px solid var(--line); color: var(--champagne-dim); clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px); }
.pill b { color: var(--gold-bright); }

/* ==========================================================================
   PORTFOLIO PAGE
   ========================================================================== */

.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.portfolio-item {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  clip-path: polygon(0 var(--edge), var(--edge) 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  border: 1px solid var(--line);
  background: var(--ink);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.portfolio-item:hover { border-color: var(--line-bright); transform: translateY(-4px); }
.portfolio-item img, .portfolio-item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out), filter 0.4s; }
.portfolio-item:hover img, .portfolio-item:hover video { transform: scale(1.06); filter: brightness(1.05); }
.portfolio-item .overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,7,6,0);
  opacity: 0; transition: opacity 0.3s, background 0.3s;
}
.portfolio-item:hover .overlay { opacity: 1; background: rgba(8,7,6,0.28); }
.portfolio-item .overlay svg { width: 34px; height: 34px; color: var(--gold-bright); filter: drop-shadow(0 0 8px rgba(212,175,55,0.6)); }
.portfolio-item .kind-tag {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em;
  padding: 4px 8px; background: rgba(8,7,6,0.6); color: var(--gold-bright);
  border: 1px solid var(--line-bright);
}

.portfolio-empty, .portfolio-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 90px 30px;
  color: var(--champagne-faint);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.portfolio-loading .spin {
  width: 26px; height: 26px; margin: 0 auto 18px;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6, 5, 4, 0.92);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-stage { max-width: 90vw; max-height: 86vh; position: relative; transform: scale(0.94); transition: transform 0.35s var(--ease-out); }
.lightbox.open .lightbox-stage { transform: scale(1); }
.lightbox-stage img, .lightbox-stage video { max-width: 90vw; max-height: 86vh; width: auto; height: auto; box-shadow: 0 30px 90px -20px rgba(0,0,0,0.7); border: 1px solid var(--line-bright); }
.lightbox-close {
  position: fixed; top: 30px; right: 40px;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-bright);
  background: rgba(10,9,8,0.6);
  color: var(--gold-bright);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.lightbox-close:hover { background: rgba(212,175,55,0.15); transform: rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.social-card {
  padding: 38px 28px;
  display: flex; flex-direction: column; gap: 18px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.14), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.social-card:hover::before { opacity: 1; }
.social-card .icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-bright);
  color: var(--gold-bright);
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
}
.social-card .icon-wrap svg { width: 24px; height: 24px; }
.social-card h3 { font-size: 19px; margin: 0; }
.social-card .handle { font-family: var(--font-mono); font-size: 12.5px; color: var(--champagne-dim); }
.social-card .go { margin-top: auto; font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; transition: gap 0.25s; }
.social-card:hover .go { gap: 12px; }

.contact-note { margin-top: 40px; text-align: center; color: var(--champagne-dim); font-size: 15px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 46px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.site-footer, .site-footer a { font-family: var(--font-mono); font-size: 11px; color: var(--champagne-faint); letter-spacing: 0.05em; }
.site-footer a:hover { color: var(--gold-bright); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .hero-home { grid-template-columns: 1fr; text-align: center; }
  .hero-home .stat-row { justify-content: center; }
  .hero-portrait { order: -1; }
  .cap-grid, .tos-grid, .price-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .sidebar { transform: translateX(-100%); transition: transform 0.35s var(--ease-out); box-shadow: 20px 0 40px rgba(0,0,0,0.5); }
  .sidebar.open { transform: translateX(0); }
  .content { margin-left: 0; width: 100%; }
  .topbar {
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 90;
    padding: 18px 24px;
    background: rgba(8,7,6,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .topbar .brand { margin: 0; }
  .topbar .brand-mark { width: 34px; height: 34px; }
  .topbar .brand-name { font-size: 17px; }
  .hamburger {
    width: 40px; height: 40px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    background: none; border: 1px solid var(--line-bright); cursor: pointer;
  }
  .hamburger span { width: 18px; height: 1px; background: var(--gold-bright); }
  .overlay-scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 95; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .overlay-scrim.open { opacity: 1; pointer-events: auto; }
  .container { padding: 0 24px; }
}

@media (max-width: 640px) {
  .cap-grid, .tos-grid, .price-grid, .contact-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 44px 0 40px; }
  .hero-home { padding: 40px 0 50px; }
  .process-row { grid-template-columns: 46px 1fr; }
}
