:root {
  --wine: #3a1419;
  --wine-2: #431c1c;
  --wine-3: #5a2026;
  --cream: #e6ded0;
  --paper: #f5f1e8;
  --paper-2: #efe6da;
  --warm: #e9dcd6;
  --wheat: #d9c08d;
  --taupe: #857a7a;
  --ink: #2b1716;
  --muted: rgba(66, 45, 43, 0.72);
  --line: rgba(67, 28, 28, 0.14);
  --line-strong: rgba(67, 28, 28, 0.24);
  --white-soft: rgba(255, 252, 245, 0.82);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius: 28px;
  --radius-lg: 44px;
  --shadow-soft: 0 18px 50px rgba(67, 28, 28, 0.10);
  --shadow-mid: 0 28px 80px rgba(67, 28, 28, 0.16);
  --shadow-wine: 0 26px 70px rgba(58, 20, 25, 0.28);
  --font-sans: "Satoshi", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --shell: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 10%, rgba(217, 192, 141, 0.24), transparent 32rem),
    radial-gradient(circle at 90% 0%, rgba(67, 28, 28, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--paper), #f2ece2 46%, var(--cream));
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(67, 28, 28, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(67, 28, 28, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0;
  height: 30vh;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(58, 20, 25, 0.12), transparent);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--cream); background: var(--wine); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--wine);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: 3px;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: var(--scroll, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--wheat));
  transform-origin: left;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-pad { padding: clamp(86px, 11vw, 150px) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 18px 0;
  transition: padding 0.26s var(--ease), background 0.26s var(--ease), border-color 0.26s var(--ease), box-shadow 0.26s var(--ease);
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(245, 241, 232, 0.72);
  border-bottom: 1px solid rgba(67, 28, 28, 0.10);
  box-shadow: 0 12px 34px rgba(67, 28, 28, 0.06);
  backdrop-filter: blur(18px) saturate(1.12);
}

.header-shell {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(67, 28, 28, 0.10);
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.62);
  box-shadow: 0 18px 50px rgba(67, 28, 28, 0.08);
  backdrop-filter: blur(16px) saturate(1.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--wine);
  box-shadow: inset 0 0 0 1px rgba(230, 222, 208, 0.16), 0 10px 26px rgba(58, 20, 25, 0.18);
}

.brand-mark img {
  width: 23px;
  height: 30px;
  object-fit: contain;
}

.brand-wordmark {
  width: clamp(142px, 13vw, 196px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a:not(.btn) {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(58, 20, 25, 0.72);
  font-size: 14px;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn).is-active {
  color: var(--wine);
  background: rgba(233, 220, 214, 0.76);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(67, 28, 28, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 245, 0.62);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--wine);
  transition: transform 0.24s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.btn {
  --btn-bg: transparent;
  --btn-color: var(--wine);
  --btn-border: rgba(58, 20, 25, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  color: var(--btn-color);
  background: var(--btn-bg);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  box-shadow: none;
  transition: transform 0.18s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease);
}

.btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-top: 1.8px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(58, 20, 25, 0.14);
}

.btn:hover::after { transform: translateX(3px) rotate(45deg); }
.btn-small { min-height: 40px; padding: 9px 14px; font-size: 13px; }
.btn-wine { --btn-bg: var(--wine); --btn-color: var(--cream); --btn-border: var(--wine); box-shadow: 0 14px 34px rgba(58, 20, 25, 0.22); }
.btn-cream { --btn-bg: var(--cream); --btn-color: var(--wine); --btn-border: rgba(230, 222, 208, 0.50); box-shadow: 0 16px 42px rgba(0, 0, 0, 0.15); }
.btn-ghost { --btn-bg: rgba(255, 252, 245, 0.44); --btn-color: var(--wine); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  padding-top: clamp(44px, 7vw, 100px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7% 0 auto auto;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 20, 25, 0.13), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.84fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(67, 28, 28, 0.12);
  border-radius: 999px;
  color: rgba(58, 20, 25, 0.72);
  background: rgba(245, 241, 232, 0.62);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--wine);
  box-shadow: 0 0 0 5px rgba(58, 20, 25, 0.10);
}

.eyebrow-dark {
  background: rgba(230, 222, 208, 0.50);
}

.hero h1,
.section-head h2,
.intro-statement h2,
.method-copy h2,
.trust-copy h2,
.inquiry-copy h2 {
  margin: 0;
  color: var(--wine);
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(70px, 10.3vw, 146px);
}

.hero-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(43, 23, 22, 0.72);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 720px;
  margin: 36px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(67, 28, 28, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(245, 241, 232, 0.56);
  box-shadow: 0 10px 30px rgba(67, 28, 28, 0.05);
}

.hero-metrics dt {
  color: var(--wine);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.hero-metrics dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-stage {
  --mx: 0px;
  --my: 0px;
  position: relative;
  isolation: isolate;
  min-height: clamp(580px, 74vh, 820px);
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(230, 222, 208, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at calc(50% + var(--mx)) calc(20% + var(--my)), rgba(217, 192, 141, 0.18), transparent 36%),
    linear-gradient(145deg, #49181f, var(--wine) 56%, #260c10);
  box-shadow: var(--shadow-wine);
  overflow: hidden;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  z-index: -1;
}

.hero-stage::before {
  width: 78%;
  aspect-ratio: 1;
  left: 12%;
  top: 5%;
  border: 1px solid rgba(230, 222, 208, 0.12);
  transform: translate(var(--mx), var(--my));
}

.hero-stage::after {
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: -130px;
  background: rgba(217, 192, 141, 0.14);
  filter: blur(6px);
}

.stage-orbit {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(230, 222, 208, 0.12);
  border-radius: calc(var(--radius-lg) - 10px);
}

.logo-panel {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(76%, 500px);
  transform: translate(-50%, -50%);
  opacity: 0.96;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.18));
}

.logo-panel img { width: 100%; height: auto; }

.stage-card {
  position: absolute;
  max-width: 258px;
  padding: 16px;
  border: 1px solid rgba(230, 222, 208, 0.16);
  border-radius: 22px;
  color: rgba(245, 241, 232, 0.92);
  background: rgba(245, 241, 232, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 18px 44px rgba(0, 0, 0, 0.17);
  backdrop-filter: blur(18px);
}

.stage-card-one { left: 24px; top: 26px; }
.stage-card-two { right: 24px; bottom: 24px; }
.stage-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(230, 222, 208, 0.70);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.stage-card strong { display: block; font-size: 15px; }
.stage-card p { margin: 6px 0 0; color: rgba(245, 241, 232, 0.70); font-size: 13px; line-height: 1.42; }

.marquee-band {
  overflow: hidden;
  border-block: 1px solid rgba(67, 28, 28, 0.12);
  background: rgba(230, 222, 208, 0.54);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  padding: 18px clamp(24px, 4vw, 58px);
  color: rgba(58, 20, 25, 0.68);
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  white-space: nowrap;
}

@keyframes marquee { to { transform: translateX(-50%); } }

.split-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.4fr;
  gap: clamp(32px, 8vw, 96px);
  align-items: start;
}

.intro-note {
  margin: 0;
  padding: 24px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 17px;
}

.intro-statement h2 {
  max-width: 900px;
  font-size: clamp(44px, 6vw, 88px);
}

.intro-statement p {
  max-width: 720px;
  margin: 28px 0 0 auto;
  color: rgba(43, 23, 22, 0.70);
  font-size: clamp(17px, 1.5vw, 21px);
}

.soft-panel {
  position: relative;
  background: linear-gradient(180deg, rgba(233, 220, 214, 0.52), rgba(245, 241, 232, 0.34));
  border-block: 1px solid rgba(67, 28, 28, 0.10);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 58px);
}
.section-head-narrow { max-width: 690px; }
.section-head h2,
.method-copy h2,
.trust-copy h2,
.inquiry-copy h2 {
  font-size: clamp(46px, 6.2vw, 86px);
}
.section-head p,
.method-copy p,
.trust-copy p,
.inquiry-copy p {
  margin: 22px 0 0;
  color: rgba(43, 23, 22, 0.70);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  min-height: 270px;
  grid-column: span 4;
  padding: clamp(22px, 2.5vw, 34px);
  border: 1px solid rgba(67, 28, 28, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.78), rgba(245, 241, 232, 0.56)),
    rgba(245, 241, 232, 0.76);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(67, 28, 28, 0.10);
  border-radius: 50%;
  opacity: 0.8;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(67, 28, 28, 0.22);
  box-shadow: var(--shadow-mid);
}

.service-card-large { grid-column: span 6; grid-row: span 2; min-height: 556px; }
.service-card-tall { grid-column: span 4; min-height: 364px; background: linear-gradient(145deg, rgba(67, 28, 28, 0.96), rgba(58, 20, 25, 0.92)); color: var(--cream); }
.service-card-tall h3, .service-card-tall .card-index { color: var(--cream); }
.service-card-tall p { color: rgba(245, 241, 232, 0.72); }
.service-card-tall::after { border-color: rgba(230, 222, 208, 0.18); }

.card-index {
  margin-bottom: 28px;
  color: rgba(58, 20, 25, 0.48);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-card h3 {
  max-width: 12ch;
  margin: 0;
  color: var(--wine);
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 54px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.service-card:not(.service-card-large) h3 { font-size: clamp(28px, 2.6vw, 40px); }
.service-card p { margin: 18px 0 0; color: var(--muted); }
.service-card ul { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.service-card li { display: flex; gap: 10px; color: rgba(43, 23, 22, 0.70); }
.service-card li::before { content: ""; flex: 0 0 7px; width: 7px; height: 7px; margin-top: 9px; border-radius: 50%; background: var(--wine); }
.text-link { display: inline-flex; margin-top: 24px; color: var(--cream); font-weight: 850; border-bottom: 1px solid rgba(230, 222, 208, 0.38); }

.method {
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 192, 141, 0.16), transparent 28rem),
    linear-gradient(160deg, #511a21, var(--wine) 58%, #240b0e);
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 82px);
  align-items: center;
}
.method .eyebrow { color: rgba(245, 241, 232, 0.78); border-color: rgba(230, 222, 208, 0.16); background: rgba(245, 241, 232, 0.07); }
.method .eyebrow span { background: var(--cream); box-shadow: 0 0 0 5px rgba(230, 222, 208, 0.10); }
.method-copy h2 { color: var(--cream); }
.method-copy p { color: rgba(245, 241, 232, 0.74); }
.method-copy .btn { margin-top: 30px; }

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.method-steps article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(230, 222, 208, 0.14);
  border-radius: var(--radius);
  background: rgba(245, 241, 232, 0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 24px 60px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.24s var(--ease), background 0.24s var(--ease);
}
.method-steps article:hover { transform: translateY(-5px); background: rgba(245, 241, 232, 0.10); }
.method-steps span { color: rgba(230, 222, 208, 0.58); font-weight: 900; letter-spacing: 0.09em; }
.method-steps h3 { margin: 42px 0 0; font-family: var(--font-serif); font-size: clamp(36px, 4vw, 58px); line-height: 0.9; font-weight: 600; }
.method-steps p { margin: 14px 0 0; color: rgba(245, 241, 232, 0.72); font-size: 15px; }

.showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.82fr;
  grid-auto-rows: minmax(300px, auto);
  gap: 16px;
}

.showcase-card {
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(67, 28, 28, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(245, 241, 232, 0.70);
  box-shadow: var(--shadow-soft);
}
.showcase-card-feature { grid-row: span 2; }
.visual-frame {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--wine);
}
.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}
.visual-frame::before {
  width: 60%;
  aspect-ratio: 1;
  left: -18%;
  top: -10%;
  border: 1px solid rgba(230, 222, 208, 0.17);
}
.visual-frame::after {
  width: 46%;
  aspect-ratio: 1;
  right: -10%;
  bottom: -20%;
  background: rgba(217, 192, 141, 0.14);
  filter: blur(4px);
}
.visual-frame-one { min-height: 560px; display: grid; place-items: center; background: linear-gradient(145deg, #49181f, #2b0e12); }
.visual-frame-one img { width: min(46%, 330px); opacity: 0.92; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.22)); }
.visual-frame-two {
  background:
    linear-gradient(90deg, rgba(230,222,208,0.10) 1px, transparent 1px),
    linear-gradient(rgba(230,222,208,0.10) 1px, transparent 1px),
    linear-gradient(145deg, #3a1419, #6d2a31);
  background-size: 34px 34px, 34px 34px, auto;
}
.visual-frame-three {
  background:
    radial-gradient(circle at 35% 24%, rgba(230,222,208,0.70) 0 10%, transparent 10.4%),
    radial-gradient(circle at 64% 62%, rgba(217,192,141,0.42) 0 16%, transparent 16.4%),
    linear-gradient(145deg, #4a171e, #2d0e12);
}
.showcase-copy { padding: clamp(22px, 3vw, 34px); }
.showcase-copy p { margin: 0 0 12px; color: rgba(58, 20, 25, 0.52); font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; font-size: 12px; }
.showcase-copy h3 { margin: 0; color: var(--wine); font-family: var(--font-serif); font-size: clamp(34px, 4vw, 62px); line-height: 0.96; font-weight: 600; letter-spacing: -0.035em; }
.showcase-copy span { display: block; margin-top: 16px; color: var(--muted); }

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}
.trust-stack {
  display: grid;
  gap: 12px;
}
.trust-row {
  display: grid;
  grid-template-columns: 0.44fr 1fr;
  gap: 20px;
  padding: 22px;
  border: 1px solid rgba(67, 28, 28, 0.12);
  border-radius: 22px;
  background: rgba(255, 252, 245, 0.58);
  box-shadow: 0 14px 34px rgba(67, 28, 28, 0.06);
}
.trust-row strong { color: var(--wine); }
.trust-row span { color: var(--muted); }
.sector-chips { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 12px; }
.sector-chips span {
  padding: 9px 12px;
  border: 1px solid rgba(67, 28, 28, 0.13);
  border-radius: 999px;
  color: rgba(58, 20, 25, 0.72);
  background: rgba(245, 241, 232, 0.64);
  font-size: 13px;
  font-weight: 750;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}
.contact-card {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(67, 28, 28, 0.14);
  border-radius: var(--radius);
  background: rgba(230, 222, 208, 0.44);
  box-shadow: var(--shadow-soft);
}
.contact-card span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 13px; font-weight: 850; letter-spacing: 0.07em; text-transform: uppercase; }
.contact-card a { display: inline-flex; color: var(--wine); font-family: var(--font-serif); font-size: clamp(30px, 4vw, 48px); line-height: 1; }
.copy-email {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 13px;
  border: 1px solid rgba(67, 28, 28, 0.16);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 252, 245, 0.54);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid rgba(67, 28, 28, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(245, 241, 232, 0.72);
  box-shadow: var(--shadow-mid);
  backdrop-filter: blur(16px);
}
.form-grid { display: grid; gap: 14px; }
.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.inquiry-form label { display: grid; gap: 8px; }
.inquiry-form label span {
  color: rgba(58, 20, 25, 0.78);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(67, 28, 28, 0.14);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 252, 245, 0.78);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input, select { min-height: 52px; padding: 0 15px; }
textarea { resize: vertical; min-height: 140px; padding: 14px 15px; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(58, 20, 25, 0.54);
  box-shadow: 0 0 0 4px rgba(58, 20, 25, 0.10);
  background: rgba(255, 252, 245, 0.96);
}
.honeypot {
  position: absolute;
  left: -100vw;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-status { min-height: 20px; margin: 0; color: var(--muted); font-size: 13px; }
.form-status.ok { color: var(--wine); font-weight: 800; }
.form-status.err { color: #8b1c22; font-weight: 800; }

.site-footer {
  padding: 70px 0 34px;
  color: rgba(245, 241, 232, 0.76);
  background:
    radial-gradient(circle at 14% 12%, rgba(217, 192, 141, 0.16), transparent 26rem),
    linear-gradient(145deg, var(--wine), #250b0f);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
}
.footer-logo { width: min(360px, 72vw); }
.site-footer p { max-width: 520px; margin: 18px 0 0; color: rgba(245, 241, 232, 0.68); }
.footer-links { display: grid; gap: 10px; justify-items: end; }
.footer-links a { color: rgba(245, 241, 232, 0.78); font-weight: 750; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 34px;
  margin-top: 16px;
  border-top: 1px solid rgba(230, 222, 208, 0.14);
  color: rgba(245, 241, 232, 0.58);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root { --shell: min(100vw - 28px, 760px); }
  .site-header { padding: 10px 0; }
  .header-shell { border-radius: 24px; align-items: flex-start; flex-wrap: wrap; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .site-nav {
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 0 2px;
  }
  .site-nav.is-open { display: grid; }
  .site-nav a:not(.btn), .site-nav .btn { justify-content: flex-start; width: 100%; }
  .hero-grid, .split-intro, .method-grid, .trust-grid, .inquiry-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { max-width: 9ch; }
  .hero-stage { min-height: 640px; }
  .bento-grid { grid-template-columns: repeat(6, 1fr); }
  .service-card, .service-card-large, .service-card-tall { grid-column: span 6; min-height: auto; }
  .service-card-large { min-height: 420px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card-feature { grid-row: auto; }
  .visual-frame-one { min-height: 430px; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 84px; }
  :root { --shell: min(100vw - 22px, 560px); }
  .section-pad { padding: 74px 0; }
  .header-shell { min-height: 58px; padding: 8px; }
  .brand-wordmark { width: 138px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero h1 { font-size: clamp(58px, 18vw, 86px); }
  .hero-lede { font-size: 17px; }
  .hero-actions, .hero-metrics { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-metrics { display: grid; }
  .hero-stage { min-height: 520px; border-radius: 32px; }
  .logo-panel { width: 82%; top: 50%; }
  .stage-card { position: relative; max-width: none; left: auto; right: auto; top: auto; bottom: auto; margin-bottom: 10px; }
  .stage-card-two { margin-top: auto; }
  .hero-stage { display: flex; flex-direction: column; justify-content: space-between; }
  .section-head h2, .intro-statement h2, .method-copy h2, .trust-copy h2, .inquiry-copy h2 { font-size: clamp(42px, 14vw, 62px); }
  .intro-note { padding: 18px; }
  .bento-grid { gap: 12px; }
  .service-card { border-radius: 24px; }
  .method-steps { grid-template-columns: 1fr; }
  .visual-frame-one { min-height: 350px; }
  .trust-row { grid-template-columns: 1fr; gap: 7px; }
  .two-cols { grid-template-columns: 1fr; }
  .contact-card a { font-size: clamp(28px, 8vw, 42px); word-break: break-word; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-items: start; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
