:root {
  --white: #ffffff;
  --cream: #fbf8f2;
  --warm: #f2eadf;
  --sand: #e5d6c3;
  --charcoal: #1f2423;
  --muted: #6f746f;
  --gold: #c9a45c;
  --gold-dark: #a57f38;
  --turquoise: #42b7b4;
  --turquoise-dark: #1e8f8c;
  --line: rgba(31, 36, 35, 0.12);
  --shadow: 0 24px 70px rgba(31, 36, 35, 0.12);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(66, 183, 180, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(201, 164, 92, 0.18), transparent 34%),
    repeating-linear-gradient(
      45deg,
      rgba(31, 36, 35, 0.025) 0px,
      rgba(31, 36, 35, 0.025) 1px,
      transparent 1px,
      transparent 12px
    ),
    var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 14px 40px rgba(31, 36, 35, 0.08);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-nav a {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.nav-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f0d28c);
  box-shadow: 0 14px 32px rgba(201, 164, 92, 0.28);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px auto;
}

.mobile-nav {
  display: none;
  padding-bottom: 18px;
}

.mobile-nav.active {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hero {
  padding: 82px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-content {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 164, 92, 0.26);
  border-radius: 22px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--turquoise-dark);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--charcoal);
}

h1 {
  margin: 0;
  font-size: clamp(2.55rem, 7vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin: 0 0 12px;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-buttons,
.cta-buttons,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(66, 183, 180, 0.28);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.74);
  color: var(--charcoal);
}

.full-btn {
  width: 100%;
  margin-top: 18px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-points div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(242, 234, 223, 0.72);
  border: 1px solid rgba(31, 36, 35, 0.08);
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  font-weight: 950;
}

.hero-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 560px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: -26px;
  bottom: 34px;
  width: min(260px, 80%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 164, 92, 0.34);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.floating-card span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.floating-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--turquoise-dark);
}

.floating-card p {
  margin: 0;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 32px;
  max-width: none;
  align-items: end;
}

.service-tabs,
.event-card,
.details-card,
.pricing-card,
.panel-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.tab-btn {
  border: 1px solid var(--line);
  background: rgba(251, 248, 242, 0.92);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  color: var(--white);
  border-color: transparent;
}

.tab-panel {
  display: none;
  padding: 28px;
}

.tab-panel.active {
  display: block;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.service-kicker {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
  font-size: 0.76rem;
}

.detail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-strip span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(66, 183, 180, 0.11);
  color: var(--turquoise-dark);
  font-weight: 850;
}

.pricing-card {
  padding: 18px;
}

.pricing-row,
.example-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-row:first-child {
  padding-top: 0;
}

.pricing-row div strong,
.pricing-row div span {
  display: block;
}

.pricing-row span {
  color: var(--muted);
  margin-top: 4px;
}

.pricing-row b {
  font-family: var(--serif);
  color: var(--turquoise-dark);
  font-size: 1.65rem;
}

.service-footer-cta,
.final-cta {
  margin-top: 24px;
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(66, 183, 180, 0.13), rgba(201, 164, 92, 0.14)),
    rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.groups-section,
.details-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(229,214,195,0.36));
}

.event-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.event-card {
  padding: 26px;
}

.event-card-featured {
  grid-row: span 2;
}

.event-details,
.guideline-list,
.simple-pricing {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.event-detail,
.guideline-list div,
.simple-pricing div,
.note-card,
.addon-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(251, 248, 242, 0.85);
  border: 1px solid var(--line);
}

.event-detail strong,
.event-detail span,
.guideline-list strong,
.guideline-list span,
.simple-pricing span,
.simple-pricing strong {
  display: block;
}

.event-detail span,
.guideline-list span,
.simple-pricing span {
  color: var(--muted);
  margin-top: 5px;
}

.example-box {
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(66, 183, 180, 0.09);
  border: 1px solid rgba(66, 183, 180, 0.22);
}

.example-box h4 {
  margin-top: 0;
}

.example-row strong {
  color: var(--turquoise-dark);
}

.note-card strong,
.note-card span {
  display: block;
}

.note-card span {
  color: var(--muted);
  margin-top: 5px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(31, 36, 35, 0.06);
}

.addon-item strong {
  color: var(--turquoise-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.addons-cta {
  text-align: center;
  margin-top: 28px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.details-card {
  padding: 26px;
}

.details-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  flex-direction: column;
  text-align: center;
}

.site-footer {
  padding: 64px 0 24px;
  background:
    linear-gradient(135deg, rgba(31, 36, 35, 0.96), rgba(22, 34, 33, 0.96));
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand img {
  width: 120px;
  background: var(--white);
  border-radius: 22px;
  padding: 10px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h4 {
  color: var(--gold);
  margin-top: 0;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin: 10px 0;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .service-layout,
  .split-heading,
  .event-grid,
  .details-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 420px;
  }

  .floating-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .service-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 78px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-content {
    padding: 26px;
  }

  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 68px 0;
  }

  .tab-panel {
    padding: 16px;
  }

  .pricing-row,
  .menu-item,
  .example-row {
    flex-direction: column;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .cta-buttons,
  .mini-actions {
    width: 100%;
  }
}