/* ============================================================
   PAWHAUS RESORT — LANDING PAGE STYLES
   Brand: Dark green (#16281E) · Brass/gold (#D4AF37) · Warm neutral (#F5F2EC)
   Fonts: Playfair Display (headings) · Montserrat (body)
   ============================================================ */

/* ------------------- CSS VARIABLES ------------------- */
:root {
  --green-deep: #16281E;
  --green-mid: #1E3828;
  --green-light: #2A4A35;
  --brass: #D4AF37;
  --brass-light: #E8C84A;
  --brass-dark: #B8960F;
  --cream: #F5F2EC;
  --cream-dark: #EDE9E0;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #8A8A8A;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-mid: 0 8px 40px rgba(0,0,0,0.14);
  --shadow-deep: 0 16px 64px rgba(0,0,0,0.22);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.28s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------- TYPOGRAPHY ------------------- */
.section-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}

.section-eyebrow.light { color: var(--brass-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.18;
  color: var(--green-deep);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 40px;
}

/* ------------------- BUTTONS ------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brass);
  color: var(--green-deep);
  border-color: var(--brass);
}

.btn-primary:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}

.btn-ghost-dark:hover {
  background: var(--green-deep);
  color: var(--white);
}

.btn-large { padding: 18px 40px; font-size: 14px; }
.btn-full { width: 100%; }

/* ------------------- STICKY NAV ------------------- */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(22, 40, 30, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 14px 24px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.sticky-nav.visible { transform: translateY(0); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-cta {
  background: var(--brass);
  color: var(--green-deep);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.nav-cta:hover { background: var(--brass-light); }

/* ------------------- HERO ------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(16,28,22,0.88) 0%,
    rgba(16,28,22,0.72) 45%,
    rgba(16,28,22,0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
  max-width: 680px;
  margin-left: max(24px, calc(50vw - 580px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.18);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--brass-light);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-sub strong { color: var(--white); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 520px;
}

/* ------------------- VALUE STRIP ------------------- */
.value-strip {
  background: var(--green-deep);
  padding: 28px 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.strip-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 20px;
}

.strip-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}

.strip-item i { color: var(--brass); font-size: 11px; }

/* ------------------- OFFER SECTION ------------------- */
.offer-section {
  background: var(--cream);
  padding: 100px 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.offer-text p {
  font-size: 15.5px;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.offer-text p strong { color: var(--text-dark); }

.offer-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-dark);
}

.offer-list li i {
  color: var(--brass);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 12px;
}

.offer-fine {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 16px;
}

.offer-image {
  position: relative;
}

.offer-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.offer-badge-float {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-mid);
  border-left: 4px solid var(--brass);
  text-align: center;
}

.float-price {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
}

.float-was {
  font-size: 12px;
  color: var(--brass);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 4px 0;
}

.float-label {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
}

/* ------------------- WHY PAWHAUS ------------------- */
.why-section {
  background: var(--green-deep);
  padding: 100px 0;
}

.why-section .section-title { color: var(--white); }

.why-section .section-sub { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.why-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-card:hover .why-img-wrap img { transform: scale(1.04); }

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  padding: 20px 20px 8px;
}

.why-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  padding: 0 20px 24px;
  line-height: 1.65;
}

/* ------------------- GALLERY ------------------- */
.gallery-section {
  background: var(--cream-dark);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
  margin-bottom: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 8 / 10; grid-row: 2 / 3; }
.gallery-item:nth-child(4) { grid-column: 10 / 12; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 12 / 13; grid-row: 2 / 3; }

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(16,28,22,0.85), transparent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 24px 14px 12px;
}

.gallery-disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  padding-top: 16px;
}

.gallery-disclaimer i { margin-right: 6px; }

/* ------------------- SCARCITY / VIP SECTION ------------------- */
.scarcity-section {
  background: var(--green-mid);
  padding: 100px 0;
}

.scarcity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.scarcity-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Passes counter */
.passes-counter {
  margin-bottom: 40px;
}

.counter-track {
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.counter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brass-dark), var(--brass));
  border-radius: 3px;
  transition: width 1.2s ease;
}

.counter-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.counter-text span { color: var(--brass); font-weight: 700; }

/* VIP value box */
.vip-value-box {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 36px;
}

.vip-val-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.vip-val-row:last-child { border-bottom: none; }

.val-strike {
  text-decoration: line-through;
  color: rgba(255,255,255,0.35);
}

.val-green { color: #6FCF97; font-weight: 700; }
.val-gold { color: var(--brass); font-weight: 700; font-size: 16px; }

.vip-val-total {
  margin-top: 4px;
  padding-top: 12px;
  font-weight: 700;
  color: var(--white);
  font-size: 15px;
}

/* VIP perks */
.vip-perks { margin-bottom: 40px; }

.perks-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}

.vip-perks ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vip-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.vip-perks li i {
  color: var(--brass);
  font-size: 11px;
  flex-shrink: 0;
}

/* Form card */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}

.form-card-header {
  background: var(--green-deep);
  padding: 28px 32px;
  text-align: center;
  border-bottom: 3px solid var(--brass);
}

.form-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}

.form-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-top: 6px;
}

.form-card-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.ghl-form-wrap {
  padding: 8px 16px;
  background: var(--cream);
}

.form-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  border-top: 1px solid var(--cream-dark);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-mid);
}

.trust-item i {
  color: var(--brass);
  width: 14px;
}

.form-fine {
  padding: 12px 24px 20px;
  font-size: 10.5px;
  color: var(--text-light);
  line-height: 1.6;
  text-align: center;
}

/* ------------------- LOCATION ------------------- */
.location-section {
  background: var(--cream);
  padding: 100px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-text p {
  font-size: 15.5px;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dark);
}

.location-list li i {
  color: var(--brass);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.location-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-mid);
  aspect-ratio: 4/3;
  object-fit: cover;
}



/* ------------------- FAQ ------------------- */
.faq-section {
  background: var(--white);
  padding: 100px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover { color: var(--green-deep); }

.faq-icon {
  color: var(--brass);
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
}

.faq-answer p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ------------------- FINAL CTA ------------------- */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.final-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16,28,22,0.82) 0%,
    rgba(16,28,22,0.75) 100%
  );
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.final-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 40px;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.final-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

/* ------------------- OFFER COMP LINE ------------------- */
.offer-comp {
  font-size: 13.5px;
  color: var(--text-light);
  background: var(--cream-dark);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin: -4px 0 20px !important;
  line-height: 1.7;
}
.offer-comp strong { color: var(--text-dark); }

/* ------------------- FOUNDER SECTION ------------------- */
.founder-section {
  background: var(--cream-dark);
  padding: 100px 0;
}

.founder-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  align-items: center;
}

.founder-photo {
  flex-shrink: 0;
}

.founder-photo img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-mid);
  border: 3px solid var(--white);
  outline: 1px solid var(--cream-dark);
}

.founder-text p {
  font-size: 15.5px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.75;
}

.founder-text p strong { color: var(--text-dark); }

.founder-press {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.press-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.press-item i {
  color: var(--brass);
  font-size: 11px;
}

.founder-entity {
  display: inline-block;
  font-size: 12px !important;
  color: var(--text-light) !important;
  border-top: 1px solid #D8D4CC;
  padding-top: 16px;
  margin-top: 4px !important;
  width: 100%;
}

.founder-entity strong { color: var(--text-mid) !important; }

/* ------------------- SCARCITY COUNTER (updated) ------------------- */
.counter-scarcity {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.counter-scarcity strong { color: var(--brass); }
.counter-scarcity i { color: var(--brass); margin-right: 6px; }

.counter-timeline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}

.counter-timeline i { color: var(--brass); font-size: 12px; }

/* ------------------- SOFT WAITLIST SECTION ------------------- */
.soft-waitlist-section {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--cream-dark);
}

.soft-waitlist-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.soft-waitlist-sub {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.soft-waitlist-form {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

/* ------------------- FOOTER ------------------- */
.site-footer {
  background: var(--green-deep);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(212,175,55,0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-location i { color: var(--brass); font-size: 11px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--brass); }

.footer-legal p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.footer-disc {
  font-size: 11px !important;
  line-height: 1.7 !important;
}

/* ------------------- RESPONSIVE ------------------- */
@media (max-width: 1024px) {
  .offer-grid,
  .scarcity-inner,
  .location-grid,
  .waitlist-inner,
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-photo {
    display: flex;
    justify-content: center;
  }

  .founder-photo img {
    width: 180px;
    height: 220px;
  }

  .offer-badge-float {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .offer-image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: auto; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: auto; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; }
  .gallery-item { height: 220px; }

  .faq-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 120px 24px 72px;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn { width: 100%; justify-content: center; }

  .strip-items { gap: 12px; }
  .strip-item { font-size: 12px; }

  .offer-section,
  .why-section,
  .gallery-section,
  .scarcity-section,
  .location-section,
  .waitlist-section,
  .faq-section { padding: 72px 0; }

  .why-grid { grid-template-columns: 1fr; }

  .nav-logo { font-size: 18px; }
  .nav-cta { font-size: 10.5px; padding: 8px 14px; letter-spacing: 0.5px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--large { grid-column: 1; }
  .gallery-item:nth-child(n) { grid-column: 1; height: 220px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .offer-badge-float {
    position: static;
    transform: none;
    margin-top: 16px;
  }

  .final-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .final-cta-btns .btn { width: 100%; max-width: 360px; }
}
