: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;
}

/* RESET */
* {
  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.12), transparent 30%),
    radial-gradient(circle at top right, rgba(201, 164, 92, 0.15), transparent 35%),
    repeating-linear-gradient(
      45deg,
      rgba(31, 36, 35, 0.03) 0px,
      rgba(31, 36, 35, 0.03) 1px,
      transparent 1px,
      transparent 12px
    ),
    var(--cream);
}

/* GLOBAL */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--charcoal);
}

h1 {
  font-size: clamp(2.25rem, 4.8vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  color: white;
  box-shadow: 0 18px 36px rgba(66, 183, 180, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
}

.full-btn {
  width: 100%;
  margin-top: 18px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/* NAV */
.desktop-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-btn {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--gold);
}
/* MOBILE MENU */
.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: 0 0 18px;
}

.mobile-nav.active {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  border: 1px solid var(--line);
}

/* HERO */
.hero {
  padding: 58px 0 54px;
  position: relative;
  overflow: hidden;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 28px 4%;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(66, 183, 180, 0.10), rgba(201, 164, 92, 0.12)),
    rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(201, 164, 92, 0.20);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.premium-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 22px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--turquoise-dark);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.08rem;
  margin-top: 18px;
}

.hero-buttons,
.cta-buttons,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.hero-trust-row div {
  padding: 16px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(242,234,223,0.68));
  border: 1px solid rgba(31,36,35,0.08);
}

.hero-trust-row strong {
  display: block;
  font-size: 0.92rem;
  color: var(--charcoal);
}

.hero-trust-row span {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

/* HERO IMAGE */
.hero-visual {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--sand);
  position: relative;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.32));
  pointer-events: none;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  left: -28px;
  bottom: 34px;
  width: min(292px, 86%);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,164,92,0.34);
  border-radius: 26px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  color: var(--gold-dark);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.floating-card strong {
  display: block;
  font-family: var(--serif);
  color: var(--turquoise-dark);
  font-size: 2.4rem;
  margin-top: 6px;
}

.floating-card p {
  margin: 6px 0 0;
  font-size: 0.95rem;
}
/* SECTIONS */
.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  margin: 0;
}

.section-heading p {
  margin-top: 14px;
}

/* SERVICES */
.services-section {
  position: relative;
}

.service-tabs {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(66,183,180,0.08), rgba(201,164,92,0.08)),
    rgba(255,255,255,0.72);
}

.tab-btn {
  border: 1px solid var(--line);
  background: rgba(251, 248, 242, 0.95);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 950;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.22s ease;
}

.tab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(66,183,180,0.35);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(66,183,180,0.24);
}

.tab-panel {
  display: none;
  padding: clamp(18px, 3vw, 34px);
}

.tab-panel.active {
  display: block;
}

.service-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: start;
}

.service-copy {
  padding: 8px 4px;
}

.service-kicker {
  display: inline-block;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
  font-size: 0.76rem;
  margin-bottom: 10px;
}

.service-copy h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.detail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-strip span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(66, 183, 180, 0.11);
  color: var(--turquoise-dark);
  font-weight: 850;
  font-size: 0.88rem;
}

/* PRICING */
.pricing-card {
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(251,248,242,0.86));
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(31,36,35,0.08);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.pricing-row:first-child {
  padding-top: 0;
}

.pricing-row div strong {
  display: block;
  font-weight: 950;
  color: var(--charcoal);
}

.pricing-row div span {
  display: block;
  color: var(--muted);
  margin-top: 5px;
  font-size: 0.94rem;
}

.pricing-row b {
  font-family: var(--serif);
  color: var(--turquoise-dark);
  font-size: 1.85rem;
  white-space: nowrap;
}

/* CTA BELOW SERVICES */
.service-footer-cta {
  margin-top: 26px;
  border-radius: var(--radius);
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(66,183,180,0.12), rgba(201,164,92,0.14)),
    rgba(255,255,255,0.80);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(31,36,35,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.service-footer-cta h3 {
  margin: 0 0 8px;
}

.service-footer-cta p {
  margin: 0;
}
/* SPLIT HEADING */
.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 34px;
  max-width: none;
  align-items: end;
}

/* GROUPS / EVENTS */
.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.12fr 0.88fr;
  gap: 24px;
}

.event-card {
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,248,242,0.84));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.event-card-featured {
  grid-row: span 2;
}

.event-top h3 {
  margin-top: 8px;
}

.event-details,
.guideline-list,
.simple-pricing {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.event-detail,
.guideline-list div,
.simple-pricing div,
.note-card,
.addon-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(251, 248, 242, 0.88);
  border: 1px solid var(--line);
}

.event-detail strong,
.event-detail span,
.guideline-list strong,
.guideline-list span,
.simple-pricing span,
.simple-pricing strong,
.note-card strong,
.note-card span {
  display: block;
}

.event-detail span,
.guideline-list span,
.simple-pricing span,
.note-card span {
  color: var(--muted);
  margin-top: 5px;
  line-height: 1.55;
}

.simple-pricing strong {
  color: var(--turquoise-dark);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.example-box {
  margin-top: 26px;
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(66,183,180,0.09), rgba(201,164,92,0.08));
  border: 1px solid rgba(66,183,180,0.22);
}

.example-box h4 {
  margin-top: 0;
}

.example-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(31,36,35,0.10);
}

.example-row:last-child {
  border-bottom: none;
}

.example-row strong {
  color: var(--turquoise-dark);
  white-space: nowrap;
}

/* ADD-ONS */
.addons-section {
  position: relative;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 850;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,248,242,0.84));
  box-shadow: 0 16px 36px rgba(31,36,35,0.07);
}

.addon-item span {
  color: var(--charcoal);
}

.addon-item strong {
  color: var(--turquoise-dark);
  font-family: var(--serif);
  font-size: 1.42rem;
}

.addons-cta {
  text-align: center;
  margin-top: 30px;
}

/* DETAILS */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.details-card {
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,248,242,0.84));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.details-card h3 {
  margin-top: 0;
}

.details-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.details-card li {
  margin-bottom: 8px;
}

/* TRUST STRIP */
.trust-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-strip div {
  padding: 20px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(66,183,180,0.12), rgba(201,164,92,0.12)),
    rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(31,36,35,0.06);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-weight: 950;
  color: var(--charcoal);
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

/* FINAL CTA */
.final-cta {
  margin-top: 30px;
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 56px);
  background:
    radial-gradient(circle at top left, rgba(66,183,180,0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(201,164,92,0.18), transparent 36%),
    rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-cta h2 {
  margin: 0;
}

.final-cta p {
  max-width: 660px;
  margin: 14px auto 0;
}
/* FOOTER */
.site-footer {
  padding: 68px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(66,183,180,0.12), transparent 34%),
    linear-gradient(135deg, rgba(31,36,35,0.98), rgba(18,28,28,0.98));
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 38px;
}

.footer-brand img {
  width: 165px;
  background: var(--white);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}

.site-footer p {
  color: rgba(255,255,255,0.72);
  max-width: 430px;
}

.site-footer h4 {
  margin-top: 0;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,0.78);
  font-weight: 750;
}

.footer-actions {
  margin-top: 20px;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.13);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
}

/* STICKY BOOKING BUTTON */
.sticky-booking {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--turquoise-dark), var(--turquoise));
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(66,183,180,0.34);
  border: 1px solid rgba(255,255,255,0.22);
}

/* SMALL LUXURY MOTION */
.service-tabs,
.event-card,
.details-card,
.addon-item,
.final-cta,
.premium-card,
.hero-image-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.event-card:hover,
.details-card:hover,
.addon-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(31,36,35,0.14);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .service-layout,
  .split-heading,
  .event-grid,
  .details-grid,
  .trust-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    min-height: 92px;
  }

  .brand-logo {
    width: 92px;
    height: 92px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-image-card,
.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

  .floating-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .hero-trust-row {
    grid-template-columns: 1fr;
  }

  .service-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sticky-booking {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    min-height: 86px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 82px;
    height: 82px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text span {
    display: none;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .section {
    padding: 68px 0;
  }

  .premium-card {
    padding: 26px;
  }

  .premium-card::before {
    inset: 10px;
  }

  .tab-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tab-btn {
    width: 100%;
    padding: 12px 10px;
  }

  .tab-panel {
    padding: 16px;
  }

  .pricing-row,
  .example-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-row b {
    font-size: 1.7rem;
  }

  .addons-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .hero-buttons a,
  .cta-buttons a,
  .mini-actions a {
    width: 100%;
  }

  .footer-brand img {
    width: 138px;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}
/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.group-note-card {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(66,183,180,0.10), rgba(201,164,92,0.10)),
    rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(31,36,35,0.07);
}

.group-note-card h4 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.group-note-card p {
  margin: 0;
}

#backToTop {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #42b7b4, #c9a45c);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}