/* ═══════════════════════════════════════════════════════════
   SHARED BASE
═══════════════════════════════════════════════════════════ */

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


/* ═══════════════════════════════════════════════════════════
   LANDING PAGE — myga-landing.html
   Requires: <body class="landing">
═══════════════════════════════════════════════════════════ */

body.landing {
  --gold: #C9A84C;
  --gold-light: #E8CC80;
  --gold-dim: #8C6E2F;
  --navy: #0D1B2A;
  --navy-mid: #162436;
  --navy-light: #1E3148;
  --slate: #2E4A63;
  --cream: #F5F0E8;
  --cream-dim: #EAE3D5;
  --text-primary: #F0EAE0;
  --text-muted: #8DA0B3;
  --divider: rgba(201, 168, 76, 0.18);
  --card-bg: rgba(22, 36, 54, 0.85);
  --card-border: rgba(201, 168, 76, 0.22);

  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

body.landing::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201,168,76,0.07) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.015) 60px,
      rgba(201,168,76,0.015) 61px
    );
  pointer-events: none;
  z-index: 0;
}

body.landing header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--divider);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
body.landing .logo-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 300;
}
.header-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 56px 48px 40px;
  border-bottom: 1px solid var(--divider);
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  max-width: 680px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.6;
}

.main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  min-height: calc(100vh - 200px);
}

.products-panel {
  border-right: 1px solid var(--divider);
  padding: 36px 32px;
  overflow-y: auto;
}

.carrier { margin-bottom: 36px; }

.carrier-name {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.carrier-name::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.product-group { margin-bottom: 28px; }

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.rate-table {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 9px 14px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.rate-row:hover {
  background: rgba(201,168,76,0.06);
  border-color: var(--card-border);
}
.rate-row.active {
  background: rgba(201,168,76,0.10);
  border-color: rgba(201,168,76,0.4);
}

.rate-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rate-info.stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.rate-info.stacked .rate-inner {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rate-term {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  min-width: 52px;
}
.rate-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
}
.rate-value-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}

.rate-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-illustrate, .btn-apply {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  white-space: nowrap;
}
.btn-illustrate {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold);
}
.btn-illustrate:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.btn-illustrate.active-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.btn-apply {
  background: transparent;
  border: 1px solid rgba(141,160,179,0.3);
  color: var(--text-muted);
  text-decoration: none;
  display: inline-block;
}
.btn-apply:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

/* ── Illustrator ── */
.illustrator-panel {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
}

.panel-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider);
}

.illustrator-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  gap: 16px;
}
.illustrator-empty.hidden { display: none; }

.empty-icon {
  width: 64px; height: 64px;
  border: 1.5px solid var(--divider);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.empty-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.illustrator-content {
  display: none;
  flex-direction: column;
  gap: 24px;
}
.illustrator-content.visible { display: flex; }

.controls-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: end;
}
.control-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.control-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.control-input {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 5px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.control-input:focus { border-color: var(--gold); }

.summary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.summary-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 16px 20px;
}
.summary-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.summary-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
}
.summary-card-value.large {
  font-size: 1.85rem;
  color: var(--cream);
}

.chart-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 24px;
  position: relative;
}
.chart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.footnote {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 14px;
  border-top: 1px solid var(--divider);
  opacity: 0.65;
}

@media (max-width: 960px) {
  .main-grid { grid-template-columns: 1fr; }
  .products-panel { border-right: none; border-bottom: 1px solid var(--divider); }
  .site-header { padding: 0 20px; }
  .hero { padding: 36px 20px 28px; }
  .illustrator-panel { padding: 32px 20px; }
}


/* ═══════════════════════════════════════════════════════════
   INTERVIEW PAGE — myga-interview.html
   Requires: <body class="interview">
═══════════════════════════════════════════════════════════ */

body.interview {
  --navy: #0f1e2e; --navy-mid: #162437; --gold: #c9a84c;
  --gold-light: #e0c06e; --cream: #faf8f3; --muted: #6b7280;
  --border: rgba(201,168,76,0.25);
  --divider: rgba(201,168,76,0.25);
  --text-muted: #6b7280;
  --text-primary: #faf8f3;

  background: var(--navy); font-family: 'Jost', sans-serif; color: var(--cream); min-height: 100vh; overflow-x: hidden;
}
body.interview::before { content:''; position:fixed; inset:0; background: radial-gradient(ellipse 80% 60% at 20% -10%, rgba(201,168,76,0.07) 0%, transparent 60%), radial-gradient(ellipse 60% 80% at 90% 110%, rgba(201,168,76,0.05) 0%, transparent 50%); pointer-events:none; z-index:0; }
.mountain-bg { position:fixed; bottom:0; left:0; width:100%; opacity:0.06; pointer-events:none; z-index:0; }
.logo-text h1 { font-family:'Cormorant Garamond',serif; font-size:1.55rem; font-weight:500; letter-spacing:0.04em; color:var(--cream); line-height:1; }
.logo-text span { font-family:'Jost',sans-serif; font-size:0.68rem; font-weight:400; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); display:block; margin-top:4px; }
.progress-wrap { position:sticky; top:72px; z-index:9; background:rgba(15,30,46,0.95); backdrop-filter:blur(8px); border-bottom:1px solid var(--border); padding:0.75rem 3rem; display:flex; align-items:center; gap:1.5rem; }
.progress-label { font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); white-space:nowrap; font-weight:500; }
.progress-track { flex:1; height:2px; background:rgba(255,255,255,0.08); border-radius:2px; overflow:hidden; }
.progress-fill { height:100%; background:linear-gradient(90deg,var(--gold),var(--gold-light)); border-radius:2px; transition:width .5s ease; }
.progress-pct { font-size:0.72rem; color:var(--muted); font-variant-numeric:tabular-nums; white-space:nowrap; }
main { position:relative; z-index:1; max-width:760px; margin:0 auto; padding:3rem 2rem 6rem; }
.section { display:none; animation:fadeUp .45s ease; }
.section.active { display:block; }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.section-tag { font-size:0.68rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); font-weight:500; margin-bottom:0.5rem; }
.section-title { font-family:'Cormorant Garamond',serif; font-size:2.4rem; font-weight:400; line-height:1.15; color:var(--cream); margin-bottom:0.5rem; }
.divider { width:40px; height:1px; background:var(--gold); margin:1rem 0 2rem; opacity:0.6; }
.field-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; }
.field-grid .full { grid-column:1/-1; }
.field { display:flex; flex-direction:column; gap:0.45rem; }
.field label { font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(250,248,243,0.6); font-weight:500; }
.field input, .field select, .field textarea { background:rgba(255,255,255,0.04); border:1px solid rgba(201,168,76,0.2); border-radius:4px; padding:0.75rem 1rem; font-family:'Jost',sans-serif; font-size:0.92rem; font-weight:300; color:var(--cream); outline:none; transition:border-color .2s,background .2s; width:100%; }
.field input::placeholder { color:rgba(250,248,243,0.22); }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--gold); background:rgba(201,168,76,0.06); }
.field select { cursor:pointer; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 1rem center; padding-right:2.5rem; }
.field select option { background:var(--navy); color:var(--cream); }
.field textarea { resize:vertical; min-height:90px; }
.radio-group, .check-group { display:flex; flex-wrap:wrap; gap:0.6rem; }
.radio-group label, .check-group label { display:flex; align-items:center; gap:0.5rem; padding:0.55rem 1rem; border:1px solid rgba(201,168,76,0.2); border-radius:4px; cursor:pointer; font-size:0.85rem; font-weight:400; letter-spacing:0.03em; color:rgba(250,248,243,0.75); text-transform:none; transition:all .18s; background:rgba(255,255,255,0.02); user-select:none; }
.radio-group label:hover, .check-group label:hover { border-color:var(--gold); color:var(--cream); background:rgba(201,168,76,0.07); }
.radio-group input[type=radio], .check-group input[type=checkbox] { width:14px; height:14px; accent-color:var(--gold); flex-shrink:0; cursor:pointer; }
.radio-group label.selected, .check-group label.selected { border-color:var(--gold); color:var(--gold-light); background:rgba(201,168,76,0.1); }
.field-hint { font-size:0.76rem; color:rgba(250,248,243,0.35); font-weight:300; line-height:1.5; margin-top:0.25rem; }
.ben-row { background:rgba(255,255,255,0.025); border:1px solid rgba(201,168,76,0.12); border-radius:6px; padding:1.25rem; margin-bottom:1rem; }
.ben-row-title { font-size:0.72rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); font-weight:500; margin-bottom:1rem; }
.nav-btns { display:flex; align-items:center; gap:1rem; margin-top:2.5rem; padding-top:2rem; border-top:1px solid rgba(201,168,76,0.12); }
.btn-next { padding:.85rem 2.5rem; background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%); color:var(--navy); border:none; border-radius:4px; font-family:'Jost',sans-serif; font-size:0.8rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; cursor:pointer; transition:all .2s; display:flex; align-items:center; gap:0.6rem; }
.btn-next:hover { transform:translateY(-1px); box-shadow:0 8px 24px rgba(201,168,76,0.25); }
.btn-back { padding:.85rem 1.5rem; background:transparent; color:rgba(250,248,243,0.5); border:1px solid rgba(250,248,243,0.12); border-radius:4px; font-family:'Jost',sans-serif; font-size:0.8rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; cursor:pointer; transition:all .2s; }
.btn-back:hover { color:var(--cream); border-color:rgba(250,248,243,0.3); }
.summary-block { background:rgba(255,255,255,0.03); border:1px solid var(--border); border-radius:6px; padding:1.5rem; margin-bottom:1.25rem; }
.summary-block h3 { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:500; color:var(--gold-light); margin-bottom:1rem; padding-bottom:0.75rem; border-bottom:1px solid rgba(201,168,76,0.15); }
.summary-row { display:flex; justify-content:space-between; align-items:baseline; padding:.4rem 0; gap:1rem; }
.summary-row:not(:last-child) { border-bottom:1px solid rgba(255,255,255,0.04); }
.sum-key { font-size:0.75rem; letter-spacing:0.08em; text-transform:uppercase; color:rgba(250,248,243,0.45); flex-shrink:0; }
.sum-val { font-size:0.88rem; color:rgba(250,248,243,0.85); text-align:right; font-weight:300; }
.welcome { text-align:center; padding:4rem 2rem; }
.welcome .icon { display:inline-flex; align-items:center; justify-content:center; width:72px; height:72px; border:1px solid var(--border); border-radius:50%; margin-bottom:2rem; }
.welcome .section-title { font-size:3rem; }
.welcome .section-desc { font-size:0.9rem; color:rgba(250,248,243,0.55); line-height:1.7; max-width:520px; margin:1rem auto 2.5rem; font-weight:300; }
.chips { display:flex; flex-wrap:wrap; justify-content:center; gap:0.6rem; margin-bottom:3rem; }
.chip { padding:.35rem .9rem; border:1px solid rgba(201,168,76,0.25); border-radius:100px; font-size:0.75rem; letter-spacing:0.08em; color:rgba(250,248,243,0.55); font-weight:400; }
.ai-chat-bubble { background:rgba(201,168,76,0.08); border:1px solid rgba(201,168,76,0.2); border-radius:8px; padding:1.25rem 1.5rem; margin-bottom:2rem; position:relative; }
.ai-chat-bubble::before { content:'Guidance'; position:absolute; top:-9px; left:1.2rem; background:var(--navy); padding:0 0.5rem; font-size:0.65rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); font-weight:500; }
.ai-chat-bubble p { font-size:0.88rem; line-height:1.7; color:rgba(250,248,243,0.75); font-weight:300; }
/* Modal */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(10,18,28,0.92); backdrop-filter:blur(8px); z-index:100; align-items:center; justify-content:center; }
.modal-overlay.open { display:flex; }
.modal { background:var(--navy-mid,#162437); border:1px solid var(--border); border-radius:12px; padding:3rem; max-width:500px; width:90%; text-align:center; }
.modal-icon { width:64px; height:64px; border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 1.5rem; }
.modal h2 { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:400; color:var(--cream); margin-bottom:.75rem; }
.modal p { font-size:.88rem; color:rgba(250,248,243,0.55); line-height:1.7; margin-bottom:1.5rem; font-weight:300; }
.modal-steps { list-style:none; text-align:left; margin-bottom:2rem; }
.modal-step { display:flex; align-items:center; gap:.75rem; padding:.6rem 0; font-size:.84rem; color:rgba(250,248,243,0.45); border-bottom:1px solid rgba(255,255,255,0.05); }
.modal-step.done { color:var(--gold-light); }
.modal-step.active { color:var(--cream); }
.step-dot { width:20px; height:20px; border-radius:50%; flex-shrink:0; border:1px solid rgba(201,168,76,0.3); display:flex; align-items:center; justify-content:center; font-size:.65rem; }
.step-dot.done { background:var(--gold); border-color:var(--gold); color:var(--navy); }
.step-dot.active { border-color:var(--gold); animation:pulse 1.2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.modal-error { background:rgba(220,50,50,.1); border:1px solid rgba(220,50,50,.3); border-radius:6px; padding:1rem; margin-bottom:1.5rem; font-size:.84rem; color:#ff8080; line-height:1.6; display:none; }
.btn-download { padding:1rem 2.5rem; width:100%; background:linear-gradient(135deg,var(--gold) 0%,var(--gold-light) 100%); color:var(--navy); border:none; border-radius:4px; font-family:'Jost',sans-serif; font-size:.85rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; cursor:pointer; transition:all .2s; display:none; align-items:center; justify-content:center; gap:.6rem; }
.btn-download:hover { transform:translateY(-1px); box-shadow:0 8px 24px rgba(201,168,76,.25); }
.btn-download.visible { display:flex; }
.btn-cancel { margin-top:1rem; padding:.7rem 1.5rem; background:transparent; color:rgba(250,248,243,.4); border:1px solid rgba(250,248,243,.1); border-radius:4px; font-family:'Jost',sans-serif; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; cursor:pointer; transition:all .2s; display:block; width:100%; }
.btn-cancel:hover { color:var(--cream); border-color:rgba(250,248,243,.25); }
@media(max-width:600px) { body.interview header{padding:1.5rem} .progress-wrap{padding:.7rem 1.5rem} main{padding:2rem 1.25rem 5rem} .section-title{font-size:1.9rem} .field-grid{grid-template-columns:1fr} .field-grid .full{grid-column:1} }


/* ═══════════════════════════════════════════════════════════
   HOME PAGE — index.html
   Requires: <body class="home">
═══════════════════════════════════════════════════════════ */

body.home {
  --gold: #C9A84C;
  --gold-light: #E8CC80;
  --navy: #0D1B2A;
  --navy-mid: #162436;
  --cream: #F5F0E8;
  --text-primary: #F0EAE0;
  --text-muted: #8DA0B3;
  --divider: rgba(201, 168, 76, 0.18);
  --card-bg: rgba(22, 36, 54, 0.85);
  --card-border: rgba(201, 168, 76, 0.22);

  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

body.home::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(201,168,76,0.05) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.012) 60px,
      rgba(201,168,76,0.012) 61px
    );
  pointer-events: none;
  z-index: 0;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 56px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,27,42,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.site-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.site-logo-img--footer {
  height: 40px;
}

.site-logo-mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo-mark--sm { width: 26px; height: 26px; }

.site-logo-text { display: flex; flex-direction: column; }

.site-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1;
}

.site-logo-dot { color: var(--gold); }

.site-logo-and {
  font-weight: 300;
  color: var(--text-muted);
}

.site-logo-tagline {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
  opacity: 0.7;
}

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

.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 400;
}

.nav-link:hover { color: var(--text-primary); }

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 3px;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.18s;
  font-weight: 500;
}

.nav-cta:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ── Hero ── */

.home-hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 56px;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-eyebrow-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.home-hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.home-hero-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.home-hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
}

.home-btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.28);
}

.home-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.home-btn-ghost:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.22);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--divider);
}

.hero-stat { display: flex; flex-direction: column; gap: 4px; }

.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--divider);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-arc-svg {
  width: 100%;
  max-width: 520px;
}

/* ── Shared section layout ── */

.home-section-wrap {
  position: relative;
  z-index: 1;
}

.home-products { padding: 100px 56px; }

.home-why {
  padding: 100px 56px;
  background: rgba(22, 36, 54, 0.35);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.home-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.home-section-inner--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.home-section-inner--center .home-section-label::before { display: none; }

.home-section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 56px;
}

.home-section-heading em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── Product cards ── */

.product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 28px 24px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  transition: all 0.22s;
}

.product-card--active {
  cursor: pointer;
}

.product-card--active:hover {
  border-color: rgba(201,168,76,0.5);
  background: rgba(22, 36, 54, 0.98);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

.product-card--soon {
  opacity: 0.6;
  cursor: default;
}

.product-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: rgba(201,168,76,0.04);
  flex-shrink: 0;
}

.product-card-category {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.product-card-desc {
  font-size: 0.81rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  font-weight: 300;
  margin-top: 2px;
}

.product-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 10px;
}

.product-card-cta--muted { color: var(--text-muted); }

.product-card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold);
}

.product-card-tag--soon {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
  color: var(--text-muted);
}

/* ── Why cards ── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card { display: flex; flex-direction: column; gap: 16px; }

.why-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.04);
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}

.why-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── CTA band ── */

.home-cta-band {
  position: relative;
  z-index: 1;
  padding: 100px 56px;
  background: linear-gradient(160deg, rgba(201,168,76,0.05) 0%, transparent 50%);
  border-top: 1px solid var(--divider);
}

.cta-band-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cta-band-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-band-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-band-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ── Footer ── */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--divider);
  background: rgba(10, 20, 32, 0.5);
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 56px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-logo-name { font-size: 1.1rem; }

.footer-disclaimer {
  margin-top: 18px;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.75;
  opacity: 0.55;
  font-weight: 300;
  max-width: 440px;
}

.footer-links { display: flex; gap: 56px; justify-content: flex-end; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }

.footer-col-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
  opacity: 0.85;
}

.footer-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s;
  font-weight: 300;
}

.footer-link:hover { color: var(--text-primary); }

.footer-link--muted { opacity: 0.4; pointer-events: none; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 56px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  .home-hero { padding: 60px 40px; }
  .home-products, .home-why, .home-cta-band { padding: 80px 40px; }
  .site-header { padding: 0 40px; }
  .site-footer-inner { padding: 48px 40px 36px; }
  .footer-bottom { padding: 16px 40px; }
}

@media (max-width: 800px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; padding: 56px 28px; }
  .hero-visual { display: none; }
  .site-header { padding: 0 24px; }
  .home-products, .home-why, .home-cta-band { padding: 64px 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-nav .nav-link { display: none; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 40px; padding: 44px 28px 32px; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { padding: 16px 28px; flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 540px) {
  .product-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; border-top: none; padding-top: 0; }
  .hero-stat-divider { display: none; }
  .home-hero-heading { font-size: 3rem; }
}
