/* =====================================================
   DESIGN TOKENS (ALIGNED WITH HOME SYSTEM)
===================================================== */
:root {

  --bg-page: #0f2b1e;
  --bg-base: #0f2b1e;
  --bg-alt: #123424;
  --bg-emphasis: #0c2318;
  --bg-elevated: #173d2b;

  --ink-strong: #ffffff;
  --ink-main: #eaf5ee;
  --ink-muted: #cfe5da;

  --green-accent: #bae63e;
  --green-accent-hover: #a9d934;

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  --fs-h1: clamp(2.6rem, 6vw, 4.2rem);
  --fs-h2: clamp(1.9rem, 4vw, 2.6rem);
  --fs-body: clamp(1.05rem, 2vw, 1.1rem);
  --fs-small: 0.9rem;

  --lh-body: 1.75;
  --lh-heading: 1.15;

  --section-pad: clamp(100px, 12vh, 150px);

  --gap-xl: clamp(80px, 8vw, 120px);
  --gap-lg: clamp(60px, 6vw, 90px);
  --gap-md: clamp(36px, 4vw, 56px);
  --gap-sm: clamp(20px, 3vw, 28px);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1180px;
}


/* =====================================================
   RESET
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  background: var(--bg-page);
  color: var(--ink-main);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* =====================================================
   ACCESSIBILITY
===================================================== */
:focus-visible {
  outline: 2px solid var(--green-accent);
  outline-offset: 3px;
}


/* =====================================================
   LAYOUT
===================================================== */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.section {
  padding-block: var(--section-pad);
}

.section--hero {
  padding-top: clamp(160px, 20vh, 220px);
}

.section--emphasis {
  background: var(--bg-emphasis);
}

.section--base {
  background: var(--bg-base);
}

.center { text-align: center; }
.center p { margin-inline: auto; }


/* =====================================================
   TYPOGRAPHY
===================================================== */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--ink-strong);
  line-height: var(--lh-heading);
}

h1 { font-size: var(--fs-h1); margin-bottom: 0.6em; }
h2 { font-size: var(--fs-h2); margin-bottom: 1em; }

p {
  color: var(--ink-muted);
  max-width: 70ch;
}

.text-wide { max-width: 70ch; }


/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-weight: 500;
  transition: all .25s ease;
  cursor: pointer;
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--green-accent);
  color: #0f2b1e;
  box-shadow: 0 14px 32px rgba(0,0,0,.3);
}

.btn-primary:hover {
  background: var(--green-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(0,0,0,.35);
}

.btn-sm { padding: 10px 18px; font-size: var(--fs-small); }
.btn-lg { padding: 16px 38px; }


/* =====================================================
   NAVBAR (MATCH HOME)
===================================================== */
.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(var(--container) + clamp(40px, 8vw, 64px));
  max-width: calc(100% - 40px);
  height: 64px;
  z-index: 100;

  background: rgba(20, 48, 35, 0.9);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 14px 32px rgba(0,0,0,.2);

  transition: all .3s ease;
}

.navbar.scrolled {
  background: rgba(15, 35, 25, 0.95);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.nav-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 4vw, 32px);
}

.logo img { height: 34px; }

.nav-links {
  display: flex;
  gap: clamp(24px, 4vw, 36px);
}

.nav-links a {
  font-size: var(--fs-small);
  letter-spacing: .5px;
  color: rgba(255,255,255,.75);
  transition: color .2s ease;
}

.nav-links a:hover { color: var(--ink-main); }


/* =====================================================
   HERO – BOOKING
===================================================== */

.booking-hero-layout {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.booking-eyebrow {
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  opacity: .9;
  display: inline-block;
  margin-bottom: 1.5em;
}

.booking-hero-text {
  margin-top: 1.4em;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

.booking-hero-actions {
  margin-top: 3em;
}


/* =====================================================
   TRUST BADGES
===================================================== */

.booking-trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 2em;
}

.booking-trust-badges span {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  font-size: var(--fs-small);
  color: var(--green-accent);
  letter-spacing: .5px;
}


/* =====================================================
   CALENDAR SECTION
===================================================== */

.section--booking-calendar {
  position: relative;
}

.booking-calendar-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.booking-calendar-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.03),
    rgba(0,0,0,.18)
  );
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 30px 60px rgba(0,0,0,.35);

  transition: transform .3s ease, box-shadow .3s ease;
}

.booking-calendar-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 40px 80px rgba(0,0,0,.4);
}

.booking-calendar-header {
  margin-bottom: var(--gap-md);
}


/* =====================================================
   CALENDLY WIDGET
===================================================== */

.calendly-inline-widget {
  width: 100% !important;
  height: clamp(650px, 85vh, 900px) !important;
  border-radius: var(--radius-md);
  overflow: hidden;
}


/* =====================================================
   FINAL SECTION
===================================================== */

.section--booking-final h2 {
  margin-bottom: 1.2em;
}

.section--booking-final p {
  margin-bottom: 2.6em;
}


/* =====================================================
   FOOTER (MATCH HOME)
===================================================== */

.footer {
  background: linear-gradient(180deg, #0d2318, #08150f);
  padding-top: 100px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--ink-strong);
}

.footer-brand p {
  color: var(--ink-muted);
  max-width: 420px;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--green-accent);
}

.footer-column ul {
  display: grid;
  gap: 12px;
}

.footer-column a {
  color: rgba(255,255,255,.7);
  transition: color .25s ease;
}

.footer-column a:hover {
  color: var(--ink-strong);
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.05);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

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

  .nav-links { display: none; }

  .navbar[data-state="hidden"] {
    transform: translate(-50%, -140%);
    transition: transform 220ms ease;
  }

  .navbar[data-state="visible"] {
    transform: translate(-50%, 0);
    transition: transform 260ms ease;
  }

  .booking-trust-badges {
    gap: 12px;
  }

  .booking-calendar-card {
    padding: 40px 28px;
  }

}
* =====================================================
   FOOTER
===================================================== */

.footer {
  background: linear-gradient(
    180deg,
    #0d2318,
    #08150f
  );
  padding-top: 100px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  padding-bottom: 80px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--ink-strong);
}

.footer-brand p {
  color: var(--ink-muted);
  max-width: 420px;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--green-accent);
}

.footer-column ul {
  display: grid;
  gap: 12px;
}

.footer-column a {
  color: rgba(255,255,255,.7);
  transition: color .25s ease;
}

.footer-column a:hover {
  color: var(--ink-strong);
}

/* Bottom Strip */

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.05);
}

/* Mobile */

@media (max-width: 900px) {

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

  .footer-brand p {
    max-width: 100%;
  }

}

/* =====================================================
   CALENDAR → FOOTER DIVIDER
===================================================== */

.section--booking-calendar::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  margin: 120px auto 0 auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(186,230,62,.5),
    transparent
  );
}
.booking-calendar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calendly-inline-widget {
  width: 100% !important;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .booking-calendar-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}