/* Chungry Events, outdoor celebration tech
   Warm dark editorial. Photography leads; honey light accents. */

:root {
  color-scheme: dark;

  --ink: #0c0b0a;
  --ink-2: #131110;
  --surface: #1c1917;
  --surface-2: #241f1c;

  --text: #f7f3ec;
  --muted: #a9a099;
  --dim: #7d746d;

  --honey: #eaa640;
  --honey-soft: #f6cd85;
  --ember: #d4622c;
  --sage: #86a58c;

  --line: rgba(247, 243, 236, 0.12);
  --line-strong: rgba(247, 243, 236, 0.22);

  --paper: #f6f2ea;
  --paper-ink: #191512;
  --paper-muted: #5f574f;
  --paper-line: rgba(25, 21, 18, 0.14);

  --display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 16px;
  --radius-lg: 22px;
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body.ce-body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ce-body.nav-open {
  overflow: hidden;
}

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

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

::selection {
  background: var(--honey);
  color: var(--ink);
}

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

/* --- Typography primitives --- */

.ce-h2 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2.05rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 1rem;
  max-width: 26ch;
  text-wrap: pretty;
}

.ce-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
}

.ce-label::after {
  content: '';
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: var(--line-strong);
}

.ce-lead {
  margin: 0 0 2.25rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 58ch;
}

/* --- Nav --- */

.ce-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s, backdrop-filter 0.4s;
}

.ce-nav.is-scrolled {
  background: rgba(12, 11, 10, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}

.ce-nav__inner {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ce-nav__brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.ce-nav__brand span {
  color: var(--honey);
}

.ce-nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ce-nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.ce-nav__links a:hover,
.ce-nav__links a.is-active {
  color: var(--text);
}

.ce-nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s var(--ease);
}

.ce-nav__cta:hover {
  background: var(--honey-soft);
  transform: translateY(-1px);
}

.ce-nav__toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 900px) {
  .ce-nav__toggle {
    display: inline-flex;
  }

  .ce-nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    gap: 0;
    padding: 0.75rem 1.5rem 1.75rem;
    background: rgba(12, 11, 10, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-115%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.3s;
  }

  .ce-nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .ce-nav__links a {
    display: block;
    padding: 0.95rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .ce-nav__cta {
    display: none;
  }
}

/* --- Buttons --- */

.ce-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.ce-btn:hover {
  transform: translateY(-2px);
}

.ce-btn--primary {
  background: linear-gradient(135deg, var(--honey-soft) 0%, var(--honey) 55%, var(--ember) 100%);
  color: #23180d;
  box-shadow: 0 10px 30px rgba(234, 166, 64, 0.24);
}

.ce-btn--primary:hover {
  box-shadow: 0 16px 40px rgba(234, 166, 64, 0.34);
}

.ce-btn--ghost {
  background: rgba(247, 243, 236, 0.08);
  color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
}

.ce-btn--ghost:hover {
  background: rgba(247, 243, 236, 0.14);
}

.ce-btn--dark {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.ce-btn--dark:hover {
  border-color: var(--honey);
  color: var(--honey-soft);
}

.ce-btn--lagoon {
  background: transparent;
  color: var(--sage);
  border: 1px solid rgba(134, 165, 140, 0.45);
}

.ce-btn--lagoon:hover {
  background: rgba(134, 165, 140, 0.12);
  color: #a9c4ae;
}

/* --- Hero --- */

.ce-hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.ce-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ce-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.05);
  animation: ce-ken 34s ease-in-out infinite alternate;
}

@keyframes ce-ken {
  from {
    transform: scale(1.05) translate(0, 0);
  }
  to {
    transform: scale(1.13) translate(-1.2%, -1.2%);
  }
}

.ce-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      95deg,
      rgba(12, 11, 10, 0.86) 0%,
      rgba(12, 11, 10, 0.6) 34%,
      rgba(12, 11, 10, 0.12) 66%,
      rgba(12, 11, 10, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 11, 10, 0.55) 0%,
      rgba(12, 11, 10, 0.16) 28%,
      rgba(12, 11, 10, 0.72) 76%,
      var(--ink) 100%
    );
}

.ce-hero__content {
  position: relative;
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
  padding: calc(var(--nav-h) + 5rem) 0 4.5rem;
}

.ce-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.82);
}

.ce-hero__eyebrow::before {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 5px rgba(234, 166, 64, 0.18);
}

.ce-hero__brand {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 6.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  max-width: 24ch;
  text-wrap: balance;
}

.ce-hero__brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--honey-soft);
}

.ce-hero__line {
  margin: 0 0 0.85rem;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  max-width: 30ch;
  color: var(--text);
}

.ce-hero__sub {
  margin: 0 0 2.25rem;
  color: rgba(247, 243, 236, 0.76);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 44ch;
}

.ce-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.ce-hero__soft {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.64);
  max-width: 46ch;
}

.ce-promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: rgba(247, 243, 236, 0.07);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.ce-promo-chip:hover {
  border-color: rgba(234, 166, 64, 0.5);
  background: rgba(234, 166, 64, 0.1);
  transform: translateY(-2px);
}

.ce-promo-chip strong {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--honey);
  color: #23180d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Sections --- */

.ce-section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.ce-section--tint {
  background: var(--ink-2);
}

.ce-section--ink {
  background: var(--surface);
}

.ce-section--paper {
  background: var(--paper);
  color: var(--paper-ink);
}

.ce-section--paper .ce-lead {
  color: var(--paper-muted);
}

.ce-section--paper .ce-label {
  color: var(--ember);
}

.ce-section--paper .ce-label::after {
  background: var(--paper-line);
}

/* --- Promise pillars --- */

.ce-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-top: 1rem;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.ce-pillar {
  padding: 1.75rem 1.4rem;
  background: var(--ink);
  transition: background 0.3s;
}

.ce-section--tint .ce-pillar {
  background: var(--ink-2);
}

.ce-pillar:hover {
  background: var(--surface-2);
}

.ce-pillar strong {
  display: block;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--honey-soft);
}

.ce-pillar span {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--muted);
}

/* --- Gallery strip --- */

.ce-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 3rem;
}

@media (max-width: 860px) {
  .ce-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ce-gallery figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.ce-gallery figure:nth-child(odd) {
  aspect-ratio: 3 / 4;
}

.ce-gallery figure:nth-child(even) {
  aspect-ratio: 3 / 4;
  transform: translateY(1.75rem);
}

@media (max-width: 860px) {
  .ce-gallery figure:nth-child(even) {
    transform: none;
  }
}

.ce-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: saturate(1.02);
}

.ce-gallery figure:hover img {
  transform: scale(1.06);
}

.ce-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 2.5rem 1rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(12, 11, 10, 0.85));
}

/* --- Packages --- */

.ce-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.ce-pack {
  position: relative;
  padding: 2rem 1.75rem 1.85rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--paper-line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), box-shadow 0.35s,
    border-color 0.35s;
}

.ce-pack.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ce-pack:nth-child(2) {
  transition-delay: 0.1s;
}

.ce-pack:nth-child(3) {
  transition-delay: 0.2s;
}

.ce-pack:hover {
  box-shadow: 0 22px 50px rgba(25, 21, 18, 0.12);
}

.ce-pack--featured {
  background: linear-gradient(168deg, #211c17 0%, #14110e 100%);
  border-color: rgba(234, 166, 64, 0.35);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(25, 21, 18, 0.22);
}

.ce-pack__badge {
  position: absolute;
  top: -0.7rem;
  left: 1.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--honey);
  color: #23180d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ce-pack__name {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.ce-pack--featured .ce-pack__name {
  color: var(--honey-soft);
}

.ce-pack__price {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ember);
}

.ce-pack--featured .ce-pack__price {
  color: var(--honey);
}

.ce-pack__desc {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.ce-pack--featured .ce-pack__desc {
  color: var(--muted);
}

.ce-pack ul {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  flex: 1;
}

.ce-pack li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.96rem;
  line-height: 1.5;
}

.ce-pack li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--sage);
}

.ce-pack--featured li::before {
  background: var(--honey);
}

.ce-pack .ce-btn {
  margin-top: 0.75rem;
  width: 100%;
}

.ce-pack:not(.ce-pack--featured) .ce-btn--dark {
  color: var(--paper-ink);
  border-color: var(--paper-line);
}

.ce-pack:not(.ce-pack--featured) .ce-btn--dark:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.ce-pack:not(.ce-pack--featured) .ce-btn--lagoon {
  color: #3f6349;
  border-color: rgba(63, 99, 73, 0.4);
}

/* --- Package price --- */

.ce-pack__rate {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  margin: 0;
}

.ce-pack__from {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-muted);
}

.ce-pack--featured .ce-pack__from {
  color: var(--muted);
}

.ce-pack__amount {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper-ink);
}

.ce-pack--featured .ce-pack__amount {
  color: var(--honey-soft);
}

.ce-pack__unit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper-muted);
}

.ce-pack--featured .ce-pack__unit {
  color: var(--muted);
}

.ce-pack__rate--addon .ce-pack__amount {
  font-size: 1.5rem;
  color: var(--ember);
}

.ce-pack__rate--addon .ce-pack__unit {
  font-weight: 500;
}

/* --- Availability calendar --- */

.ce-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.ce-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.ce-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.ce-dot--open {
  background: var(--sage);
}

.ce-dot--limited {
  background: var(--honey);
}

.ce-dot--booked {
  background: transparent;
  border: 1.5px solid var(--dim);
}

.ce-dot--weekday {
  background: rgba(247, 243, 236, 0.16);
}

.ce-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1rem;
}

.ce-calendar__fallback {
  color: var(--dim);
  margin: 0;
}

.ce-cal-month {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.ce-cal-month__title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ce-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.ce-cal-dow {
  text-align: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  padding-bottom: 0.35rem;
}

.ce-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid transparent;
}

.ce-cal-day--empty {
  visibility: hidden;
}

.ce-cal-day--past {
  color: rgba(125, 116, 109, 0.45);
}

.ce-cal-day--weekday {
  color: var(--dim);
}

.ce-cal-day--open {
  color: var(--text);
  background: rgba(134, 165, 140, 0.14);
  border-color: rgba(134, 165, 140, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease), border-color 0.2s;
}

.ce-cal-day--open:hover,
.ce-cal-day--open:focus-visible {
  background: rgba(134, 165, 140, 0.28);
  border-color: var(--sage);
  transform: translateY(-2px);
  outline: none;
}

.ce-cal-day--limited {
  color: var(--text);
  background: rgba(234, 166, 64, 0.14);
  border-color: rgba(234, 166, 64, 0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease), border-color 0.2s;
}

.ce-cal-day--limited:hover,
.ce-cal-day--limited:focus-visible {
  background: rgba(234, 166, 64, 0.28);
  border-color: var(--honey);
  transform: translateY(-2px);
  outline: none;
}

.ce-cal-day--booked {
  color: var(--dim);
  border-color: var(--line);
  text-decoration: line-through;
  text-decoration-color: rgba(125, 116, 109, 0.7);
}

/* --- Gear & options --- */

.ce-gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.ce-gear {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem 1.3rem 1.25rem;
  border-radius: var(--radius);
  background: var(--ink-2);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.ce-gear:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.ce-gear__name {
  margin: 0;
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--honey-soft);
}

.ce-gear__desc {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.ce-gear__link {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(247, 243, 236, 0.28);
  transition: color 0.2s, border-color 0.2s;
}

.ce-gear__link:hover {
  color: var(--honey-soft);
  border-bottom-color: rgba(246, 205, 133, 0.55);
}

.ce-gear-soon {
  margin-top: 2rem;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(234, 166, 64, 0.35);
  background: rgba(234, 166, 64, 0.05);
}

.ce-gear-soon__title {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--honey-soft);
}

.ce-gear-soon__lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 58ch;
}

.ce-gear-soon__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ce-gear-soon__list a {
  display: inline-flex;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(247, 243, 236, 0.04);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.ce-gear-soon__list a:hover {
  border-color: rgba(234, 166, 64, 0.5);
  background: rgba(234, 166, 64, 0.1);
}

/* --- How it works --- */

.ce-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.ce-step {
  counter-increment: step;
  padding: 1.6rem 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.ce-step:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.ce-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--honey);
  margin-bottom: 0.75rem;
}

.ce-step strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
}

.ce-step p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--muted);
}

/* --- Service area --- */

.ce-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ce-cities li {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(25, 21, 18, 0.16);
  color: var(--paper-ink);
  font-weight: 500;
  font-size: 0.92rem;
}

.ce-fineprint {
  margin: 2.25rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--paper-muted);
  max-width: 56ch;
}

/* --- Book --- */

.ce-book {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) {
  .ce-book {
    grid-template-columns: 1fr;
  }
}

.ce-book a {
  color: var(--honey-soft);
  border-bottom: 1px solid rgba(246, 205, 133, 0.35);
}

.ce-book code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  border-radius: 5px;
  background: rgba(247, 243, 236, 0.08);
}

.ce-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--paper-ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ce-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-muted);
}

.ce-form input,
.ce-form select,
.ce-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--paper-line);
  background: #fff;
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--paper-ink);
  text-transform: none;
  letter-spacing: normal;
}

.ce-form textarea {
  resize: vertical;
}

.ce-form input:focus,
.ce-form select:focus,
.ce-form textarea:focus {
  outline: none;
  border-color: var(--ember);
  box-shadow: 0 0 0 3px rgba(212, 98, 44, 0.16);
}

.ce-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .ce-form__row {
    grid-template-columns: 1fr;
  }
}

.ce-form__group {
  border: none;
  margin: 0;
  padding: 0;
}

.ce-form__legend {
  padding: 0;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-muted);
}

.ce-form__hint {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.55;
  color: var(--paper-muted);
}

.ce-form__hint a {
  color: var(--ember);
  border-bottom: 1px solid rgba(212, 98, 44, 0.35);
}

.ce-form__options {
  display: grid;
  gap: 0.45rem;
}

.ce-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--paper-line);
  background: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--paper-ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.ce-option:hover {
  border-color: rgba(212, 98, 44, 0.35);
}

.ce-option:has(input:checked) {
  border-color: rgba(212, 98, 44, 0.55);
  background: rgba(212, 98, 44, 0.06);
}

.ce-option--soon {
  background: rgba(247, 243, 236, 0.55);
}

.ce-option input {
  width: auto;
  margin: 0;
  accent-color: var(--ember);
}

.ce-option__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 0;
}

.ce-option__name {
  font-weight: 600;
}

.ce-option__link {
  flex-shrink: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ember);
  border-bottom: 1px solid rgba(212, 98, 44, 0.3);
}

.ce-option__link:hover {
  border-bottom-color: var(--ember);
}

.ce-form__note {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--paper-muted);
}

.ce-form__status {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3f6349;
  min-height: 1.3em;
}

/* --- Reveal --- */

.ce-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.ce-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ce-reveal,
  .ce-pack {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ce-hero__media img,
  .ce-gallery figure:nth-child(even) {
    animation: none;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* --- Footer --- */

.ce-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.ce-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--dim);
}

.ce-footer__inner p {
  margin: 0;
}

.ce-footer a {
  color: var(--muted);
  transition: color 0.2s;
}

.ce-footer a:hover {
  color: var(--honey-soft);
}

/* --- Small screens --- */

@media (max-width: 640px) {
  /* Copy spans the full width here, so the desktop left-to-right scrim would
     just bury the photo. Darken top-to-bottom and sit the copy up top, which
     leaves the bottom of the frame for the party itself. */
  /* Taller than the screen on purpose: copy and both CTAs land on the first
     view, then scrolling reveals the party instead of a scrim. */
  .ce-hero {
    min-height: min(128svh, 1080px);
    align-items: start;
  }

  /* The group is in the lower left of this frame. A centered crop lands on an
     empty field and a dirt road. */
  .ce-hero__media img {
    object-position: 24% center;
  }

  /* The veil only has to cover the nav and fade into the next section. */
  .ce-hero__veil {
    background: linear-gradient(
      180deg,
      rgba(12, 11, 10, 0.6) 0%,
      rgba(12, 11, 10, 0.24) 22%,
      rgba(12, 11, 10, 0.1) 55%,
      rgba(12, 11, 10, 0.45) 92%,
      var(--ink) 100%
    );
  }

  .ce-hero__content {
    padding: calc(var(--nav-h) + 1.5rem) 0 4.5rem;
  }

  /* Scrim tied to the copy rather than to a fixed share of the hero, so it
     still covers the text on a narrow screen where the copy wraps taller. */
  .ce-hero__content::before {
    content: '';
    position: absolute;
    inset: 0 -1.5rem;
    z-index: -1;
    background: linear-gradient(
      180deg,
      rgba(12, 11, 10, 0.88) 0%,
      rgba(12, 11, 10, 0.86) 70%,
      rgba(12, 11, 10, 0.8) 90%,
      rgba(12, 11, 10, 0) 100%
    );
  }

  /* Default checkboxes render at 13px, which is a rough thumb target when the
     whole gear list is checkboxes. */
  .ce-option input {
    width: 1.15rem;
    height: 1.15rem;
  }

  /* This link sits inside the label, so give it enough room to be tapped on
     purpose rather than toggling the checkbox by accident. */
  .ce-option__link,
  .ce-gear__link {
    padding: 0.35rem 0;
  }

  .ce-footer__inner {
    flex-direction: column;
    gap: 0.4rem;
  }
}
