:root {
  --teal: #2e4650;
  --teal-light: #3d5b68;
  --teal-deep: #1b2c33;
  --blush: #e2bfd7;
  --blush-light: #f2ddec;
  --blush-warm: #ecc9de;
  --cream: #faf8f6;
  --ink: #1c2b31;

  --gradient-hero: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 55%, var(--teal-deep) 100%);
  --gradient-cta: linear-gradient(135deg, var(--blush) 0%, var(--blush-warm) 100%);
  --gradient-cta-hover: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  --gradient-booking: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 140%);

  --font-body: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 760px;
  --gap: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  text-align: left;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 {
  font-family: var(--font-body);
  color: var(--teal);
  line-height: 1.15;
  margin: 0 0 1rem;
}

p {
  margin: 0 0 1.25rem;
}

.divider {
  height: 4px;
  background: var(--blush);
  width: 100%;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 0.9rem 1.9rem;
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--teal);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gradient-cta-hover);
  color: var(--blush-light);
  transform: translateY(-1px);
}

/* ---------- Site header (logo only) ---------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--blush-light);
}

.site-header-inner {
  display: flex;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.site-logo {
  display: inline-flex;
  line-height: 0;
}

.site-logo img {
  height: 72px;
  width: auto;
}

/* ---------- Hero ---------- */

.hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 3rem 0 3.5rem;
}

.hero-grid {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  width: 100%;
}

.hero-photo {
  flex-shrink: 0;
}

.hero-photo img {
  display: block;
  width: 560px;
  max-width: 100%;
  height: auto;
}

.hero-headline {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  max-width: 14ch;
  margin-bottom: 1.75rem;
}

.hero-copy {
  color: var(--blush-light);
  font-size: 1.05rem;
  max-width: 62ch;
}

.hero .btn {
  margin-top: 0.75rem;
}

.urgency-badge {
  display: inline-block;
  background: var(--gradient-cta);
  color: var(--teal-deep);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.urgency-callout {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: #fff;
  border: 2px solid var(--teal);
  border-radius: 10px;
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.5rem;
}

.urgency-callout-label {
  display: inline-block;
  align-self: flex-start;
  background: var(--teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.urgency-callout-detail {
  color: var(--teal);
  font-size: 1.02rem;
  font-weight: 700;
}

/* ---------- Section headings ---------- */

.section-heading {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  max-width: 22ch;
  margin-bottom: 2rem;
}

.section-heading--wide {
  max-width: none;
  text-align: center;
}

/* ---------- Sessions ---------- */

.sessions {
  padding: 3.5rem 0;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}

.card {
  background: var(--gradient-hero);
  border-radius: 14px;
  padding: 1.75rem 1.75rem 1.9rem;
  box-shadow: 0 6px 18px rgba(46, 70, 80, 0.08);
  transition: transform 0.2s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-3px);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blush);
  margin: 0 auto 1rem;
}

.card-icon svg {
  width: 44px;
  height: 44px;
}

.card h3 {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--blush-light);
  margin: 0;
  font-size: 0.98rem;
}

/* ---------- Fine print ---------- */

.fine-print {
  padding: 0 0 3.5rem;
}

.fine-print-text {
  color: var(--teal);
  font-size: 1.15rem;
  margin: 0 0 1.4rem;
}

.fine-print-text:last-child {
  margin-bottom: 0;
}

/* ---------- Testimonials ---------- */

.testimonials {
  padding: 1.5rem 0 3.5rem;
}

.testimonial-grid {
  grid-template-columns: 1fr;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border: none;
  border-radius: 14px;
  padding: 2.75rem 1.75rem 1.75rem;
  margin: 0;
  box-shadow: 0 6px 18px rgba(46, 70, 80, 0.08);
  transition: transform 0.2s ease;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.1rem;
  left: 1.4rem;
  font-family: var(--font-body);
  font-size: 4.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-warm) 60%, var(--teal-light) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-card:nth-child(3n+2)::before {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 60%, var(--blush) 130%);
  -webkit-background-clip: text;
  background-clip: text;
}

.testimonial-card:nth-child(3n+1) {
  transform: rotate(-1deg);
}

.testimonial-card:nth-child(3n+2) {
  transform: rotate(1deg);
}

.testimonial-card:nth-child(3n+3) {
  transform: rotate(-0.75deg);
}

.testimonial-card:hover {
  transform: rotate(0deg);
}

.testimonial-card p {
  position: relative;
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  margin: 0.75rem 0 1.25rem;
  color: var(--ink);
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
}

/* ---------- Booking ---------- */

.booking {
  background: var(--gradient-booking);
  padding: 3.5rem 0;
}

.booking-copy {
  font-size: 1.05rem;
  max-width: 50ch;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 2.5rem 0 3rem;
  color: var(--teal);
}

.site-footer p {
  margin: 0 0 0.4rem;
  font-weight: 600;
}

.footer-link {
  color: var(--teal-light);
  font-size: 0.9rem;
  text-decoration: underline;
}

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

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 700px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 1.75rem;
    padding-bottom: 0;
  }
}

@media (min-width: 900px) {
  :root {
    --container-width: 880px;
  }

  .hero {
    padding: 4.5rem 0 5rem;
  }

  .hero .container {
    max-width: 1140px;
  }

  .hero-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }

  .hero-content {
    flex: 1 1 380px;
  }

  .hero-photo img {
    width: 720px;
    max-width: 42vw;
  }

  .sessions,
  .booking {
    padding: 5rem 0;
  }

  .testimonials {
    padding: 2rem 0 5rem;
  }
}
