:root {
  --bg: #f6efe4;
  --bg-deep: #eadfcc;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #fff9f1;
  --ink: #201a15;
  --muted: #62574b;
  --line: rgba(32, 26, 21, 0.1);
  --accent: #d76d43;
  --accent-deep: #af4f2c;
  --forest: #29584b;
  --shadow: 0 24px 80px rgba(56, 33, 15, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(215, 109, 67, 0.18), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(41, 88, 75, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #f4ebdd 55%, var(--bg-deep) 100%);
  color: var(--ink);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

.cookie-banner-shell {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  justify-items: center;
  pointer-events: none;
}

.cookie-banner-shell [hidden] {
  display: none !important;
}

.cookie-banner {
  pointer-events: auto;
}

.cookie-banner {
  width: min(760px, calc(100vw - 1.5rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(32, 26, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 249, 241, 0.96);
  box-shadow: 0 12px 28px rgba(56, 33, 15, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cookie-banner[data-expanded="true"] {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.cookie-banner-copy {
  display: grid;
  gap: 0.18rem;
  max-width: none;
}

.cookie-banner-eyebrow {
  margin: 0;
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.cookie-banner h2,
.cookie-banner h3 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 1.15;
}

.cookie-banner h2 {
  font-size: clamp(0.92rem, 1.25vw, 1.05rem);
}

.cookie-banner h3 {
  font-size: 0.74rem;
}

.cookie-banner-body,
.cookie-banner-status,
.cookie-banner-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.28;
}

.cookie-banner-status {
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
}

.cookie-banner-details {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.42rem;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(32, 26, 21, 0.08);
}

.cookie-banner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.cookie-banner-item {
  display: grid;
  gap: 0.16rem;
  min-height: 100%;
  padding: 0.42rem;
  border: 1px solid rgba(32, 26, 21, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.cookie-banner-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.32rem;
  align-items: stretch;
}

.cookie-banner-meta-actions {
  display: flex;
  justify-content: flex-end;
}

.cookie-button {
  appearance: none;
  min-height: 2rem;
  padding: 0.42rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(32, 26, 21, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(215, 109, 67, 0.34);
  box-shadow: 0 16px 28px rgba(56, 33, 15, 0.12);
}

.cookie-button-primary {
  background: var(--ink);
  color: #fffaf4;
}

.cookie-button-ghost {
  background: transparent;
}

.cookie-banner-meta-actions .cookie-button {
  min-height: 1.9rem;
  padding: 0.4rem 0.55rem;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.72;
}

.page-glow-left {
  top: 5rem;
  left: -6rem;
  background: rgba(215, 109, 67, 0.18);
}

.page-glow-right {
  top: 20rem;
  right: -4rem;
  background: rgba(41, 88, 75, 0.15);
}

.site-header,
.page-shell {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 1rem 0 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 4.4rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 249, 241, 0.8);
  box-shadow: 0 12px 30px rgba(56, 33, 15, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  flex: none;
}

.brand-text {
  line-height: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.page-shell {
  padding: 2.2rem 0 3rem;
}

.booking-hero,
.booking-layout {
  display: grid;
  gap: 1.25rem;
}

.booking-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  align-items: center;
}

.eyebrow,
.panel-label {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

.booking-copy h1,
.support-card h2,
.section-heading h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.booking-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 8vw, 5rem);
}

.lead {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  font-size: 1.12rem;
  color: var(--muted);
}

.booking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.booking-badges span {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(32, 26, 21, 0.08);
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
}

.next-step-card,
.form-card,
.support-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.next-step-card {
  margin-top: 1.35rem;
  padding: 1.2rem;
  border-radius: 28px;
}

.next-step-list,
.support-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.booking-visual {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.booking-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  margin-top: 1.5rem;
  align-items: start;
}

.form-card,
.support-card {
  padding: 1.35rem;
  border-radius: 32px;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea {
  min-height: 3rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid rgba(175, 79, 44, 0.36);
  outline-offset: 3px;
}

.button-icon {
  width: 1.28rem;
  height: 1.28rem;
  flex: none;
}

.button-icon-whatsapp {
  color: #ffffff;
  background: #25d366;
  border-radius: 999px;
  padding: 0.2rem;
  box-sizing: content-box;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e68b62 100%);
  color: #fff9f2;
  box-shadow: 0 12px 30px rgba(183, 79, 44, 0.28);
}

.button-secondary {
  border-color: rgba(32, 26, 21, 0.14);
  background: rgba(255, 255, 255, 0.48);
}

.helper-text,
.section-heading p,
.support-card p {
  margin: 0;
  color: var(--muted);
}

.support-column {
  display: grid;
  gap: 1rem;
}

.support-card-secondary {
  background: linear-gradient(135deg, rgba(255, 249, 241, 0.98) 0%, rgba(255, 240, 226, 0.92) 100%);
}

@media (max-width: 960px) {
  .booking-hero,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-copy h1 {
    max-width: none;
  }

  .cookie-banner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header-inner,
  .field-row {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    width: min(100%, calc(100vw - 0.75rem));
    grid-template-columns: 1fr;
    padding: 0.65rem;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner-meta-actions {
    justify-content: stretch;
  }

  .cookie-banner-meta-actions .cookie-button {
    width: 100%;
  }
}
