:root {
  /* COLORS: Adjust the premium brand palette here. */
  --bg: #fff4ef;
  --ivory: #fffdf8;
  --cream: #fff6e7;
  --champagne: #f6e6bd;
  --champagne-deep: #d8ad5f;
  --blush: #f6cfdc;
  --blush-soft: #fff0f5;
  --lavender: #eee1ff;
  --lavender-deep: #8c65b8;
  --plum: #6f315f;
  --plum-deep: #2d1735;
  --plum-ink: #25112b;
  --berry: #a44978;
  --gold: #c99643;
  --gold-soft: #faeccb;
  --surface: #fffaf2;
  --surface-rich: #fff8ec;
  --text: #2b1532;
  --muted: #705d78;
  --border: rgba(125, 70, 101, 0.16);
  --gold-border: rgba(201, 150, 67, 0.42);
  --shadow: 0 26px 70px rgba(56, 25, 64, 0.18);
  --soft-shadow: 0 16px 42px rgba(56, 25, 64, 0.12);
  --tiny-shadow: 0 8px 20px rgba(56, 25, 64, 0.1);
  --radius: 8px;

  /* SPACING: Adjust section rhythm here. */
  --page-pad: 6vw;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 184, 214, 0.72), transparent 28vw),
    radial-gradient(circle at 88% 12%, rgba(214, 176, 255, 0.7), transparent 30vw),
    radial-gradient(circle at 50% 68%, rgba(255, 220, 140, 0.34), transparent 36vw),
    linear-gradient(
      180deg,
      #fff8f2 0%,
      #fde6f1 26%,
      #fff2dc 58%,
      #eadbff 100%
    );
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(201, 150, 67, 0.38) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(111, 49, 95, 0.24) 0 1px, transparent 1.6px),
    linear-gradient(115deg, transparent 0 45%, rgba(255, 255, 255, 0.48) 46%, transparent 48% 100%);
  background-position: 0 0, 40px 44px, center;
  background-size: 88px 88px, 126px 126px, 100% 100%;
  opacity: 0.9;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px var(--page-pad);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(255, 240, 245, 0.92), rgba(246, 230, 189, 0.8));
  border-bottom: 1px solid rgba(201, 150, 67, 0.24);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 244, 0.97);
  box-shadow: 0 14px 34px rgba(43, 21, 50, 0.1);
}

.brand {
  display: grid;
  gap: 1px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.05;
}

.brand-tagline {
  color: var(--plum);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 850;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.76);
  color: var(--plum-deep);
  outline: none;
  box-shadow: var(--tiny-shadow);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--plum-deep), var(--berry) 58%, var(--lavender-deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(111, 49, 95, 0.26);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--berry), var(--lavender-deep));
  color: #fff;
  box-shadow: 0 18px 36px rgba(111, 49, 95, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.9);
  color: var(--plum-deep);
  cursor: pointer;
  box-shadow: var(--tiny-shadow);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  align-items: center;
  gap: 48px;
  padding: 68px max(var(--page-pad), calc((100vw - var(--max-width)) / 2)) 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 218, 132, 0.46), transparent 29rem),
    radial-gradient(circle at 20% 26%, rgba(255, 184, 214, 0.42), transparent 24rem),
    linear-gradient(135deg, rgba(255, 232, 243, 0.99), rgba(255, 194, 222, 0.9) 36%, rgba(219, 196, 255, 0.94) 72%, rgba(255, 244, 222, 0.98)),
    var(--bg);
  border-bottom: 1px solid rgba(201, 150, 67, 0.2);
}

.hero::before,
.hero::after,
.section::before,
.booking-section::before,
.about-section::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 255, 255, 0.86), transparent 18rem),
    radial-gradient(circle at 76% 18%, rgba(255, 220, 140, 0.62), transparent 24rem),
    radial-gradient(circle at 70% 82%, rgba(134, 91, 179, 0.36), transparent 22rem),
    radial-gradient(circle at 18% 78%, rgba(255, 184, 214, 0.5), transparent 21rem),
    linear-gradient(100deg, rgba(255, 255, 255, 0.32), transparent 60%);
}

.hero::after {
  inset: 18px;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(201, 150, 67, 0.5) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.76) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(164, 73, 120, 0.22) 0 1px, transparent 1.6px);
  background-position: 18px 12px, 70px 58px, 114px 34px;
  background-size: 88px 88px, 132px 132px, 168px 168px;
  opacity: 0.86;
}

.hero-copy {
  position: relative;
  max-width: 760px;
  padding: clamp(28px, 4.2vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(255, 230, 240, 0.88) 52%, rgba(242, 231, 255, 0.84)),
    rgba(255, 244, 248, 0.62);
  box-shadow: 0 30px 90px rgba(85, 35, 86, 0.16);
  backdrop-filter: blur(8px);
}

.hero-copy::after {
  content: "";
  display: block;
  width: 116px;
  height: 3px;
  margin-top: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--berry), transparent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--plum-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 5.5vw, 5.45rem);
  font-weight: 700;
  line-height: 0.94;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #61436a;
  font-size: 1.18rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--plum-deep), var(--berry) 58%, var(--lavender-deep));
  color: #fff;
  box-shadow: 0 18px 38px rgba(111, 49, 95, 0.28);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 22px 46px rgba(111, 49, 95, 0.34);
}

.button.secondary {
  border: 1px solid rgba(201, 150, 67, 0.42);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 236, 203, 0.72));
  color: var(--plum-deep);
  box-shadow: var(--soft-shadow);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(111, 49, 95, 0.32);
  box-shadow: 0 18px 40px rgba(56, 25, 64, 0.16);
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -26px -18px 34px;
  z-index: -1;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(250, 236, 203, 0.42)),
    radial-gradient(circle at 50% 20%, rgba(201, 150, 67, 0.32), transparent 60%);
  filter: blur(2px);
}

.hero-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(201, 150, 67, 0.54);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 236, 0.95)),
    var(--surface);
  box-shadow: 0 34px 82px rgba(58, 24, 64, 0.24);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(201, 150, 67, 0.3);
  border-radius: 6px;
}

.hero-photo-wrap img {
  width: 100%;
  max-height: 530px;
  object-fit: contain;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #fff8ef);
}

.hero-note {
  position: absolute;
  right: -18px;
  bottom: 30px;
  width: min(294px, 78%);
  padding: 18px;
  border: 1px solid rgba(201, 150, 67, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 230, 0.92)),
    #fff;
  box-shadow: 0 20px 44px rgba(56, 25, 64, 0.18);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  color: var(--plum-ink);
  font-size: 0.98rem;
  line-height: 1.3;
}

.hero-note span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.trust-strip {
  position: relative;
  padding: 28px var(--page-pad) 36px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(250, 236, 203, 0.72), rgba(255, 246, 231, 0.96));
  border-top: 1px solid rgba(201, 150, 67, 0.2);
  border-bottom: 1px solid rgba(201, 150, 67, 0.22);
}

.trust-heading,
.trust-grid {
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.trust-heading {
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 700;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid span {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(201, 150, 67, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 236, 0.9)),
    var(--surface-rich);
  color: var(--plum-deep);
  font-size: 0.94rem;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--tiny-shadow);
}

.section {
  position: relative;
  padding: 78px var(--page-pad);
  overflow: hidden;
}

.section::before {
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.76) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(201, 150, 67, 0.32) 0 1px, transparent 1.3px),
    radial-gradient(circle, rgba(111, 49, 95, 0.16) 0 1px, transparent 1.4px);
  background-position: 24px 16px, 80px 60px, 134px 40px;
  background-size: 104px 104px, 154px 154px, 194px 194px;
  opacity: 0.7;
}

#characters {
  padding-top: 68px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.72), transparent 22rem),
    radial-gradient(circle at 88% 18%, rgba(214, 176, 255, 0.58), transparent 29rem),
    radial-gradient(circle at 48% 88%, rgba(255, 184, 214, 0.52), transparent 25rem),
    radial-gradient(circle at 22% 78%, rgba(255, 220, 140, 0.2), transparent 22rem),
    linear-gradient(180deg, rgba(235, 217, 255, 0.96), rgba(255, 216, 235, 0.96) 58%, rgba(255, 241, 215, 0.9)),
    var(--lavender);
}

#packages {
  padding-top: 72px;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.78), transparent 24rem),
    radial-gradient(circle at 86% 28%, rgba(255, 218, 132, 0.46), transparent 27rem),
    radial-gradient(circle at 52% 86%, rgba(255, 184, 214, 0.28), transparent 25rem),
    linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(250, 226, 175, 0.82) 50%, rgba(255, 236, 225, 0.96)),
    var(--cream);
}

.section-heading,
.character-grid,
.package-grid {
  width: min(100%, var(--max-width));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  position: relative;
  max-width: 820px;
  margin-bottom: 36px;
  text-align: center;
}

.section-heading::after {
  content: "";
  display: block;
  width: 122px;
  height: 3px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--berry), transparent);
}

.section-label {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2,
.about-copy h2,
.booking-copy h2 {
  margin: 0;
  color: var(--plum-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.28rem, 4vw, 3.15rem);
  line-height: 1.04;
}

.section-heading > p:not(.section-label),
.about-copy p,
.booking-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.character-card,
.package-card,
.booking-form {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 236, 0.96)),
    var(--surface);
  box-shadow: var(--soft-shadow);
}

.character-card {
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.character-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--berry), var(--lavender-deep));
  opacity: 0.72;
}

.character-card:hover {
  border-color: rgba(201, 150, 67, 0.62);
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.character-image {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.96), transparent 46%),
    linear-gradient(180deg, #fffdf8, #fff2e8 46%, #f4e7ff);
  border-bottom: 1px solid rgba(201, 150, 67, 0.2);
}

.character-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 240ms ease;
}

.character-card:hover .character-image img {
  transform: scale(1.025);
}

.character-content {
  padding: 22px 22px 24px;
}

.character-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 10px;
  padding: 5px 10px;
  border: 1px solid rgba(201, 150, 67, 0.34);
  border-radius: 999px;
  background: rgba(250, 236, 203, 0.66);
  color: var(--plum);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.character-content h3,
.package-card h3 {
  margin: 0;
  color: var(--plum-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.36rem;
  line-height: 1.18;
}

.character-content p:not(.character-label),
.package-card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.character-content p:not(.character-label) {
  margin: 10px 0 18px;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--berry);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 950;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--plum-deep);
  outline: none;
  transform: translateX(3px);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.package-card {
  position: relative;
  display: grid;
  align-content: start;
  padding: 30px;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 48%),
    radial-gradient(circle at 100% 0%, rgba(201, 150, 67, 0.18), transparent 38%);
}

.package-card > * {
  position: relative;
}

.package-card.featured {
  border-color: rgba(111, 49, 95, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.98), rgba(255, 240, 245, 0.96)),
    var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.package-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 150, 67, 0.5);
  border-radius: 50%;
  background:
    linear-gradient(135deg, #fff, var(--gold-soft)),
    #fff8e8;
  color: var(--plum-deep);
  font-weight: 950;
  box-shadow: var(--tiny-shadow);
}

.duration {
  margin: 10px 0 0;
  color: var(--lavender-deep);
  font-weight: 950;
}

.price {
  margin: 12px 0 20px;
  color: var(--berry);
  font-size: 1.45rem;
  font-weight: 950;
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
}

.package-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(201, 150, 67, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--plum-deep);
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: var(--tiny-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.package-link:hover,
.package-link:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.package-link.primary-link {
  border-color: transparent;
  background: linear-gradient(135deg, var(--plum-deep), var(--berry));
  color: #fff;
}

.package-note {
  position: relative;
  width: min(100%, 820px);
  margin: 26px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(201, 150, 67, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(255, 248, 236, 0.84)),
    var(--surface);
  color: var(--plum-deep);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  box-shadow: var(--tiny-shadow);
}

.corporate-section {
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.82), transparent 22rem),
    radial-gradient(circle at 88% 16%, rgba(255, 218, 132, 0.46), transparent 23rem),
    radial-gradient(circle at 74% 86%, rgba(214, 176, 255, 0.44), transparent 23rem),
    radial-gradient(circle at 24% 82%, rgba(255, 184, 214, 0.28), transparent 21rem),
    linear-gradient(135deg, rgba(255, 253, 248, 0.99), rgba(250, 224, 176, 0.9) 42%, rgba(255, 218, 235, 0.76) 68%, rgba(232, 217, 255, 0.86)),
    var(--champagne);
  border-top: 1px solid rgba(201, 150, 67, 0.18);
  border-bottom: 1px solid rgba(111, 49, 95, 0.14);
}

.corporate-section::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 2px, transparent 3px) 0 0 / 68px 68px,
    radial-gradient(circle, rgba(201, 150, 67, 0.24) 0 1px, transparent 2px) 32px 22px / 116px 116px,
    linear-gradient(115deg, transparent 0 46%, rgba(111, 49, 95, 0.12) 46% 47%, transparent 47% 100%);
  opacity: 0.74;
}

.corporate-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: stretch;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.corporate-copy,
.corporate-rate {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.corporate-copy {
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 236, 0.94)),
    var(--surface);
}

.corporate-copy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--berry), var(--lavender-deep));
}

.corporate-copy h2 {
  margin: 0;
  color: var(--plum-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.06;
}

.corporate-copy p:not(.section-label) {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.corporate-cta {
  margin-top: 26px;
}

.corporate-rate {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(28px, 3.4vw, 40px);
  background:
    radial-gradient(circle at 92% 12%, rgba(250, 236, 203, 0.26), transparent 12rem),
    linear-gradient(160deg, rgba(45, 23, 53, 0.96), rgba(111, 49, 95, 0.94) 62%, rgba(164, 73, 120, 0.88)),
    var(--plum-deep);
  color: #fff;
}

.corporate-rate::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(250, 236, 203, 0.22);
  border-radius: 10px;
  pointer-events: none;
}

.corporate-rate > * {
  position: relative;
}

.corporate-kicker {
  margin: 0;
  color: var(--champagne);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.corporate-price {
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.corporate-price span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 236, 0.82);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.corporate-detail {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(250, 236, 203, 0.26);
}

.corporate-detail strong {
  color: var(--champagne);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.corporate-detail span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.options-section {
  padding-top: 64px;
  padding-bottom: 68px;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.74), transparent 19rem),
    radial-gradient(circle at 86% 78%, rgba(255, 184, 214, 0.56), transparent 23rem),
    radial-gradient(circle at 76% 18%, rgba(214, 176, 255, 0.5), transparent 23rem),
    radial-gradient(circle at 24% 82%, rgba(255, 220, 140, 0.22), transparent 20rem),
    linear-gradient(135deg, rgba(255, 247, 232, 0.98), rgba(255, 218, 235, 0.94) 48%, rgba(232, 217, 255, 0.92)),
    var(--blush-soft);
  border-bottom: 1px solid rgba(111, 49, 95, 0.12);
}

.options-section::before {
  background:
    radial-gradient(circle, rgba(111, 49, 95, 0.18) 0 1px, transparent 2px) 14px 18px / 80px 80px,
    radial-gradient(circle, rgba(255, 255, 255, 0.56) 0 1px, transparent 2px) 52px 54px / 120px 120px,
    linear-gradient(90deg, transparent, rgba(201, 150, 67, 0.14), transparent);
  opacity: 0.74;
}

.options-heading {
  margin-bottom: 28px;
}

.options-heading h2 {
  font-size: clamp(2rem, 3.4vw, 2.72rem);
}

.options-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.option-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.97), rgba(255, 248, 236, 0.94)),
    var(--surface);
  box-shadow: var(--soft-shadow);
}

.option-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(164, 73, 120, 0.78), var(--lavender-deep));
}

.option-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 150, 67, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(135deg, var(--gold-soft), rgba(244, 206, 220, 0.68));
  box-shadow: var(--tiny-shadow);
}

.option-mark::before,
.option-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--plum-deep);
}

.option-mark::before {
  width: 16px;
  height: 2px;
}

.option-mark::after {
  width: 2px;
  height: 16px;
}

.option-mark.soft {
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(135deg, rgba(238, 225, 255, 0.96), rgba(250, 236, 203, 0.78));
}

.option-card h3 {
  margin: 0;
  color: var(--plum-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.18;
}

.option-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.option-card .option-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 150, 67, 0.2);
  color: var(--berry);
  font-size: 0.9rem;
  font-weight: 850;
}

.resource-card {
  display: flex;
  flex-direction: column;
}

.resource-card .resource-caption {
  margin-bottom: 22px;
}

.resource-link {
  margin-top: auto;
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
  padding: 84px max(var(--page-pad), calc((100vw - var(--max-width)) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(201, 150, 67, 0.22), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(178, 69, 128, 0.44), transparent 25rem),
    radial-gradient(circle at 78% 88%, rgba(214, 176, 255, 0.22), transparent 23rem),
    linear-gradient(135deg, rgba(45, 23, 53, 0.99), rgba(111, 49, 95, 0.94) 48%, rgba(164, 73, 120, 0.84)),
    var(--plum-deep);
}

.about-section::before {
  inset: 22px;
  border: 1px solid rgba(250, 236, 203, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.28), transparent 24rem),
    radial-gradient(circle at 84% 72%, rgba(250, 236, 203, 0.3), transparent 22rem),
    radial-gradient(circle at 78% 18%, rgba(255, 184, 214, 0.24), transparent 18rem);
  opacity: 0.96;
}

.about-image,
.about-copy {
  position: relative;
}

.about-image {
  padding: 12px;
  border: 1px solid rgba(250, 236, 203, 0.46);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.18);
  box-shadow: 0 34px 78px rgba(24, 10, 32, 0.28);
}

.about-image img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #fff8ef);
}

.about-copy {
  max-width: 700px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 24px 60px rgba(24, 10, 32, 0.18);
}

.booking-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding: 86px max(var(--page-pad), calc((100vw - var(--max-width)) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.76), transparent 22rem),
    radial-gradient(circle at 86% 16%, rgba(214, 176, 255, 0.56), transparent 29rem),
    radial-gradient(circle at 52% 86%, rgba(255, 218, 132, 0.32), transparent 27rem),
    radial-gradient(circle at 20% 78%, rgba(255, 184, 214, 0.34), transparent 22rem),
    linear-gradient(135deg, rgba(255, 228, 241, 0.99), rgba(232, 217, 255, 0.97) 45%, rgba(255, 246, 226, 0.98)),
    var(--blush-soft);
}

.booking-section::before {
  inset: 28px max(20px, var(--page-pad));
  border: 1px solid rgba(201, 150, 67, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.74), transparent 22rem),
    radial-gradient(circle at 92% 12%, rgba(201, 150, 67, 0.28), transparent 23rem),
    radial-gradient(circle at 80% 82%, rgba(164, 73, 120, 0.18), transparent 19rem);
}

.booking-copy,
.booking-form {
  position: relative;
}

.booking-copy {
  position: sticky;
  top: 112px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.68);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(8px);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 248, 236, 0.97)),
    var(--surface);
  box-shadow: 0 32px 76px rgba(56, 25, 64, 0.19);
}

.form-row {
  display: grid;
  gap: 7px;
}

.other-character-row[hidden] {
  display: none;
}

.form-row.full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

label {
  color: var(--plum-ink);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid rgba(111, 49, 95, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  font-size: 0.96rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(164, 73, 120, 0.66);
  outline: none;
  box-shadow: 0 0 0 4px rgba(164, 73, 120, 0.12);
}

.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(201, 150, 67, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  color: var(--plum-ink);
  cursor: pointer;
  line-height: 1.42;
  box-shadow: var(--tiny-shadow);
}

.checkbox-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--berry);
}

.checkbox-label span {
  font-size: 0.94rem;
  font-weight: 900;
}

.form-submit {
  width: fit-content;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-helper {
  margin: -1px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

.form-note.success {
  color: var(--berry);
  font-weight: 900;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

.site-footer {
  position: relative;
  padding: 46px var(--page-pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 150, 67, 0.3), transparent 22rem),
    radial-gradient(circle at 86% 12%, rgba(178, 69, 128, 0.42), transparent 24rem),
    linear-gradient(135deg, #241029, #562461 54%, #2d1735 100%);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(250, 236, 203, 0.14);
  border-radius: var(--radius);
}

.footer-brand,
.site-footer p {
  position: relative;
}

.footer-brand {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.footer-brand strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.74);
}

.footer-email {
  width: fit-content;
  margin: 0 auto;
  color: var(--champagne);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 160ms ease, text-shadow 160ms ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: #fff;
  outline: none;
  text-shadow: 0 0 18px rgba(250, 236, 203, 0.38);
}

.site-footer p {
  margin: 7px 0;
}

.site-footer .disclaimer {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(2.86rem, 5.8vw, 4.4rem);
  }

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

  .corporate-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 860px) {
  :root {
    --page-pad: 24px;
  }

  .site-header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .brand-name {
    font-size: 1.06rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .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: fixed;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 240, 245, 0.98));
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-photo-wrap {
    width: min(100%, 520px);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-note {
    right: 12px;
  }

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

  .about-section,
  .booking-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .booking-copy {
    position: relative;
    top: auto;
  }

  .corporate-shell {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 20px;
  }

  .brand {
    max-width: 258px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy {
    padding: 26px 22px;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero p {
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 12px;
  }

  .hero-photo-wrap img {
    max-height: 420px;
  }

  .trust-strip {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .trust-grid,
  .character-grid,
  .package-grid,
  .options-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .about-copy,
  .corporate-copy,
  .corporate-rate,
  .option-card,
  .booking-copy,
  .booking-form {
    padding: 24px;
  }

  .form-submit,
  .package-link {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand {
    max-width: 226px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-tagline {
    font-size: 0.53rem;
  }

  .hero h1 {
    font-size: 2.28rem;
  }

  .hero-copy {
    padding: 24px 18px;
  }

  .hero-photo-wrap img {
    max-height: 370px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
