:root {
  --mint: #e6fbf3;
  --teal: #0f9b8e;
  --teal-dark: #0b7a70;
  --navy: #1a2e35;
  --gray: #5b6b70;
  --white: #ffffff;
  --gold: #f5b942;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 155, 142, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; color: var(--gray); }

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #eee;
  background: var(--mint);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--teal-dark);
}
.logo img { height: 40px; width: 40px; object-fit: contain; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a { font-weight: 600; color: var(--navy); }
nav.main-nav a:hover { color: var(--teal); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(15,155,142,0.22); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal-dark);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--mint) 0%, #ffffff 100%);
  padding: 48px 0 16px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }

.guarantee-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  font-weight: 700;
  padding: 12px 20px;
  letter-spacing: 0.02em;
}

/* Speech type pills */
.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 12px 0 24px;
}
.pill {
  background: var(--mint);
  color: var(--teal-dark);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.pill:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-1px);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 40px 0;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--teal-dark);
  font-weight: 700;
}

/* Sections */
section { padding: 64px 0; }
.section-intro { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--white);
  border: 1px solid #eef2f2;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.speak-brilliantly {
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  margin: 0 24px;
}
.speak-brilliantly h2 { color: var(--white); }
.speak-brilliantly p { color: #cfe3e0; max-width: 640px; margin: 0 auto; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--mint);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-stars { color: var(--gold); margin-bottom: 10px; }
.testimonial-name { font-weight: 700; margin-top: 12px; }
.testimonial-tag { color: var(--teal-dark); font-weight: 600; font-size: 0.85rem; }

/* Pricing */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}
.price-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--teal-dark);
}
.feature-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eef2f2;
  display: flex;
  gap: 10px;
}
.feature-list li::before { content: "✓"; color: var(--teal); font-weight: 700; }

/* Feature icons grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .icon-grid { grid-template-columns: repeat(2, 1fr); } }
.icon-card { text-align: center; padding: 20px; }
.icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
}

/* CTA band */
.cta-band {
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 56px 24px;
  border-radius: 24px;
  margin: 0 24px 64px;
}
.cta-band h2 { color: white; }
.cta-band p { color: #000; }
.cta-band .btn-primary { background: white; color: var(--teal-dark); }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #cfe3e0;
  padding: 48px 24px 24px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.92rem;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1180px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  color: #9db4b0;
}

/* Policy pages */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.policy-content h1 { margin-bottom: 8px; }
.policy-content h2 { font-size: 1.25rem; margin-top: 2em; }
.policy-content p, .policy-content li { color: var(--navy); }
.policy-content ul { padding-left: 20px; }

/* Concierge */
.concierge-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 0;
}
.concierge-frame-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 24px auto 0;
  max-width: 760px;
}
.concierge-frame-wrap iframe {
  width: 100%;
  height: 900px;
  border: none;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--white);
  border: 1px solid #eef2f2;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-card h3 { margin-bottom: 8px; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--teal-dark); }
.blog-meta { font-size: 0.82rem; color: var(--teal-dark); font-weight: 600; margin-bottom: 10px; }

.post-hero {
  background: var(--mint);
  padding: 56px 24px 40px;
  text-align: center;
}
.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.post-body p { color: var(--navy); font-size: 1.05rem; }
.post-body h2 { margin-top: 1.6em; font-size: 1.5rem; }
.breadcrumb { font-size: 0.85rem; color: var(--teal-dark); margin-bottom: 16px; }
.post-cta-box {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin: 40px 0;
}
.post-cta-box h3 { color: white; }
.post-cta-box .btn-primary { background: var(--teal); margin-top: 12px; }

/* Cookie / DNT modal */
.simple-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 22, 0.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.simple-modal-overlay.open { display: flex; }
.simple-modal {
  background: white;
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  padding: 28px;
  position: relative;
}
.simple-modal h3 { margin-bottom: 12px; }
.simple-modal .close-x {
  position: absolute;
  top: 14px; right: 16px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--gray);
}

/* ===== Landing page ===== */
.landing-hero {
  background: linear-gradient(180deg, var(--mint) 0%, #ffffff 100%);
  padding: 56px 0 24px;
}
.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .landing-hero-grid { grid-template-columns: 1fr; } }
.landing-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--teal-dark);
  font-weight: 700;
  background: var(--white);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.landing-hero h1 { margin-bottom: 0.35em; }
.landing-hero-sub { font-size: 1.15rem; color: var(--navy); max-width: 560px; }
.landing-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 22px; }
.btn-text {
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: underline;
  padding: 14px 4px;
}
.btn-text:hover { color: var(--teal); }
.landing-illustration { width: 100%; height: auto; display: block; }

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 36px 0 8px;
}
@media (max-width: 760px) { .trust-bar { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid #eef2f2;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.trust-icon { font-size: 1.3rem; line-height: 1; }
.trust-item p { margin: 0; font-size: 0.92rem; font-weight: 600; color: var(--navy); }

/* Occasion grid */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .occasion-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .occasion-grid { grid-template-columns: 1fr; } }
.occasion-card {
  background: var(--white);
  border: 1px solid #eef2f2;
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.occasion-card:hover { transform: translateY(-2px); }
.occasion-emoji {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.occasion-card span.label { font-weight: 700; color: var(--navy); font-size: 0.98rem; }

/* Example speech */
.example-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 2px dashed var(--teal);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.example-label {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.example-card blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy);
  margin: 0 0 16px;
  font-style: italic;
}
.example-note { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* Pull-quote strip */
.quote-strip { padding: 60px 0; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-card .quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.quote-card blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
  line-height: 1.6;
}

/* Sticky bottom CTA bar */
.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}
.sticky-cta-bar p {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.sticky-cta-bar .btn-primary { white-space: nowrap; }
body.has-sticky-cta { padding-bottom: 78px; }
@media (max-width: 560px) {
  .sticky-cta-bar p { display: none; }
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid #eef2f2;
  border-radius: var(--radius);
  padding: 6px 22px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--teal);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 16px; margin: 0; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }
@media (max-width: 760px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: white;
    padding: 20px 24px;
    box-shadow: var(--shadow);
  }
}
