:root {
  --teal: #2f5d58;
  --teal-dark: #1e3f3c;
  --sage: #6b9088;
  --peach: #d4a373;
  --peach-deep: #c4895a;
  --cream: #f6f0e7;
  --paper: #fffdf9;
  --blush: #f3e6d8;
  --ink: #243230;
  --muted: #5d6c69;
  --line: rgba(47, 93, 88, 0.14);
  --shadow: 0 18px 50px rgba(30, 63, 60, 0.08);
  --radius: 18px;
  --max: 1160px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--peach-deep);
  font-weight: 500;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-ghost:hover {
  background: var(--cream);
}

.btn-peach {
  background: var(--peach);
  color: var(--teal-dark);
}

.btn-peach:hover {
  background: var(--peach-deep);
  color: #fff;
}

.topbar {
  background: var(--teal-dark);
  color: #f3ece3;
  font-size: 0.82rem;
  text-align: center;
  padding: 9px 16px;
  letter-spacing: 0.02em;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  color: var(--teal-dark);
}

.brand em {
  font-style: normal;
  color: var(--peach-deep);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
  color: var(--teal);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 80% 10%, rgba(212, 163, 115, 0.28), transparent 55%),
    radial-gradient(700px 380px at 10% 90%, rgba(107, 144, 136, 0.22), transparent 50%),
    linear-gradient(180deg, #f8f2ea 0%, #fffdf9 100%);
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero p.lead {
  font-size: 1.12rem;
  max-width: 36em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-photo {
  min-height: 460px;
}

.photo-ph {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(47, 93, 88, 0.18), rgba(212, 163, 115, 0.22)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 12px, transparent 12px 24px),
    #d9c7b3;
  box-shadow: var(--shadow);
  display: grid;
  place-items: end stretch;
}

.photo-ph.tall {
  min-height: 460px;
}

.photo-ph.round {
  border-radius: 50%;
  min-height: 280px;
  aspect-ratio: 1;
}

.photo-ph span {
  display: block;
  padding: 16px 18px;
  background: rgba(36, 50, 48, 0.55);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: var(--cream);
}

.section.teal {
  background: var(--teal-dark);
  color: #f6efe6;
}

.section.teal p,
.section.teal .muted {
  color: rgba(246, 239, 230, 0.78);
}

.center {
  text-align: center;
}

.center .eyebrow,
.center h2,
.center p {
  margin-inline: auto;
}

.center p {
  max-width: 42em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 63, 60, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 22px 22px 26px;
}

.card h3 {
  margin-bottom: 8px;
}

.card .more {
  color: var(--teal);
  font-size: 0.88rem;
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}

.badge {
  border-radius: 999px;
  background: var(--blush);
  color: var(--teal-dark);
  font-size: 0.78rem;
  padding: 7px 12px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.sched {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
}

.sched strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--teal-dark);
  margin: 6px 0 10px;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.quote {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}

.quote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  font-style: italic;
}

.quote cite {
  display: block;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--sage);
  margin-top: 14px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.price {
  background: var(--paper);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  text-align: center;
}

.price.featured {
  border-color: var(--peach);
  box-shadow: var(--shadow);
}

.price .tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peach-deep);
}

.price .amount {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--teal-dark);
  line-height: 1;
  margin: 12px 0;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li + li {
  margin-top: 8px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--teal);
  color: #fff;
  border-radius: 28px;
  padding: 36px 40px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 8px;
}

.site-footer {
  background: #172e2c;
  color: #eadfce;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(234, 223, 206, 0.12);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer h4 {
  font-size: 1.05rem;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.tiny {
  font-size: 0.82rem;
  opacity: 0.72;
  margin-top: 18px;
}

.legal {
  max-width: 760px;
}

.legal h3 {
  margin-top: 1.6em;
}

.form {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

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

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  font-size: 1.4rem;
}

.page-hero {
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #f6efe6, #fffdf9);
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .cards,
  .schedule-grid,
  .quotes,
  .contact-grid,
  .footer-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fffdf9;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-photo {
    min-height: 320px;
  }
}
