:root {
  --bg: #f4eee5;
  --bg-strong: #eadfce;
  --surface: rgba(255, 252, 247, 0.84);
  --surface-strong: #fffaf3;
  --surface-dark: #23323a;
  --text: #182125;
  --text-soft: #566067;
  --text-inverse: #f8f4ee;
  --line: rgba(24, 33, 37, 0.1);
  --line-strong: rgba(24, 33, 37, 0.18);
  --accent: #ba7b45;
  --accent-deep: #925a2d;
  --accent-soft: #ead0bb;
  --success: #2c6858;
  --shadow-lg: 0 22px 50px rgba(33, 30, 24, 0.15);
  --shadow-md: 0 14px 32px rgba(33, 30, 24, 0.11);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(241, 210, 180, 0.72), transparent 32%),
    linear-gradient(180deg, #f8f2e9 0%, #f3eadf 45%, #efe7dc 100%);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
}

button,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
select {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.55;
}

.ambient-one {
  top: -4rem;
  right: -6rem;
  width: 16rem;
  height: 16rem;
  background: rgba(186, 123, 69, 0.18);
}

.ambient-two {
  left: -6rem;
  top: 24rem;
  width: 18rem;
  height: 18rem;
  background: rgba(33, 50, 58, 0.1);
}

.topbar,
.site-header,
.section,
.site-footer {
  width: min(calc(100% - 1.5rem), var(--container));
  margin-inline: auto;
}

.topbar {
  margin-top: 0.75rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.75);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.topbar p {
  margin: 0;
  text-align: center;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.site-header {
  position: sticky;
  top: 0.75rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #203039 0%, #3b4c55 100%);
  color: var(--text-inverse);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.76rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(186, 123, 69, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--text-inverse);
  text-align: center;
}

.section {
  padding: 4rem 0;
}

.hero {
  display: grid;
  gap: 1.4rem;
  padding-top: 2.4rem;
}

.hero-copy,
.hero-panel,
.trust-card,
.service-card,
.booking-panel,
.summary-panel,
.summary-card,
.reassurance-card,
.testimonial-card,
.metric-panel,
.journey-card,
.faq-list details,
.site-footer {
  position: relative;
}

.hero-copy {
  padding: 0.5rem 0;
}

.summary-panel {
  display: grid;
  gap: 1rem;
}

.eyebrow-group,
.hero-trust,
.availability-list,
.trust-grid,
.service-grid,
.booking-layout,
.proof-layout,
.journey-grid,
.footer-actions,
.cta-row,
.booking-extras {
  display: grid;
  gap: 1rem;
}

.eyebrow,
.service-tag,
.micro-copy,
.toast-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(186, 123, 69, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow.muted {
  border-color: rgba(24, 33, 37, 0.08);
  color: var(--text-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(2.8rem, 9vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0;
  color: var(--text-soft);
}

.hero-lead,
.section-heading p {
  font-size: 1.03rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button,
.availability-pill,
.option-card,
.text-link {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
}

.button:hover,
.button:focus-visible,
.availability-pill:hover,
.availability-pill:focus-visible,
.option-card:hover,
.option-card:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--text-inverse);
  box-shadow: 0 12px 22px rgba(146, 90, 45, 0.24);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 252, 247, 0.7);
  color: var(--text);
}

.button-dark {
  background: linear-gradient(135deg, #223039 0%, #30434d 100%);
  color: var(--text-inverse);
}

.button-ghost {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(35, 50, 58, 0.08);
  color: var(--text);
}

.hero-trust {
  margin-top: 1.8rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hero-trust div,
.card-primary,
.card-secondary,
.trust-card,
.service-card,
.booking-panel,
.summary-card,
.reassurance-card,
.testimonial-card,
.metric-panel,
.journey-card,
.faq-list details,
.site-footer {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
}

.hero-trust strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 1.1rem;
}

.hero-panel {
  align-content: start;
}

.card-primary {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 245, 233, 0.88)),
    linear-gradient(135deg, rgba(186, 123, 69, 0.2), rgba(255, 255, 255, 0));
}

.card-secondary {
  background: linear-gradient(180deg, rgba(36, 51, 59, 0.94), rgba(43, 61, 71, 0.92));
  color: var(--text-inverse);
}

.card-secondary p,
.card-secondary li,
.card-secondary .mini-label {
  color: rgba(248, 244, 238, 0.8);
}

.card-topline,
.service-meta,
.booking-label-row,
.summary-list div,
.quote-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-topline,
.mini-label,
.summary-list span,
.service-meta span,
.quote-author span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.availability-list {
  margin-top: 1.25rem;
}

.availability-pill {
  width: 100%;
  justify-content: center;
  min-height: 3.2rem;
  border: 1px solid rgba(146, 90, 45, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  font-weight: 700;
}

.mini-proof ul,
.reassurance-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: inherit;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.section-heading.compact {
  margin-bottom: 1.25rem;
}

.trust-grid,
.service-grid,
.proof-layout,
.journey-grid {
  grid-template-columns: 1fr;
}

.trust-card h3,
.service-card h3,
.journey-card h3,
.faq-list summary {
  margin-bottom: 0.7rem;
}

.service-card {
  background: rgba(255, 250, 243, 0.75);
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 246, 235, 0.94), rgba(255, 250, 243, 0.9)),
    linear-gradient(135deg, rgba(186, 123, 69, 0.12), rgba(255, 255, 255, 0));
  border-color: rgba(186, 123, 69, 0.26);
}

.booking-layout {
  align-items: start;
}

.booking-panel {
  padding: 1rem;
}

.booking-progress {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.progress-step {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(24, 33, 37, 0.08);
  color: var(--text-soft);
  font-weight: 700;
}

.progress-step.active {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--text-inverse);
}

.progress-line {
  flex: 1;
  height: 1px;
  background: rgba(24, 33, 37, 0.12);
}

.booking-block + .booking-block {
  margin-top: 1.1rem;
}

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

.service-options {
  grid-template-columns: 1fr;
}

.option-card,
.date-card {
  width: 100%;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  text-align: left;
  cursor: pointer;
}

.option-card strong,
.date-card strong {
  display: block;
  color: var(--text);
}

.option-card span,
.date-card span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.option-card.active,
.date-card.active {
  border-color: rgba(146, 90, 45, 0.36);
  background: linear-gradient(180deg, rgba(255, 247, 238, 0.98), rgba(255, 251, 246, 0.92));
  box-shadow: 0 10px 24px rgba(146, 90, 45, 0.13);
}

.date-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(8.5rem, 1fr);
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scrollbar-width: thin;
}

.date-scroller::-webkit-scrollbar {
  height: 8px;
}

.date-scroller::-webkit-scrollbar-thumb {
  background: rgba(24, 33, 37, 0.15);
  border-radius: 999px;
}

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

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

.field select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  appearance: none;
}

.summary-card {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(36, 51, 59, 0.95), rgba(29, 41, 48, 0.95)),
    linear-gradient(135deg, rgba(186, 123, 69, 0.14), rgba(255, 255, 255, 0));
  color: var(--text-inverse);
}

.summary-card h3,
.summary-card strong,
.summary-card p {
  color: var(--text-inverse);
}

.summary-card .button-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.summary-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.25rem;
}

.summary-list div {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-footer {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.reassurance-card li {
  margin-bottom: 0.8rem;
}

.quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
  font-size: 2rem;
  line-height: 1.08;
}

.metric-panel {
  display: grid;
  gap: 1rem;
}

.metric-panel article strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 1.4rem;
}

.journey-card span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(186, 123, 69, 0.12);
  color: var(--accent-deep);
  font-weight: 800;
}

.text-link {
  justify-self: start;
  margin-top: 0.9rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-deep);
  cursor: pointer;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-list details[open] {
  background: rgba(255, 250, 243, 0.92);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  padding-top: 0.3rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  margin-bottom: 6.5rem;
}

.mobile-cta-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 40;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.toast {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(18, 23, 26, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: none;
}

.toast-panel {
  width: min(100%, 26rem);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(36, 51, 59, 0.96), rgba(29, 41, 48, 0.96)),
    linear-gradient(135deg, rgba(186, 123, 69, 0.18), rgba(255, 255, 255, 0));
  color: var(--text-inverse);
  text-align: center;
  box-shadow: 0 24px 60px rgba(11, 15, 17, 0.32);
  transform: translateY(10px) scale(0.98);
  transition: transform 220ms ease;
}

.toast.is-visible .toast-panel {
  transform: translateY(0) scale(1);
}

.toast-panel p {
  margin-top: 0.8rem;
  color: rgba(248, 244, 238, 0.92);
  font-size: 1.05rem;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .topbar,
  .site-header,
  .section,
  .site-footer {
    width: min(calc(100% - 2rem), var(--container));
  }

  .site-header {
    padding-inline: 1.3rem;
  }

  .hero-trust,
  .trust-grid,
  .service-grid,
  .journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-extras,
  .proof-layout,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    align-items: center;
  }
}

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

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 0.85rem 1rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 2rem;
    min-height: calc(100vh - 12rem);
  }

  .booking-layout,
  .proof-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.35rem;
  }

  .mobile-cta-bar {
    display: none;
  }

  .site-footer {
    margin-bottom: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .hero-copy {
    padding-right: 2rem;
  }

  .booking-panel,
  .summary-card,
  .reassurance-card {
    padding: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
