/* ─── Fonts ─── */
@font-face {
  font-family: "GFS Didot";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/gfsdidot-400.woff2") format("woff2");
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 200 400;
  font-display: swap;
  src: url("assets/fonts/raleway-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Raleway";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/raleway-italic-300.woff2") format("woff2");
}

/* ─── Variables ─── */
:root {
  --peach: #f9ad88;
  --sage: #baccbe;
  --cream: #fadab9;
  --charcoal: #404041;
  --bg: #faf7f3;
  --bg-warm: #fefcf9;
  --border: rgba(64, 64, 65, 0.1);
  --serif: "GFS Didot", "Didot", "Bodoni MT", Georgia, serif;
  --sans: "Raleway", "Brandon Grotesque", sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}



img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── Utilities ─── */
.label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}

.rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--peach);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 34px;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    transform 0.2s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--bg);
}
.btn-dark:hover {
  background: var(--peach);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(64, 64, 65, 0.3);
  padding: 14px 0;
  letter-spacing: 0.16em;
}
.btn-ghost:hover {
  border-color: var(--charcoal);
}
.text-link {
  border-bottom: 1px solid rgba(64, 64, 65, 0.3);
  transition: border-color 0.2s var(--ease);
}
.text-link:hover {
  border-color: var(--charcoal);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.32s;
}
.reveal.d4 {
  transition-delay: 0.44s;
}
.reveal.d5 {
  transition-delay: 0.56s;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 64px;
  transition:
    padding 0.4s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s;
}
nav.stuck {
  padding: 38px 64px;
  background: rgba(250, 247, 243, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  height: 69px;
  width: auto;
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  text-decoration: none;
}

.nav-brand-divider {
  width: 1px;
  height: 45px;
  background: var(--charcoal);
  opacity: 0.15;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.575rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--charcoal);
}

.nav-brand-sub {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  /* text-transform: uppercase; */
  color: var(--charcoal);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-mobile-cta {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
}
.nav-links li a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  /* opacity: .65; */
  /* transition: opacity .2s; */
}
.nav-links li a:hover {
  opacity: 1;
}

.nav-cta {
  background: var(--charcoal);
  color: var(--bg) !important;
  opacity: 1 !important;
  padding: 10px 24px;
  font-weight: 400 !important;
  transition: background 0.22s !important;
}
.nav-cta:hover {
  background: var(--peach) !important;
  color: var(--charcoal) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 64px 100px 64px;
  z-index: 2;
}

/* Soft radial glow on content side */
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 173, 136, 0.18) 0%,
    transparent 68%
  );
  top: 50%;
  left: -15%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* Sage blob bottom-left of content */
.hero-blob-2 {
  position: absolute;
  width: 260px;
  height: 180px;
  border-radius: 50% 60% 40% 50% / 60% 40% 50% 50%;
  background: var(--sage);
  opacity: 0.18;
  bottom: 40px;
  left: -40px;
  pointer-events: none;
}

.hero-logo-wrap {
  opacity: 0;
  animation: heroLogoIn 1s var(--ease) 0.05s forwards;
  margin-bottom: 32px;
}
.hero-logo-img {
  height: 96px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(249, 173, 136, 0.25));
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.2vw, 5.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 26px;
}

.hero-title em {
  font-style: italic;
  color: var(--peach);
}

.hero-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.88;
  letter-spacing: 0.03em;
  max-width: 380px;
  margin-bottom: 44px;
  color: var(--charcoal);
  filter: opacity(0.62);
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Photo right column */
.hero-photo-side {
  position: relative;
  overflow: hidden;
}
.hero-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* Left-edge fade into page background */
.hero-photo-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 28%),
    linear-gradient(to bottom, rgba(250, 247, 243, 0.82) 0%, transparent 22%);
  z-index: 1;
  pointer-events: none;
}
/* Subtle warm tint over photo */
.hero-photo-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 218, 185, 0.07);
  z-index: 1;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: var(--charcoal);
  opacity: 0.25;
}

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  flex-shrink: 0;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--peach);
  opacity: 1;
  flex-shrink: 0;
}

/* ─── INTRO ─── */
.intro {
  background: var(--charcoal);
  color: var(--bg);
  padding: 100px 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 72px;
  align-items: center;
}
.intro-divider {
  width: 1px;
  height: 88px;
  background: rgba(255, 255, 255, 0.12);
}
.intro h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 3.8vw, 3.6rem);
  line-height: 1.2;
}
.intro h2 em {
  font-style: italic;
  color: var(--cream);
}
.intro p {
  font-size: 1rem;
  line-height: 1.95;
  opacity: 0.6;
}
.intro-label {
  color: var(--cream);
  margin-bottom: 18px;
  display: block;
}

/* ─── EVENTS ─── */
.events-section {
  padding: 128px 64px;
}
.events-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 72px;
}
.events-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10px;
  height: 520px;
}

/* ── Map side ── */
.events-map-side {
  position: relative;
  overflow: hidden;
  background: var(--sage);
}
.events-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 218, 185, 0.1);
  pointer-events: none;
  z-index: 1;
}
.events-map-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: var(--charcoal);
  color: var(--bg);
  padding: 20px 26px;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.events-map-label-title {
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
  opacity: 0.9;
}
.events-map-label-areas {
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.85;
}

/* ── Event types list ── */
.events-typelist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.etype-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s var(--ease);
}
.etype-item:hover {
  transform: translateY(-2px);
}
.etype-item:nth-child(1) {
  background: linear-gradient(148deg, #f5d4b4 0%, #eec49a 100%);
}
.etype-item:nth-child(2) {
  background: linear-gradient(148deg, var(--sage) 0%, #9ab5a0 100%);
}
.etype-item:nth-child(3) {
  background: linear-gradient(148deg, var(--peach) 0%, #f0a880 100%);
}
.etype-item:nth-child(4) {
  background: linear-gradient(148deg, var(--cream) 0%, #f5c9a0 100%);
}
.etype-item:nth-child(5) {
  background: linear-gradient(148deg, #d8e6db 0%, var(--sage) 100%);
}
.etype-item:nth-child(6) {
  background: linear-gradient(148deg, #f0c9a8 0%, var(--cream) 100%);
}
.etype-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(255, 255, 255, 0.28) 0%,
    transparent 60%
  );
}
.etype-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.etype-desc {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.6;
  line-height: 1.5;
  margin-top: 5px;
  position: relative;
  z-index: 1;
}

/* ─── HOW IT WORKS ─── */
.hiw {
  background: var(--bg-warm);
  padding: 128px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 72px;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hiw-step-num {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 400;
  color: var(--peach);
  line-height: 1;
}
.hiw-step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}
.hiw-step p {
  font-size: 1rem;
  opacity: 0.6;
  line-height: 1.95;
}

/* ─── INCLUDED ─── */
.included {
  padding: 128px 64px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.included-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
}
.included-text h2 em {
  font-style: italic;
}
.included-text > p {
  font-size: 1rem;
  opacity: 0.6;
  line-height: 1.95;
  margin-bottom: 44px;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
  flex-shrink: 0;
}

.included-visual {
  position: relative;
  height: 540px;
}
.iv-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 78%;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(64, 64, 65, 0.14);
}
.iv-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.iv-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 50%;
  border-radius: 2px;
  overflow: hidden;
  transform: rotate(3deg);
  box-shadow: 0 12px 40px rgba(64, 64, 65, 0.14);
  outline: 4px solid var(--peach);
}
.iv-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 70%;
  display: block;
}
.iv-badge {
  position: absolute;
  bottom: 44px;
  left: 24px;
  background: var(--peach);
  color: var(--charcoal);
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
}

/* ─── TESTIMONIAL ─── */
.testimonial {
  background: var(--cream);
  padding: 120px 64px;
  text-align: center;
  border-top: 1px solid rgba(249, 173, 136, 0.3);
}
.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
}
.testimonial-mark {
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 0.55;
  color: var(--peach);
  opacity: 0.5;
  display: block;
  margin-bottom: 28px;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.testimonial-attr {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
}
.tdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--charcoal);
  opacity: 0.15;
}
.tdot.active {
  opacity: 0.45;
  width: 22px;
  border-radius: 4px;
}

/* ─── CONTACT ─── */
.contact-section {
  padding: 128px 64px;
  background: var(--cream);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 96px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
}
.contact-info > p {
  font-size: 1rem;
  opacity: 0.6;
  line-height: 1.95;
  margin-bottom: 52px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cd-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cd-item .label {
  margin-bottom: 3px;
}
.cd-item span {
  font-size: 1rem;
  opacity: 0.75;
}

.contact-form-box {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 52px;
}
.cfb-head h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.cfb-head p {
  font-size: 1rem;
  opacity: 0.5;
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

.google-form-frame {
  width: 100%;
  min-height: 700px;
  border: none;
  display: block;
}

.google-form-wrapper {
  width: 100%;
  min-height: 1215px;
}

/* Placeholder shown until iframe is added */
.form-placeholder {
  width: 100%;
  min-height: 460px;
  border: 1.5px dashed var(--border);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 60px 40px;
  text-align: center;
}
.form-placeholder .label {
  font-size: 1rem;
  opacity: 0.4;
}
.form-placeholder p {
  font-size: 1rem;
  opacity: 0.4;
  line-height: 1.8;
  max-width: 340px;
}
.form-placeholder .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal);
  color: var(--bg);
  padding: 80px 64px 44px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
  gap: 40px;
}
.footer-logo img {
  height: 50px;
  width: auto;
}
.footer-tagline {
  font-size: 1rem;
  opacity: 0.35;
  margin-top: 14px;
  letter-spacing: 0.04em;
}
.footer-cols {
  display: flex;
  gap: 72px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col .label {
  color: var(--bg);
  margin-bottom: 6px;
}
.footer-col a {
  font-size: 1rem;
  opacity: 0.4;
  transition: opacity 0.2s;
  letter-spacing: 0.03em;
}
.footer-col a:hover {
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 1rem;
  opacity: 0.28;
  letter-spacing: 0.04em;
}
.footer-social {
  display: flex;
  gap: 24px;
}
.footer-social a {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.32;
  transition: opacity 0.2s;
}
.footer-social a:hover {
  opacity: 0.75;
}

/* ─── Keyframes ─── */
@keyframes heroLogoIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.25;
  }
  50% {
    transform: scaleY(0.55);
    opacity: 0.5;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-divider {
    display: none;
  }
  .events-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .events-typelist {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .etype-item {
    min-height: 120px;
  }
  .events-map-side {
    height: 56vw;
  }
  .hiw-grid {
    grid-template-columns: 1fr 1fr;
  }
  .included {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .included-visual {
    height: 360px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  nav {
    padding: 22px 28px;
  }
  nav.stuck {
    padding: 16px 28px;
  }
  .nav-logo {
    height: 46px;
  }
  .nav-brand {
    gap: 16px;
  }
  .nav-brand-divider {
    height: 30px;
  }
  .nav-brand-name {
    font-size: 1.05rem;
  }
  .nav-brand-sub {
    font-size: 1rem;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  body {
    margin-top: 90px;
  }
  .nav-right > .nav-cta {
    display: none;
  }
  .nav-mobile-cta {
    display: block;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .hero-content {
    display: contents;
  }
  .hero-text {
    order: 0;
    padding: 32px 28px 8px;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid var(--peach);
  }
  .hero-photo-side {
    order: 1;
    height: 88vw;
  }
  .hero-photo-side::before {
    display: none;
  }
  .hero-scroll {
    display: none;
  }
  .hero-cta {
    order: 2;
    padding: 32px 28px 48px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    text-align: center;
    width: 100%;
  }
  .hero-actions .btn-dark {
    background: var(--peach);
    color: var(--charcoal);
  }
  .hero-actions .btn-dark:hover {
    background: var(--charcoal);
    color: var(--bg);
  }
  .hero-title {
    font-size: clamp(1.9rem, 6vw, 3rem);
  }
  .hero-sub {
    margin-bottom: 0;
  }
  .hero-sub {
    display: none;
  }
  .hero-eyebrow {
    letter-spacing: 0.1em;
    opacity: 0.45;
  }
  .hero-text {
    text-align: left;
  }

  .intro {
    padding: 72px 28px;
  }
  .events-section {
    padding: 80px 28px;
  }
  .events-map-side {
    height: 72vw;
  }

  .hiw {
    padding: 80px 28px;
  }
  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .included {
    padding: 80px 28px;
    gap: 48px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .included-visual {
    height: 280px;
  }

  .testimonial {
    padding: 80px 28px;
  }

  .contact-section {
    padding: 80px 28px;
  }
  .contact-form-box {
    padding: 32px 24px;
  }
  .google-form-wrapper {
    min-height: 900px;
  }

  footer {
    padding: 60px 28px 36px;
  }
  .footer-top {
    flex-direction: column;
    padding-bottom: 44px;
  }
  .footer-cols {
    flex-direction: column;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
