/* ============================================================
   PEACEFUL WARRIOR RETREAT — styles.css
   ============================================================ */

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

:root {
  --cream:        #F5F0E8;
  --warm-brown:   #5C3D2E;
  --accent:       #C4834A;
  --forest:       #2D4A35;
  --forest-light: #4A7056;
  --forest-pale:  #E8F0EA;
  --dark:         #1C1410;
  --text:         #3A2A20;
  --muted:        #7A6558;
  --white:        #FDFAF5;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-serif-alt: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --radius-lg:    1.5rem;
  --radius-pill:  99rem;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ---- EYEBROW ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow--green { color: var(--forest-light); }
.eyebrow--gold  { color: var(--accent); }

/* ---- SECTION TITLES ---- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 2rem;
}
.section-title em { color: var(--accent); font-style: italic; }
.section-title--dark { color: var(--dark); }
.section-title--dark em { color: var(--forest); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn--light {
  background: var(--white);
  color: var(--dark);
}
.btn--light:hover { background: var(--cream); }
.btn--light-lg {
  background: var(--white);
  color: var(--dark);
  font-size: 1.05rem;
  padding: 1.1rem 2.8rem;
}
.btn--light-lg:hover { background: var(--cream); }
.btn--forest {
  background: var(--forest);
  color: var(--white);
}
.btn--forest:hover { background: var(--forest-light); }

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(28, 20, 16, 0.95);
  padding: 1rem 3rem;
  backdrop-filter: blur(12px);
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  background: var(--forest);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--forest-light); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,20,16,0.55) 0%, rgba(28,20,16,0.3) 50%, rgba(28,20,16,0.75) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 2rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 4.5vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero__title em { color: var(--accent); font-style: italic; }
.hero__dates {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero__spots {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.hero__spots strong { color: var(--accent); }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============================================================
   HOOK
   ============================================================ */
.hook {
  background: var(--dark);
  padding: 6rem 3rem;
}
.hook__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.hook__line {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.3;
  color: var(--white);
}
.hook__line--right {
  text-align: right;
  color: var(--accent);
  font-style: italic;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 48% 52%;
}
.about__image {
  background-size: cover;
  background-position: center 20%;
  min-height: 500px;
}
.about__content {
  background: var(--cream);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.about__content p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}
.about__pillars {
  display: flex;
  gap: 1rem;
  margin: 0.75rem 0;
}
.about__pillars span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--forest);
  font-style: italic;
  font-weight: 500;
  background: rgba(45,74,53,0.1);
  padding: 0.35rem 1rem;
  border-radius: 99rem;
  border: 1px solid rgba(45,74,53,0.25);
}
.about__content .section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.about__content .section-title em {
  font-family: var(--font-serif-alt);
  font-size: 1.08em;
}
.about__content p { font-size: 1rem; }
.about__cta-note {
  color: var(--muted) !important;
  font-style: italic;
}
.about__content .btn {
  align-self: flex-start;
}

/* ============================================================
   WHO IS IT FOR
   ============================================================ */
.who {
  background: var(--dark);
  padding: 7rem 3rem;
}
.who__inner { max-width: 1000px; margin: 0 auto; }
.who__header { margin-bottom: 3.5rem; }
.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.who__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,131,74,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: background 0.2s;
}
.who__card:hover { background: rgba(255,255,255,0.08); }
.who__card-icon { color: var(--accent); font-size: 0.6rem; margin-top: 0.5rem; flex-shrink: 0; }
.who__card p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.6; }
.who__closing {
  text-align: center;
  font-family: var(--font-serif-alt);
  font-size: 1.5rem;
  color: var(--white);
  font-style: italic;
}
.who__closing strong { color: var(--accent); font-style: normal; }

/* ============================================================
   GAINS
   ============================================================ */
.gains {
  background: var(--cream);
  padding: 7rem 3rem;
  text-align: center;
}
.gains__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 3rem;
}
.gains__item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: left;
  border: 1px solid rgba(45,74,53,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gains__item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,74,53,0.1); }
.gains__number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 1rem;
  line-height: 1;
}
.gains__item h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.gains__item p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   SCHEDULE
   ============================================================ */
.lining-num { font-family: var(--font-sans); font-weight: 400; }
.schedule {
  background: var(--forest);
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.schedule__inner { max-width: 540px; }
.schedule__list { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.schedule__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.schedule__item:last-child { border-bottom: none; }
.schedule__day {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.2rem;
}
.schedule__content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.schedule__content p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.schedule__image { border-radius: var(--radius-lg); overflow: hidden; }
.schedule__image img { width: 100%; height: 600px; object-fit: cover; }

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--cream);
  padding: 7rem 3rem;
}
.location__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.location__desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
}
.location__desc em { color: var(--forest); }
.location__tagline {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--forest);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.location__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery__item { overflow: hidden; border-radius: 0.75rem; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.05); }

/* ============================================================
   TEAM
   ============================================================ */
.team {
  background: var(--dark);
  padding: 7rem 3rem;
}
.team__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.team__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.team__member {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.team__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
}
.team__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team__member:nth-child(2) .team__photo img { object-position: center; }
.team__info h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 0.4rem;
}
.team__role {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.team__link {
  display: inline-block;
  color: var(--forest-light);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.team__info p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.8; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: var(--forest);
  padding: 7rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pricing__table {
  margin: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pricing__row--highlight {
  background: rgba(196,131,74,0.22);
  margin: 0 -1rem;
  padding: 1.2rem 1rem;
  border-radius: 0.5rem;
  border-bottom: none;
}
.pricing__label { color: rgba(255,255,255,0.75); font-size: 1rem; }
.pricing__value { color: var(--white); font-size: 1.15rem; font-weight: 500; }
.pricing__value--big {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--accent);
}
.pricing__note { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-top: -0.6rem; margin-bottom: 1.2rem; }
.pricing__row:first-child { border-bottom: none; }
.pricing__includes { margin: 2rem 0; }
.pricing__includes-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.pricing__includes ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing__includes li {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding-left: 1.2rem;
  position: relative;
}
.pricing__includes li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); }
.pricing__cta { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: stretch; gap: 0; width: fit-content; min-width: 340px; }
.pricing__cta .btn--light-lg { text-align: center; justify-content: center; width: 100%; }
.pricing__spots { color: rgba(255,255,255,0.6); font-size: 1.05rem; min-width: fit-content; align-self: stretch; margin-top: 0.8rem; }
.pricing__spots strong { color: var(--accent); }
.pricing__ready {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  align-self: stretch;
  margin-bottom: 1.5rem;
}
.pricing__cta .btn--light-lg { margin-bottom: 1.5rem; }
.pricing__image { border-radius: var(--radius-lg); overflow: hidden; height: 580px; }
.pricing__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--cream);
  padding: 7rem 3rem;
}
.faq__inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid rgba(45,74,53,0.12);
}
.faq__item:first-child {
  border-top: 1px solid rgba(45,74,53,0.12);
}
.faq__question {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.4;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq__item[open] .faq__question::after {
  content: '−';
}
.faq__answer {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 2.5rem 1.5rem 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
}
.final-cta__overlay {
  position: absolute; inset: 0;
  background: rgba(28,20,16,0.75);
}
.final-cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
}
.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
}
.final-cta__title em { color: var(--accent); font-style: italic; }
.final-cta__content > p { color: rgba(255,255,255,0.65); font-size: 1rem; letter-spacing: 0.05em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
}
.footer__links { display: flex; gap: 2rem; }
.footer__links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__copy { color: rgba(255,255,255,0.25); font-size: 0.8rem; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox__img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem;
  overflow: hidden;
}
.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
  transition: opacity 0.2s;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  padding: 0.5rem;
}
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.2s;
}
.lightbox__arrow:hover { background: rgba(255,255,255,0.2); }
.lightbox__arrow--left { left: 0.8rem; }
.lightbox__arrow--right { right: 0.8rem; }
.lightbox__counter {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav__logo { font-size: 0.95rem; }
  .nav__hamburger { display: flex; }
  .nav__right {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(28,20,16,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }
  .nav__right .nav__links {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .nav__right .nav__links a { font-size: 1.4rem; color: var(--white); }
  .nav__right .nav__cta { font-size: 1rem; padding: 0.9rem 2.5rem; }
  .nav__right.open { transform: translateX(0); }

  .hero__title { font-size: 2.8rem; }

  .hook { padding: 4rem 1.5rem; }
  .hook__line { font-size: 1.4rem; }

  .about { grid-template-columns: 1fr; }
  .about__image { height: 320px; min-height: 0; background-size: cover; background-position: center 30%; }
  .about__content { padding: 3rem 1.5rem; gap: 2rem; }
  .about__content .section-title { margin-bottom: 0; }
  .about__content .section-title { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .about__content .section-title em { font-size: 1em; }
  .about__content p { font-size: 0.95rem; }
  .about__pillars { display: none; }

  .who { padding: 5rem 1.5rem; }
  .who__grid { grid-template-columns: 1fr; }

  .gains { padding: 5rem 1.5rem; }
  .gains__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .schedule { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
  .schedule__image { display: none; }

  .location { padding: 5rem 1.5rem; }
  .location__gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--tall { grid-row: span 1; }

  .team { padding: 5rem 1.5rem; }
  .team__grid { grid-template-columns: 1fr; gap: 4rem; }

  .faq { padding: 5rem 1.5rem; }
  .faq__question { font-size: 1.05rem; }

  .pricing { grid-template-columns: 1fr; padding: 5rem 1.5rem; gap: 3rem; }
  .pricing__image { display: none; }
  .pricing__cta { align-items: stretch; }
  .pricing__cta .btn--light-lg { text-align: center; justify-content: center; }

  .footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
  .footer__links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .gains__grid { grid-template-columns: 1fr; }
  .location__gallery { grid-template-columns: 1fr 1fr; }
}
