/* ============================================
   PASSAGEM — Landing Page Styles
   ============================================ */

/* --- Color Tokens --- */
:root {
  --bg: #FAF8F5;
  --bg-alt: #F4EDE4;
  --bg-deep: #EDE6DB;
  --primary: #0D5C63;
  --primary-dark: #083840;
  --accent: #E07A5F;
  --accent-light: #F2C4B5;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.2;
  font-weight: 400;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 92, 99, 0.08);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-left: 12px;
  border-left: 1px solid var(--bg-deep);
}

.nav-lang-switch {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.lang-link {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.15s;
}

.lang-link:hover {
  color: var(--primary);
}

.lang-active {
  color: var(--primary);
  font-weight: 600;
  pointer-events: none;
}

.lang-sep {
  color: var(--bg-deep);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 80px 32px 96px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(48px, 7vw, 80px);
  color: var(--primary-dark);
  max-width: 680px;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-tagline {
  font-size: clamp(48px, 7vw, 80px);
  color: var(--primary-dark);
  max-width: 680px;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-lede {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 0 40px 0 0;
}

.hero-stat:first-child {
  padding-left: 0;
}

.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.03em;
  max-width: 120px;
  line-height: 1.4;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--bg-deep);
  margin-right: 40px;
  flex-shrink: 0;
}

/* Hero background shapes */
.hero-surface {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  pointer-events: none;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}

.hero-shape-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at center, rgba(13, 92, 99, 0.06) 0%, transparent 70%);
  top: -80px;
  right: -120px;
}

.hero-shape-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
  bottom: 40px;
  right: 80px;
}

.hero-shape-3 {
  width: 160px;
  height: 160px;
  background: var(--bg-alt);
  top: 60px;
  right: 40px;
  opacity: 0.6;
}

/* ============================================
   WHO WE HELP
   ============================================ */
.who {
  background: var(--bg-alt);
  padding: 96px 32px;
}

.who-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.who-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.who-headline {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--primary-dark);
  max-width: 520px;
  margin-bottom: 20px;
}

.who-body {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.who-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(13, 92, 99, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 92, 99, 0.08);
}

.who-card-icon {
  color: var(--primary);
  margin-bottom: 20px;
}

.who-card h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: 'DM Serif Display', serif;
}

.who-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   PATHWAYS
   ============================================ */
.pathways {
  padding: 96px 32px;
}

.pathways-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.pathways-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.pathways-headline {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--primary-dark);
  max-width: 520px;
  margin-bottom: 16px;
}

.pathways-body {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--bg-deep);
  border-left: 1px solid var(--bg-deep);
}

.pathway-item {
  padding: 40px 32px;
  border-right: 1px solid var(--bg-deep);
  border-bottom: 1px solid var(--bg-deep);
}

.pathway-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}

.pathway-item h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-family: 'DM Serif Display', serif;
}

.pathway-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  background: var(--primary);
  padding: 96px 32px;
}

.process-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.process-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 500;
  margin-bottom: 16px;
}

.process-headline {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 20px;
}

.process-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.process-steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 24px;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.step-line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 8px 0;
}

.step:last-child .step-line {
  display: none;
}

.step-content {
  padding-bottom: 40px;
}

.step:last-child .step-content {
  padding-bottom: 0;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.step-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================
   TIMING
   ============================================ */
.timing {
  padding: 96px 32px;
}

.timing-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
}

.timing-accent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 6px;
}

.timing-rule {
  width: 2px;
  height: 48px;
  background: var(--accent);
}

.timing-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
}

.timing-headline {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.timing-body p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
}

.timing-body-gap {
  margin-top: 16px;
}

.timing-stat {
  margin-top: 40px;
  padding: 32px 36px;
  background: var(--bg-alt);
  border-left: 3px solid var(--primary);
}

.timing-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--primary-dark);
  line-height: 1.5;
  display: block;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg-deep);
  padding: 96px 32px;
}

.testimonials-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.testimonials-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.testimonial-card-offset {
  margin-top: 48px;
}

.testimonial-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -8px;
  display: block;
}

.testimonial-card p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.attr-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-dark);
}

.attr-detail {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   VISION / CLOSING
   ============================================ */
.vision {
  padding: 96px 32px 112px;
  background: var(--primary-dark);
}

.vision-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.vision-headline {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--white);
  max-width: 760px;
  margin-bottom: 28px;
  line-height: 1.25;
}

.vision-body {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
}

.vision-rule {
  width: 64px;
  height: 2px;
  background: var(--accent);
  margin-top: 56px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-light);
}

.footer-note {
  font-size: 12px;
  color: var(--text-light);
  max-width: 400px;
  line-height: 1.6;
  text-align: right;
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-light);
  text-align: right;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .who-cards {
    grid-template-columns: 1fr;
  }

  .pathways-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .testimonial-card-offset {
    margin-top: 0;
  }

  .timing-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timing-accent {
    flex-direction: row;
    align-items: center;
  }

  .timing-rule {
    width: 32px;
    height: 2px;
  }

  .timing-label {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .hero-stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 56px 20px 72px;
  }

  .who, .pathways, .process, .timing, .testimonials, .vision {
    padding: 64px 20px;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note, .footer-copy {
    text-align: left;
  }

  .nav-inner {
    padding: 14px 20px;
  }
}

/* ============================================
   BOOKING + CONTACT PAGES
   ============================================ */

/* Nav — add nav links to EN/PT nav bar */
.nav-logo-link {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.nav-cta:hover {
  background: #c9614a;
  transform: translateY(-1px);
}

.nav-link-text {
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-link-text:hover {
  color: var(--primary);
}

.nav-link-text--active {
  color: var(--primary);
  font-weight: 600;
}

/* Booking hero */
.booking-hero {
  padding: 72px 32px 96px;
}

.booking-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.booking-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.booking-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2.4s ease-in-out infinite;
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}

.booking-section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 12px;
}

.booking-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--primary-dark);
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.booking-lede {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}

/* What to expect */
.booking-expect {
  margin-top: 0;
}

.booking-expect-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary-dark);
  margin-bottom: 28px;
}

.booking-expect-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-expect-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bg-deep);
}

.booking-expect-item:first-child {
  border-top: 1px solid var(--bg-deep);
}

.expect-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
}

.expect-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 4px;
}

.expect-item-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Calendly col */
.booking-calendly-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-calendly-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}

.calendly-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bg-deep);
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.calendly-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* Contact page */
.contact-hero {
  padding: 72px 32px 96px;
}

.contact-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}

.contact-direct {
  margin-top: 0;
  padding-top: 0;
}

.contact-direct-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-email-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-email-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-email-value {
  font-size: 18px;
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-email-value:hover {
  color: var(--accent);
}

/* Contact form */
.contact-form-col {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(13, 92, 99, 0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.contact-form-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bg-deep);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 92, 99, 0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: var(--primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', system-ui, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  width: 100%;
}

.form-submit:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-success {
  padding: 32px;
  background: var(--bg-alt);
  border-radius: 12px;
  border: 1px solid var(--bg-deep);
  text-align: center;
}

.form-success-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-weight: 400;
}

.form-success-body {
  font-size: 15px;
  color: var(--text-mid);
}

/* Footer nav links */
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: flex-end;
}

.footer-link {
  font-size: 13px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ============================================
   RESPONSIVE — booking + contact
   ============================================ */
@media (max-width: 900px) {
  .booking-hero-grid,
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .nav-links {
    display: none;
  }

  .booking-calendly-col {
    order: -1;
  }
}

@media (max-width: 600px) {
  .booking-hero,
  .contact-hero {
    padding: 48px 20px 64px;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}

/* ============================================
   BOOKING FORM (native — replaces Calendly)
   ============================================ */
.booking-form-col {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(13, 92, 99, 0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Date grid */
.date-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  border-radius: 10px;
  border: 1.5px solid var(--bg-deep);
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  font-family: 'DM Sans', system-ui, sans-serif;
}

.date-btn:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.date-btn--selected {
  border-color: var(--primary) !important;
  background: var(--primary) !important;
  color: var(--white);
}

.date-btn--selected .date-day-label,
.date-btn--selected .date-num,
.date-btn--selected .date-month {
  color: var(--white);
}

.date-day-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  text-transform: uppercase;
}

.date-num {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.date-month {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Time grid */
.time-slots-container {
  margin-top: 8px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.time-btn {
  padding: 8px 4px;
  border-radius: 8px;
  border: 1.5px solid var(--bg-deep);
  background: var(--bg);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-family: 'DM Sans', system-ui, sans-serif;
  text-align: center;
}

.time-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.time-btn--selected {
  border-color: var(--primary) !important;
  background: var(--primary) !important;
  color: var(--white) !important;
}

/* Booking details form */
.booking-details-form .contact-form {
  background: none;
  padding: 0;
  box-shadow: none;
  border: none;
}

.booking-form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

.form-error {
  padding: 12px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #dc2626;
  font-size: 14px;
}

/* Booking confirmation page */
.booking-confirmed-wrap {
  max-width: 560px;
}

.booking-confirmed-icon {
  margin-bottom: 24px;
}

.booking-confirmed-meta {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
}

.confirmed-meta-item {
  padding: 20px 24px;
  border-bottom: 1px solid var(--bg-deep);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.confirmed-meta-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.confirmed-meta-value {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Nav CTA active state */
.nav-cta--active {
  background: var(--primary);
  pointer-events: none;
}

/* Homepage nav CTA (added via partials override) */
.nav-cta-home {
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
}

.nav-cta-home:hover {
  background: #c9614a;
  transform: translateY(-1px);
}

/* Homepage hero CTA */
.hero-cta-wrap {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  background: var(--accent);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  display: inline-block;
}

.hero-cta-primary:hover {
  background: #c9614a;
  transform: translateY(-2px);
}

.hero-cta-secondary {
  font-size: 15px;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--bg-deep);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}

.hero-cta-secondary:hover {
  color: var(--primary);
  border-color: var(--primary);
}