/* Arete — marketing site styles */

:root {
  --bg-0: #0a1020;
  --bg-1: #0f1629;
  --bg-2: #16213e;
  --bg-3: #1a2545;
  --gold: #c9a84c;
  --gold-light: #e3c77a;
  --gold-dim: #c9a84c44;
  --gold-soft: #c9a84c22;
  --ivory: #f4ead5;
  --text: #e8e4d6;
  --muted: #8a8b8e;
  --serif: 'Cormorant Garamond', 'Trajan Pro', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-0); color: var(--text); }
body { font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--bg-1); }

.arete-site {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201,168,76,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 40%, var(--bg-0));
  min-height: 100vh;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1); }
.reveal.revealed { opacity: 1; transform: none; }

/* ====== TOP BAR ====== */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s ease;
  padding: 18px 0;
}
.topbar-scrolled {
  background: rgba(10,16,32,0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-dim);
  padding: 12px 0;
}
.topbar-inner {
  max-width: 1380px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.topbar-brand { display: flex; align-items: center; gap: 10px; }
.topbar-name { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: 0.3em; color: var(--gold); }
.topbar-nav { display: flex; gap: 28px; font-size: 13px; color: var(--text); letter-spacing: 0.02em; }
.topbar-nav a { opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.topbar-nav a:hover { opacity: 1; color: var(--gold); }
.topbar-cta {
  padding: 10px 20px; border: 1px solid var(--gold); border-radius: 999px;
  color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  transition: all 0.2s;
}
.topbar-cta:hover { background: var(--gold); color: var(--bg-1); }
@media (max-width: 900px) {
  .topbar-nav { display: none; }
}

/* ====== BUTTONS ====== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--bg-1);
  padding: 14px 26px; border-radius: 999px; border: none;
  font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 10px 40px -10px rgba(201,168,76,0.5);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 18px 50px -10px rgba(201,168,76,0.6); }
.btn-primary.full { width: 100%; justify-content: center; margin-top: 8px; }
.btn-primary.big { padding: 18px 34px; font-size: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border: 1px solid var(--gold-dim);
  border-radius: 999px; color: var(--gold);
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); background: var(--gold-soft); }
.btn-ghost.big { padding: 18px 30px; font-size: 16px; }

/* ====== HERO 1 — Editorial ====== */
.hero-ed {
  position: relative; min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201,168,76,0.1), transparent 60%);
}
.hero-ed-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,0.45) 0, transparent 50%),
    radial-gradient(1px 1px at 28% 66%, rgba(201,168,76,0.35) 0, transparent 50%),
    radial-gradient(1px 1px at 44% 22%, rgba(255,255,255,0.3) 0, transparent 50%),
    radial-gradient(1px 1px at 68% 78%, rgba(255,255,255,0.4) 0, transparent 50%),
    radial-gradient(1px 1px at 82% 34%, rgba(201,168,76,0.4) 0, transparent 50%),
    radial-gradient(1px 1px at 92% 62%, rgba(255,255,255,0.3) 0, transparent 50%),
    radial-gradient(1.5px 1.5px at 18% 82%, rgba(201,168,76,0.5) 0, transparent 50%),
    radial-gradient(1px 1px at 56% 48%, rgba(255,255,255,0.35) 0, transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}
.hero-ed-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, transparent, var(--bg-0) 90%);
  pointer-events: none;
}
.hero-ed-pediment {
  position: absolute; top: 70px; left: 0; right: 0;
  opacity: 0.5; pointer-events: none;
}
.hero-ed-inner {
  position: relative; z-index: 2;
  max-width: 1380px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.hero-ed-left { max-width: 620px; }
.hero-ed-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.kicker-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 12px var(--gold); }
.hero-ed-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.95; letter-spacing: -0.015em;
  margin: 0 0 30px;
  color: var(--ivory);
}
.hero-ed-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-ed-sub {
  font-family: var(--serif); font-size: 21px; line-height: 1.55;
  color: var(--text); opacity: 0.88; margin: 0 0 36px;
  max-width: 560px; text-wrap: pretty;
}
.gold-italic { color: var(--gold); font-style: italic; }
.hero-ed-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-ed-trust { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; }
.hero-ed-trust .dot { color: var(--gold); opacity: 0.5; }

.hero-ed-right {
  position: relative; height: 720px; display: flex; justify-content: center; align-items: center;
}
.hero-ed-phone-wrap {
  position: relative; z-index: 3;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.6));
}
.hero-ed-halo {
  position: absolute; inset: -80px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent 60%);
  z-index: -1; pointer-events: none;
}
.hero-ed-phone-back {
  position: absolute; right: -30px; top: 60px; z-index: 1;
  transform: rotate(6deg) translate(0,0);
  opacity: 0.7;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.hero-ed-quote-card {
  position: absolute; left: -40px; bottom: 40px; z-index: 4;
  background: linear-gradient(135deg, #14203f, #0c1428);
  border: 1px solid var(--gold-dim);
  border-radius: 14px; padding: 22px 26px;
  max-width: 260px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.hero-ed-quote-mark {
  font-family: var(--serif); font-size: 56px; line-height: 0.3;
  color: var(--gold); opacity: 0.6;
  position: absolute; top: 16px; left: 14px;
}
.hero-ed-quote-text {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--ivory); line-height: 1.4;
  padding-left: 18px;
}
.hero-ed-quote-attr {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 10px; padding-left: 18px;
}

.hero-ed-marquee, .hero-mon-marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 0; border-top: 1px solid var(--gold-dim);
  background: rgba(10,16,32,0.4);
  overflow: hidden;
}
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.marquee-track {
  display: flex; gap: 40px; align-items: center;
  white-space: nowrap;
  animation: marquee 44s linear infinite;
  font-family: var(--serif);
}
.marquee-name { font-size: 18px; font-style: italic; color: var(--ivory); opacity: 0.7; }
.marquee-dot { color: var(--gold); font-size: 12px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .hero-ed-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-ed-right { height: 600px; }
  .hero-ed-phone-back { display: none; }
}

/* ====== HERO 2 — Monumental ====== */
.hero-mon {
  position: relative; min-height: 100vh;
  padding: 160px 40px 100px;
  text-align: center; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-mon-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 40%, rgba(201,168,76,0.12), transparent 60%),
    linear-gradient(180deg, var(--bg-0), #0a1020);
}
.hero-mon-columns {
  position: absolute; inset: 0; top: 120px;
  display: flex; justify-content: space-around; align-items: flex-end;
  padding: 0 60px; opacity: 0.18;
  filter: blur(0.2px);
  pointer-events: none;
}
.hero-mon-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.hero-mon-kicker {
  font-family: var(--serif); font-size: 24px; font-style: italic;
  color: var(--gold); letter-spacing: 0.4em; margin-bottom: 40px;
}
.hero-mon-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(72px, 12vw, 170px);
  line-height: 0.9; letter-spacing: -0.02em;
  margin: 0 0 50px; color: var(--ivory);
  text-shadow: 0 0 80px rgba(201,168,76,0.15);
}
.hero-mon-rotator {
  position: relative; height: 90px; margin: 0 auto 50px;
}
.hero-mon-quote {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-mon-quote.active { opacity: 1; }
.hero-mon-q-text {
  font-family: var(--serif); font-style: italic; font-size: 24px;
  color: var(--ivory); line-height: 1.4; max-width: 720px;
}
.hero-mon-q-by {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-top: 14px;
}
.hero-mon-cta { margin-top: 20px; }

/* ====== SECTION HEADS ====== */
section { padding: 120px 40px; position: relative; }
.section-head { max-width: 900px; margin: 0 auto 80px; text-align: center; }
.section-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 22px;
}
.section-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 1.02; letter-spacing: -0.015em;
  margin: 0 0 24px; color: var(--ivory);
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.section-rule { display: flex; justify-content: center; margin: 12px 0 28px; }
.section-lede {
  font-family: var(--serif); font-size: 21px; line-height: 1.55;
  color: var(--text); opacity: 0.82; max-width: 720px; margin: 0 auto;
  text-wrap: pretty;
}
.section-lede em { color: var(--gold); }

/* ====== CABINET ====== */
.cabinet-section { background: linear-gradient(180deg, var(--bg-0), #070c1a); }
.cabinet-layout {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px;
}
.cabinet-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.cab-card {
  background: linear-gradient(180deg, rgba(22,33,62,0.5), rgba(12,20,40,0.5));
  border: 1px solid var(--gold-dim);
  border-radius: 14px; padding: 18px 12px 16px;
  text-align: center; cursor: pointer;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  color: inherit; font-family: inherit;
  position: relative; overflow: hidden;
}
.cab-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.18), transparent 60%);
  opacity: 0; transition: opacity 0.35s;
}
.cab-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.cab-card:hover::before { opacity: 1; }
.cab-card.active {
  border-color: var(--gold); background: linear-gradient(180deg, rgba(201,168,76,0.08), rgba(12,20,40,0.5));
}
.cab-card.active::before { opacity: 1; }
.cab-bust { margin-bottom: 8px; position: relative; z-index: 1; display: flex; justify-content: center; }
.cab-name { font-family: var(--serif); font-size: 18px; color: var(--ivory); font-weight: 500; position: relative; z-index: 1; }
.cab-era { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--muted); margin-top: 2px; position: relative; z-index: 1; }
.cab-tag {
  display: inline-block; margin-top: 10px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding: 4px 10px;
  border: 1px solid var(--gold-dim); border-radius: 999px;
  background: rgba(201,168,76,0.08);
  position: relative; z-index: 1;
}
.cabinet-detail {
  background: linear-gradient(180deg, #121b36, #0a1224);
  border: 1px solid var(--gold-dim);
  border-radius: 20px; padding: 36px 32px;
  position: sticky; top: 100px; height: fit-content;
  text-align: center;
}
.cab-detail-bust { display: flex; justify-content: center; margin-bottom: 18px; }
.cab-detail-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.cab-detail-name { font-family: var(--serif); font-size: 34px; color: var(--ivory); margin: 6px 0 4px; font-weight: 500; }
.cab-detail-cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 22px; }
.cab-detail-quote {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  color: var(--gold); line-height: 1.5; margin: 0 0 22px;
  border-left: 2px solid var(--gold); padding: 4px 0 4px 18px; text-align: left;
}
.cab-detail-bio { font-size: 14.5px; line-height: 1.6; color: var(--text); opacity: 0.82; margin: 0 0 18px; text-align: left; }
.cab-detail-voice { font-family: var(--serif); font-style: italic; font-size: 14.5px; color: var(--text); opacity: 0.75; text-align: left; padding-top: 16px; border-top: 1px solid var(--gold-dim); }
.voice-label { display: block; font-family: var(--mono); font-style: normal; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }

@media (max-width: 1100px) {
  .cabinet-layout { grid-template-columns: 1fr; }
  .cabinet-detail { position: static; }
  .cabinet-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .cabinet-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====== DAY IN ARETE ====== */
.day-section { background: linear-gradient(180deg, #070c1a, var(--bg-0)); }
.day-timeline {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 90px;
}
.day-step {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.day-step:nth-child(even) { direction: rtl; }
.day-step:nth-child(even) > * { direction: ltr; }
.day-step-phone { display: flex; justify-content: center; filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5)); }
.day-step-time {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 16px;
}
.day-step-title {
  font-family: var(--serif); font-size: 54px; line-height: 1;
  margin: 0 0 20px; color: var(--ivory); font-weight: 400;
}
.day-step-desc {
  font-family: var(--serif); font-size: 20px; line-height: 1.55;
  color: var(--text); opacity: 0.82; max-width: 460px; text-wrap: pretty;
}
@media (max-width: 900px) {
  .day-step { grid-template-columns: 1fr; }
  .day-step:nth-child(even) { direction: ltr; }
}

/* ====== FEATURES ====== */
.features-section { background: var(--bg-0); }
.features-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.feat-card {
  padding: 32px 26px 30px;
  background: linear-gradient(180deg, rgba(22,33,62,0.4), rgba(12,20,40,0.4));
  border: 1px solid var(--gold-dim);
  border-radius: 16px;
  transition: all 0.3s;
}
.feat-card:hover { border-color: var(--gold); transform: translateY(-3px); background: linear-gradient(180deg, rgba(201,168,76,0.05), rgba(12,20,40,0.5)); }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(201,168,76,0.1); border: 1px solid var(--gold-dim); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feat-title { font-family: var(--serif); font-size: 22px; color: var(--ivory); margin-bottom: 8px; }
.feat-desc { font-size: 14.5px; line-height: 1.55; color: var(--text); opacity: 0.76; }
@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

/* ====== SCROLLS ====== */
.scrolls-section { background: linear-gradient(180deg, var(--bg-0), #050912); }
.scrolls-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.scroll-card {
  padding: 36px 32px;
  background: linear-gradient(180deg, #121b36 0%, #0a1224 100%);
  border: 1px solid var(--gold-dim);
  border-radius: 18px;
  position: relative; overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}
.scroll-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.scroll-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.scroll-kicker { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 18px; }
.scroll-title { font-family: var(--serif); font-size: 28px; line-height: 1.15; margin: 0 0 10px; color: var(--ivory); font-weight: 500; }
.scroll-author { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.scroll-excerpt { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.55; color: var(--text); opacity: 0.85; margin: 0 0 28px; }
.scroll-footer { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 900px) { .scrolls-grid { grid-template-columns: 1fr; } }

/* ====== PRINCIPLES ====== */
.principles-section { background: #050912; }
.principles-list {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.principle-row {
  display: grid; grid-template-columns: 80px 280px 1fr; gap: 30px;
  padding: 32px 20px; border-bottom: 1px solid var(--gold-dim);
  align-items: baseline; transition: background 0.3s;
}
.principle-row:hover { background: rgba(201,168,76,0.03); }
.principle-row:first-child { border-top: 1px solid var(--gold-dim); }
.principle-numeral { font-family: var(--serif); font-size: 40px; color: var(--gold); font-weight: 300; letter-spacing: 0.05em; }
.principle-title { font-family: var(--serif); font-size: 28px; color: var(--ivory); font-weight: 500; }
.principle-desc { font-family: var(--serif); font-size: 18px; line-height: 1.55; color: var(--text); opacity: 0.78; text-wrap: pretty; }
.principles-seal {
  text-align: center; margin: 80px auto 0;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.seal-motto { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--gold); max-width: 600px; line-height: 1.4; }
@media (max-width: 900px) {
  .principle-row { grid-template-columns: 60px 1fr; }
  .principle-desc { grid-column: 1 / -1; padding-left: 90px; margin-top: 8px; }
}

/* ====== PRICING ====== */
.pricing-section { background: linear-gradient(180deg, #050912, var(--bg-0)); }
.pricing-cards {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.price-card {
  position: relative;
  padding: 48px 36px;
  background: linear-gradient(180deg, rgba(22,33,62,0.5), rgba(12,20,40,0.5));
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(201,168,76,0.08), rgba(12,20,40,0.5));
  border: 1.5px solid var(--gold);
  box-shadow: 0 30px 80px -20px rgba(201,168,76,0.3);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg-1);
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
}
.price-tier { font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.price-amount { font-family: var(--serif); font-size: 72px; color: var(--ivory); line-height: 1; margin: 16px 0 6px; font-weight: 400; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 4px; }
.price-currency { font-size: 38px; color: var(--gold); font-weight: 300; }
.price-per { font-size: 20px; color: var(--muted); font-weight: 400; }
.price-period { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; }
.price-list li {
  padding: 10px 0; font-size: 14.5px; color: var(--text);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex; align-items: center; gap: 10px;
}
.price-list li::before { content: '✦'; color: var(--gold); font-size: 11px; }
@media (max-width: 700px) { .pricing-cards { grid-template-columns: 1fr; } }

/* ====== FAQ ====== */
.faq-section { background: var(--bg-0); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gold-dim);
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 4px;
  font-family: var(--serif); font-size: 23px; color: var(--ivory);
  transition: color 0.2s;
}
.faq-item:hover .faq-q { color: var(--gold); }
.faq-plus { font-family: var(--serif); font-size: 28px; color: var(--gold); font-weight: 300; }
.faq-a-wrap {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a {
  overflow: hidden;
  font-family: var(--serif); font-size: 17px; line-height: 1.6;
  color: var(--text); opacity: 0.78;
  padding: 0 4px;
  max-width: 680px; text-wrap: pretty;
}
.faq-item.open .faq-a { padding: 0 4px 26px; }

/* ====== FOOTER ====== */
.footer-section {
  background: radial-gradient(ellipse 60% 70% at 50% 0%, rgba(201,168,76,0.1), transparent 60%), #050912;
  padding-bottom: 40px;
}
.footer-cta {
  text-align: center; max-width: 800px; margin: 0 auto 100px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.footer-title { font-family: var(--serif); font-size: clamp(40px, 6vw, 80px); line-height: 1; margin: 8px 0 10px; color: var(--ivory); font-weight: 400; letter-spacing: -0.015em; }
.footer-sub { font-family: var(--serif); font-size: 22px; font-style: italic; color: var(--gold); margin: 0 0 20px; }
.footer-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.footer-base {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid var(--gold-dim);
  padding: 48px 0 32px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand-name { font-family: var(--serif); font-size: 22px; letter-spacing: 0.3em; color: var(--gold); font-weight: 600; }
.footer-brand-motto { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--muted); margin-top: 2px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-col-title { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-cols a { display: block; padding: 5px 0; font-size: 14px; color: var(--text); opacity: 0.72; transition: all 0.2s; }
.footer-cols a:hover { color: var(--gold); opacity: 1; }
.footer-copy { text-align: center; max-width: 1280px; margin: 40px auto 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); }
@media (max-width: 780px) {
  .footer-base { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

.footer-disclaimer {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 0 24px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.3);
  text-align: center;
}