:root {
  --bg: #f7f1e8;
  --paper: rgba(255, 252, 246, 0.78);
  --paper-strong: #fffaf2;
  --text: #1d2430;
  --muted: #5f6673;
  --line: rgba(29, 36, 48, 0.12);
  --teal: #0f7c82;
  --teal-deep: #0a5358;
  --coral: #dd7f63;
  --gold: #c59a2d;
  --ink: #23314a;
  --shadow: 0 24px 60px rgba(35, 49, 74, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(221, 127, 99, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(15, 124, 130, 0.2), transparent 28%),
    linear-gradient(180deg, #efe3d2 0%, var(--bg) 55%, #f8f3ec 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 80%);
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
}

.topbar,
.hero-card,
.service-card,
.about-panel,
.testimonial,
.booking,
.footer,
.dialog-card {
  backdrop-filter: blur(16px);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: white;
  font-family: "Fraunces", serif;
  font-weight: 600;
}

.brand strong,
.hero h1,
.section-heading h2,
.about-panel h2,
.booking-copy h2,
.dialog-card h2 {
  font-family: "Fraunces", serif;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a,
.footer p {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible,
.footer p:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 16px 30px rgba(10, 83, 88, 0.24);
}

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

.button-secondary,
.button-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  padding: 4.5rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--teal-deep);
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  max-width: 11ch;
}

.lede,
.supporting-copy,
.about-panel p,
.service-card p,
.booking-copy p,
.dialog-card li,
.footer p,
.hero-points li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.hero-points,
.stats-grid,
.card-grid,
.testimonial-grid {
  display: grid;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.hero-card-header,
.trust-strip,
.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hero-card-header,
.trust-strip p {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  margin: 1rem 0;
  border-radius: calc(var(--radius-lg) - 8px);
  background:
    linear-gradient(160deg, rgba(15, 124, 130, 0.16), rgba(197, 154, 45, 0.05)),
    linear-gradient(180deg, #fef7ee, #f3e6d4);
}

.orb,
.smile-arch {
  position: absolute;
}

.orb {
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  width: 180px;
  height: 180px;
  right: 10%;
  top: 14%;
  background: radial-gradient(circle, rgba(221, 127, 99, 0.85), rgba(221, 127, 99, 0.08));
}

.orb-two {
  width: 240px;
  height: 240px;
  left: -4%;
  bottom: -10%;
  background: radial-gradient(circle, rgba(15, 124, 130, 0.72), rgba(15, 124, 130, 0.02));
}

.smile-arch {
  inset: 18% 12% 18% 12%;
  border: 20px solid rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.95) transparent rgba(255, 255, 255, 0.55) transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.stats-grid,
.card-grid,
.testimonial-grid {
  gap: 1rem;
}

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

.stats-grid article,
.service-card,
.testimonial,
.about-panel,
.booking {
  border-radius: var(--radius-md);
}

.stats-grid article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.58);
}

.stats-grid strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.55rem;
}

.section {
  margin-top: 1.5rem;
}

.trust-strip {
  flex-wrap: wrap;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

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

.section-heading h2,
.about-panel h2,
.booking-copy h2,
.dialog-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  max-width: 12ch;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 240px;
  padding: 1.4rem;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  opacity: 0.18;
}

.service-card h3 {
  margin-top: 5.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.accent-coral::before {
  background: var(--coral);
}

.accent-gold::before {
  background: var(--gold);
}

.accent-teal::before {
  background: var(--teal);
}

.accent-ink::before {
  background: var(--ink);
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.about-panel,
.booking {
  padding: 1.5rem;
}

.checklist-panel ul {
  padding-left: 1.25rem;
  margin: 1rem 0 0;
}

.checklist-panel li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.supporting-copy {
  max-width: 34ch;
}

.testimonial-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.testimonial {
  padding: 1.4rem;
  min-height: 220px;
}

.testimonial p {
  margin: 0 0 2rem;
  font-size: 1.2rem;
  line-height: 1.55;
}

.testimonial span {
  font-weight: 700;
  color: var(--ink);
}

.featured {
  background: linear-gradient(160deg, rgba(15, 124, 130, 0.95), rgba(10, 83, 88, 0.98));
}

.featured p,
.featured span {
  color: white;
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
}

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

.booking-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
}

.booking-form label:last-of-type,
.booking-form button {
  grid-column: span 2;
}

.booking-form input,
.booking-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.footer {
  margin-top: 1.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
}

.footer strong {
  display: block;
  margin-bottom: 0.4rem;
}

.tour-dialog {
  width: min(680px, calc(100% - 1.5rem));
  border: 0;
  padding: 0;
  background: transparent;
}

.tour-dialog::backdrop {
  background: rgba(20, 24, 31, 0.45);
  backdrop-filter: blur(10px);
}

.dialog-card {
  padding: 2rem;
  border-radius: 28px;
}

.dialog-card ol {
  margin: 1.2rem 0 1.5rem;
  padding-left: 1.25rem;
}

.dialog-card li + li {
  margin-top: 0.75rem;
}

@media (max-width: 1024px) {
  .hero,
  .about,
  .booking,
  .testimonial-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .section-heading h2,
  .about-panel h2,
  .booking-copy h2,
  .dialog-card h2 {
    max-width: none;
  }

  .split,
  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 1rem, 1180px);
  }

  .topbar {
    border-radius: 28px;
    padding: 1rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-actions,
  .hero-points,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form label:last-of-type,
  .booking-form button {
    grid-column: auto;
  }

  .hero-card,
  .service-card,
  .testimonial,
  .about-panel,
  .booking,
  .footer,
  .dialog-card {
    border-radius: 22px;
  }
}
