/* site.css — styles for the Ha-Sana Solace one-page marketing site.
   Built on top of colors_and_type.css tokens — no new hexes. */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--crepe);
  overflow-x: hidden;
  background-color: #1b1813;
  /* User-provided AI-generated texture — fixed so page scrolls like glass over it. */
  background-image: url('assets/bg-custom4.png?v=2');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* ---------- Topbar (sticky, transparent->opaque on scroll) ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  /* Vertical padding kept tight so the logo can span top→bottom of the bar. */
  padding: 0 40px;
  height: 96px;
  background: rgba(26, 27, 28, 0.32);
  backdrop-filter: blur(4px) saturate(1.05);
  -webkit-backdrop-filter: blur(4px) saturate(1.05);
  border-bottom: 1px solid rgba(189, 153, 101, 0.0);
  transition: background 320ms var(--ease), border-color 320ms var(--ease), height 320ms var(--ease), backdrop-filter 320ms var(--ease);
}
.topbar.is-scrolled {
  background: rgba(26, 27, 28, 0.82);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom-color: rgba(189, 153, 101, 0.28);
  height: 76px;
}

.topbar .logo { justify-self: start; }
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.logo--img {
  /* The PNG has ~40% transparent margin around the mark itself.
     We scale the image tall so the mark fills the bar, then clip the overflow. */
  display: flex;
  align-items: center;
  height: 96px;
  overflow: hidden;
}
.logo--img img {
  /* Scale tall enough that the inner mark (~60% of PNG height) ≈ bar height. */
  height: 164px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: height 320ms var(--ease), filter 320ms var(--ease);
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.35)) drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.topbar.is-scrolled .logo--img {
  height: 76px;
}
.topbar.is-scrolled .logo--img img {
  height: 130px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav a {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crepe);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  cursor: pointer;
  transition: color 200ms var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}
.nav a:hover { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--gold); }

.topbar-right { justify-self: end; display: flex; align-items: center; gap: 18px; }

/* ---------- Buttons (copied from kit, trimmed) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 220ms var(--ease);
  white-space: nowrap;
  background: transparent;
  color: inherit;
}
.btn--sm { padding: 11px 22px; font-size: 10.5px; letter-spacing: 0.26em; }
.btn .arrow {
  position: relative;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms var(--ease);
  display: inline-block;
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--russet);
  color: var(--crepe);
  border-color: var(--russet);
  box-shadow: 0 12px 30px -14px rgba(149, 64, 28, 0.7);
}
.btn-primary:hover { background: var(--russet-dk); border-color: var(--gold); }

.btn-outline { color: var(--crepe); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--charr); border-color: var(--gold); }

.btn-ghost {
  color: var(--gold);
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--crepe); border-color: var(--crepe); }

/* ---------- Eyebrow / script / rule ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.script {
  font-family: var(--script);
  color: var(--gold);
  font-weight: 400;
}
.rule-gold {
  display: inline-block;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  width: 56px;
  vertical-align: middle;
  margin: 0 16px;
}

/* ---------- Section scaffolds ---------- */

section { position: relative; }
.section { padding: 128px 40px; }
.section--tight { padding: 88px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1440px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 72px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 62px);
  letter-spacing: -0.018em;
  line-height: 1.04;
  color: var(--crepe);
  margin: 0;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head .kicker-script { font-size: 42px; margin-bottom: 2px; }

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 40px 160px;
  position: relative;
  margin-top: -96px; /* tuck under the transparent topbar at load */
}
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 40%, rgba(189,153,101,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero__kicker {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.hero__kicker .script { font-size: 36px; line-height: 1; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 8.2vw, 116px);
  letter-spacing: -0.028em;
  line-height: 0.96;
  color: var(--crepe);
  margin: 0 auto 34px;
  max-width: 14ch;
  text-wrap: balance;
  position: relative;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--crepe-70);
  max-width: 58ch;
  margin: 0 auto 48px;
}
.hero__cta { display: inline-flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 34px;
  background: var(--gold);
  margin: 10px auto 0;
  opacity: 0.5;
  animation: drip 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drip {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50%      { transform: scaleY(1);   opacity: 0.8; }
}

/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  background: rgba(26, 27, 28, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(189, 153, 101, 0.28);
  border-bottom: 1px solid rgba(189, 153, 101, 0.28);
  padding: 24px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  animation: marquee-slide 45s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--crepe);
  letter-spacing: -0.005em;
  padding-left: 64px;
}
.marquee__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation-duration: 0.01ms; }
  .hero__scroll::after { animation: none; }
}

/* ---------- Philosophy (two-section benefits) ---------- */

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid rgba(189, 153, 101, 0.22);
  border-bottom: 1px solid rgba(189, 153, 101, 0.22);
}
.philosophy__side {
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.philosophy__side + .philosophy__side {
  border-left: 1px solid rgba(189, 153, 101, 0.22);
}
.philosophy__side .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.philosophy__side .eyebrow { margin-bottom: 20px; }
.philosophy__side h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--crepe);
  margin: 0 0 24px;
  max-width: 14ch;
  text-wrap: balance;
}
.philosophy__side h3 em { font-style: italic; color: var(--gold); }
.philosophy__side p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--crepe-70);
  max-width: 44ch;
  margin: 0 0 28px;
}
.philosophy__side .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  border-left: 1px solid var(--gold);
  padding-left: 18px;
  margin-top: 8px;
  max-width: 38ch;
  line-height: 1.55;
}
.philosophy__ornament {
  position: absolute;
  top: 56px; right: 56px;
  width: 40px; height: 40px;
  opacity: 0.75;
}
.philosophy__ornament img { width: 100%; height: 100%; display: block;
  filter: brightness(0) saturate(100%) invert(69%) sepia(11%) saturate(978%) hue-rotate(5deg) brightness(97%) contrast(82%);
}

/* ---------- About Me ---------- */

.about {
  padding: 128px 40px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.about__images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1.4fr 1fr;
  gap: 16px;
  aspect-ratio: 1 / 1.05;
}
.about__images > div {
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(189,153,101,0.22);
  position: relative;
}
.about__images .a { grid-row: 1 / 3; }
.about__images .b { grid-row: 1; }
.about__images .c { grid-row: 2; }
.about__images .badge {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--script);
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.about__prose .eyebrow { margin-bottom: 18px; }
.about__prose .script-kicker {
  font-family: var(--script);
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 6px;
}
.about__prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--crepe);
  margin: 0 0 28px;
  text-wrap: balance;
}
.about__prose h2 em { font-style: italic; color: var(--gold); }
.about__prose .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--crepe);
  margin: 0 0 24px;
  max-width: 26ch;
}
.about__prose p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--crepe-70);
  margin: 0 0 16px;
  max-width: 44ch;
}
.about__signoff {
  margin-top: 28px;
  display: flex; align-items: center; gap: 18px;
}
.about__signoff .sig {
  font-family: var(--script);
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
}
.about__signoff .meta {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crepe-70);
  border-left: 1px solid rgba(189, 153, 101, 0.4);
  padding-left: 18px;
}

/* ---------- Five foundations grid ---------- */

.foundations {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(189,153,101,0.25);
  border-bottom: 1px solid rgba(189,153,101,0.25);
}
.foundation {
  padding: 56px 28px 48px;
  text-align: center;
  border-left: 1px solid rgba(189,153,101,0.2);
  transition: background 300ms var(--ease);
}
.foundation:first-child { border-left: 0; }
.foundation:hover { background: rgba(189,153,101,0.06); }
.foundation__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
}
.foundation__icon {
  width: 32px; height: 32px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(69%) sepia(11%) saturate(978%) hue-rotate(5deg) brightness(97%) contrast(82%);
}
.foundation h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  color: var(--crepe);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.foundation h4 em { font-style: italic; color: var(--gold); }
.foundation p {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--crepe-70);
  margin: 0 auto;
  max-width: 24ch;
  letter-spacing: 0.02em;
}

/* ---------- Journey (vertical timeline) ---------- */

.journey {
  padding: 140px 40px 140px;
  position: relative;
}
.journey__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.journey__rail {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    rgba(189, 153, 101, 0) 0%,
    rgba(189, 153, 101, 0.55) 8%,
    rgba(189, 153, 101, 0.55) 92%,
    rgba(189, 153, 101, 0) 100%);
  transform: translateX(-0.5px);
}
.journey__rail-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  background: var(--gold);
  transform: translateX(-0.5px);
  height: 0;
  transition: height 120ms linear;
  box-shadow: 0 0 12px rgba(189,153,101,0.6);
}
.journey__steps {
  display: grid;
  gap: 96px;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}
.step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
  opacity: 0.35;
  filter: saturate(0.7);
  transition: opacity 500ms var(--ease), filter 500ms var(--ease);
}
.step.is-active { opacity: 1; filter: none; }

.step__side {
  min-height: 1px;
}
.step__card {
  background: rgba(26, 27, 28, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(189,153,101,0.3);
  padding: 32px 34px;
  position: relative;
  transition: transform 500ms var(--ease), border-color 500ms var(--ease);
}
.step.is-active .step__card {
  border-color: rgba(189,153,101,0.75);
  transform: translateY(0);
}
.step__card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.step__card .num::before {
  content: '';
  width: 22px; height: 1px; background: var(--gold); opacity: 0.6;
}
.step__card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  color: var(--crepe);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.step__card h4 em { font-style: italic; color: var(--gold); }
.step__card p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--crepe-70);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.step__card .meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.step__card .meta .pip { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.step--left  .step__card { text-align: right; }
.step--left  .step__card .num { justify-content: flex-end; }
.step--left  .step__card .num::before { order: 2; }
.step--left  .step__card .meta { justify-content: flex-end; }
.step--left  .step__side:last-child { display: block; }
.step--right .step__card { text-align: left; }
.step--left  .step__side:first-child { padding-right: 8px; }
.step--right .step__side:last-child  { padding-left: 8px; }

/* Gold dot on the rail */
.step__dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--charr);
  border: 1px solid rgba(189, 153, 101, 0.55);
  position: relative;
  transition: all 400ms var(--ease);
  justify-self: center;
}
.step.is-active .step__dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(189, 153, 101, 0.16), 0 0 18px rgba(189, 153, 101, 0.6);
}
.step__dot .roman {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.step.is-active .step__dot .roman { opacity: 1; }
.step--left  .step__dot .roman { left: calc(100% + 14px); color: var(--charr); }
.step--right .step__dot .roman { right: calc(100% + 14px); color: var(--charr); }

/* ---------- CTA strip (start the journey) ---------- */

.cta-strip {
  padding: 140px 40px;
  text-align: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(15,12,10,0.52) 0%, rgba(15,12,10,0.74) 100%),
    url('assets/img-spices.jpg') center bottom/cover no-repeat;
  border-top: 1px solid rgba(189,153,101,0.28);
  border-bottom: 1px solid rgba(189,153,101,0.28);
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, transparent 0%, rgba(10,8,7,0.6) 100%);
  pointer-events: none;
}
.cta-strip__inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.cta-strip .script { font-size: 44px; line-height: 1; margin-bottom: 6px; }
.cta-strip h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--crepe);
  margin: 0 auto 24px;
  max-width: 16ch;
  text-wrap: balance;
}
.cta-strip h2 em { font-style: italic; color: var(--gold); }
.cta-strip p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--crepe-70);
  letter-spacing: 0.02em;
  max-width: 52ch;
  margin: 0 auto 36px;
}
.cta-strip .btns { display: inline-flex; gap: 18px; flex-wrap: wrap; justify-content: center; }

/* Contact form inside CTA strip */
.cta-form { width: 100%; max-width: 640px; margin: 32px auto 0; text-align: left; }
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 600px) { .cta-form__row { grid-template-columns: 1fr; } }
.cta-form__input {
  width: 100%;
  background: rgba(26, 27, 28, 0.55);
  border: 1px solid rgba(189, 153, 101, 0.30);
  border-radius: 3px;
  color: var(--crepe);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.cta-form__input::placeholder { color: rgba(222,214,200,0.38); }
.cta-form__input:focus { border-color: rgba(189, 153, 101, 0.70); }
.cta-form__textarea { resize: vertical; min-height: 110px; }
.cta-form__error { color: #d97c6e; font-family: var(--sans); font-size: 12px; margin: 8px 0 0; letter-spacing: 0.03em; }
.cta-form__success { padding: 32px 0 8px; text-align: center; }

/* ---------- FAQ ---------- */

.faq {
  padding: 128px 40px;
}
.faq__inner {
  max-width: 920px;
  margin: 0 auto;
}
.faq__list {
  margin-top: 16px;
  border-top: 1px solid rgba(189, 153, 101, 0.25);
}
.faq__item {
  border-bottom: 1px solid rgba(189, 153, 101, 0.25);
  transition: background 300ms var(--ease);
}
.faq__item.is-open { background: rgba(189, 153, 101, 0.04); }
.faq__q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 30px 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.faq__q:hover .faq__q-text { color: var(--gold); }
.faq__q-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
  width: 36px;
}
.faq__q-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.3;
  color: var(--crepe);
  letter-spacing: -0.01em;
  transition: color 220ms var(--ease);
  text-wrap: balance;
}
.faq__q-text em { font-style: italic; color: var(--gold); }
.faq__q-icon {
  width: 26px; height: 26px;
  position: relative;
  display: inline-block;
  transition: transform 380ms var(--ease);
}
.faq__q-icon::before,
.faq__q-icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--gold);
  transition: opacity 280ms var(--ease), transform 380ms var(--ease);
}
.faq__q-icon::before { width: 16px; height: 1px; transform: translate(-50%, -50%); }
.faq__q-icon::after  { width: 1px; height: 16px; transform: translate(-50%, -50%); }
.faq__item.is-open .faq__q-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item.is-open .faq__q-icon { transform: rotate(180deg); }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 420ms var(--ease);
}
.faq__a-inner {
  padding: 0 8px 32px 68px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--crepe-70);
  letter-spacing: 0.02em;
  max-width: 64ch;
}
.faq__a-inner em { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.05em; }
.faq__a-inner a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(189,153,101,0.5); padding-bottom: 1px; }
.faq__a-inner p { margin: 0 0 12px; }

.faq__foot {
  margin-top: 48px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--crepe-70);
}
.faq__foot a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

/* ---------- Footer ---------- */

.footer {
  padding: 80px 40px 40px;
  border-top: 1px solid rgba(189, 153, 101, 0.25);
  background: rgba(26, 27, 28, 0.78);
  backdrop-filter: blur(12px);
}
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 60px;
  align-items: start;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--crepe);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 180ms;
}
.footer li:hover { color: var(--gold); }
.footer .signature {
  font-family: var(--script);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.footer .solace {
  font-family: var(--serif);
  letter-spacing: 0.32em;
  font-size: 20px;
  color: var(--crepe);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer .mission {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--crepe-70);
  line-height: 1.6;
  max-width: 30ch;
}
.footer__disclaimer {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(189, 153, 101, 0.12);
}
.footer__disclaimer p {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.02em;
  color: rgba(222, 214, 200, 0.45);
  line-height: 1.75;
  margin: 0;
  max-width: 80ch;
}
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(189, 153, 101, 0.18);
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--crepe-70);
}

/* ---------- Tweaks panel ---------- */

.tweaks {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 280px;
  padding: 20px 22px 22px;
  background: rgba(26, 27, 28, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(189, 153, 101, 0.5);
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  font-family: var(--sans);
  color: var(--crepe);
  display: none;
}
.tweaks.is-on { display: block; }
.tweaks__title {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks__title .hs { font-family: var(--script); color: var(--gold); font-size: 20px; text-transform: none; letter-spacing: 0; }
.tweaks__row { margin: 14px 0; }
.tweaks__row label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crepe-70);
  margin-bottom: 8px;
}
.tweaks__swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.tweaks__swatch {
  width: 28px; height: 28px;
  border-radius: 2px;
  border: 1px solid rgba(189,153,101,0.35);
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}
.tweaks__swatch:hover { transform: translateY(-2px); }
.tweaks__swatch.is-on { border-color: var(--crepe); box-shadow: 0 0 0 2px rgba(222,214,200,0.35); }
.tweaks__options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks__chip {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crepe-70);
  padding: 7px 12px;
  border: 1px solid rgba(189,153,101,0.35);
  background: transparent;
  cursor: pointer;
  border-radius: 2px;
  transition: all 180ms var(--ease);
}
.tweaks__chip:hover { color: var(--crepe); border-color: var(--gold); }
.tweaks__chip.is-on { background: var(--gold); color: var(--charr); border-color: var(--gold); }

/* ---------- Responsive-ish guards ---------- */
@media (max-width: 960px) {
  .nav { display: none; }
  .topbar { grid-template-columns: 1fr auto; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy__side + .philosophy__side { border-left: 0; border-top: 1px solid rgba(189,153,101,0.22); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .foundations { grid-template-columns: repeat(2, 1fr); }
  .foundation { border-left: 1px solid rgba(189,153,101,0.2); }
  .foundation:nth-child(odd) { border-left: 0; }
  .step { grid-template-columns: 24px 1fr; gap: 20px; }
  .step__side:first-child { display: none; }
  .step--left .step__card { text-align: left; }
  .step--left .step__card .num { justify-content: flex-start; }
  .step--left .step__card .num::before { order: 0; }
  .step--left .step__card .meta { justify-content: flex-start; }
  .journey__rail, .journey__rail-fill { left: 12px; }
  .hero h1 { font-size: clamp(44px, 9vw, 72px); }
}
