/* ============================================================
   LAʻI DIGITAL — CORE STYLESHEET
   Deep Pacific blues, volcanic neutrals, muted gold.
   Cormorant Garamond (display) + Jost (body).
   Calm, whitespace-forward — "digital harbor," not tech-sales.
   ============================================================ */

:root {
  /* Color */
  --navy: #0D1F3C;
  --navy-deep: #08152A;
  --navy-mid: #16294A;
  --ink: #101826;
  --stone: #F7F5F2;
  --stone-warm: #EFEBE3;
  --paper: #FDFCFA;
  --gold: #C9A961;
  --gold-soft: #DCC48A;
  --green: #4C6656;
  --text-dark: #1B2430;
  --text-mid: #5B6472;
  --text-light: rgba(247, 245, 242, 0.72);
  --border-soft: rgba(13, 31, 60, 0.10);
  --border-light: rgba(247, 245, 242, 0.14);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container-w: 1180px;
  --shadow-soft: 0 20px 60px -20px rgba(13, 31, 60, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 16px; max-width: 62ch; }

a { color: inherit; text-decoration: none; }

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  p { max-width: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--gold-soft); }
.btn--outline {
  border: 1px solid var(--border-light);
  color: var(--stone);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-dark {
  border: 1px solid var(--border-soft);
  color: var(--navy);
}
.btn--outline-dark:hover { border-color: var(--navy); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}
.nav.scrolled, .nav--solid {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 34px; display: block; }
.nav__links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: 0.92rem; color: var(--stone); opacity: 0.85; }
.nav__links a:hover { opacity: 1; }
.nav__cta a { padding: 11px 22px; font-size: 0.88rem; }
.nav__toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__toggle span { width: 22px; height: 2px; background: var(--stone); }

@media (max-width: 860px) {
  .nav__links { position: fixed; inset: 70px 0 0 0; background: var(--navy); flex-direction: column; padding: 30px; justify-content: flex-start; transform: translateY(-120%); transition: transform 0.3s ease; }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: var(--stone);
  overflow: hidden;
  margin-top: -78px;
  padding-top: 78px;
}
.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, var(--navy-mid) 0%, var(--navy-deep) 60%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,21,42,0.2) 0%, rgba(8,21,42,0.75) 100%);
}
.hero__content { position: relative; max-width: 720px; padding: 100px 0 90px; }
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.hero h1 { color: var(--stone); }
.hero__sub { font-size: 1.15rem; color: var(--text-light); max-width: 54ch; margin-top: 22px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero__proof { margin-top: 40px; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: rgba(247,245,242,0.6); }

/* ---------- Stats bar ---------- */
.stats { background: var(--stone-warm); padding: 56px 0; }
.stats__inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stats__number { font-family: var(--font-display); font-size: 2.6rem; color: var(--navy); }
.stats__label { font-size: 0.9rem; color: var(--text-mid); margin-top: 6px; }
@media (max-width: 720px) { .stats__inner { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Eyebrow / generic label ---------- */
.problem__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 14px;
}

/* ---------- Problem / Solution grids ---------- */
.problem__grid, .solution__grid, .about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem__image img, .solution__image img {
  width: 100%; border-radius: var(--radius-lg); display: block; object-fit: cover;
}
.solution__highlight { margin-top: 20px; padding: 18px 22px; background: var(--stone-warm); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); }
@media (max-width: 860px) {
  .problem__grid, .solution__grid, .about-story__grid { grid-template-columns: 1fr; }
}

/* ---------- Agitation ---------- */
.agitation { background: var(--stone); }
.agitation__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.agitation__inner h2 { margin-bottom: 20px; }

/* ---------- Equation section (Radical Simplicity) ---------- */
.equation { background: var(--paper); text-align: center; padding: 130px 0; }
.equation__line {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--navy);
  margin-bottom: 46px;
}
.equation__line .plus, .equation__line .eq { color: var(--gold); margin: 0 18px; font-size: 0.7em; }
.equation__breakdown { max-width: 640px; margin: 0 auto; text-align: left; display: grid; gap: 18px; }
.equation__row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: baseline; }
.equation__row b { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); }
.equation__row span { color: var(--text-mid); font-size: 0.98rem; }
@media (max-width: 600px) {
  .equation { padding: 80px 0; }
  .equation__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Offers (Kahuna / Laulima) ---------- */
.offers__header { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.offers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.offer-card {
  background: var(--navy-deep);
  color: var(--stone);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
}
.offer-card--light { background: var(--stone-warm); color: var(--text-dark); }
.offer-card--light h3, .offer-card--light .offer-card__kicker { color: var(--navy); }
.offer-card--light .offer-card__desc { color: var(--text-mid); }
.offer-card--light .offer-card__bold { color: var(--navy); }
.offer-card__kicker { font-size: 0.82rem; letter-spacing: 0.08em; color: var(--gold-soft); margin-bottom: 8px; }
.offer-card h3 { font-size: 2rem; color: var(--stone); margin-bottom: 4px; }
.offer-card__role { font-family: var(--font-body); font-size: 1rem; color: var(--gold-soft); margin-bottom: 20px; }
.offer-card__desc { color: var(--text-light); margin-bottom: 20px; }
.offer-card__bold { font-family: var(--font-display); font-size: 1.15rem; color: var(--stone); font-style: italic; }
.offer-card__price { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.offer-card--light .offer-card__price { border-top-color: var(--border-soft); }
.offer-card__price-num { font-family: var(--font-display); font-size: 2.1rem; }
.offer-card__price-setup { font-size: 0.88rem; color: var(--text-light); }
.offer-card--light .offer-card__price-setup { color: var(--text-mid); }
.offers__caption { max-width: 700px; margin: 40px auto 0; text-align: center; color: var(--text-mid); font-size: 1.02rem; }
.offers__note {
  max-width: 760px; margin: 36px auto 0; background: var(--stone-warm);
  border-left: 3px solid var(--green); border-radius: var(--radius-sm);
  padding: 20px 26px; font-size: 0.98rem; color: var(--text-dark);
}
@media (max-width: 860px) { .offers__grid { grid-template-columns: 1fr; } }

/* ---------- Kahuna anatomy (five parts) ---------- */
.anatomy { background: var(--stone); }
.anatomy__header { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.anatomy__grid { display: grid; gap: 18px; max-width: 800px; margin: 0 auto; }
.anatomy-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 22px; align-items: start;
  padding: 22px 26px; border-radius: var(--radius-md); background: var(--paper);
  border: 1px solid var(--border-soft);
}
.anatomy-item--soul {
  background: var(--navy-deep); color: var(--stone); border-color: var(--navy-deep);
}
.anatomy-item--soul h4 { color: var(--gold-soft); }
.anatomy-item--soul p { color: var(--text-light); }
.anatomy-item__icon { font-size: 1.8rem; line-height: 1; }
.anatomy-item h4 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 6px; }
.anatomy-item p { margin: 0; color: var(--text-mid); font-size: 0.98rem; }

/* ---------- Platform (three layers) ---------- */
.platform__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.platform-layer {
  padding: 30px 26px; border-radius: var(--radius-md); background: var(--stone-warm);
  border-top: 3px solid var(--gold);
}
.platform-layer h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.platform-layer p { color: var(--text-mid); font-size: 0.96rem; margin: 0; }
.platform__note { max-width: 700px; margin: 36px auto 0; text-align: center; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--navy); }
@media (max-width: 860px) { .platform__grid { grid-template-columns: 1fr; } }

/* ---------- How it works (steps) ---------- */
.steps { background: var(--paper); }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.step-card { position: relative; padding-top: 10px; }
.step-card__num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.step-card h4 { font-size: 1.25rem; color: var(--navy); margin-bottom: 10px; }
.step-card p { color: var(--text-mid); font-size: 0.97rem; }
@media (max-width: 860px) { .steps__grid { grid-template-columns: 1fr; gap: 42px; } }

/* ---------- Why we map (argument) ---------- */
.argument { background: var(--stone-warm); }
.argument__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.argument__inner h2 { margin-bottom: 22px; }

/* ---------- Proof ---------- */
.proof__header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.proof-item { padding: 30px 26px; border-radius: var(--radius-md); background: var(--stone); border: 1px solid var(--border-soft); }
.proof-item__stat { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); margin-bottom: 10px; }
.proof-item p { color: var(--text-mid); font-size: 0.96rem; margin: 0; }
.proof__joy { max-width: 720px; margin: 40px auto 0; text-align: center; font-size: 0.92rem; color: var(--text-mid); }
@media (max-width: 860px) { .proof__grid { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team { background: var(--navy-deep); color: var(--stone); }
.team__header { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.team__header h2 { color: var(--stone); }
.team__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.team-card { padding: 34px 30px; border-radius: var(--radius-md); background: var(--navy-mid); }
.team-card h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-soft); margin-bottom: 4px; }
.team-card__role { font-size: 0.86rem; color: var(--text-light); margin-bottom: 16px; letter-spacing: 0.04em; }
.team-card p { color: var(--text-light); font-size: 0.98rem; }
.team-card em { color: var(--gold-soft); font-style: italic; }
.team__line { max-width: 700px; margin: 36px auto 0; text-align: center; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: rgba(247,245,242,0.85); }
@media (max-width: 860px) { .team__grid { grid-template-columns: 1fr; } }

/* ---------- PSI / rhythm ---------- */
.rhythm { background: var(--stone); }
.rhythm__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.rhythm__inner h2 { margin-bottom: 20px; }
.rhythm__note { max-width: 680px; margin: 28px auto 0; font-size: 0.94rem; color: var(--text-mid); }

/* ---------- Why it holds (moat) ---------- */
.moat { background: var(--navy-deep); color: var(--stone); }
.moat__header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.moat__header h2 { color: var(--stone); }
.moat__header p { color: var(--text-light); max-width: 56ch; margin: 0 auto; }
.moat__list { max-width: 760px; margin: 0 auto; display: grid; gap: 20px; }
.moat-item { padding: 22px 26px; background: var(--navy-mid); border-radius: var(--radius-md); }
.moat-item b { color: var(--gold-soft); }
.moat-item p { margin: 0; color: var(--text-light); font-size: 0.98rem; }

/* ---------- Alternatives comparison ---------- */
.alternatives { max-width: 720px; margin: 30px auto 0; display: grid; gap: 14px; }
.alternatives-item { padding: 16px 20px; background: var(--stone-warm); border-radius: var(--radius-sm); font-size: 0.95rem; color: var(--text-mid); }
.alternatives-item b { color: var(--navy); }

/* ---------- Referral partners note ---------- */
.partners { background: var(--stone); text-align: center; }
.partners__inner { max-width: 700px; margin: 0 auto; }
.partners__inner p { color: var(--text-mid); }

/* ---------- Objections / FAQ shared ---------- */
.objections__header, .faq-hero { text-align: center; }
.objections__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 50px; }
.objection-item { padding: 26px 28px; background: var(--stone-warm); border-radius: var(--radius-md); }
.objection-item__q p { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.objection-item__a p { color: var(--text-mid); margin: 0; font-size: 0.96rem; }
@media (max-width: 860px) { .objections__grid { grid-template-columns: 1fr; } }

/* ---------- Pricing (contact-for-pricing note block) ---------- */
.pricing { background: var(--stone-warm); }
.pricing__header { text-align: center; max-width: 640px; margin: 0 auto 20px; }
.pricing__note { max-width: 760px; margin: 30px auto 0; text-align: center; font-size: 0.92rem; color: var(--text-mid); }

/* ---------- Why Laʻi (born-in-Hawaiʻi section) ---------- */
.why { position: relative; background: var(--navy-deep); color: var(--stone); overflow: hidden; }
.why__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, var(--navy-mid), var(--navy-deep) 65%); }
.why__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,21,42,0.1), rgba(8,21,42,0.7)); }
.why__content { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.why__left h2 { color: var(--stone); }
.why__left p { color: var(--text-light); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-item { padding: 22px; background: var(--navy-mid); border-radius: var(--radius-md); }
.why-item__icon { font-size: 1.6rem; margin-bottom: 10px; }
.why-item h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-soft); margin-bottom: 8px; }
.why-item p { color: var(--text-light); font-size: 0.92rem; margin: 0; }
@media (max-width: 900px) {
  .why__content { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
}

/* ---------- CTA final ---------- */
.cta-final { background: var(--navy-deep); color: var(--stone); text-align: center; }
.cta-final h2 { color: var(--stone); max-width: 720px; margin: 0 auto 16px; }
.cta-final > .container > p { max-width: 640px; margin: 0 auto 10px; color: var(--text-light); }
.cta-final__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.cta-final__fine { margin-top: 18px; font-size: 0.9rem; color: var(--text-light); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: var(--text-light); padding: 70px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand img { height: 30px; margin-bottom: 14px; }
.footer__brand p { font-size: 0.92rem; max-width: 34ch; }
.footer__col h5 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; color: var(--stone); margin-bottom: 16px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a { font-size: 0.92rem; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border-light); font-size: 0.85rem; flex-wrap: wrap; gap: 14px; }
.footer__bottom-links { display: flex; gap: 22px; }
@media (max-width: 720px) { .footer__inner { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.about-hero { position: relative; background: var(--navy-deep); color: var(--stone); padding: 150px 0 80px; overflow: hidden; }
.about-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 30%, var(--navy-mid), var(--navy-deep) 65%); }
.about-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,21,42,0.1), rgba(8,21,42,0.8)); }
.about-hero__content { position: relative; max-width: 700px; }
.about-hero h1 { color: var(--stone); margin-bottom: 20px; }
.about-hero p { color: var(--text-light); font-size: 1.05rem; }
.about-story { padding: 96px 0; }
.about-values { background: var(--stone-warm); }
.about-values__header { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.about-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { padding: 6px 4px; }
.value-card__number { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); margin-bottom: 10px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { color: var(--text-mid); font-size: 0.95rem; }
@media (max-width: 860px) { .about-values__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ page ---------- */
.faq-hero { padding: 150px 0 60px; max-width: 760px; margin: 0 auto; }
.faq-hero h1 { margin: 16px 0; }
.faq-section { position: relative; padding-bottom: 100px; }
.faq-section__inner { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 22px 26px; cursor: pointer; }
.faq-item__q { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq-item__q h3 { font-size: 1.1rem; }
.faq-item__icon { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); transition: transform 0.2s ease; }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-item__a { max-height: 400px; margin-top: 14px; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a p { color: var(--text-mid); font-size: 0.96rem; }

/* ---------- Booking page ---------- */
.booking-hero { padding: 150px 0 50px; text-align: center; max-width: 700px; margin: 0 auto; }
.booking-hero h1 { margin: 16px 0; }
.booking-section { padding-bottom: 100px; }
.booking-section__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.booking-info { background: var(--stone-warm); border-radius: var(--radius-lg); padding: 32px 28px; }
.booking-info__list { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 14px; }
.booking-info__list li { padding-left: 22px; position: relative; color: var(--text-mid); font-size: 0.95rem; }
.booking-info__list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.booking-calendar { min-height: 640px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-soft); }
.booking-calendar iframe { width: 100%; height: 640px; border: 0; display: block; }
@media (max-width: 860px) { .booking-section__inner { grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-hero { padding: 150px 0 50px; text-align: center; max-width: 700px; margin: 0 auto; }
.contact-hero h1 { margin: 16px 0; }
.contact-section { padding-bottom: 100px; }
.contact-section__inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__icon { font-size: 1.4rem; }
.contact-info__text h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info__text p { color: var(--text-mid); font-size: 0.94rem; margin: 0; }
.contact-form-wrap { background: var(--stone-warm); border-radius: var(--radius-lg); padding: 30px; min-height: 520px; }
.contact-form-wrap iframe { width: 100%; height: 100%; min-height: 500px; border: 0; }
@media (max-width: 860px) { .contact-section__inner { grid-template-columns: 1fr; } }

/* ---------- Legal pages ---------- */
.legal-hero { padding: 150px 0 30px; max-width: 760px; margin: 0 auto; }
.legal-updated { font-size: 0.88rem; color: var(--text-mid); margin-top: 8px; }
.legal-body { padding-bottom: 100px; }
.legal-body__inner { max-width: 760px; margin: 0 auto; }
.legal-body__inner h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal-body__inner p, .legal-body__inner li { color: var(--text-mid); font-size: 0.96rem; }
.legal-body__inner ul { padding-left: 22px; }

/* ---------- Never-say table ---------- */
.never-say { background: var(--stone-warm); }
.never-say__header { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.never-say table { width: 100%; border-collapse: collapse; max-width: 800px; margin: 0 auto; }
.never-say th, .never-say td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border-soft); font-size: 0.94rem; }
.never-say th { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-mid); }
.never-say td:first-child { color: var(--text-mid); text-decoration: line-through; text-decoration-color: rgba(176,48,48,0.4); }
.never-say td:last-child { color: var(--navy); font-weight: 500; }

/* ---------- Reveal / animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.animate-up { opacity: 0; transform: translateY(14px); animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.15s; }
.delay-3 { animation-delay: 0.28s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.52s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .reveal, .animate-up { opacity: 1; transform: none; animation: none; transition: none; }
}
