/* HERO: dark left panel + full photo right, no fading the image */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: calc(100vh - 0px);
  margin-top: 64px;
  background: var(--dark);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 3.5rem;
  background: var(--dark);
  position: relative; overflow: hidden;
}
/* Subtle scattered dot texture on dark panel */
.hero-left::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(232,137,106,0.12) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-left > * { position: relative; z-index: 1; }

.hero-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem;
}
.hero-kicker::before {
  content: '';
  display: block; width: 28px; height: 2px;
  background: var(--coral); flex-shrink: 0;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 700; line-height: 1.05;
  color: var(--white); margin-bottom: 1.6rem;
  letter-spacing: -0.03em;
}
.hero-title em { font-style: italic; color: var(--coral); }
.hero-title .script-word {
  font-family: var(--ff-script);
  font-size: 1.1em; font-weight: 600;
  color: var(--blush);
}

.hero-sub {
  font-size: 1.06rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn-coral {
  background: var(--coral); color: var(--white);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: transform 0.2s, opacity 0.2s; display: inline-block;
}
.btn-coral:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-ghost-light {
  color: rgba(255,255,255,0.8);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.25);
  transition: all 0.2s; display: inline-block;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-primary {
  background: var(--plum); color: var(--white);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--mauve); transform: translateY(-2px); }
.btn-ghost {
  color: var(--plum); border: 2px solid var(--plum);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s; display: inline-block;
}
.btn-ghost:hover { background: var(--plum); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--coral);
  padding: 0.9rem 2.2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
.btn-outline-white {
  color: var(--white); border: 2px solid rgba(255,255,255,0.55);
  padding: 0.9rem 2.1rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s; display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* Hero credentials row */
.hero-creds {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-cred {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.8rem; border-radius: 50px;
}

/* Hero right: photo fills full column, no overlay, no fade */
.hero-right {
  position: relative; overflow: hidden;
  background: #E8C5CF;  /* matches the pink backdrop */
}
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* MEDIA BAR */
.media-bar {
  background: var(--plum);
  padding: 1.8rem 2.5rem;
  position: relative; overflow: hidden;
}
.media-bar::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.media-bar .inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.media-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(242,217,223,0.7);
  white-space: nowrap; padding-right: 1.5rem;
  border-right: 1px solid rgba(242,217,223,0.2);
}
.media-items { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.media-item {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.03em;
  color: rgba(242,217,223,0.65);
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(242,217,223,0.15); border-radius: 50px;
  transition: all 0.2s;
}
.media-item:hover { color: var(--white); border-color: rgba(242,217,223,0.5); }

/* SECTION SKELETON */
section { padding: 5.5rem 2.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.s-label {
  font-family: var(--ff-script);
  font-size: 1.4rem; color: var(--coral);
  display: block; margin-bottom: 0.4rem;
}
.s-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 700; color: var(--plum);
  line-height: 1.17; letter-spacing: -0.022em;
}
.s-sub {
  color: var(--muted); font-size: 1.06rem;
  max-width: 580px; margin-top: 0.9rem; line-height: 1.72;
}

/* dot / line texture helpers */
.dot-texture {
  position: relative; overflow: hidden;
}
.dot-texture::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, #5C2D5E 1px, transparent 1px);
  background-size: 26px 26px; opacity: 0.04; z-index: 0;
}
.dot-texture > * { position: relative; z-index: 1; }

/* ABOUT / TL INTRO */
.tl-section {
  background: var(--dark);
  padding: 5.5rem 2.5rem;
  position: relative; overflow: hidden;
}
.tl-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(232,137,106,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
}
.tl-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 5rem; align-items: center;
}
.tl-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 1.3rem;
  letter-spacing: -0.025em;
}
.tl-text h2 em { color: var(--coral); font-style: italic; }
.tl-text p { color: rgba(255,255,255,0.65); font-size: 1.04rem; line-height: 1.75; margin-bottom: 1rem; }
.tl-creds { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.8rem 0 2rem; }
.cred-tag {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--blush);
  background: rgba(242,217,223,0.1); border: 1px solid rgba(242,217,223,0.18);
  padding: 0.3rem 0.82rem; border-radius: 50px;
}
.tl-photo-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.tl-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 10%; }
.tl-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); overflow: hidden;
  margin-bottom: 2.5rem;
}
.tl-stat {
  background: rgba(255,255,255,0.04);
  padding: 1.4rem 1.2rem;
  transition: background 0.2s;
}
.tl-stat:hover { background: rgba(255,255,255,0.08); }
.tl-stat-num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700; color: var(--coral); line-height: 1; margin-bottom: 0.2rem; }
.tl-stat-label { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* STAY SECTION */
.stay-section {
  background: linear-gradient(145deg, var(--blush) 0%, #f9e8ef 45%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.stay-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, #5C2D5E 1.5px, transparent 1.5px);
  background-size: 30px 30px; opacity: 0.035;
}
.stay-section .container { position: relative; z-index: 1; }
.stay-header { margin-bottom: 3rem; }

/* 4-card equal grid */
.stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.stay-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem 1.8rem;
  box-shadow: 0 3px 18px rgba(92,45,94,0.09);
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.stay-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px; background: var(--coral);
  border-radius: 0 0 3px 3px;
}
.stay-card:nth-child(2)::after { background: var(--rose); }
.stay-card:nth-child(3)::after { background: var(--teal); }
.stay-card:nth-child(4)::after { background: var(--plum); }
.stay-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(92,45,94,0.16); }
.stay-bg-letter {
  position: absolute; bottom: -0.5rem; right: 0.5rem;
  font-family: var(--ff-display); font-size: 8rem;
  font-weight: 700; line-height: 1;
  color: var(--plum); opacity: 0.04;
  user-select: none; pointer-events: none;
}
.stay-letter {
  font-family: var(--ff-display);
  font-size: 3.4rem; font-weight: 700;
  color: var(--coral); line-height: 1; margin-bottom: 0.4rem;
}
.stay-card:nth-child(2) .stay-letter { color: var(--rose); }
.stay-card:nth-child(3) .stay-letter { color: var(--teal); }
.stay-card:nth-child(4) .stay-letter { color: var(--plum); }
.stay-word {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.9rem;
}
.stay-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.stay-cta { text-align: center; margin-top: 3rem; }

/* WORK TRIO */
.work-section { background: var(--cream); position: relative; }
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.work-card {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 4px 22px rgba(92,45,94,0.09);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--white);
  display: flex; flex-direction: column;
}
.work-card:hover { transform: translateY(-7px); box-shadow: 0 16px 48px rgba(92,45,94,0.16); }
.work-photo {
  height: 360px; overflow: hidden;
  position: relative; background: var(--blush);
  flex-shrink: 0;
}
.work-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.work-card:hover .work-photo img { transform: scale(1.04); }
.work-photo-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--plum); color: var(--white);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 0.28rem 0.75rem; border-radius: 50px;
}
.work-body {
  padding: 1.5rem 1.7rem 2rem;
  flex: 1; display: flex; flex-direction: column;
}
.work-name {
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.6rem; line-height: 1.2;
}
.work-desc {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.68; flex: 1; margin-bottom: 1.3rem;
}
.work-link {
  font-size: 0.86rem; font-weight: 700;
  color: var(--coral);
  display: flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s;
}
.work-card:hover .work-link { gap: 0.8rem; }

/* PODCASTS: 3-equal-column grid, consistent height */
.podcast-section {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.podcast-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.podcast-section .container { position: relative; z-index: 1; }
.podcast-section .s-title { color: var(--white); }
.podcast-section .s-label { color: var(--coral); }
.podcast-section .s-sub { color: rgba(255,255,255,0.6); }

.pod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
  align-items: stretch;
}
.pod-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s, background 0.25s;
  display: flex; flex-direction: column;
}
.pod-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.09); }
.pod-img {
  height: 240px; overflow: hidden; position: relative;
  background: rgba(242,217,223,0.15);
  flex-shrink: 0;
}
.pod-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 8%;
}
.pod-img-contain {
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem; flex-shrink: 0;
}
.pod-img-contain img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; border-radius: 10px;
}
.pod-img-placeholder {
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  flex-shrink: 0;
}
.pod-body {
  padding: 1.5rem 1.5rem 1.8rem;
  flex: 1; display: flex; flex-direction: column;
}
.pod-badge {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal); background: rgba(74,155,155,0.15);
  padding: 0.22rem 0.7rem; border-radius: 50px; margin-bottom: 0.8rem;
}
.pod-name {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.4rem; line-height: 1.25;
}
.pod-tagline {
  font-family: var(--ff-display);
  font-style: italic; font-size: 0.88rem;
  color: var(--rose); margin-bottom: 0.7rem; line-height: 1.4;
}
.pod-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  line-height: 1.65; flex: 1; margin-bottom: 1.2rem;
}
.pod-link {
  font-size: 0.86rem; font-weight: 700; color: var(--coral);
  display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s;
}
.pod-card:hover .pod-link { gap: 0.7rem; }

/* COMMUNITY */
.community {
  background: linear-gradient(150deg, var(--plum) 0%, #350D38 100%);
  position: relative; overflow: hidden;
}
.community::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.community .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.community .s-title { color: var(--white); }
.community .s-label { color: var(--coral); }
.community .s-sub { color: rgba(255,255,255,0.65); max-width: 100%; }
.social-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.social-pill {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--blush);
  background: rgba(242,217,223,0.1); border: 1px solid rgba(242,217,223,0.18);
  padding: 0.3rem 0.85rem; border-radius: 50px; transition: all 0.2s;
}
.social-pill:hover { background: rgba(242,217,223,0.2); color: var(--white); }
.comm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.comm-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 1.4rem;
  transition: background 0.2s;
}
.comm-card:hover { background: rgba(255,255,255,0.12); }
.comm-name { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.comm-desc { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* TESTIMONIALS */
.testimonials {
  background: var(--blush);
  position: relative; overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(92,45,94,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.testimonials .container { position: relative; z-index: 1; }
.t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 2.8rem; }
.t-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: 0 3px 14px rgba(92,45,94,0.08);
}
.t-stars { color: var(--coral); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 0.15em; }
.t-quote { font-family: var(--ff-display); font-style: italic; font-size: 0.98rem; color: var(--plum); line-height: 1.65; margin-bottom: 1rem; }
.t-name { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* EMAIL CAPTURE */
.email-capture {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.email-capture::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(232,137,106,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.email-capture .container { position: relative; z-index: 1; }
.email-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem; align-items: center;
}
.email-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700; color: var(--white);
  line-height: 1.12; margin-bottom: 1.1rem;
  letter-spacing: -0.022em;
}
.email-title em { color: var(--coral); font-style: italic; }
.email-desc {
  font-size: 1.04rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; margin-bottom: 1.4rem;
}
.email-perks {
  list-style: none;
}
.email-perks li {
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; gap: 0.65rem;
}
.email-perks li::before {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0;
}
.email-perks li:last-child { border-bottom: none; }
.email-form-wrap { }
.email-form-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 2.2rem;
}
.email-form-label {
  font-family: var(--ff-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.5rem;
  text-align: center;
}
.email-form { display: flex; flex-direction: column; gap: 1rem; }
.email-field { display: flex; flex-direction: column; gap: 0.35rem; }
.email-field label {
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.email-field input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body); font-size: 0.95rem;
  color: var(--white); outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.email-field input::placeholder { color: rgba(255,255,255,0.3); }
.email-field input:focus {
  border-color: var(--coral);
  background: rgba(255,255,255,0.11);
}
.email-btn {
  background: var(--coral); color: var(--white);
  border: none; border-radius: 50px;
  padding: 0.9rem 1.5rem;
  font-family: var(--ff-body); font-size: 0.95rem;
  font-weight: 700; cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.4rem;
}
.email-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.email-privacy {
  font-size: 0.74rem; color: rgba(255,255,255,0.35);
  text-align: center; line-height: 1.5;
}

/* CTA STRIP */
.cta-strip {
  background: var(--coral);
  padding: 5.5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.cta-strip h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 0.9rem; letter-spacing: -0.022em;
  position: relative; z-index: 1;
}
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1.12rem; margin-bottom: 2.2rem; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem 3.5rem; }
  .hero-right { height: 70vw; max-height: 500px; }
  .hero-right img { object-position: center 20%; }
  .tl-inner { grid-template-columns: 1fr; gap: 3rem; }
  .tl-photo-wrap { max-width: 380px; }
  .stay-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .pod-grid { grid-template-columns: 1fr; }
  .community .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .email-inner { grid-template-columns: 1fr; gap: 3rem; }
  .t-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .stay-grid { grid-template-columns: 1fr; }
  .comm-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   MOBILE WIDTH GUARD
   Keeps grid/flex content inside the viewport.
   ========================================================= */
.hero,
.hero-wrap,
.page-hero,
.page-wrap,
.hero-left,
.hero-right,
.hero-content,
.container {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 600px) {
  section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-left,
  .hero-content,
  .form-side {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title,
  .page-title,
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-btns,
  .about-btns,
  .jump-links,
  .jump-pills,
  .pod-links {
    max-width: 100%;
  }
}
