:root {
  --cream-bg: #f8f5ed;
  --cream-soft: #fbf9f1;
  --white: #ffffff;
  --navy-900: #0c1e3d;
  --navy-800: #132a55;
  --navy-700: #1a3560;
  --gold-500: #d4a636;
  --gold-400: #e0b340;
  --gold-300: #ead274;
  --gold-soft: #fbf2d8;
  --gold-tint: #fdf8e8;
  --text-body: #4a5568;
  --text-muted: #718096;
  --text-light: rgba(245, 238, 219, 0.78);
  --border: #e8e2d2;
  --shadow-sm: 0 1px 2px rgba(12, 30, 61, 0.04), 0 1px 3px rgba(12, 30, 61, 0.06);
  --shadow-md: 0 4px 6px rgba(12, 30, 61, 0.04), 0 10px 15px rgba(12, 30, 61, 0.06);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream-bg);
  color: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ======= Layout ======= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 100px 0;
}

.section-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  text-align: center;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin-bottom: 72px;
  line-height: 1.15;
}

/* ======= Header ======= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 237, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 40px;
  width: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
  background: var(--white);
  object-fit: contain;
}

.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.15s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 4px 12px -4px rgba(212, 166, 54, 0.5);
}

.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(212, 166, 54, 0.6);
}

.btn-outline {
  background: var(--white);
  color: var(--navy-900);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--navy-900);
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ======= Hero ======= */
.hero {
  padding: 40px 0 72px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-500);
  padding: 8px 18px;
  background: var(--gold-soft);
  border-radius: 999px;
  margin-bottom: 48px;
}

.pill svg {
  width: 14px;
  height: 14px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  object-fit: contain;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin-bottom: 32px;
}

.hero-title .gold {
  color: var(--gold-500);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ======= Section divider ======= */
.section-divider {
  width: 75%;
  max-width: 900px;
  height: 1px;
  margin: 0 auto;
  background: var(--navy-900);
  border: none;
  opacity: 0.85;
}

/* ======= How It Works (3 steps) ======= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--gold-500);
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--border);
  letter-spacing: -0.02em;
}

.step-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.step-card p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Dashed connectors between step cards (desktop only) */
.steps-grid::before,
.steps-grid::after {
  content: '';
  position: absolute;
  top: 60px;
  height: 2px;
  border-top: 2px dotted var(--gold-500);
  opacity: 0.4;
  z-index: 0;
}

.steps-grid::before {
  left: calc(33.33% - 16px);
  width: 32px;
}

.steps-grid::after {
  left: calc(66.66% - 16px);
  width: 32px;
}

/* ======= SMS-Powered section ======= */
.sms-section {
  background: var(--cream-soft);
}

.sms-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: 72px;
  align-items: center;
}

/* iPhone mockup */
.phone {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: var(--navy-900);
  border-radius: 36px;
  padding: 10px 10px 16px;
  box-shadow: 0 30px 60px -20px rgba(12, 30, 61, 0.3),
              0 0 0 1px rgba(12, 30, 61, 0.08);
}

.phone-screen {
  background: var(--white);
  border-radius: 28px;
  padding: 20px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding: 0 4px;
}

.sms-card {
  background: var(--cream-bg);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.sms-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.sms-stars {
  color: var(--gold-500);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.sms-card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0;
}

.sms-reply-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sms-reply-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sms-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.sms-btn.approve {
  background: var(--gold-soft);
  color: var(--navy-900);
}

.sms-btn.edit {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy-900);
}

.sms-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.sms-content > p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-body);
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-top: 10px;
}

/* ======= Why Reviewed (4 cards) ======= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--gold-500);
  margin-bottom: 24px;
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.why-card p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ======= Final CTA (dark) ======= */
.final-cta {
  background: var(--navy-900);
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.final-cta p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* ======= Footer ======= */
.site-footer {
  background: var(--navy-900);
  color: var(--text-light);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-brand img {
  height: 40px;
  width: 40px;
  border-radius: var(--radius-sm);
  padding: 4px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gold-400);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 238, 219, 0.5);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ======= Contact page ======= */
.contact-hero {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-eyebrow {
  text-align: left;
  margin-bottom: 16px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.65;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--gold-500);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.contact-item a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.contact-item a:hover {
  color: var(--gold-500);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
}

.form-field .req {
  color: var(--gold-500);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream-soft);
  color: var(--navy-900);
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-sans);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
}

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

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-error {
  font-size: 0.9rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.form-success {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  color: var(--gold-500);
  border-radius: 50%;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ======= Responsive ======= */
@media (max-width: 960px) {
  .steps-grid,
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps-grid::before,
  .steps-grid::after {
    display: none;
  }

  .sms-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  section {
    padding: 72px 0;
  }

  .final-cta {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 28px 0 56px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links .nav-link:not(.nav-cta):not(.active) {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .contact-form {
    padding: 28px;
  }
}
