@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/cormorant-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/cormorant-600-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/cormorant-italic-latinext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --void: #050505;
  --ink: #0a0b0e;
  --panel: #101114;
  --panel2: #16181d;
  --mist: #8a8378;
  --fog: #c9c2b6;
  --bone: #f2f4f0;
  --bone2: #f2f4f0;
  --ember: #6bff4d;
  --ember2: #b8ff9a;
  --paper: #050505;
  --display: "Cormorant Garamond", Palatino, "Palatino Linotype", "Times New Roman", serif;
  --serif: "Cormorant Garamond", Palatino, "Times New Roman", serif;
  --sans: "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --nav: 78px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* reveal animations slide in from off-canvas — never let that scroll the page */
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  background: var(--paper, #e4e7e5);
  color: var(--ink, #16191c);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.touch { cursor: auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; border: none; background: none; }
button { cursor: pointer; }
ul { list-style: none; }
.container { width: min(1200px, calc(100% - 2rem)); margin-inline: auto; }

/* Custom cursor */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 10050;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--ember);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .35s var(--ease), height .35s var(--ease), background .35s;
}
.cursor.grow {
  width: 56px; height: 56px;
  background: var(--bone2);
}
@media (max-width: 900px) {
  .cursor, .cursor-label { display: none !important; }
  body { cursor: auto; }
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 10000;
  background: linear-gradient(90deg, transparent, var(--ember), var(--ember2));
}

/* Side rail */
.rail {
  position: fixed; left: 1.1rem; top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: none;
  flex-direction: column; gap: 0.85rem;
}
.rail a {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color .3s;
}
.rail a:hover, .rail a.active { color: var(--ember); }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 900;
  height: var(--nav);
  pointer-events: none;
}
.nav-shell {
  pointer-events: auto;
  height: 100%;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.nav-inner {
  height: 100%;
  width: min(1200px, calc(100% - 1.5rem));
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, #f0d9a0 0%, #c9a56a 42%, transparent 43%),
    radial-gradient(circle at 64% 42%, #050505 0 38%, transparent 39%),
    #050505;
  box-shadow: 0 0 0 1px rgba(201,165,106,0.4), 0 0 18px rgba(201,165,106,0.18);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.logo-text em {
  font-style: normal;
  font-weight: 500;
  color: rgba(231,226,216,0.55);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.55rem;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
}
.nav-link {
  position: relative;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(231,226,216,0.55);
  padding: 0.2rem 0;
  border-radius: 0;
  transition: color .25s;
  white-space: nowrap;
}
.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(231,226,216,0.14);
  color: var(--bone2);
  background: rgba(255,255,255,0.03);
  transition: border-color .25s, color .25s, transform .3s, background .25s;
}
.nav-ig:hover {
  border-color: rgba(212,165,116,0.5);
  color: var(--ember2);
  background: rgba(212,165,116,0.1);
  transform: translateY(-2px);
}
.nav-phone { display: none !important; }
.nav-link:hover { color: #fff; background: none; }
.nav-link.active {
  color: var(--ember2);
  background: none;
  box-shadow: none;
}
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.nav-phone {
  display: none;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(231,226,216,0.55);
  letter-spacing: 0.02em;
  transition: color .25s;
}
.nav-phone:hover { color: var(--ember2); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--void);
  background: linear-gradient(135deg, #f0d2a8, var(--ember));
  border: 0;
  box-shadow: 0 8px 22px rgba(212,165,116,0.32);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212,165,116,0.42);
}
.menu-btn {
  position: relative;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(231,226,216,0.12);
  background: rgba(255,255,255,0.03);
  padding: 0;
  z-index: 2;
}
.menu-btn i {
  position: absolute;
  left: 12px;
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .32s cubic-bezier(.16,1,.3,1), width .32s, top .32s, opacity .2s;
  transform-origin: center;
}
.menu-btn i:first-child { top: 15px; width: 18px; }
.menu-btn i:last-child { top: 24px; width: 12px; }
.menu-btn.open i:first-child {
  top: 20px;
  width: 18px;
  transform: rotate(45deg);
}
.menu-btn.open i:last-child {
  top: 20px;
  width: 18px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed; inset: 0; z-index: 850;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,165,116,0.12), transparent 55%),
    var(--void);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transition: .45s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
.mobile-nav a {
  font-family: var(--sans);
  font-size: clamp(1.45rem, 6.5vw, 2.2rem);
  font-weight: 700;
  color: var(--bone2);
  letter-spacing: -0.01em;
}
.mobile-nav a:hover { color: var(--ember); }
.mobile-cta {
  margin-top: 0.75rem !important;
  display: inline-flex !important;
  align-self: center;
  padding: 0.85rem 1.4rem !important;
  border-radius: 999px;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void) !important;
  background: linear-gradient(135deg, #f0d2a8, var(--ember));
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.6rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, #f0d9a0 0%, #c9a56a 48%, #a07c42 100%);
  color: #08090b;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.5) 50%, transparent 65%);
  transform: translateX(-130%);
  animation: goldShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary > * { position: relative; z-index: 1; }
@keyframes goldShine {
  0%, 52% { transform: translateX(-130%); }
  78%, 100% { transform: translateX(130%); }
}
.btn-primary:hover { background: var(--ember2); box-shadow: 0 14px 36px rgba(212,165,116,0.35); }
.btn-ghost {
  border: 1px solid rgba(231,226,216,0.28);
  color: var(--bone);
}
.btn-ghost:hover { border-color: var(--ember); color: var(--ember2); }

/* HERO — signature */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav) + 2rem) 0 3rem;
  overflow: hidden;
  background: var(--void);
}
.hero::before {
  content: "";
  position: absolute;
  width: 55vmax; height: 55vmax;
  left: -18%; top: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,165,116,0.16), transparent 68%);
  animation: glowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 40vmax; height: 40vmax;
  right: -10%; bottom: -15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,196,154,0.1), transparent 70%);
  animation: glowPulse 7.5s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.hero-kicker, .hero-lead, .hero-actions, .hero-meta {
  animation: riseIn 1s var(--ease) both;
}
.hero-actions { animation-delay: .7s; }
@keyframes riseIn {
  from { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.headline em {
  display: inline-block;
  animation: emGlow 3s ease-in-out infinite;
}
@keyframes emGlow {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50% { text-shadow: 0 0 24px rgba(212,165,116,0.35); }
}

.strip { animation: marquee 22s linear infinite; }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after, .floater, .hero-watermark, .hero-orb,
  .hero-kicker, .hero-lead, .hero-actions, .hero-meta,
  .wa-float, .headline em, .strip, .reviews-track { animation: none !important; }
  .reveal, .bento-card, .project.proj-ready { opacity: 1; transform: none; filter: none; }
}
.hero-grid {
  position: relative; z-index: 2;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }

.strip {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 28s linear infinite;
  padding: 1.1rem 0;
}
.strip span {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fog);
}
.strip span.hot { color: var(--ember); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }
.section-panel { background: var(--panel); }

.chapter {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.25rem;
}
.chapter .n {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ember);
  letter-spacing: 0.08em;
}
.chapter .l {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mist);
}

.headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 1.15rem;
  color: var(--bone2);
}
.headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ember2);
  letter-spacing: 0;
}
.lede {
  max-width: 38rem;
  color: var(--fog);
  font-size: 1.06rem;
  line-height: 1.8;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .strip, .reviews-track, .hero-orb img, .hero-orb-ring,
  .hero::before, .hero::after, .floater, .wa-float { animation: none !important; }
}

/* Bento services — unique */
.bento {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
.hscroll {
  display: flex; gap: 1.1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-inline: max(1.25rem, calc((100vw - min(1120px, 100vw - 2.5rem)) / 2));
  padding-bottom: 1.25rem;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(212,165,116,0.55) transparent;
  cursor: grab;
  touch-action: pan-x;
}
.hscroll::-webkit-scrollbar { height: 5px; }
.hscroll::-webkit-scrollbar-track { background: transparent; }
.hscroll::-webkit-scrollbar-thumb {
  background: rgba(212,165,116,0.5);
  border-radius: 99px;
}
.project {
  flex: 0 0 min(68vw, 260px);
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(231,226,216,0.1);
  background: var(--panel);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .35s;
}
.project:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.38);
  border-color: rgba(212,165,116,0.4);
}
.project-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #12141a;
}
.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: none;
  transition: filter .5s var(--ease);
}
.project:hover .project-shot img {
  filter: brightness(1.06) saturate(1.04);
  transform: none;
}
.project-body { padding: 0.85rem 0.95rem 1rem; }
.project-body .tag {
  display: inline-block;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ember2); margin-bottom: 0.35rem;
}
.project h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--bone2);
  margin-bottom: 0.35rem;
  text-shadow: none;
}
.project-body p {
  color: var(--fog);
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.55rem;
}
.project-body a {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ember2);
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: gap .3s var(--ease), color .3s;
}
.project:hover .project-body a { gap: 0.55rem; color: var(--ember); }
.btn {
  transition: transform .4s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .4s;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.review {
  flex: 0 0 min(320px, 80vw);
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(28,30,34,0.08);
  background: rgba(255,255,255,0.5);
}
.review p {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
  color: #2a2926;
  margin-bottom: 1rem;
}
.review strong { display: block; font-size: 0.88rem; color: var(--void); }
.review span { font-size: 0.75rem; color: #6e6a63; }

/* FAQ */
.faq { display: grid; gap: 0.65rem; }
.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(231,226,216,0.1);
  background: var(--panel);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: none;
  padding: 1.2rem 1.4rem;
  font-family: var(--sans);
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--bone2);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
body.touch .faq-item summary { cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--ember); font-size: 1.3rem; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.4rem 1.3rem; color: var(--fog); font-weight: 500; line-height: 1.75; }

/* Contact unique */
.contact-shell {
  display: grid; gap: 2rem;
  padding: 2rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,165,106,0.14), transparent 50%),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(201,165,106,0.16);
  backdrop-filter: blur(18px);
}
.form { display: grid; gap: 0.8rem; }
.field { display: grid; gap: 0.35rem; }
.field label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mist);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.95rem 1rem;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(231,226,216,0.12);
  border-radius: 10px; outline: none;
  color: var(--bone2);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(212,165,116,0.12);
}
.field textarea { min-height: 110px; resize: vertical; }
.field option { background: var(--panel); }
.form-row { display: grid; gap: 0.8rem; }
.form-ok {
  display: none; padding: 0.85rem; border-radius: 10px;
  background: rgba(70,140,90,0.15);
  border: 1px solid rgba(100,180,120,0.3);
  color: #a8d4b4;
}
.form-ok.show { display: block; }

.footer {
  position: relative;
  padding: 4.5rem 0 1.75rem;
  overflow: hidden;
  border-top: 1px solid rgba(212,165,116,0.18);
  background:
    linear-gradient(180deg, rgba(28,30,34,0.4), transparent 30%),
    var(--void);
}
.footer-glow {
  position: absolute;
  inset: -20% 20% auto;
  height: 220px;
  background: radial-gradient(ellipse, rgba(212,165,116,0.14), transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.footer-brand { max-width: 28rem; }
.footer-logo { margin-bottom: 1rem; }
.footer p {
  color: var(--mist);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0.85rem 0 1.25rem;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 36px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(231,226,216,0.14);
  background: rgba(255,255,255,0.03);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone2);
  transition: border-color .25s, background .25s, color .25s, transform .3s;
}
.footer-social a:hover {
  border-color: rgba(212,165,116,0.45);
  color: var(--ember2);
  background: rgba(212,165,116,0.08);
  transform: translateY(-2px);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1rem;
}
.footer-links { display: grid; gap: 0.45rem; }
.footer-links a {
  color: var(--mist);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color .25s, transform .25s;
}
.footer-links a:hover {
  color: var(--ember2);
  transform: translateX(3px);
}
.footer-contact {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.footer-contact li {
  display: grid;
  gap: 0.15rem;
}
.footer-contact span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212,165,116,0.75);
}
.footer-contact a,
.footer-contact strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bone2);
  word-break: break-word;
}
.footer-contact a:hover { color: var(--ember2); }
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(231,226,216,0.1);
  font-size: 0.74rem;
  color: var(--mist);
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(231,226,216,0.55);
}
.footer-mini {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--ember2);
}
.footer-mini:hover { color: var(--ember); }

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(212,165,116,0.28);
  background:
    linear-gradient(135deg, rgba(212,165,116,0.12), transparent 50%),
    rgba(28,30,36,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}
.cookie-copy {
  flex: 1 1 240px;
  min-width: 0;
}
.cookie-copy strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  color: var(--bone);
}
.cookie-copy p {
  margin: 0;
  color: var(--fog);
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 500;
}
.cookie-copy a {
  color: var(--ember2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  flex-shrink: 0;
}
.cookie-actions .btn {
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
}
@media (max-width: 720px) {
  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: calc(1rem + 170px);
  }
  .cookie-banner-inner { padding: 0.95rem 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

.legal-prose h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.02em;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p,
.legal-prose li {
  color: var(--fog);
  line-height: 1.65;
  font-weight: 500;
}
.legal-prose p { margin-bottom: 0.85rem; }
.legal-prose a { color: var(--ember2); }
.legal-prose .page-hero-actions { margin-top: 2rem; }
.review-band {
  padding: 2.5rem 0 1rem;
}
.review-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(212,165,116,0.3);
  background:
    linear-gradient(120deg, rgba(212,165,116,0.14), transparent 45%),
    rgba(48,52,60,0.65);
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}
.review-band h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.review-band h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ember2);
  font-weight: 400;
}
.review-band p {
  color: var(--fog);
  max-width: 36rem;
  font-weight: 500;
}

@media (min-width: 700px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 0.9fr 1.2fr 1.1fr; gap: 2rem; }
  .contact-shell { grid-template-columns: 0.9fr 1.1fr; padding: 2.5rem; }
}
@media (min-width: 960px) {
  .rail { display: flex; }
  .nav-links { display: flex; }
  .nav-phone { display: inline-flex; }
  .menu-btn { display: none; }
  .footer-top { grid-template-columns: 0.95fr 1.8fr; gap: 3rem; align-items: start; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
  .bento { grid-template-columns: repeat(3, 1fr); }
  .hscroll .project { flex: 0 0 248px; }
  .service-detail { grid-template-columns: 1.35fr 0.75fr; }
  .project-grid { grid-template-columns: repeat(3, 1fr); }
}

/* —— Multi-page premium —— */
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.page-inner.ready .reveal { }
.breadcrumbs {
  padding-top: calc(var(--nav) + 0.85rem);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
.breadcrumbs + .page-hero { padding-top: 1rem; }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.5rem;
  list-style: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  opacity: 0.4;
}
.breadcrumbs a:hover { color: var(--ember2); }
.breadcrumbs [aria-current] { color: var(--bone2); }

.page-hero {
  position: relative;
  padding: 1.5rem 0 2.75rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(212,165,116,0.14), transparent 55%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(120,140,180,0.08), transparent 50%),
    linear-gradient(180deg, var(--void) 0%, var(--ink) 100%);
}
.page-hero-glow {
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(212,165,116,0.12), transparent 65%);
  pointer-events: none;
  filter: blur(20px);
}
.page-hero .headline {
  max-width: 14ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
}
.page-hero .lede { max-width: 36rem; margin-bottom: 0; }
.page-hero-actions { margin-top: 1.5rem; margin-bottom: 0; }

.service-detail { display: grid; gap: 2rem; }
.svc-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember2);
  margin-bottom: 1rem;
}
.service-prose p {
  color: var(--fog);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 40rem;
  font-weight: 500;
}
.svc-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 1.5rem 0 0.5rem;
}
.svc-tile {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(231,226,216,0.1);
  background: rgba(48,52,60,0.55);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bone2);
}
.service-aside {
  padding: 1.4rem 1.35rem;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(58,63,72,0.85), rgba(28,30,34,0.95));
  border: 1px solid rgba(231,226,216,0.12);
  height: fit-content;
  position: sticky;
  top: calc(var(--nav) + 1rem);
  box-shadow: 0 24px 50px rgba(0,0,0,0.25);
}
.aside-rule {
  border: 0;
  border-top: 1px solid rgba(231,226,216,0.1);
  margin: 1.25rem 0;
}
.aside-links { display: flex; flex-direction: column; gap: 0.45rem; }
.aside-links a {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fog);
  transition: color .25s;
  padding: 0.35rem 0;
}
.aside-links a em {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--ember);
  letter-spacing: 0.08em;
  min-width: 1.4rem;
}
.aside-links a:hover { color: var(--bone2); }

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.project-grid .project {
  flex: none;
  width: 100%;
  max-width: none;
}

.cta-band {
  padding: 3rem 0 4rem;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(212,165,116,0.14), transparent 60%),
    var(--void);
}
.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.cta-band p { color: var(--fog); max-width: 34rem; font-weight: 500; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.check-list { display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  color: var(--fog); font-weight: 500; line-height: 1.55;
}
.check-list i {
  flex: 0 0 1.6rem; height: 1.6rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212,165,116,0.15);
  color: var(--ember2);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.check-list.tight li { gap: 0.65rem; }
.check-list.tight i { display: none; }
.check-list.tight li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember);
  margin-top: 0.55rem; flex-shrink: 0;
}

@media (min-width: 640px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .faq-layout { grid-template-columns: 1.4fr 0.7fr; }
  .article-layout { grid-template-columns: 1.4fr 0.7fr; }
}

.faq-layout {
  display: grid;
  gap: 1.5rem;
}
.faq-aside {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(212,165,116,0.25);
  background: linear-gradient(160deg, rgba(212,165,116,0.12), rgba(28,30,34,0.95));
  height: fit-content;
  position: sticky;
  top: calc(var(--nav) + 1rem);
}
.faq-aside h2 {
  font-family: var(--display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.faq-aside p { color: var(--fog); margin-bottom: 1.25rem; }
.faq-aside .btn { width: 100%; justify-content: center; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(231,226,216,0.12);
  background:
    linear-gradient(165deg, rgba(58,63,72,0.92), rgba(28,30,34,0.96));
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s;
  min-height: 100%;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}
.blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212,165,116,0.45);
  box-shadow: 0 28px 56px rgba(0,0,0,0.4);
}
.blog-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0;
}
.blog-pp {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--ember), rgba(212,165,116,0.2), var(--ember2));
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(212,165,116,0.25);
}
.blog-pp img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--void);
  display: block;
}
.blog-pp-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.blog-pp-meta time {
  font-size: 0.68rem;
  color: var(--mist);
  letter-spacing: 0.04em;
}
.blog-card-body { padding: 1rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .tag {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ember2);
}
.blog-card h2, .blog-card h3 {
  font-family: var(--sans);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
  margin: 0.2rem 0 0.55rem;
  color: var(--bone2);
}
.blog-card p {
  color: var(--fog);
  font-size: 0.86rem;
  line-height: 1.55;
  flex: 1;
}
.blog-card .more {
  margin-top: 0.9rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember2);
}

.article-pp {
  width: 88px; height: 88px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--ember), var(--ember2));
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 32px rgba(212,165,116,0.3);
}
.article-pp img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--void);
}

.article-hero .headline { max-width: 22ch !important; }
.article-meta {
  display: flex; gap: 1rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: var(--mist);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.article-layout {
  display: grid;
  gap: 2rem;
}
.article-prose {
  max-width: 42rem;
}
.article-prose h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.65rem;
  letter-spacing: -0.02em;
  color: var(--bone2);
}
.article-prose p {
  color: var(--fog);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-weight: 500;
}

@media (max-width: 959px) {
  .nav-links a { font-size: 0.82rem; }
}

/* —— Full-bleed cinematic hero —— */
.noise, .cursor, .cursor-label, .preloader,
.hero::before, .hero::after, .floater, .eclipse,
.hero-planet, .hero-dust, .hero-spot, .hero-grid-bg { display: none !important; }
.hero {
  background: #000;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav) + 1rem) 0 4.2rem;
  overflow: hidden;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% center;
  transform: scale(1.1);
  animation: ken 34s ease-in-out infinite alternate;
}
@keyframes ken {
  from { transform: scale(1.08) translate3d(1.2%, 0, 0); }
  to { transform: scale(1.18) translate3d(-2.4%, 0, 0); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #000 10%, rgba(0,0,0,0.78) 32%, rgba(0,0,0,0.2) 54%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 30%, rgba(0,0,0,0.5) 100%);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
@property --shine {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.strip span {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: none;
}
.nav-cta {
  background: linear-gradient(135deg, #f0d9a0, #c9a56a);
  box-shadow: 0 8px 22px rgba(201,165,106,0.28);
}
.nav-link.active {
  color: var(--ember2);
  background: none;
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary::after,
  .hero-bg { animation: none !important; }
}

/* Desktop: oversized overlapping eclipse */
@media (min-width: 960px) {
  .hero-title {
    font-size: clamp(5rem, 8.6vw, 9rem);
    max-width: 8ch;
    line-height: 0.84;
  }
  .hero-copy { max-width: 720px; }
  .hero { padding-bottom: 5.5rem; }
}

/* Phone: type in the shadow, no video cost */
@media (max-width: 959px) {
  .noise,
  .preloader,
  .cursor,
  .cursor-label,
  .floater,
  .hero-watermark,
  .hero-orb-tag,
  .float-stack,
  .hero::before,
  .hero::after { display: none !important; }

  .nav-shell {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(5,5,5,0.94);
  }
  .nav { --nav: 64px; height: 64px; }
  :root { --nav: 64px; }

  .page-home .nav-shell {
    background: linear-gradient(180deg, rgba(0,0,0,0.75), transparent);
  }
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: end;
    padding: calc(var(--nav) + 0.4rem) 0 5.6rem;
    overflow: hidden;
  }
  .hero-bg { object-position: 88% 28%; animation: none; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-copy .btn { width: 100%; justify-content: center; }
  .hero-title {
    font-size: clamp(3.6rem, 15vw, 5.2rem);
    max-width: 8ch;
    line-height: 0.86;
    text-shadow: 0 18px 50px rgba(0,0,0,0.7);
  }
  .hero-title.split-title .word-inner { transition: none; transform: none; }
  .lede {
    font-size: 1.02rem;
    max-width: 32ch;
    margin-bottom: 1.35rem;
    text-shadow: 0 8px 24px rgba(0,0,0,0.55);
  }
  .hero-actions { flex-direction: column; gap: 0.7rem; margin-bottom: 1.25rem; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 1.05rem 1.2rem; }
  .hero-meta { gap: 0.85rem 1.2rem; padding-top: 1rem; }
  .btn-primary::after { animation: none; }
  .headline em { animation: none; }

  .reveal {
    transform: translateY(18px);
    filter: none;
    transition: opacity .5s var(--ease), transform .5s var(--ease);
  }
  .bento-card {
    min-height: 0;
    padding: 1.2rem 1.15rem;
    transform: none !important;
  }
  .bento-card .num { font-size: 2.2rem; top: 0.55rem; }
  .bento-card h3 { font-size: 1.28rem; margin: 1.6rem 0 0.4rem; }
  .section { padding: 3.4rem 0; content-visibility: auto; contain-intrinsic-size: auto 720px; }
  .reviews-home { padding-top: 2.4rem; padding-bottom: 2.2rem; }
  .strip { animation-duration: 36s; }

  .m-dock {
    display: flex;
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    z-index: 840;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f0d9a0, #c9a56a 55%, #a07c42);
    color: #08090b;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  }
  body { padding-bottom: 5.4rem; cursor: auto; }
  .cookie-banner { bottom: 4.6rem; }

  .contact-shell { backdrop-filter: none; padding: 1.25rem; }
}
.hero-bg { animation-duration: 18s; }
.hero-veil {
  background:
    linear-gradient(90deg, #000 6%, rgba(0,0,0,0.72) 28%, rgba(0,0,0,0.18) 52%, transparent 72%),
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 28%, rgba(0,0,0,0.62) 100%),
    radial-gradient(ellipse at 78% 42%, rgba(201,165,106,0.16), transparent 42%);
}
.hero::after {
  display: block !important;
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(201,165,106,0.55), transparent);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(6px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.strip { animation-duration: 22s; }

