/* BUTTONS */
.btn-coral { background: var(--coral); color: var(--white); padding: 0.9rem 2.1rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s, opacity 0.2s; display: inline-block; }
.btn-coral:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-plum { 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-plum: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-ghost-light { color: rgba(255,255,255,0.85); border: 2px solid rgba(255,255,255,0.3); padding: 0.9rem 2.1rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; display: inline-block; }
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn-white { background: var(--white); color: var(--plum); padding: 0.9rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white { color: var(--white); border: 2px solid rgba(255,255,255,0.5); 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: sticky photo column
   Left = scrollable text, Right = photo pinned full height
   ==================== */
.hero-wrap {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: calc(100vh - 64px);
  background: var(--dark);
  position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 3rem;
  position: relative; z-index: 1;
}
.hero-left::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;
}
.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.2rem; 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-eyebrow {
  font-family: var(--ff-script);
  font-size: 1.6rem; color: var(--blush);
  display: block; margin-bottom: 0.3rem; opacity: 0.8;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700; line-height: 1.04;
  color: var(--white); margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-title em { font-style: italic; color: var(--coral); display: block; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  border-radius: var(--r); overflow: hidden;
  margin-bottom: 2.5rem;
}
.hero-stat {
  background: rgba(255,255,255,0.04);
  padding: 1.1rem 1rem; text-align: center;
}
.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 1.9rem; font-weight: 700;
  color: var(--coral); line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
/* Photo column : grows with viewport, photo covers it fully */
.hero-right {
  position: relative;
  background: #D4B0C0;
}
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* =====================
   INTRO QUOTE BAND
   ==================== */
.quote-band {
  background: var(--plum);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.quote-band::before {
  content: '"';
  position: absolute; top: -2rem; left: 1.5rem;
  font-family: var(--ff-display); font-size: 14rem;
  font-weight: 700; color: rgba(255,255,255,0.04);
  line-height: 1; pointer-events: none;
}
.quote-band::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.quote-band-inner {
  position: relative; z-index: 1;
  max-width: 820px; margin: 0 auto;
}
.quote-script {
  font-family: var(--ff-script);
  font-size: 1.3rem; color: rgba(255,255,255,0.5);
  display: block; margin-bottom: 0.6rem;
}
.quote-band p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--white); line-height: 1.5;
}
.quote-band p em { color: var(--coral); font-style: normal; font-weight: 700; }

/* =====================
   FOUR LETTERS : bold, text-first
   ==================== */
.letters-section {
  padding: 6rem 2.5rem;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.letters-section::before {
  content: 'STAY';
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display); font-size: 28vw;
  font-weight: 700; color: rgba(74,30,76,0.04);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -0.05em;
}
.letters-header {
  max-width: var(--max); margin: 0 auto 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end;
}
.letters-header-left .s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.letters-header-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 700; color: var(--plum);
  line-height: 1.1; letter-spacing: -0.025em;
}
.letters-header-right p {
  color: var(--muted); font-size: 1.05rem; line-height: 1.72;
}
.stay-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; position: relative; z-index: 1;
}
.stay-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.2rem 1.6rem 2rem;
  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::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.stay-card:nth-child(1)::before { background: var(--coral); }
.stay-card:nth-child(2)::before { background: var(--rose); }
.stay-card:nth-child(3)::before { background: var(--teal); }
.stay-card:nth-child(4)::before { background: var(--plum); }
.stay-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px 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; opacity: 0.04; line-height: 1;
  user-select: none; pointer-events: none; color: var(--plum);
}
.stay-script { font-family: var(--ff-script); font-size: 1rem; color: var(--coral); display: block; margin-bottom: 0.1rem; opacity: 0.7; }
.stay-card:nth-child(2) .stay-script { color: var(--rose); }
.stay-card:nth-child(3) .stay-script { color: var(--teal); }
.stay-card:nth-child(4) .stay-script { color: var(--plum); }
.stay-letter {
  font-family: var(--ff-display);
  font-size: 3.4rem; font-weight: 700;
  line-height: 1; margin-bottom: 0.3rem;
}
.stay-card:nth-child(1) .stay-letter { color: var(--coral); }
.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-footer {
  max-width: var(--max); margin: 3rem auto 0;
  text-align: center;
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.15rem; color: var(--plum); line-height: 1.6;
  position: relative; z-index: 1;
}
.stay-footer em { color: var(--coral); font-style: normal; font-weight: 700; }

/* =====================
   ORIGIN : text-heavy, one photo inset right
   ==================== */
.origin-section {
  background: var(--dark);
  padding: 6rem 2.5rem;
  position: relative; overflow: hidden;
}
.origin-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(232,137,106,0.09) 1px, transparent 1px),
    linear-gradient(135deg, rgba(232,137,106,0.03) 25%, transparent 25%, transparent 50%, rgba(232,137,106,0.03) 50%, rgba(232,137,106,0.03) 75%, transparent 75%);
  background-size: 28px 28px, 20px 20px;
}
.origin-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 4rem; align-items: start;
}
.origin-text .s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.origin-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; letter-spacing: -0.022em;
  margin-bottom: 1.3rem;
}
.origin-text h2 em { color: var(--coral); font-style: italic; }
.origin-text p { color: rgba(255,255,255,0.68); font-size: 1.04rem; line-height: 1.78; margin-bottom: 1rem; }
.origin-text p strong { color: var(--coral); font-weight: 700; }
.origin-photo {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  aspect-ratio: 3/4;
  position: sticky; top: 88px;
}
.origin-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }

/* =====================
   WHO IT IS FOR : bold color blocks, no photos
   ==================== */
.who-section {
  padding: 6rem 2.5rem;
  background: linear-gradient(145deg, var(--blush) 0%, #fce8ef 50%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.who-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(92,45,94,0.06) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='20' cy='30' rx='7' ry='16' transform='rotate(-25 20 30)' fill='none' stroke='%234A1E4C' stroke-width='0.8' opacity='0.12'/%3E%3Cellipse cx='100' cy='90' rx='6' ry='13' transform='rotate(20 100 90)' fill='none' stroke='%234A1E4C' stroke-width='0.8' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 26px 26px, 120px 120px;
}
.who-section .container { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.who-header { margin-bottom: 3.5rem; }
.who-header .s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.who-header h2 { font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--plum); line-height: 1.17; letter-spacing: -0.022em; }
.who-header p { color: var(--muted); font-size: 1.04rem; max-width: 580px; margin-top: 0.8rem; line-height: 1.72; }
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.who-card {
  background: var(--white);
  border-radius: var(--r-lg); padding: 2.2rem 1.8rem;
  box-shadow: 0 3px 18px rgba(92,45,94,0.08);
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative; overflow: hidden;
}
.who-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.who-card:nth-child(1)::before { background: var(--coral); }
.who-card:nth-child(2)::before { background: var(--teal); }
.who-card:nth-child(3)::before { background: var(--plum); }
.who-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(92,45,94,0.14); }
.who-num { font-family: var(--ff-display); font-size: 4rem; font-weight: 700; color: rgba(74,30,76,0.07); line-height: 1; margin-bottom: 0.5rem; }
.who-audience { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.who-card:nth-child(1) .who-audience { color: var(--coral); }
.who-card:nth-child(2) .who-audience { color: var(--teal); }
.who-card:nth-child(3) .who-audience { color: var(--plum); }
.who-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: var(--plum); margin-bottom: 0.6rem; line-height: 1.2; }
.who-desc { font-size: 0.92rem; color: var(--muted); line-height: 1.68; margin-bottom: 1.2rem; }
.who-list { list-style: none; border-top: 1px solid rgba(196,136,154,0.2); padding-top: 0.9rem; }
.who-list li { font-size: 0.86rem; color: var(--muted); padding: 0.3rem 0; display: flex; gap: 0.5rem; }
.who-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); flex-shrink: 0; margin-top: 0.52rem; }
.who-card:nth-child(2) .who-list li::before { background: var(--teal); }
.who-card:nth-child(3) .who-list li::before { background: var(--plum); }

/* =====================
   CLINICAL : one photo floated left, text right
   ==================== */
.clinical-section {
  padding: 6rem 2.5rem;
  background: var(--white);
  position: relative; overflow: hidden;
}
.clinical-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(196,136,154,0.07) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 8 L20 32 M8 20 L32 20' stroke='%234A9B9B' stroke-width='0.5' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 24px 24px, 40px 40px;
}
.clinical-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 380px 1fr;
  gap: 5rem; align-items: start;
}
.clinical-photo {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 20px 56px rgba(92,45,94,0.1);
  aspect-ratio: 3/4;
  position: sticky; top: 88px;
}
.clinical-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.clinical-text .s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.clinical-text h2 { font-family: var(--ff-display); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700; color: var(--plum); line-height: 1.15; letter-spacing: -0.022em; margin-bottom: 1.2rem; }
.clinical-text h2 em { color: var(--coral); font-style: italic; }
.clinical-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1rem; }
.clinical-list { list-style: none; margin: 1.6rem 0 2rem; }
.clinical-list li { font-size: 0.93rem; color: var(--text); padding: 0.65rem 0; border-bottom: 1px solid rgba(196,136,154,0.18); display: flex; gap: 0.75rem; }
.clinical-list li:last-child { border-bottom: none; }
.clinical-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 0.42rem; }

/* =====================
   WORKBOOK TEASER : bold dark with photo accent
   ==================== */
.workbook-section {
  padding: 6rem 2.5rem;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.workbook-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(232,137,106,0.09) 1px, transparent 1px),
    linear-gradient(135deg, rgba(196,136,154,0.04) 25%, transparent 25%, transparent 50%, rgba(196,136,154,0.04) 50%, rgba(196,136,154,0.04) 75%, transparent 75%);
  background-size: 28px 28px, 24px 24px;
}
.workbook-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 5rem; align-items: center;
}
.workbook-text .s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.workbook-text h2 { font-family: var(--ff-display); font-size: clamp(2rem, 3vw, 2.7rem); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -0.022em; margin-bottom: 1.2rem; }
.workbook-text h2 em { color: var(--coral); font-style: italic; }
.workbook-text p { color: rgba(255,255,255,0.68); font-size: 1.04rem; line-height: 1.75; margin-bottom: 1rem; }
.coming-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,137,106,0.12); border: 1.5px dashed rgba(232,137,106,0.4); color: var(--coral); border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.32rem 0.85rem; margin-bottom: 1.2rem; width: fit-content; }
.workbook-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.4); aspect-ratio: 3/4; }
.workbook-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }

/* =====================
   THREE PATHS CTA
   ==================== */
.paths-section {
  padding: 6rem 2.5rem;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.paths-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(196,136,154,0.08) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='15' cy='25' rx='5' ry='12' transform='rotate(-30 15 25)' fill='none' stroke='%23C4889A' stroke-width='0.8' opacity='0.15'/%3E%3Cellipse cx='80' cy='75' rx='5' ry='11' transform='rotate(25 80 75)' fill='none' stroke='%23C4889A' stroke-width='0.8' opacity='0.12'/%3E%3C/svg%3E");
  background-size: 24px 24px, 100px 100px;
}
.paths-section .container { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.paths-header { text-align: center; margin-bottom: 3.5rem; }
.paths-header .s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.paths-header h2 { font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--plum); line-height: 1.17; letter-spacing: -0.022em; }
.paths-header p { color: var(--muted); font-size: 1.04rem; max-width: 580px; margin: 0.9rem auto 0; line-height: 1.72; }
.paths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.path-card { background: var(--white); border-radius: var(--r-lg); padding: 2.5rem 2rem; box-shadow: 0 3px 18px rgba(92,45,94,0.08); text-align: center; transition: transform 0.22s, box-shadow 0.22s; display: flex; flex-direction: column; align-items: center; position: relative; overflow: hidden; }
.path-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.path-card:nth-child(1)::before { background: var(--coral); }
.path-card:nth-child(2)::before { background: var(--teal); }
.path-card:nth-child(3)::before { background: var(--plum); }
.path-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(92,45,94,0.14); }
.path-big-num { font-family: var(--ff-display); font-size: 4rem; font-weight: 700; color: rgba(74,30,76,0.08); line-height: 1; margin-bottom: 0.5rem; }
.path-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.path-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--plum); margin-bottom: 0.6rem; line-height: 1.2; }
.path-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }

/* 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-wrap { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem 3rem; }
  .hero-right { height: 70vw; max-height: 500px; }
  .letters-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .stay-grid { grid-template-columns: 1fr 1fr; }
  .origin-inner { grid-template-columns: 1fr; gap: 3rem; }
  .origin-photo { position: static; max-width: 360px; }
  .who-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .clinical-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .clinical-photo { position: static; max-width: 360px; }
  .workbook-inner { grid-template-columns: 1fr; gap: 3rem; }
  .workbook-photo { max-width: 360px; }
  .paths-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .stay-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 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%;
  }
}

@media (max-width: 600px) {
  .letters-section::before {
    right: 0;
    max-width: 100%;
    overflow: hidden;
  }
}
