﻿/* =========================================================
   Auto Sphere Global — Luminous Sphere Gallery (asg2)
   Ivory · Espresso · Soft Gold · Warm Champagne · Mist
   Libre Baskerville + Zen Kaku Gothic New (400/500 only)
   ========================================================= */

:root {
  --ivory: #FAF8F4;
  --espresso: #14110F;
  --gold: #B8956C;
  --champagne: #E6D5C0;
  --mist: #F0EBE3;
  --soft: rgba(20, 17, 15, 0.72);
  --soft-mid: rgba(20, 17, 15, 0.55);
  --soft-faint: rgba(20, 17, 15, 0.38);
  --line: rgba(184, 149, 108, 0.35);
  --line-soft: rgba(20, 17, 15, 0.08);
  --glass: rgba(250, 248, 244, 0.72);
  --glass-dark: rgba(20, 17, 15, 0.42);
  --font-display: "Libre Baskerville", "Times New Roman", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --nav-h: 64px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; width: 0; height: 0; }

body.asg-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.85;
  color: var(--espresso);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body.asg-body::-webkit-scrollbar { display: none; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}
button { cursor: pointer; }
address { font-style: normal; }
strong, b { font-weight: 500; }
em, i { font-style: italic; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--espresso);
}
h1 { font-size: clamp(1.75rem, 2.4vw, 2rem); } /* 28–32px */
h2 { font-size: clamp(1.375rem, 2vw, 1.625rem); } /* 22–26px */
h3 { font-size: clamp(1.125rem, 1.4vw, 1.25rem); } /* 18–20px */
p { font-size: 15px; color: var(--soft); font-weight: 400; }
figcaption, .asg-caption { font-size: 12px; color: var(--soft-faint); letter-spacing: 0.08em; }

.asg-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 13px;
}
.asg-skip:focus { left: 1rem; top: 1rem; }

/* ---------- Shared atoms ---------- */
.asg-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.asg-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.1rem 0 1.4rem;
  border: none;
}
.asg-rule--light { background: rgba(230, 213, 192, 0.7); }

.asg-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--espresso);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.asg-link::after {
  content: "→";
  font-family: var(--font-display);
  color: var(--gold);
  transition: transform 0.35s var(--ease);
}
.asg-link:hover { color: var(--gold); }
.asg-link:hover::after { transform: translateX(4px); }

.asg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.6rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.asg-btn--gold {
  background: var(--gold);
  color: var(--ivory);
  border-color: var(--gold);
}
.asg-btn--gold:hover {
  background: transparent;
  color: var(--champagne);
  border-color: var(--champagne);
}
.asg-btn--ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 248, 244, 0.45);
}
.asg-btn--ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}
.asg-btn--ink {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}
.asg-btn--ink:hover {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}

/* ---------- Nav — full-width thin bar (mobile-first) ---------- */
.asg-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.asg-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: var(--nav-h);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 max(var(--pad), env(safe-area-inset-right, 0px)) 0 max(var(--pad), env(safe-area-inset-left, 0px));
  overflow: hidden;
}
.asg-nav.is-scrolled {
  background: rgba(250, 248, 244, 0.96);
  box-shadow: 0 1px 0 var(--line-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.asg-nav:not(.is-scrolled) .asg-nav__en,
.asg-nav:not(.is-scrolled) .asg-nav__jp,
.asg-nav:not(.is-scrolled) .asg-nav__link,
.asg-nav:not(.is-scrolled) .asg-nav__mark {
  color: var(--ivory);
}
.asg-nav:not(.is-scrolled) .asg-nav__mark {
  border-color: rgba(230, 213, 192, 0.55);
  color: var(--champagne);
}
.asg-nav:not(.is-scrolled) .asg-nav__cta {
  color: var(--espresso);
  background: var(--champagne);
  border-color: var(--champagne);
}
.asg-nav:not(.is-scrolled) .asg-burger i { background: var(--ivory); }

.asg-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: 0 1 auto;
  min-width: 0;
  z-index: 2;
}
.asg-nav__mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.asg-nav__names {
  display: none;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
}
.asg-nav__en {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--espresso);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.35s var(--ease);
}
.asg-nav__jp {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--soft-faint);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.35s var(--ease);
}

.asg-nav__links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 1.85rem);
}
.asg-nav__link {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--espresso);
  padding: 0.35rem 0;
  white-space: nowrap;
  transition: color 0.35s var(--ease);
}
.asg-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.asg-nav__link:hover::after,
.asg-nav__link.is-here::after { transform: scaleX(1); }
.asg-nav__link:hover,
.asg-nav__link.is-here { color: var(--gold); }
.asg-nav:not(.is-scrolled) .asg-nav__link:hover,
.asg-nav:not(.is-scrolled) .asg-nav__link.is-here { color: var(--champagne); }
.asg-nav:not(.is-scrolled) .asg-nav__link::after { background: var(--champagne); }

.asg-nav__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex: 0 0 auto;
  margin-left: auto;
}
.asg-nav__cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 0.9rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ivory);
  background: var(--espresso);
  border: 1px solid var(--espresso);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.asg-nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ivory);
}

.asg-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  padding: 11px;
  flex-shrink: 0;
  z-index: 2;
}
.asg-burger i {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--espresso);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), background 0.35s var(--ease);
}
.asg-burger[aria-expanded="true"] i:first-child { transform: translateY(3.5px) rotate(40deg); }
.asg-burger[aria-expanded="true"] i:last-child { transform: translateY(-3.5px) rotate(-40deg); }

.asg-nav__progress {
  height: 1px;
  background: transparent;
}
.asg-nav__progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--champagne));
  transition: width 0.1s linear;
}

/* Desktop: centered links + brand names + CTA */
@media (min-width: 980px) {
  .asg-nav__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    overflow: visible;
  }
  .asg-nav__brand { justify-self: start; }
  .asg-nav__names { display: flex; }
  .asg-nav__links { display: flex; }
  .asg-nav__end {
    justify-self: end;
    margin-left: 0;
    gap: 0.85rem;
  }
  .asg-nav__cta {
    display: inline-flex;
    min-height: 34px;
    padding: 0 1rem;
  }
  .asg-burger { display: none; }
}

/* ---------- Drawer (from right) ---------- */
.asg-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 950;
  width: min(86vw, 360px);
  height: 100%;
  background: var(--ivory);
  transform: translateX(105%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
}
.asg-drawer.is-open { transform: translateX(0); }
.asg-drawer__accent {
  width: 3px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--gold), var(--champagne), var(--gold));
}
.asg-drawer__inner {
  flex: 1;
  padding: calc(var(--nav-h) + 1.5rem) 1.75rem 2rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.asg-drawer__inner::-webkit-scrollbar { display: none; }
.asg-drawer__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.asg-drawer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--espresso);
}
.asg-drawer__jp {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--soft-faint);
  margin: 0.35rem 0 1.75rem;
}
.asg-drawer__nav { margin-bottom: 1.75rem; }
.asg-drawer__nav li { border-bottom: 1px solid var(--line-soft); }
.asg-drawer__nav a {
  display: block;
  padding: 0.95rem 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.asg-drawer__nav a:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}
.asg-drawer__cta { width: 100%; margin-bottom: 1.75rem; }
.asg-drawer__addr p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}
.asg-drawer__addr a { border-bottom: 1px solid var(--line); }

.asg-veil {
  position: fixed;
  inset: 0;
  z-index: 920;
  background: rgba(20, 17, 15, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.asg-veil.is-on {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Reveals ---------- */
.js [data-reveal],
.js [data-reveal-stagger] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js [data-reveal="left"] { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="scale"] { transform: scale(0.97); }
.js [data-reveal].is-in,
.js [data-reveal-stagger].is-in {
  opacity: 1;
  transform: none;
}
.js [data-reveal-stagger].is-in > * {
  opacity: 0;
  transform: translateY(20px);
  animation: asgFadeUp 0.8s var(--ease-out) forwards;
}
.js [data-reveal-stagger].is-in > *:nth-child(1) { animation-delay: 0.05s; }
.js [data-reveal-stagger].is-in > *:nth-child(2) { animation-delay: 0.15s; }
.js [data-reveal-stagger].is-in > *:nth-child(3) { animation-delay: 0.25s; }
.js [data-reveal-stagger].is-in > *:nth-child(4) { animation-delay: 0.35s; }
.js [data-reveal-stagger].is-in > *:nth-child(5) { animation-delay: 0.45s; }
.js [data-reveal-stagger].is-in > *:nth-child(6) { animation-delay: 0.55s; }

@keyframes asgFadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes asgOrbitSpin {
  to { transform: rotate(360deg); }
}
@keyframes asgHintPulse {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(6px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal],
  .js [data-reveal-stagger],
  .js [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .asg-lume__orbit { animation: none !important; }
}

/* =========================================================
   HOME — Luminous Sphere Gallery sections
   ========================================================= */

/* 1. Hero */
.asg-lume {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ivory);
}
.asg-lume__media {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.asg-lume__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 17, 15, 0.72) 0%, rgba(20, 17, 15, 0.35) 48%, rgba(20, 17, 15, 0.2) 100%),
    linear-gradient(0deg, rgba(20, 17, 15, 0.55) 0%, transparent 45%);
}
.asg-lume__orbit {
  position: absolute;
  right: clamp(-40px, 8vw, 80px);
  top: 50%;
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  margin-top: calc(min(52vw, 420px) / -2);
  border: 1px solid rgba(184, 149, 108, 0.45);
  border-radius: 50%;
  pointer-events: none;
  animation: asgOrbitSpin 48s linear infinite;
}
.asg-lume__orbit::before,
.asg-lume__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(230, 213, 192, 0.28);
}
.asg-lume__orbit::before {
  inset: 12%;
  border-style: dashed;
}
.asg-lume__orbit::after {
  inset: 28%;
  border-color: rgba(184, 149, 108, 0.35);
}
.asg-lume__rail {
  position: absolute;
  left: clamp(0.75rem, 2.5vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: 0.45em;
  color: rgba(230, 213, 192, 0.65);
  font-weight: 500;
  z-index: 2;
  pointer-events: none;
  display: none;
}
@media (min-width: 640px) {
  .asg-lume__rail { display: block; }
}
.asg-lume__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: calc(var(--nav-h) + 2rem) var(--pad) clamp(3.5rem, 10vh, 6rem);
}
.asg-lume__brand {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 4.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 40px rgba(20, 17, 15, 0.35);
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.asg-lume__brand-jp {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--champagne);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.asg-lume__tagline {
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 1rem;
  max-width: 18em;
}
.asg-lume__lead {
  color: rgba(250, 248, 244, 0.82);
  max-width: 32em;
  margin-bottom: 1.75rem;
  font-size: 15px;
}
.asg-lume__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* 2. Ma manifesto */
.asg-ma {
  position: relative;
  background: var(--mist);
  padding: clamp(4.5rem, 12vw, 8rem) var(--pad);
  overflow: hidden;
}
.asg-ma__mark {
  position: absolute;
  right: -2%;
  top: 40%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(12rem, 32vw, 22rem);
  line-height: 1;
  color: rgba(184, 149, 108, 0.08);
  pointer-events: none;
  user-select: none;
}
.asg-ma__inner {
  position: relative;
  max-width: 640px;
}
.asg-ma__inner p + p { margin-top: 1.1rem; }

/* 3. Featured 70/30 */
.asg-feature {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  background: var(--ivory);
}
.asg-feature__media {
  position: relative;
  min-height: 55vh;
}
.asg-feature__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.asg-feature__media figcaption {
  position: absolute;
  left: var(--pad);
  bottom: 1.25rem;
  color: rgba(250, 248, 244, 0.7);
  letter-spacing: 0.12em;
  z-index: 1;
  text-shadow: 0 1px 8px rgba(20, 17, 15, 0.4);
}
.asg-feature__essay {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
.asg-feature__essay p + p { margin-top: 1rem; }
.asg-feature__essay .asg-btn { align-self: flex-start; margin-top: 1.5rem; }

@media (min-width: 900px) {
  .asg-feature {
    grid-template-columns: 7fr 3fr;
    min-height: 78vh;
  }
  .asg-feature__media { min-height: 100%; }
}

/* 4. Orbit horizontal gallery */
.asg-orbit {
  padding: clamp(4rem, 10vw, 6.5rem) 0 clamp(3rem, 6vw, 4rem);
  background: var(--ivory);
}
.asg-orbit__head {
  max-width: var(--max);
  margin: 0 auto 2rem;
  padding: 0 var(--pad);
}
.asg-orbit__head > p:not(.asg-eyebrow):not(.asg-orbit__hint) {
  max-width: 40em;
}
.asg-orbit__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--soft-faint);
}
.asg-orbit__hint span {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  animation: asgHintPulse 2.2s var(--ease) infinite;
}
.asg-orbit__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--pad);
  padding: 0.5rem var(--pad) 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.asg-orbit__track::-webkit-scrollbar { display: none; }
.asg-orbit__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.asg-orbit__item {
  flex: 0 0 min(78vw, 340px);
  scroll-snap-align: start;
  background: var(--mist);
}
.asg-orbit__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.asg-orbit__meta { padding: 1.35rem 1.25rem 1.6rem; }
.asg-orbit__num {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 0.55rem;
}
.asg-orbit__meta h3 { margin-bottom: 0.55rem; }
.asg-orbit__meta p {
  font-size: 14px;
  margin-bottom: 0.85rem;
}
.asg-orbit__price {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--espresso);
}

/* 5. Material bands */
.asg-material { background: var(--espresso); }
.asg-material__band {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.asg-material__img {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.asg-material__band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.7) 0%, rgba(20, 17, 15, 0.25) 70%);
}
.asg-material__copy {
  position: relative;
  z-index: 1;
  padding: 3rem var(--pad);
  max-width: 420px;
  color: var(--ivory);
}
.asg-material__copy h2 {
  color: var(--ivory);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}
.asg-material__copy p { color: rgba(250, 248, 244, 0.8); }

/* 6. Voice corridor */
.asg-voice {
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  background: var(--ivory);
}
.asg-voice__head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}
.asg-voice__head > p:not(.asg-eyebrow) { max-width: 36em; }
.asg-voice__corridor {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.asg-voice__quote {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.75rem;
  border-left: 2px solid var(--gold);
}
.asg-voice__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
  color: var(--espresso);
  font-style: italic;
}
.asg-voice__quote cite {
  display: block;
  margin-top: 0.85rem;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--soft-faint);
  font-family: var(--font-body);
}

/* 7. Journey spine */
.asg-journey {
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  background: var(--mist);
}
.asg-journey__head {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}
.asg-journey__head .asg-rule { margin-left: auto; margin-right: auto; }
.asg-journey__head > p:not(.asg-eyebrow) { margin: 0 auto; }
.asg-journey__spine {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 0.5rem 0;
}
.asg-journey__spine::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.asg-journey__node {
  position: relative;
  width: calc(50% - 1.5rem);
  margin-bottom: 2.5rem;
  background: var(--ivory);
  padding: 1.35rem 1.25rem;
}
.asg-journey__node:nth-child(odd) { margin-right: auto; text-align: right; }
.asg-journey__node:nth-child(even) { margin-left: auto; text-align: left; }
.asg-journey__dot {
  position: absolute;
  top: 1.6rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--mist);
}
.asg-journey__node:nth-child(odd) .asg-journey__dot {
  right: -1.5rem;
  transform: translateX(50%);
}
.asg-journey__node:nth-child(even) .asg-journey__dot {
  left: -1.5rem;
  transform: translateX(-50%);
}
.asg-journey__num {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}
.asg-journey__node h3 { margin-bottom: 0.4rem; }
.asg-journey__node p { font-size: 14px; }

@media (max-width: 640px) {
  .asg-journey__spine::before { left: 12px; }
  .asg-journey__node {
    width: calc(100% - 2.5rem);
    margin-left: 2.5rem !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
  .asg-journey__node .asg-journey__dot {
    left: -2.5rem !important;
    right: auto !important;
    transform: translateX(50%) !important;
  }
}

/* 8. Cabin immersion */
.asg-cabin {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.asg-cabin__media {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.asg-cabin__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 17, 15, 0.15), rgba(20, 17, 15, 0.45));
}
.asg-cabin__panel {
  position: relative;
  z-index: 1;
  width: min(92%, 420px);
  margin: 3rem var(--pad);
  padding: 2rem 1.75rem;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(230, 213, 192, 0.45);
  box-shadow: 0 20px 60px rgba(20, 17, 15, 0.12);
}
.asg-cabin__panel p + p { margin-top: 0.9rem; }
.asg-cabin__panel h2 { color: var(--espresso); }

/* 9. Visit ritual */
.asg-visit {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ivory);
  min-height: 70vh;
}
.asg-visit__copy {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.asg-visit__copy p + p { margin-top: 0.9rem; }
.asg-visit__addr {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--espresso) !important;
  letter-spacing: 0.04em;
}
.asg-visit__copy .asg-btn { align-self: flex-start; margin-top: 1.5rem; }
.asg-visit__map {
  min-height: 360px;
  background: var(--mist);
}
.asg-visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.25) contrast(0.95);
}
.asg-visit--mist { background: var(--mist); }
@media (min-width: 900px) {
  .asg-visit { grid-template-columns: 1fr 1fr; }
  .asg-visit__map,
  .asg-visit__map iframe { min-height: 100%; }
}

/* 10. Invitation close */
.asg-invite {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--ivory);
}
.asg-invite__media {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.asg-invite__veil {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.58);
}
.asg-invite__copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
  padding: 4rem var(--pad);
}
.asg-invite__copy h2 { color: var(--ivory); }
.asg-invite__copy p { color: rgba(250, 248, 244, 0.82); }
.asg-invite__copy .asg-rule { margin-left: auto; margin-right: auto; }
.asg-invite__copy .asg-btn { margin-top: 1.5rem; }
.asg-invite--soft .asg-invite__veil { background: rgba(20, 17, 15, 0.48); }

/* =========================================================
   INNER PAGES — shared luminous patterns
   ========================================================= */

/* Page hero */
.asg-page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ivory);
}
.asg-page-hero__media {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.asg-page-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(20, 17, 15, 0.75) 0%, rgba(20, 17, 15, 0.35) 55%, rgba(20, 17, 15, 0.25) 100%);
}
.asg-page-hero__orbit {
  position: absolute;
  right: 8%;
  top: 28%;
  width: min(38vw, 280px);
  height: min(38vw, 280px);
  border: 1px solid rgba(184, 149, 108, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: asgOrbitSpin 56s linear infinite;
}
.asg-page-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: calc(var(--nav-h) + 3rem) var(--pad) clamp(3rem, 8vh, 5rem);
}
.asg-page-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.asg-page-hero h1 { color: var(--ivory); margin: 0.5rem 0 1rem; }
.asg-page-hero__lead {
  color: rgba(250, 248, 244, 0.82);
  max-width: 34em;
  margin-bottom: 1.25rem;
}
.asg-page-hero__cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 0.5rem; }

/* Mist essay band */
.asg-essay {
  position: relative;
  padding: clamp(4rem, 10vw, 6.5rem) var(--pad);
  background: var(--mist);
  overflow: hidden;
}
.asg-essay--ivory { background: var(--ivory); }
.asg-essay__mark {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 14rem);
  color: rgba(184, 149, 108, 0.07);
  pointer-events: none;
  line-height: 1;
}
.asg-essay__inner { position: relative; max-width: 640px; }
.asg-essay__inner p + p { margin-top: 1.05rem; }
.asg-essay--center .asg-essay__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.asg-essay--center .asg-rule { margin-left: auto; margin-right: auto; }

/* Media + essay layout (not old split) */
.asg-duo {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ivory);
}
.asg-duo--flip .asg-duo__media { order: 2; }
.asg-duo--flip .asg-duo__essay { order: 1; }
.asg-duo__media {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
}
.asg-duo__media figcaption,
.asg-duo__cap {
  position: absolute;
  left: var(--pad);
  bottom: 1.1rem;
  color: rgba(250, 248, 244, 0.7);
  font-size: 12px;
  letter-spacing: 0.12em;
  z-index: 1;
}
.asg-duo__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.25), transparent 40%);
  pointer-events: none;
}
.asg-duo__essay {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.asg-duo__essay p + p { margin-top: 1rem; }
@media (min-width: 900px) {
  .asg-duo { grid-template-columns: 1.15fr 0.85fr; min-height: 70vh; }
  .asg-duo--wide-media { grid-template-columns: 7fr 3fr; }
  .asg-duo--wide-essay { grid-template-columns: 3fr 7fr; }
  .asg-duo--flip .asg-duo__media { order: 0; }
  .asg-duo--flip .asg-duo__essay { order: 0; }
  .asg-duo--flip { direction: rtl; }
  .asg-duo--flip > * { direction: ltr; }
  .asg-duo__media { min-height: 100%; }
}

/* Full-bleed image band with overlay copy */
.asg-band {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.asg-band__media {
  position: absolute;
  inset: -6%;
  background-size: cover;
  background-position: center;
}
.asg-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20, 17, 15, 0.72) 0%, rgba(20, 17, 15, 0.3) 70%);
}
.asg-band__copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 3.5rem var(--pad);
  color: var(--ivory);
}
.asg-band__copy h2 { color: var(--ivory); }
.asg-band__copy p { color: rgba(250, 248, 244, 0.82); }
.asg-band__copy p + p { margin-top: 0.9rem; }

/* Vertical spine / timeline */
.asg-spine {
  padding: clamp(4rem, 10vw, 6.5rem) var(--pad);
  background: var(--ivory);
}
.asg-spine--mist { background: var(--mist); }
.asg-spine__head {
  max-width: 560px;
  margin: 0 auto 2.75rem;
  text-align: center;
}
.asg-spine__head .asg-rule { margin-left: auto; margin-right: auto; }
.asg-spine__list {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.asg-spine__list::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--champagne), transparent);
}
.asg-spine__item {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  padding: 0 0 2.25rem 0;
}
.asg-spine__item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--ivory);
}
.asg-spine--mist .asg-spine__item::before { box-shadow: 0 0 0 4px var(--mist); }
.asg-spine__year,
.asg-spine__n {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 0.15rem;
  padding-left: 2.4rem;
}
.asg-spine__body h3 { margin-bottom: 0.4rem; }
.asg-spine__body p { font-size: 14px; }

/* Corridor quotes (reuse voice style) */
.asg-corridor {
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad);
  background: var(--mist);
}
.asg-corridor--ivory { background: var(--ivory); }
.asg-corridor blockquote {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.75rem;
  border-left: 2px solid var(--gold);
}
.asg-corridor blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.7;
  color: var(--espresso);
}
.asg-corridor blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--soft-faint);
  font-family: var(--font-body);
}

/* Value / theme rows — not cards */
.asg-lanes {
  padding: clamp(4rem, 10vw, 6.5rem) var(--pad);
  background: var(--ivory);
}
.asg-lanes--mist { background: var(--mist); }
.asg-lanes__head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}
.asg-lanes__head > p:not(.asg-eyebrow) { max-width: 38em; }
.asg-lanes__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.asg-lanes__item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
}
.asg-lanes__item span {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
}
.asg-lanes__item h3 { margin-bottom: 0.4rem; }
.asg-lanes__item p { font-size: 14px; }
@media (min-width: 800px) {
  .asg-lanes__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
    border-top: none;
  }
  .asg-lanes__item {
    border-bottom: none;
    border-top: 1px solid var(--line);
    padding-top: 1.75rem;
    grid-template-columns: 1fr;
  }
  .asg-lanes__row--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Metric strip */
.asg-metrics {
  padding: clamp(3rem, 7vw, 4.5rem) var(--pad);
  background: var(--espresso);
  color: var(--ivory);
}
.asg-metrics__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
.asg-metrics__n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--champagne);
  margin-bottom: 0.45rem;
  line-height: 1.1;
}
.asg-metrics p {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.7);
}
@media (min-width: 800px) {
  .asg-metrics__row { grid-template-columns: repeat(4, 1fr); }
}

/* Service rows */
.asg-svc-list {
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad);
  background: var(--ivory);
}
.asg-svc-list__head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}
.asg-svc-list__head > p:not(.asg-eyebrow) { max-width: 40em; }
.asg-svc-list__body {
  max-width: var(--max);
  margin: 0 auto;
}
.asg-svc-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 2.5rem;
}
.asg-svc-entry__media {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}
.asg-svc-entry__body { padding: 1.5rem 0 0; }
.asg-svc-entry__n {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 0.5rem;
}
.asg-svc-entry__body h3 { margin-bottom: 0.55rem; }
.asg-svc-entry__price {
  margin-top: 0.75rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--espresso);
}
@media (min-width: 800px) {
  .asg-svc-entry {
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  .asg-svc-entry--flip .asg-svc-entry__media { order: 2; }
  .asg-svc-entry__body { padding: 0; }
  .asg-svc-entry__media { min-height: 300px; }
}

/* Drive stages */
.asg-stages {
  padding: clamp(4rem, 10vw, 6rem) var(--pad);
  background: var(--mist);
}
.asg-stages__head {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.asg-stages__head .asg-rule { margin-left: auto; margin-right: auto; }
.asg-stages__row {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.asg-stages__item {
  padding: 1.5rem 0;
  border-top: 1px solid var(--gold);
}
.asg-stages__item h3 { margin-bottom: 0.45rem; }
.asg-stages__visual {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 800px) {
  .asg-stages__row { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}

/* Bespoke strip */
.asg-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--espresso);
  color: var(--ivory);
}
.asg-mosaic__copy {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.asg-mosaic__copy h2 { color: var(--ivory); }
.asg-mosaic__copy p { color: rgba(250, 248, 244, 0.8); }
.asg-mosaic__copy p + p { margin-top: 1rem; }
.asg-mosaic__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  min-height: 420px;
}
.asg-mosaic__imgs > div {
  background-size: cover;
  background-position: center;
}
.asg-mosaic__imgs > div:first-child {
  grid-row: 1 / -1;
}
@media (min-width: 900px) {
  .asg-mosaic { grid-template-columns: 1fr 1.2fr; }
}

/* Pair bands */
.asg-pair {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ivory);
}
.asg-pair__item {
  position: relative;
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem var(--pad);
  overflow: hidden;
  color: var(--ivory);
}
.asg-pair__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.asg-pair__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 17, 15, 0.78) 0%, rgba(20, 17, 15, 0.2) 70%);
}
.asg-pair__item h3,
.asg-pair__item p,
.asg-pair__price {
  position: relative;
  z-index: 1;
}
.asg-pair__item h3 { color: var(--ivory); margin-bottom: 0.55rem; }
.asg-pair__item p { color: rgba(250, 248, 244, 0.8); font-size: 14px; }
.asg-pair__price {
  margin-top: 0.85rem;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--champagne);
  font-weight: 500;
}
@media (min-width: 800px) {
  .asg-pair { grid-template-columns: 1fr 1fr; }
}

/* FAQ */
.asg-faq {
  padding: clamp(4rem, 10vw, 6rem) var(--pad);
  background: var(--ivory);
}
.asg-faq--mist { background: var(--mist); }
.asg-faq__head {
  max-width: 640px;
  margin: 0 auto 2rem;
}
.asg-faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.asg-faq__item {
  border-bottom: 1px solid var(--line-soft);
  padding: 1.15rem 0;
}
.asg-faq__item summary {
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--espresso);
  letter-spacing: 0.02em;
}
.asg-faq__item summary::-webkit-details-marker { display: none; }
.asg-faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--gold);
  flex-shrink: 0;
}
.asg-faq__item[open] summary::after { content: "−"; }
.asg-faq__item p {
  margin-top: 0.85rem;
  font-size: 14px;
  padding-right: 1.5rem;
}

/* Journal */
.asg-journal-mast {
  padding: calc(var(--nav-h) + 3.5rem) var(--pad) 0;
  background: var(--mist);
}
.asg-journal-mast__inner {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}
.asg-journal-mast__brand {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.65rem;
  color: var(--espresso);
}
.asg-journal-mast h1 { margin-bottom: 1rem; }
.asg-journal-mast__inner > p:not(.asg-eyebrow):not(.asg-journal-mast__brand) {
  max-width: 36em;
}
.asg-journal-mast__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 100%;
  margin-top: 2.5rem;
}
.asg-journal-mast__strip > div {
  min-height: clamp(140px, 22vw, 240px);
  background-size: cover;
  background-position: center;
}

.asg-post-rail {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  background: var(--ivory);
}
.asg-post-rail__head {
  max-width: var(--max);
  margin: 0 auto 1.75rem;
  padding: 0 var(--pad);
}
.asg-post-rail__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem var(--pad) 1.25rem;
  scrollbar-width: none;
}
.asg-post-rail__track::-webkit-scrollbar { display: none; }
.asg-post-rail__item {
  flex: 0 0 min(80vw, 320px);
  scroll-snap-align: start;
  background: var(--mist);
}
.asg-post-rail__img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.asg-post-rail__body { padding: 1.25rem; }
.asg-post-rail__body > span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.asg-post-rail__body h3 { margin-bottom: 0.5rem; }
.asg-post-rail__body p { font-size: 14px; }

.asg-desk {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--mist);
}
.asg-desk__copy {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.asg-desk__copy p + p { margin-top: 1rem; }
.asg-desk__aside {
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  background: var(--espresso);
  color: var(--ivory);
}
.asg-desk__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--champagne);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.asg-desk__aside ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(230, 213, 192, 0.2);
  font-size: 14px;
  color: rgba(250, 248, 244, 0.8);
}
@media (min-width: 900px) {
  .asg-desk { grid-template-columns: 1.4fr 1fr; }
}

.asg-archive {
  padding: clamp(4rem, 10vw, 6rem) var(--pad);
  background: var(--ivory);
}
.asg-archive__head {
  max-width: var(--max);
  margin: 0 auto 2rem;
}
.asg-archive__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.asg-archive__row article > div {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}
.asg-archive__row h3 { margin-bottom: 0.45rem; }
.asg-archive__row p { font-size: 14px; }
@media (min-width: 800px) {
  .asg-archive__row { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

/* Contact */
.asg-channels {
  padding: clamp(4rem, 10vw, 6rem) var(--pad);
  background: var(--mist);
}
.asg-channels__head {
  max-width: var(--max);
  margin: 0 auto 2rem;
}
.asg-channels__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}
.asg-ct-line {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left 0.35s var(--ease);
}
.asg-ct-line:hover { padding-left: 0.5rem; }
.asg-ct-line__n {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  padding-top: 0.15rem;
}
.asg-ct-line__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--soft-faint);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.asg-ct-line__value {
  display: block;
  font-size: 15px;
  color: var(--espresso);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.asg-ct-line__note {
  display: block;
  font-size: 12px;
  color: var(--soft-mid);
}
@media (min-width: 800px) {
  .asg-channels__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.5rem;
  }
}

.asg-form-sec {
  padding: clamp(4rem, 10vw, 6rem) var(--pad);
  background: var(--ivory);
}
.asg-form-sec__intro {
  max-width: 560px;
  margin: 0 auto 2rem;
}
.asg-form {
  max-width: 640px;
  margin: 0 auto;
}
.asg-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-bottom: 1.15rem;
}
@media (min-width: 640px) {
  .asg-form__grid { grid-template-columns: 1fr 1fr; }
}
.asg-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}
.asg-field span {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--soft-faint);
  font-weight: 500;
}
.asg-field input,
.asg-field select,
.asg-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--mist);
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--espresso);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.asg-field input:focus,
.asg-field select:focus,
.asg-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ivory);
}
.asg-field textarea { resize: vertical; min-height: 160px; }
.asg-form__errors {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(184, 149, 108, 0.12);
  border-left: 2px solid var(--gold);
}
.asg-form__errors li { font-size: 14px; color: var(--espresso); margin-bottom: 0.25rem; }
.asg-form__success {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem;
  background: var(--mist);
  border-left: 2px solid var(--gold);
  font-size: 15px;
  color: var(--espresso);
}

.asg-etiquette {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--mist);
}
.asg-etiquette__inner {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.asg-etiquette__inner p + p { margin-top: 1rem; }
.asg-etiquette__meta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.asg-etiquette__meta p {
  font-size: 14px;
  margin-bottom: 0.45rem;
  color: var(--espresso);
}
.asg-etiquette__meta a {
  border-bottom: 1px solid var(--gold);
}
.asg-etiquette__img {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 900px) {
  .asg-etiquette { grid-template-columns: 1.1fr 0.9fr; }
  .asg-etiquette__img { min-height: 100%; }
}

/* Place section */
.asg-place {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--ivory);
}
.asg-place__copy {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.asg-place__copy p + p { margin-top: 1rem; }
.asg-place__visual {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 900px) {
  .asg-place { grid-template-columns: 1fr 1fr; }
  .asg-place__visual { min-height: 100%; }
}

/* CPO deep dive */
.asg-cpo {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--mist);
  min-height: 60vh;
}
.asg-cpo__visual {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}
.asg-cpo__copy {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.asg-cpo__copy p + p { margin-top: 1rem; }
@media (min-width: 900px) {
  .asg-cpo { grid-template-columns: 1.2fr 1fr; }
  .asg-cpo__visual { min-height: 100%; }
}

/* =========================================================
   Footer
   ========================================================= */
.asg-footer {
  position: relative;
  background: var(--espresso);
  color: rgba(250, 248, 244, 0.78);
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad) 1.5rem;
  overflow: hidden;
}
.asg-footer__orbit {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(184, 149, 108, 0.2);
  border-radius: 50%;
  pointer-events: none;
}
.asg-footer__orbit::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(230, 213, 192, 0.15);
  border-radius: 50%;
}
.asg-footer__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.asg-footer__mark {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.asg-footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}
.asg-footer__jp {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--champagne);
  margin-bottom: 0.75rem;
}
.asg-footer__tag {
  font-size: 13px;
  color: var(--champagne);
  margin-bottom: 0.85rem;
}
.asg-footer__blurb {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(250, 248, 244, 0.65);
  max-width: 28em;
  margin-bottom: 1.25rem;
}
.asg-footer h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.asg-footer ul li { margin-bottom: 0.55rem; }
.asg-footer ul a {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.7);
  transition: color 0.3s var(--ease);
}
.asg-footer ul a:hover { color: var(--champagne); }
.asg-footer__reach p {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.7);
  margin-bottom: 0.55rem;
  line-height: 1.7;
}
.asg-footer__reach a {
  color: rgba(250, 248, 244, 0.85);
  border-bottom: 1px solid rgba(184, 149, 108, 0.4);
}
.asg-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--champagne);
  transition: color 0.3s var(--ease);
}
.asg-social:hover { color: var(--ivory); }
.asg-footer__base {
  position: relative;
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(230, 213, 192, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.asg-footer__base p {
  font-size: 12px;
  color: rgba(250, 248, 244, 0.45);
  letter-spacing: 0.06em;
}
.asg-top {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--champagne);
  transition: color 0.3s var(--ease);
}
.asg-top:hover { color: var(--ivory); }

@media (min-width: 800px) {
  .asg-footer__grid { grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr; gap: 2rem; }
}

/* Chat FAB */
.asg-chat {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 800;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--champagne);
  border: 1px solid rgba(184, 149, 108, 0.45);
  box-shadow: 0 10px 30px rgba(20, 17, 15, 0.2);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.asg-chat:hover {
  background: var(--gold);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* Parallax helpers */
[data-parallax] { will-change: transform; }

/* Soft selection */
::selection {
  background: rgba(184, 149, 108, 0.28);
  color: var(--espresso);
}

/* Small screens polish */
@media (max-width: 479px) {
  .asg-lume__rail { display: none; }
  .asg-cabin__panel { width: calc(100% - 2rem); margin: 2rem 1rem; }
}

@media (min-width: 1200px) {
  .asg-lume__content { padding-bottom: 7rem; }
}
