/* style.css — tendtent v3: matched to tent mockup branding */

/* ============================================================
   DESIGN TOKENS — extracted from mockup
   ============================================================ */
:root {
  /* Core brand */
  --olive:        #B5BC72;   /* canopy top — lighter sage */
  --olive-mid:    #8A9248;   /* valance band — medium olive */
  --olive-dark:   #6B7235;   /* text on light bg, hover */
  --olive-pale:   #F0F2E0;   /* very light tint for sections */

  /* Accent panel colors */
  --blush:        #F5C8CC;   /* wavy pink pattern base */
  --blush-light:  #FAE8EA;   /* lighter blush for backgrounds */
  --lavender:     #E6E7F8;   /* right panel periwinkle */
  --lavender-mid: #D0D1F0;   /* slightly deeper lavender */

  /* Valance / structure */
  --valance:      #7A8940;   /* dark olive green valance */
  --white:        #FFFFFF;
  --off-white:    #FDFCFA;   /* panel white — very slightly warm */
  --cream:        #FAF8F3;

  /* Text */
  --ink:          #1C1E13;   /* near-black with slight green tint */
  --ink-mid:      #4A4E38;
  --ink-soft:     #7A7E65;
  --ink-faint:    #ABABAB;

  /* Borders */
  --border:       rgba(28,30,19,0.08);
  --border-olive: rgba(138,146,72,0.25);

  /* Type */
  --font: 'Satoshi', 'Helvetica Neue', sans-serif;

  /* Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1rem    + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.4rem,   1rem    + 3.8vw,  4.8rem);

  /* Space */
  --s1:  0.25rem;  --s2:  0.5rem;  --s3:  0.75rem; --s4:  1rem;
  --s5:  1.25rem;  --s6:  1.5rem;  --s8:  2rem;    --s10: 2.5rem;
  --s12: 3rem;     --s16: 4rem;    --s20: 5rem;    --s24: 6rem;

  /* Radius */
  --r-sm:   0.375rem;
  --r-md:   0.75rem;
  --r-lg:   1.25rem;
  --r-xl:   2rem;
  --r-full: 9999px;

  /* Shadow */
  --shadow-sm: 0 1px 4px rgba(28,30,19,0.06);
  --shadow-md: 0 4px 20px rgba(28,30,19,0.09);

  /* Layout */
  --max-w: 1080px;
  --max-narrow: 680px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  min-height: 100dvh;
}

img, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { text-wrap: balance; line-height: 1.1; font-family: var(--font); }
p, li { text-wrap: pretty; max-width: 68ch; }
button { cursor: pointer; background: none; border: none; }

a, button, [role='button'], input, textarea, select {
  transition: color 160ms var(--ease), background 160ms var(--ease),
              border-color 160ms var(--ease), box-shadow 160ms var(--ease),
              opacity 160ms var(--ease), transform 160ms var(--ease);
}
:focus-visible {
  outline: 2px solid var(--olive-mid);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ============================================================
   WAVY SVG PATTERN — the signature motif from the tent
   Used as a decorative inline SVG background
   ============================================================ */
.wave-bg {
  position: relative;
  overflow: hidden;
}
/* Inline wave SVG rendered via CSS pseudo + data URI */
.wave-accent {
  position: absolute;
  top: 0; right: 0; left: auto;
  width: min(380px, 38%);
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='380' height='600' viewBox='0 0 380 600'%3E%3Cg fill='none' stroke='%23F5C8CC' stroke-width='28' stroke-linecap='round'%3E%3Cpath d='M-20 60 Q80 0 180 60 Q280 120 380 60'/%3E%3Cpath d='M-20 130 Q80 70 180 130 Q280 190 380 130'/%3E%3Cpath d='M-20 200 Q80 140 180 200 Q280 260 380 200'/%3E%3Cpath d='M-20 270 Q80 210 180 270 Q280 330 380 270'/%3E%3Cpath d='M-20 340 Q80 280 180 340 Q280 400 380 340'/%3E%3Cpath d='M-20 410 Q80 350 180 410 Q280 470 380 410'/%3E%3Cpath d='M-20 480 Q80 420 180 480 Q280 540 380 480'/%3E%3Cpath d='M-20 550 Q80 490 180 550 Q280 610 380 550'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(var(--s5), 5vw, var(--s16));
  position: relative;
  z-index: 1;
}
.wrap--narrow {
  max-width: var(--max-narrow);
  margin-inline: auto;
  padding-inline: clamp(var(--s5), 5vw, var(--s16));
}
.section { padding-block: clamp(var(--s16), 8vw, var(--s24)); }

/* ============================================================
   TYPE UTILITIES
   ============================================================ */
.eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: var(--s4);
}
.section-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--s5);
  line-height: 1.05;
}
.section-body {
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.7;
}
.center { text-align: center; }
.center p { margin-inline: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.72rem 1.5rem;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--olive-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(138,146,72,0.4);
}
.btn-white {
  background: var(--white);
  color: var(--ink);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--valance);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 16px rgba(28,30,19,0.07); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--s8);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s5);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }

.nav-end { flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: var(--s2); background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.25s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: var(--s8) var(--s6);
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
}
.mobile-nav a:hover { color: var(--olive-dark); }
.mobile-nav .m-actions { margin-top: var(--s8); display: flex; flex-direction: column; gap: var(--s3); }

/* ============================================================
   HERO — white panel + olive canopy stripe at top
   ============================================================ */
.hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--s20), 10vw, var(--s24));
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Olive "canopy" top stripe — removed from hero, lives on header */

/* Wave pattern — right edge only, always clear of text */
.hero .wave-accent {
  top: 0;
  right: -60px;
  left: auto;
  width: min(360px, 30%);
  height: 100%;
  opacity: 0.38;
  z-index: 0;
}
@media (max-width: 900px) {
  /* Hide decorative waves on mobile/tablet — text fills viewport, no room for side pattern */
  .hero .wave-accent,
  .for-events .wave-accent,
  .for-families .wave-accent,
  .contact-section .wave-accent {
    display: none;
  }
}

/* Lavender blob bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 45%;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--lavender) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0.8;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: var(--s6);
}
.hero-h1 .accent { color: var(--olive-mid); }

.hero-sub {
  font-size: var(--text-lg);
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 50ch;
  margin-bottom: var(--s8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  align-items: center;
  margin-bottom: var(--s10);
}

.hero-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 1px;
}
.hero-link:hover { color: var(--ink); }

/* Feed tags — pill style matching tent panel cleanliness */
.feed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.feed-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  background: var(--olive-pale);
  color: var(--olive-dark);
  letter-spacing: 0.02em;
}
.hero-reassurance {
  font-size: var(--text-xs);
  color: var(--ink);
  opacity: 0.45;
  margin-top: var(--s4);
  font-style: italic;
}

/* ============================================================
   TENT MOCKUP SHOWCASE — show the actual product
   ============================================================ */
.tent-showcase {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(var(--s12), 6vw, var(--s20));
  position: relative;
  overflow: hidden;
}
.tent-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, var(--lavender) 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

.tent-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: center;
  position: relative;
  z-index: 1;
}

.tent-photo img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}

.tent-text { display: flex; flex-direction: column; gap: var(--s5); }

.tent-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-top: var(--s2);
}
.tent-detail-list li {
  display: flex;
  align-items: baseline;
  gap: var(--s3);
  font-size: var(--text-base);
  color: var(--ink-mid);
}
.tent-detail-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--olive-mid);
  margin-top: 0.4em;
}

/* ============================================================
   WHAT IS SECTION
   ============================================================ */
.what-is { background: var(--white); }

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: start;
}

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: var(--s3); margin-top: var(--s6); }
.bullet-list li {
  display: flex;
  align-items: baseline;
  gap: var(--s3);
  font-size: var(--text-base);
  color: var(--ink-mid);
}
.bullet-list li::before {
  content: '—';
  color: var(--olive-mid);
  font-weight: 700;
  flex-shrink: 0;
}

/* Stat boxes */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); }
.stat-box {
  padding: var(--s6);
  border-radius: var(--r-lg);
  background: var(--off-white);
  border: 1px solid var(--border);
}
/* All stat boxes use the same neutral background for a clean, uniform look */
.stat-box.olive,
.stat-box.blush,
.stat-box.lav { background: var(--off-white); border-color: var(--border); }

.stat-num {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--s2);
}
.stat-num .accent { color: var(--olive-mid); }
.stat-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat-desc { font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--s1); line-height: 1.45; }

/* ============================================================
   FOR EVENTS — olive/valance dark background
   ============================================================ */
.for-events {
  background: var(--valance);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Wave pattern overlay */
.for-events .wave-accent {
  opacity: 0.07;
  filter: brightness(0) invert(1);
  width: min(320px, 28%);
  right: 0;
  left: auto;
  z-index: 0;
}

.for-events .eyebrow { color: var(--olive); }
.for-events .section-title { color: var(--white); }
.for-events .section-body { color: rgba(255,255,255,0.65); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s12);
  position: relative;
  z-index: 1;
}

.event-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
}
.event-card:hover { background: rgba(255,255,255,0.13); }

.event-num {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--olive);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: var(--s5);
}
.event-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s3);
  letter-spacing: -0.01em;
}
.event-card p { font-size: var(--text-sm); color: rgba(255,255,255,0.6); line-height: 1.65; }

.specs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--s8);
  position: relative;
  z-index: 1;
}
.spec-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.spec-value { font-size: var(--text-lg); font-weight: 700; color: var(--white); letter-spacing: -0.01em; margin-top: var(--s1); }
.spec-note { font-size: var(--text-xs); color: rgba(255,255,255,0.45); margin-top: var(--s1); line-height: 1.5; }

/* ============================================================
   FOR FAMILIES — blush/wave background
   ============================================================ */
.for-families {
  background: var(--blush-light);
  position: relative;
  overflow: hidden;
}

.for-families .wave-accent {
  right: 0;
  left: auto;
  width: min(220px, 18%);
  opacity: 0.3;
  z-index: 0;
}

.families-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s12), 8vw, var(--s24));
  align-items: start;
  position: relative;
  z-index: 1;
}

.families-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--s4);
}
.families-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.families-col li {
  font-size: var(--text-base);
  color: var(--ink-mid);
  padding-left: var(--s4);
  position: relative;
}
.families-col li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--olive-mid);
  font-weight: 900;
  font-size: 1.2em;
  line-height: 1.4;
}

.families-note {
  margin-top: var(--s8);
  padding: var(--s5);
  background: var(--white);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--ink-mid);
  border-left: 3px solid var(--olive-mid);
}

/* ============================================================
   INSIDE THE TENT
   ============================================================ */
.features-section {
  background: var(--lavender);
  position: relative;
  overflow: hidden;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 40%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.5) 0%, transparent 65%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-top: var(--s12);
  position: relative;
  z-index: 1;
}

.feature-tile {
  padding: var(--s6);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.feature-tile:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-tile-icon { font-size: 1.5rem; margin-bottom: var(--s4); line-height: 1; }
.feature-tile h3 { font-size: var(--text-base); font-weight: 700; color: var(--ink); margin-bottom: var(--s2); letter-spacing: -0.01em; }
.feature-tile p { font-size: var(--text-sm); color: var(--ink-mid); line-height: 1.55; }

/* ============================================================
   PRICING — white panels, olive featured
   ============================================================ */
.pricing-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blush), var(--olive), var(--lavender-mid));
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s12);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s10) var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s6);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.price-card.featured {
  background: var(--valance);
  border-color: var(--valance);
}
.price-card.featured .price-name,
.price-card.featured .price-tag { color: var(--white); }
.price-card.featured .price-from { color: rgba(255,255,255,0.45); }
.price-card.featured .price-amount { color: var(--white); }
.price-card.featured .price-period { color: rgba(255,255,255,0.6); }
.price-card.featured .price-divider { background: rgba(255,255,255,0.15); }
.price-card.featured .price-feature { color: rgba(255,255,255,0.75); }
.price-card.featured .price-feature::before { color: var(--olive); }
.price-card.featured .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.price-card.featured .btn-outline:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.price-name { font-size: var(--text-lg); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.price-tag { font-size: var(--text-sm); color: var(--ink-soft); margin-top: var(--s1); }
.price-from { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-top: var(--s4); }
.price-amount { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1.1; }
.price-period { font-size: var(--text-sm); font-weight: 400; color: var(--ink-soft); }
.price-divider { height: 1px; background: var(--border); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.price-feature { font-size: var(--text-sm); color: var(--ink-mid); padding-left: var(--s5); position: relative; line-height: 1.55; }
.price-feature::before { content: '✓'; position: absolute; left: 0; color: var(--olive-mid); font-weight: 700; font-size: 0.75em; top: 0.2em; }

/* ============================================================
   SPONSORS — white, minimal
   ============================================================ */
.sponsors-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: center;
  margin-block: var(--s10);
}
.logo-slot {
  width: 140px; height: 52px;
  border-radius: var(--r-md);
  border: 1.5px dashed rgba(28,30,19,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.sponsor-perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s8);
}
.sponsor-perk {
  padding: var(--s5);
  border-radius: var(--r-lg);
  background: var(--off-white);
  border: 1px solid var(--border);
}
.sponsor-perk h4 { font-size: var(--text-sm); font-weight: 700; color: var(--ink); margin-bottom: var(--s2); }
.sponsor-perk p { font-size: var(--text-sm); color: var(--ink-mid); line-height: 1.55; }

.sponsor-bullets {
  list-style: none;
  margin: var(--s8) auto 0;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.sponsor-bullets li {
  font-size: var(--text-base);
  color: var(--ink);
  padding-left: var(--s6);
  position: relative;
  line-height: 1.6;
}
.sponsor-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive-mid);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--off-white); }
.faq-list { margin-top: var(--s12); display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-btn {
  width: 100%;
  text-align: left;
  padding: var(--s5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s6);
}
.faq-btn:hover { color: var(--olive-dark); }

.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ink-soft);
  transition: transform 0.25s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--olive-mid);
  border-color: var(--olive-mid);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  font-size: var(--text-base);
  color: var(--ink-mid);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: var(--s5); }

/* ============================================================
   CONTACT — valance olive
   ============================================================ */
.contact-section {
  background: var(--valance);
  position: relative;
  overflow: hidden;
}
.contact-section .wave-accent {
  opacity: 0.07;
  filter: brightness(0) invert(1);
  width: min(280px, 22%);
  right: 0;
  left: auto;
  z-index: 0;
}
.contact-section .eyebrow { color: var(--olive); }

.contact-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(var(--s8), 5vw, var(--s16));
  max-width: 740px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); margin-top: var(--s6); }
.form-full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: var(--s2); }
.form-field label { font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
.form-field input,
.form-field textarea {
  padding: 0.7rem var(--s4);
  border: 1.5px solid rgba(28,30,19,0.12);
  border-radius: var(--r-md);
  background: var(--off-white);
  font-size: var(--text-base);
  color: var(--ink);
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--olive-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(138,146,72,0.18);
}
.form-field textarea { resize: vertical; min-height: 110px; }

.check-group { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s2); }
.check-group label { display: flex; align-items: center; gap: var(--s2); font-size: var(--text-sm); color: var(--ink-mid); cursor: pointer; font-weight: 400; }

.form-cta { margin-top: var(--s6); display: flex; justify-content: center; }

.form-success { display: none; text-align: center; padding: var(--s12); }
.form-success.visible { display: block; }
.form-success h3 { font-size: var(--text-xl); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: var(--s3); }
.form-success p { color: var(--ink-mid); margin-inline: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding-block: clamp(var(--s10), 5vw, var(--s16));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: var(--s12);
  align-items: start;
}

.footer-logo-img {
  height: 24px;
  width: auto;
  margin-bottom: var(--s4);
}

.footer-tagline { font-size: var(--text-sm); color: rgba(255,255,255,0.45); line-height: 1.6; max-width: 28ch; }

.footer-socials { display: flex; gap: var(--s2); margin-top: var(--s5); }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--olive-mid);
  border-color: var(--olive-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.footer-col h5 { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: var(--s4); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s2); }
.footer-col a { font-size: var(--text-sm); color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  margin-top: var(--s10);
  padding-top: var(--s5);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s3);
}
.footer-bottom p, .footer-bottom a { font-size: var(--text-xs); color: rgba(255,255,255,0.25); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-end { display: none; }
  .hamburger { display: flex; }
  .what-grid, .families-grid, .tent-showcase-inner { grid-template-columns: 1fr; }
  .events-grid, .features-grid, .pricing-grid, .sponsor-perks-grid { grid-template-columns: 1fr 1fr; }
  .specs-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .wave-accent { display: none; }
}

@media (max-width: 560px) {
  .events-grid, .features-grid, .pricing-grid, .specs-row, .sponsor-perks-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-column: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   NEW PAGES — additional component styles
   ============================================================ */

/* ---- Nav active state ---- */
.nav-active {
  color: var(--ink) !important;
  font-weight: 700 !important;
}

/* ---- Inline link utility ---- */
.inline-link {
  color: var(--olive-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.inline-link:hover { color: var(--ink); }

/* ---- Page-level heroes (inner pages) ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(var(--s20), 10vw, var(--s24));
}
.page-hero--dark { background: var(--valance); }
.page-hero--blush { background: var(--blush-light); }
.page-hero--olive-pale { background: var(--olive-pale); }

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: var(--s6);
  color: var(--ink);
}
.page-hero--dark .page-h1 { color: var(--white); }

.page-hero-sub {
  font-size: var(--text-lg);
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: var(--s8);
  color: var(--ink-mid);
}
.page-hero--dark .page-hero-sub { color: rgba(255,255,255,0.65); }
.page-hero--dark .eyebrow { color: var(--olive); }

/* Wave on dark page heroes */
.page-hero--dark .wave-accent {
  width: min(300px, 26%);
  opacity: 0.08;
  filter: brightness(0) invert(1);
}

/* ---- Homepage hero overrides ---- */
.hero .wave-accent {
  width: min(320px, 26%);
  opacity: 0.28;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  align-items: center;
  margin-bottom: 0;
}

/* ---- 3-up cards (homepage what it is) ---- */
.what-three {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.three-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
}
.three-card-eyebrow {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: var(--s4);
}
.three-card p { font-size: var(--text-sm); color: var(--ink-mid); line-height: 1.65; }

/* ---- Founder strip (homepage) ---- */
.founder-strip {
  background: var(--valance);
  position: relative;
  overflow: hidden;
}
.founder-strip .wave-accent {
  width: min(280px, 24%);
  opacity: 0.07;
  filter: brightness(0) invert(1);
}
.founder-inner { position: relative; z-index: 1; }
.founder-headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s6);
  line-height: 1.05;
}
.founder-body {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: var(--s6);
}
.founder-strip .hero-link { color: var(--olive); display: inline-block; margin-bottom: var(--s4); }
.founder-strip .hero-link:hover { color: var(--white); }
.founder-sig {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-top: var(--s2);
}

/* ---- Equity band ---- */
.equity-band {
  background: var(--olive-pale);
  border-top: 1px solid var(--border-olive);
  border-bottom: 1px solid var(--border-olive);
}
.equity-inner { max-width: 760px; }
.equity-headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--s8);
  line-height: 1.05;
}
.equity-body { display: flex; flex-direction: column; gap: var(--s5); }
.equity-body p { font-size: var(--text-base); color: var(--ink-mid); line-height: 1.75; max-width: 68ch; }

/* ---- How it works ---- */
.how-it-works { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.step {
  padding: var(--s8) var(--s6);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--off-white);
}
.step-num {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--olive);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: var(--s5);
}
.step h3 { font-size: var(--text-base); font-weight: 700; color: var(--ink); margin-bottom: var(--s3); letter-spacing: -0.01em; }
.step p { font-size: var(--text-sm); color: var(--ink-mid); line-height: 1.65; }

/* ---- Social proof ---- */
.social-proof { background: var(--lavender); }
.proof-inner { max-width: 640px; margin-inline: auto; text-align: center; }
.proof-quote { font-size: var(--text-lg); font-style: italic; color: var(--ink); line-height: 1.7; margin-bottom: var(--s5); }
.proof-quote p { max-width: 100%; }
.proof-quote cite { display: block; font-size: var(--text-sm); font-style: normal; color: var(--ink-soft); margin-top: var(--s4); }
.proof-note { font-size: var(--text-xs); color: var(--ink-soft); opacity: 0.6; font-style: italic; margin-top: var(--s5); }

/* ---- Closing CTA ---- */
.closing-cta {
  background: var(--valance);
  position: relative;
  overflow: hidden;
}
.closing-cta .wave-accent { width: min(280px, 24%); opacity: 0.07; filter: brightness(0) invert(1); }
.closing-inner { position: relative; z-index: 1; max-width: 720px; }
.closing-headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s8);
  line-height: 1.05;
}
.closing-cta .hero-link { color: rgba(255,255,255,0.7); }
.closing-cta .hero-link:hover { color: var(--white); }

/* ---- Why cards (4-up grid) ---- */
.why-organizers, .why-sponsors { background: var(--white); }
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
}
.why-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--ink); margin-bottom: var(--s3); letter-spacing: -0.01em; line-height: 1.35; }
.why-card p { font-size: var(--text-sm); color: var(--ink-mid); line-height: 1.65; }

/* ---- Inclusion band ---- */
.inclusion-band {
  background: var(--valance);
  position: relative;
  overflow: hidden;
}
.inclusion-inner { position: relative; z-index: 1; max-width: 760px; }
.inclusion-headline {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s8);
  line-height: 1.05;
}
.inclusion-body { display: flex; flex-direction: column; gap: var(--s5); }
.inclusion-body p { font-size: var(--text-base); color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 68ch; }

/* ---- What's included / sponsorship unlocks ---- */
.whats-included, .sponsorship-unlocks { background: var(--off-white); }
.included-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(var(--s10), 6vw, var(--s20));
  align-items: start;
}
.included-list { list-style: none; display: flex; flex-direction: column; gap: var(--s4); }
.included-list li {
  font-size: var(--text-base);
  color: var(--ink-mid);
  padding-left: var(--s6);
  position: relative;
  line-height: 1.6;
}
.included-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--olive-mid);
}

/* ---- Add-ons block ---- */
.addons-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8);
  max-width: 680px;
  margin-inline: auto;
}
.addons-title { font-size: var(--text-base); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; margin-bottom: var(--s5); }
.addons-list { list-style: none; display: flex; flex-direction: column; gap: var(--s3); }
.addons-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s4);
  font-size: var(--text-sm);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}
.addons-list li:last-child { border-bottom: none; padding-bottom: 0; }
.addon-label { color: var(--ink-mid); }
.addon-price { color: var(--ink); font-weight: 700; white-space: nowrap; flex-shrink: 0; }

/* ---- Sponsor tiers ---- */
.sponsor-tiers { background: var(--off-white); }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s10);
}
.tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s8) var(--s6);
}
.tier-card--featured { background: var(--valance); border-color: var(--valance); }
.tier-name { font-size: var(--text-lg); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-bottom: var(--s3); }
.tier-card--featured .tier-name { color: var(--white); }
.tier-card p { font-size: var(--text-sm); color: var(--ink-mid); line-height: 1.6; }
.tier-card--featured p { color: rgba(255,255,255,0.65); }

/* ---- About: founder story ---- */
.founder-story { background: var(--white); position: relative; overflow: hidden; }
.founder-story .wave-accent { width: min(260px, 22%); opacity: 0.2; }
.story-inner { max-width: 720px; }
.story-headline { font-size: var(--text-2xl); font-weight: 800; letter-spacing: -0.03em; color: var(--ink); margin-bottom: var(--s8); line-height: 1.05; }
.story-body { display: flex; flex-direction: column; gap: var(--s5); margin-bottom: var(--s8); }
.story-body p { font-size: var(--text-base); color: var(--ink-mid); line-height: 1.8; max-width: 68ch; }
.story-sig { font-size: var(--text-base); font-style: italic; color: var(--ink-soft); margin-top: var(--s4); }

/* ---- About: where we're going ---- */
.where-going { background: var(--olive-pale); }
.going-inner { max-width: 720px; }
.going-body { display: flex; flex-direction: column; gap: var(--s5); margin-top: var(--s6); }
.going-body p { font-size: var(--text-base); color: var(--ink-mid); line-height: 1.8; max-width: 68ch; }

/* ---- About: what we believe ---- */
.what-we-believe { background: var(--white); }
.believe-inner { max-width: 720px; }
.believe-list { list-style: none; display: flex; flex-direction: column; gap: var(--s4); margin-top: var(--s8); }
.believe-list li { font-size: var(--text-base); color: var(--ink-mid); padding-left: var(--s6); position: relative; line-height: 1.6; }
.believe-list li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; border-radius: 50%; background: var(--olive-mid); }

/* ---- Contact: direct contact ---- */
.contact-direct { margin-top: var(--s8); padding-top: var(--s6); border-top: 1px solid var(--border); text-align: center; display: flex; flex-direction: column; gap: var(--s1); }
.contact-direct p { font-size: var(--text-sm); color: var(--ink-soft); }

/* ---- Contact form: select field ---- */
.form-field select {
  padding: 0.7rem var(--s4);
  border: 1.5px solid rgba(28,30,19,0.12);
  border-radius: var(--r-md);
  background: var(--off-white);
  font-size: var(--text-base);
  color: var(--ink);
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: auto;
}
.form-field select:focus {
  border-color: var(--olive-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(138,146,72,0.18);
}

/* ---- Wave: global hide ≤900px (override all section-specific rules) ---- */
@media (max-width: 900px) {
  .wave-accent { display: none !important; }
  .four-grid { grid-template-columns: 1fr 1fr; }
  .three-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr 1fr; }
  .included-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .three-grid, .steps-grid, .four-grid, .tiers-grid { grid-template-columns: 1fr; }
  .page-hero { padding-block: var(--s16); }
  .addons-list li { flex-direction: column; gap: var(--s1); }
}

/* ---- What-three section heading ---- */
.what-three-heading {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s8);
}

/* ---- Gap banner ---- */
.gap-banner {
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem clamp(var(--s5), 5vw, var(--s16));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s4);
  text-align: center;
  position: relative;
  z-index: 99;
}

.gap-banner-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.gap-banner-text strong {
  color: var(--olive);
  font-weight: 700;
}

.gap-banner-link {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
  padding-bottom: 1px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.gap-banner-link:hover {
  color: var(--olive);
  border-color: var(--olive);
}

@media (max-width: 560px) {
  .gap-banner { flex-direction: column; gap: var(--s2); }
}

/* ---- Logo transparency treatment ----
   Both logos are JPEGs with solid backgrounds.
   mix-blend-mode removes the background visually:
   - Dark logo on white nav → multiply removes white bg
   - White logo on dark footer → screen removes dark bg
*/
.nav-logo img {
  mix-blend-mode: multiply;
}

.footer-logo-img {
  mix-blend-mode: screen;
}

/* ---- Logo fix: override blend-mode with filter approach ----
   The white logo JPG has a dark background that doesn't screen cleanly.
   Use brightness filter to make it appear as clean white text on dark bg.
   Nav logo: multiply removes white bg on white nav.
   Footer logo: invert dark bg, then apply brightness for clean white text.
*/
.nav-logo img {
  mix-blend-mode: multiply !important;
}

.footer-logo-img {
  mix-blend-mode: normal !important;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ---- Nav logo: bigger ---- */
.nav-logo img {
  height: 48px !important;
  width: auto;
}

/* ---- Gap banner: lighter background ---- */
.gap-banner {
  background: var(--valance) !important;
}
.gap-banner-text {
  color: rgba(255,255,255,0.85) !important;
}
.gap-banner-text strong {
  color: var(--white) !important;
}
.gap-banner-link {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* ---- Footer logo: SVG wordmark (replaces broken JPEG) ---- */
.footer-logo-svg {
  height: 30px;
  width: auto;
  margin-bottom: var(--s4);
  display: block;
}

/* ---- Tent mockup section ---- */
.mockup-section {
  width: 100%;
  background: var(--off-white);
  overflow: hidden;
  line-height: 0;
}

.mockup-img-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--s10) var(--s6);
}

.mockup-full-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(28, 30, 19, 0.12);
}

@media (max-width: 600px) {
  .mockup-img-wrap {
    padding: var(--s6) var(--s4);
  }
  .mockup-full-img {
    border-radius: 10px;
  }
}
