/* =========================================================
   TIMELESS VOICES — Main Stylesheet
   ========================================================= */

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

:root {
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --cream:      #FAF6EE;
  --dark:       #0F0E0C;
  --dark2:      #1C1A16;
  --dark3:      #2A2720;
  --muted:      #7A7268;
  --text:       #E8E2D9;
  --green-wa:   #25D366;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(201,168,76,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.film-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 18px,
    transparent 18px, transparent 26px
  );
  opacity: 0.4;
}

.film-strip-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 18px,
    transparent 18px, transparent 26px
  );
  opacity: 0.25;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}

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

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 540px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.6s;
}

.scroll-cue {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.2s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.scroll-cue::before,
.scroll-cue::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--muted);
  opacity: 0.5;
}

/* ── INTRO STATEMENT ──────────────────────────────────── */
.intro-statement {
  padding: 4rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.intro-statement .lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 300;
  line-height: 1.65;
  color: #d6cfc4;
  margin-bottom: 1.5rem;
}

.intro-statement .body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ── WHAT GETS CAPTURED ───────────────────────────────── */
.captured-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.captured-eyebrow {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

.captured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.captured-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.captured-item:nth-child(odd) {
  padding-right: 3rem;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.captured-item:nth-child(even) {
  padding-left: 3rem;
  padding-right: 0;
}

.captured-item:nth-child(3),
.captured-item:nth-child(4) {
  border-bottom: none;
  padding-top: 2rem;
}

.captured-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 2.2rem;
  margin-top: 2px;
}

.captured-content { flex: 1; }

.captured-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.captured-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.captured-closing {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 300;
  color: #c8bfb2;
  line-height: 1.7;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  max-width: 640px;
}

/* ── FRAMES ───────────────────────────────────────────── */
.frames-section {
  max-width: 1100px;
  padding: 4rem 1.5rem;
  margin: 0 auto;
}

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

.frame {
  aspect-ratio: 3/4;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}

.frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.frame:hover .frame-img {
  transform: scale(1.04);
}

.frame-label {
  position: relative;
  z-index: 2;
  padding: 1.6rem;
}

.frame-label span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  font-style: italic;
}

.frame-label small {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
  display: block;
}

/* ── GENERAL SECTIONS ─────────────────────────────────── */
.section {
  padding: 5rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}

/* ── DELIVERABLES ─────────────────────────────────────── */
.chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.4em;
  font-weight: 300;
}

.chapter-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #a09890;
  max-width: 560px;
  margin-bottom: 3rem;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.deliverable {
  border-left: 1px solid rgba(201,168,76,0.3);
  padding-left: 1.2rem;
}

.deliverable-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: rgba(201,168,76,0.22);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.deliverable-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.deliverable-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PULL QUOTE ───────────────────────────────────────── */
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 4rem auto;
  max-width: 680px;
  background: var(--dark2);
}

.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--cream);
  line-height: 1.55;
  font-weight: 300;
}

.pull-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── PRICE CARD ───────────────────────────────────────── */
.price-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.35rem 1rem;
  border-radius: 1px;
  margin-bottom: 2rem;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.5rem, 10vw, 6rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount sup {
  font-size: 0.35em;
  vertical-align: top;
  margin-top: 0.4em;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.price-label {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.gold-divider {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.35);
  margin: 0 auto 2.5rem;
}

.includes-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.includes-list li {
  font-size: 1rem;
  color: var(--text);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.includes-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  text-decoration: none;
  border-radius: 1px;
  transition: opacity 0.2s, transform 0.15s;
}

.cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cta-note {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}

/* ── CONTACT SECTION ──────────────────────────────────── */
.contact-section {
  padding: 5rem 1.5rem 6rem;
  max-width: 820px;
  margin: 0 auto;
}

.contact-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.contact-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── FORM ─────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-group label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.field-group input,
.field-group textarea,
.field-group select {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 1px;
  padding: 0.9rem 1rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  width: 100%;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.field-group select {
  cursor: pointer;
  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-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: rgba(201,168,76,0.55);
}

.field-group textarea {
  resize: vertical;
  min-height: 130px;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

/* Honeypot — hidden from humans */
.hp-field { display: none !important; }

.btn-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  cursor: pointer;
  border-radius: 1px;
  transition: opacity 0.2s, transform 0.15s;
  width: 100%;
}

.btn-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  border-radius: 1px;
  display: none;
  line-height: 1.6;
}

.form-status.success {
  display: block;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
}

.form-status.error {
  display: block;
  background: rgba(180,60,60,0.08);
  border: 1px solid rgba(180,60,60,0.3);
  color: #e8a0a0;
}

/* ── CONTACT INFO ─────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  border-left: 1px solid rgba(201,168,76,0.25);
  padding-left: 1.2rem;
}

.info-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.info-value {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.info-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.info-value a:hover { color: var(--gold-light); }

/* ── WHATSAPP BUTTON ──────────────────────────────────── */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-wa);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.5rem;
  border-radius: 2px;
  margin-top: 0.5rem;
  transition: opacity 0.2s, transform 0.15s;
}

.whatsapp-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.whatsapp-btn svg { flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.logo-footer {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.footer-sub {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 700px) {
  .frames-grid       { grid-template-columns: 1fr; }
  .frame             { aspect-ratio: 4/3; }
  .price-card        { padding: 2.5rem 1.5rem; }
  .contact-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-section   { padding: 4rem 1.5rem; }
  .captured-grid     { grid-template-columns: 1fr; }
  .captured-item:nth-child(odd)  { border-right: none; padding-right: 0; }
  .captured-item:nth-child(even) { padding-left: 0; }
  .captured-item:nth-child(3)    { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .captured-item:nth-child(4)    { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
}

/* =========================================================
   MULTI-PAGE ADDITIONS
   ========================================================= */

/* ── NAVIGATION ───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  background: rgba(15,14,12,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: padding 0.3s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: 1px;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link--active {
  color: var(--cream);
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 1px;
  margin-left: 0.75rem;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.2s;
}

/* Push page content below fixed nav */
body > .hero,
body > .page-hero {
  padding-top: 5rem;
}

/* ── PAGE HERO (inner pages) ──────────────────────────── */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1.05;
  color: var(--cream);
}

.page-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── HERO ACTIONS ─────────────────────────────────────── */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
}

/* ── PRIMARY / GHOST BUTTONS ──────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  border-radius: 1px;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  border-radius: 1px;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* ── LINK ARROW ───────────────────────────────────────── */
.link-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.2s;
}

.link-arrow:hover { letter-spacing: 0.2em; }

/* ── FRAMES CTA ───────────────────────────────────────── */
.frames-cta {
  text-align: center;
  padding: 2.5rem 1.5rem 0;
}

/* ── PROSE SECTION ────────────────────────────────────── */
.prose-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.prose-lead {
  margin-bottom: 2.5rem;
}

.prose-lead p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 300;
  line-height: 1.65;
  color: #d6cfc4;
  margin-bottom: 1.2rem;
}

.prose-lead p em { color: var(--gold-light); font-style: italic; }

.prose-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ── PILLARS ──────────────────────────────────────────── */
.pillars-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  margin-top: 3rem;
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: rgba(201,168,76,0.22);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.pillar-title {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.pillar-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── PROCESS STEPS ────────────────────────────────────── */
.process-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.process-step:last-child { border-bottom: none; }

.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  padding-top: 4px;
}

.process-title {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.process-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section { padding-top: 2rem; }

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.faq-a {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── PRICE TEASER (home page) ─────────────────────────── */
.price-teaser { border-top: 1px solid rgba(255,255,255,0.05); }

.price-teaser-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-top: 2px solid var(--gold);
  padding: 3rem;
}

.price-teaser-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.price-teaser-amount sup {
  font-size: 0.4em;
  vertical-align: top;
  margin-top: 0.4em;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
}

.price-teaser-amount span {
  font-size: 0.35em;
  vertical-align: middle;
  color: var(--muted);
  margin-left: 0.3em;
}

.price-teaser-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.price-teaser-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-shrink: 0;
}

/* ── CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 1.5rem;
  margin-top: 2rem;
}

.cta-strip-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.cta-strip-sub {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── UPDATED FOOTER ───────────────────────────────────── */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 4rem;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.6;
}

.footer-location {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.footer-nav-heading {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-contact a:hover { color: var(--cream); }

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-wa) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* ── RESPONSIVE ADDITIONS ─────────────────────────────── */
@media (max-width: 900px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-nav { padding: 1rem 1.25rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(15,14,12,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    gap: 0.25rem;
  }

  .nav-links.is-open { display: flex; }

  .nav-link {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.85rem;
  }

  .cta-strip-inner { flex-direction: column; gap: 2rem; }
  .cta-strip-actions { width: 100%; flex-direction: column; }
  .cta-strip-actions .btn-primary,
  .cta-strip-actions .btn-ghost { text-align: center; }
  .price-teaser-inner { flex-direction: column; }
  .price-teaser-actions { width: 100%; }
  .process-step { flex-direction: column; gap: 0.75rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
}
