/* Fine Wines Health — Hero: bold, modern, eye-catching */

:root {
  /* Primary palette (hero + site-wide) */
  --wine-deep: #5a1f2e;
  --wine: #702a3c;
  --wine-mid: #8a4a58;
  --wine-soft: #a06672;
  --wine-fade: #c9a8ae;
  --wine-muted: #dcc8cc;
  --gold: #c9a227;
  --gold-soft: #e4c25a;
  --gold-glow: rgba(228, 194, 90, 0.35);
  --yellow-light: #f2e8d4;
  --silver: #e8e5e1;
  --silver-light: #f5f3f0;
  /* Shared text/surface (same scheme everywhere) */
  --text-primary: #2c2226;
  --text-body: #3d3236;
  --text-muted: #4a4044;
  --bg-light: #f0ebec;
  --card-bg: #faf8f9;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--silver);
  background: var(--wine-deep);
  overflow-x: hidden;
}

/* Mobile: ensure page can always scroll (fixes scroll lock after hero/ticker) */
@media (max-width: 767.98px) {
  html {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: auto;
    min-height: 100%;
  }
  body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 100%;
    position: relative;
  }
}

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

/* —— Hero structure (shorter so ticker sits in hero) —— */
.hero {
  width: 100%;
  min-width: 0;
  min-height: 85vh;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 3.5rem;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
}


@media (min-width: 576px) {
  .hero {
    min-height: 86vh;
    padding-bottom: 4rem;
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: 88vh;
    padding-bottom: 4.5rem;
  }
}

/* Hero background image — flush to top of section, right-aligned; mask softens left edge */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url('assets/hero-portrait-bg.png');
  background-size: contain;
  background-position: 100% -50px;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-origin: border-box;
  mask-image: linear-gradient(to right, transparent 0%, transparent 22%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.7) 48%, black 58%, black 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 22%, rgba(0, 0, 0, 0.25) 35%, rgba(0, 0, 0, 0.7) 48%, black 58%, black 100%);
  mask-size: 100% 100%;
  mask-position: 0 0;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: 0 0;
}

@media (max-width: 991.98px) {
  .hero-bg-image {
    background-position: 30% -30px;
    mask-image: linear-gradient(to right, transparent 0%, transparent 12%, rgba(0, 0, 0, 0.3) 28%, rgba(0, 0, 0, 0.75) 42%, black 52%, black 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 12%, rgba(0, 0, 0, 0.3) 28%, rgba(0, 0, 0, 0.75) 42%, black 52%, black 100%);
  }
}

/* Hero: mobile-first responsive — background fits and stays readable */
@media (max-width: 767.98px) {
  .hero-bg-image {
    background-size: cover;
    background-position: 45% 20%;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.5) 35%, black 55%, black 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.5) 35%, black 55%, black 100%);
  }
  .hero-bg-base {
    background:
      linear-gradient(180deg, rgba(90, 31, 46, 0.25) 0%, rgba(90, 31, 46, 0.4) 25%, rgba(90, 31, 46, 0.5) 50%, rgba(90, 31, 46, 0.35) 75%, rgba(90, 31, 46, 0.2) 100%),
      linear-gradient(90deg, rgba(90, 31, 46, 0.6) 0%, rgba(90, 31, 46, 0.35) 50%, rgba(90, 31, 46, 0.2) 100%);
  }
  .hero-bg-spotlight {
    opacity: 0.35;
  }
}

@media (max-width: 479.98px) {
  .hero-bg-image {
    background-position: 50% 15%;
  }
}

/* Light gradient overlay — smooth left-to-right, aligned with content; picture stays visible */
.hero-bg-base {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(90, 31, 46, 0.08) 0%,
      transparent 35%,
      transparent 65%,
      rgba(90, 31, 46, 0.12) 100%
    ),
    linear-gradient(
      90deg,
      rgba(90, 31, 46, 0.42) 0%,
      rgba(90, 31, 46, 0.32) 18%,
      rgba(90, 31, 46, 0.24) 38%,
      rgba(90, 31, 46, 0.16) 58%,
      rgba(90, 31, 46, 0.08) 78%,
      rgba(90, 31, 46, 0.02) 100%
    );
}

/* Soft highlight over content area — keeps section feeling aligned */
.hero-bg-spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(
    ellipse 85% 70% at 28% 50%,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    transparent 70%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  box-sizing: border-box;
}

@media (max-width: 374px) {
  .hero-inner {
    padding: 1rem 0.75rem;
  }
}

@media (min-width: 576px) {
  .hero-inner {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-inner {
    padding: 2rem 2rem;
  }
}

@media (min-width: 992px) {
  .hero-inner {
    padding: 3rem 4rem 3rem 5rem;
  }
}

/* —— Grid: content only, text on left —— */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: min(65vh, 520px);
  width: 100%;
  min-width: 0;
}

@media (max-width: 374px) {
  .hero-grid {
    min-height: min(60vh, 420px);
  }
}

@media (min-width: 576px) {
  .hero-grid {
    min-height: min(72vh, 600px);
  }
}

@media (min-width: 768px) {
  .hero-grid {
    min-height: min(78vh, 700px);
  }
}

@media (min-width: 992px) {
  .hero-grid {
    min-height: min(80vh, 780px);
  }
}

/* —— Content: left side —— */
.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 1rem;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 992px) {
  .hero-content {
    padding-right: 2rem;
    max-width: 50%;
  }
}

/* Pill badge */
.hero-pill {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.25rem, 8vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--gold-soft);
  padding: 0;
  margin-bottom: 0.35rem;
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.1s forwards;
  line-height: 1.05;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .hero-pill {
    white-space: normal;
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    margin-bottom: 0.5rem;
    line-height: 1.1;
  }
}

@media (max-width: 575.98px) {
  .hero-pill {
    font-size: clamp(1.35rem, 5.5vw, 2rem);
  }
}

/* Headline: much bigger and bolder */
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  margin: 0 0 2rem 0;
  line-height: 0.96;
  letter-spacing: -0.035em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767.98px) {
  .hero-headline {
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 479.98px) {
  .hero-headline {
    margin-bottom: 1rem;
  }
}

.hero-headline-line1 {
  display: block;
  font-size: clamp(2rem, 7vw, 5rem);
  color: var(--silver-light);
  font-weight: 900;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.2s forwards;
}

.hero-headline-line2 {
  display: block;
  font-size: clamp(2.25rem, 8vw, 6.5rem);
  color: var(--gold-soft);
  letter-spacing: -0.03em;
  font-weight: 900;
  opacity: 0;
  animation: heroFadeUp 0.7s ease 0.35s forwards;
}

@media (max-width: 767.98px) {
  .hero-headline-line1,
  .hero-headline-line2 {
    font-size: clamp(1.75rem, 6.5vw, 2.75rem);
    line-height: 1.05;
  }
}

@media (max-width: 479.98px) {
  .hero-headline-line1,
  .hero-headline-line2 {
    font-size: clamp(1.5rem, 5.5vw, 2.25rem);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Body: bigger, bolder, more expanded */
.hero-body {
  max-width: none;
  width: 100%;
}

.hero-body p {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 1.85;
  margin: 0 0 1.25rem 0;
  color: var(--silver-light);
  font-weight: 600;
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.5s forwards;
}

@media (max-width: 767.98px) {
  .hero-body p {
    font-size: clamp(0.9375rem, 2.5vw, 1.15rem);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
}

@media (max-width: 479.98px) {
  .hero-body p {
    font-size: clamp(0.875rem, 2.2vw, 1.05rem);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
}

.hero-body strong {
  font-weight: 800;
  color: var(--yellow-light);
}

/* Doctor name: modern inline highlight */
.hero-doctor-name {
  font-weight: 700;
  color: var(--gold-soft);
  padding: 0.15em 0.5em;
  background: rgba(228, 194, 90, 0.12);
  border-radius: 4px;
  border-bottom: 1px solid rgba(228, 194, 90, 0.35);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Tagline + CTA block: flexible positioning */
.hero-tagline-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(228, 194, 90, 0.2);
  opacity: 0;
  animation: heroFadeUp 0.6s ease 0.65s forwards;
}

@media (max-width: 767.98px) {
  .hero-tagline-cta {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 479.98px) {
  .hero-tagline-cta {
    margin-top: 1.25rem;
    padding-top: 1rem;
  }
}

@media (min-width: 768px) {
  .hero-tagline-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 1.5rem;
  }
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1.5rem;
}

@media (max-width: 767.98px) {
  .hero-tagline {
    justify-content: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 1rem;
  }
}

.hero-tagline-item {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  letter-spacing: 0.02em;
  color: var(--silver-light);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(228, 194, 90, 0.25);
}

@media (max-width: 767.98px) {
  .hero-tagline-item {
    font-size: clamp(0.8125rem, 2.2vw, 1rem);
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
  }
}

@media (max-width: 374px) {
  .hero-tagline-item {
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
  }
}

/* CTA: Get early access */
.hero-cta {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.75rem 1.6rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wine-deep);
  background: var(--gold-soft);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

@media (max-width: 767.98px) {
  .hero-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
    box-sizing: border-box;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 479.98px) {
  .hero-cta {
    max-width: 100%;
    padding: 0.8rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 10px;
  }
}

.hero-cta:hover {
  background: var(--yellow-light);
  transform: translateY(-1px);
}

/* ===== Hero: mobile only (no other sections changed) ===== */
@media (max-width: 767.98px) {
  .hero {
    min-height: 75vh;
    padding-bottom: 3rem;
    padding-top: 0;
    align-items: center;
    justify-content: center;
  }
  .hero .hero-inner {
    width: 100%;
    padding: 1.25rem 1rem;
  }
  .hero .hero-grid {
    min-height: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .hero .hero-content {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .hero .hero-headline {
    text-align: center;
    margin-bottom: 1rem;
  }
  .hero .hero-body,
  .hero .hero-body p {
    text-align: center;
    max-width: 100%;
  }
  .hero .hero-tagline-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
  .hero .hero-tagline {
    justify-content: center;
    margin-bottom: 1rem;
  }
  .hero .hero-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
  }
  .hero .hero-pill {
    text-align: center;
  }
}

@media (max-width: 479.98px) {
  .hero {
    min-height: 70vh;
    padding-bottom: 2.5rem;
  }
  .hero .hero-inner {
    padding: 1rem 0.875rem;
  }
  .hero .hero-headline-line1,
  .hero .hero-headline-line2 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }
  .hero .hero-cta {
    max-width: 100%;
  }
}

/* —— Mobile / tablet: center content, stack CTA —— */
@media (max-width: 991.98px) {
  .hero-content {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-headline {
    text-align: center;
  }

  .hero-body {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 100%;
  }

  .hero-body p {
    max-width: 100%;
  }

  .hero-tagline-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-tagline {
    justify-content: center;
    gap: 0.5rem 1rem;
  }

  .hero-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
    box-sizing: border-box;
  }

  .hero-pill {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-tagline-item {
    font-size: clamp(0.85rem, 2.2vw, 1rem);
  }
}

/* —— Ticker: bold, beautiful, modern —— */
.ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: #000000;
  padding: 0.85rem 0;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}


@media (min-width: 576px) {
  .ticker {
    padding: 1rem 0;
  }
}

@media (min-width: 768px) {
  .ticker {
    padding: 1.15rem 0;
  }
}

.ticker-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Soft fade at edges for a modern look */
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 576px) {
  .ticker-wrap::before,
  .ticker-wrap::after {
    width: 60px;
  }
}

@media (min-width: 768px) {
  .ticker-wrap::before,
  .ticker-wrap::after {
    width: 80px;
  }
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.25rem 2rem;
  width: max-content;
  padding: 0 1.5rem;
  animation: tickerScroll 40s linear infinite;
}

@media (min-width: 576px) {
  .ticker-track {
    gap: 1.75rem 2.5rem;
    padding: 0 2rem;
  }
}

@media (min-width: 768px) {
  .ticker-track {
    gap: 2.5rem 3.5rem;
    padding: 0 3rem;
  }
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  font-size: clamp(0.8rem, 2.5vw, 1.3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ticker-item--bold {
  font-weight: 900;
  font-size: clamp(0.9rem, 2.8vw, 1.4rem);
  letter-spacing: 0.05em;
  color: #ffffff;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* —— Pillars: same color scheme as hero —— */
.pillars {
  background: var(--bg-light);
  padding: 3rem 1rem 4rem;
  overflow: hidden;
}

@media (min-width: 576px) {
  .pillars {
    padding: 3.5rem 1.25rem 4.5rem;
  }
}

@media (min-width: 768px) {
  .pillars {
    padding: 5rem 2rem 6rem;
  }
}

.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.25rem;
}

/* Entrance animations */
.pillars-label {
  opacity: 0;
  animation: pillarsFadeUp 0.6s ease forwards;
}

.pillars-heading {
  animation: pillarsFadeUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.pillars-underline {
  animation: pillarsFadeUp 0.5s ease 0.2s forwards;
  opacity: 0;
}

.pillars-intro {
  animation: pillarsFadeUp 0.6s ease 0.25s forwards;
  opacity: 0;
}

.pillar-card {
  opacity: 0;
  animation: pillarsFadeUp 0.5s ease forwards;
}

.pillar-card:nth-child(1) { animation-delay: 0.35s; }
.pillar-card:nth-child(2) { animation-delay: 0.45s; }
.pillar-card:nth-child(3) { animation-delay: 0.55s; }
.pillar-card:nth-child(4) { animation-delay: 0.65s; }

.pillars-cta-wrap {
  animation: pillarsFadeUp 0.5s ease 0.75s forwards;
  opacity: 0;
}

@keyframes pillarsFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sub-heading: bolder, larger */
.pillars-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-deep);
  margin: 0 0 0.6rem 0;
  text-align: center;
}

/* Main heading: larger, bolder */
.pillars-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Gradient underline: gold → wine */
.pillars-underline {
  display: block;
  width: min(320px, 100%);
  height: 5px;
  margin: 0.85rem auto 1.75rem auto;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-soft), var(--wine-mid));
}

/* Intro paragraph: larger, readable */
.pillars-intro {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-body);
  margin: 0 auto 2.5rem auto;
  max-width: 52em;
  text-align: center;
  font-weight: 500;
}

/* Four cards grid */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Cards: hover effects and transitions */
.pillar-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 16px rgba(90, 31, 46, 0.06), 0 1px 4px rgba(90, 31, 46, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(112, 42, 60, 0.08);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(90, 31, 46, 0.12), 0 6px 20px rgba(90, 31, 46, 0.08);
  border-color: rgba(112, 42, 60, 0.2);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wine-fade);
  color: var(--wine-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.35rem auto;
  transition: transform 0.3s ease, background 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08);
  background: var(--wine-soft);
  color: #fff;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
}

.pillar-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 800;
  color: var(--wine-deep);
  margin: 0 0 0.85rem 0;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  text-align: center;
}

.pillar-card:hover .pillar-title {
  color: var(--wine);
}

.pillar-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-body);
  margin: 0;
  text-align: center;
}

/* CTA: text + Join the community button */
.pillars-cta-wrap {
  text-align: center;
  margin-top: 0.5rem;
}

.pillars-cta-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 500;
  color: var(--text-body);
  margin: 0 0 1rem 0;
}

.pillars-cta-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--silver-light);
  background: var(--wine-deep);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pillars-cta-btn:hover {
  background: var(--wine);
  transform: translateY(-2px);
}

/* —— The Story: full-bleed split, modern editorial —— */
.story {
  background: var(--wine-deep);
  padding: 0;
  overflow: hidden;
  position: relative;
}

/* Full viewport width: no inner max-width */
.story-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

@media (min-width: 992px) {
  .story-layout {
    grid-template-columns: 58% 1fr;
    align-items: stretch;
    min-height: min(72vh, 680px);
  }
}

/* 13" laptop: slightly shorter section, balanced proportions */
@media (min-width: 992px) and (max-width: 1440px) {
  .story-layout {
    min-height: min(68vh, 620px);
  }
}

/* Left: image flush to top — section starts at head of image */
.story-image-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 1rem 1rem 1rem;
  background: transparent;
  position: relative;
}

@media (min-width: 576px) {
  .story-image-block {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .story-image-block {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}

@media (min-width: 992px) {
  .story-image-block {
    padding: 0 2.5rem 1.5rem 3rem;
    justify-content: flex-end;
    align-items: flex-start;
  }
}

.story-image-wrap {
  width: 100%;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 992px) {
  .story-image-wrap {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
  }
}

.story-image {
  width: 100%;
  height: auto;
  max-height: 75vh;
  min-height: 320px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

@media (min-width: 768px) {
  .story-image {
    min-height: 380px;
    max-height: 65vh;
  }
}

@media (min-width: 992px) {
  .story-image {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center top;
  }
}

/* Right: text at bottom of section */
.story-text-block {
  background: var(--wine-deep);
  padding: 0 1rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  border-left: 3px solid transparent;
}

@media (min-width: 576px) {
  .story-text-block {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .story-text-block {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}

@media (min-width: 992px) {
  .story-text-block {
    padding: 0 3rem 1.75rem 3rem;
    border-left: none;
    background: linear-gradient(90deg, rgba(228, 194, 90, 0.06) 0%, var(--wine-deep) 8%);
    justify-content: flex-end;
    box-shadow: inset 24px 0 48px -24px rgba(0, 0, 0, 0.2);
  }
}

.story-text-inner {
  width: 100%;
  max-width: 38em;
}

.story-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.story-label::before {
  content: '';
  width: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  flex-shrink: 0;
}

.story-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--silver-light);
  margin: 0 0 0.85rem 0;
  letter-spacing: -0.02em;
}

.story-body {
  margin: 0;
}

.story-p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--silver-light);
  margin: 0 0 0.65rem 0;
  letter-spacing: 0.01em;
}

.story-p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .story-heading {
    margin-bottom: 0.75rem;
  }
  .story-p {
    font-size: 0.9875rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }
}

/* Standalone highlighted lines */
.story-line {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--silver-light);
  margin: 0 0 0.65rem 0;
}

.story-line--highlight {
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  margin-top: 0.25rem;
  margin-bottom: 0.65rem;
  padding-left: 0.85rem;
  border-left: 3px solid rgba(228, 194, 90, 0.6);
  font-style: italic;
}

@media (min-width: 992px) {
  .story-line--highlight {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
}

.story-highlight {
  font-weight: 800;
  color: var(--gold-soft);
}

.story-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine-deep);
  background: var(--gold-soft);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.story-cta:hover {
  background: var(--yellow-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Story: compact and aligned on mobile and tablet */
@media (max-width: 767.98px) {
  .story-image-wrap {
    max-width: 560px;
    margin: 0 auto;
  }
  .story-image {
    max-height: 48vh;
    min-height: 300px;
  }
  .story-text-block {
    align-items: center;
    text-align: center;
  }
  .story-text-inner {
    max-width: 100%;
    text-align: center;
  }
  .story-label {
    justify-content: center;
  }
  .story-label::before {
    display: none;
  }
  .story-heading {
    text-align: center;
    font-size: clamp(1.4rem, 4.5vw, 1.85rem);
    margin-bottom: 0.75rem;
  }
  .story-p,
  .story-line {
    text-align: center;
  }
  .story-line--highlight {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
  .story-cta {
    align-self: center;
  }
}

@media (max-width: 575.98px) {
  .story-image {
    min-height: 260px;
    max-height: 40vh;
  }
  .story-heading {
    font-size: clamp(1.25rem, 4.2vw, 1.6rem);
  }
}

/* —— You Belong Here: plain light section, text left, image right —— */
.belong {
  background: var(--bg-light);
  padding: 3rem 1rem 4rem;
  overflow: hidden;
}

@media (min-width: 576px) {
  .belong {
    padding: 3.5rem 1.25rem 4.5rem;
  }
}

@media (min-width: 768px) {
  .belong {
    padding: 4rem 2rem 5rem;
  }
}

@media (min-width: 992px) {
  .belong {
    padding: 5rem 3rem 6rem;
  }
}

.belong-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0.25rem;
}

.belong-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .belong-layout {
    grid-template-columns: 1fr 58%;
    gap: 3.5rem;
    align-items: center;
  }
}

.belong-text-block {
  padding: 0;
}

@media (min-width: 992px) {
  .belong-text-block {
    padding-right: 1rem;
  }
}

.belong-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--wine-deep);
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.65rem;
}

.belong-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, var(--wine-deep) 0%, var(--wine) 50%, transparent 100%);
  border-radius: 2px;
}

.belong-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.belong-lines li {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  line-height: 1.65;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.45rem 0;
  padding-left: 0;
}

.belong-lines li::before {
  content: '— ';
  color: var(--wine);
  font-weight: 700;
}

.belong-p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1.25rem 0;
}

.belong-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--wine-deep);
  letter-spacing: 0.03em;
  margin: 0 0 1.5rem 0;
}

.belong-tagline::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--wine-soft);
  margin-bottom: 0.6rem;
}

.belong-cta {
  display: inline-block;
  padding: 0.85rem 1.85rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine-deep);
  background: transparent;
  border: 2px solid var(--wine);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.belong-cta:hover {
  background: var(--wine);
  color: var(--silver-light);
  transform: translateY(-2px);
}

/* Image is part of the page — no card, no background, no shadow */
.belong-image-block {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.belong-image {
  width: 100%;
  max-width: 720px;
  min-height: 420px;
  height: auto;
  display: block;
  vertical-align: middle;
  object-fit: contain;
  background: transparent;
}

@media (min-width: 768px) {
  .belong-image {
    max-width: 880px;
    min-height: 520px;
  }
}

@media (min-width: 992px) {
  .belong-image {
    max-width: 100%;
    width: 100%;
    min-height: 580px;
    max-height: 88vh;
    object-fit: contain;
    object-position: center center;
  }
}

/* —— Our Difference: heading, intro, two boxes, CTA —— */
.difference {
  position: relative;
  background: var(--bg-light);
  padding: 3rem 1rem 4.5rem;
}

@media (min-width: 576px) {
  .difference {
    padding: 3.5rem 1.25rem 5rem;
  }
}

.difference::before,
.difference::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  pointer-events: none;
}

.difference::before {
  left: 0;
  background: linear-gradient(180deg, var(--wine-deep) 0%, var(--wine) 50%, var(--wine-deep) 100%);
}

.difference::after {
  right: 0;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 50%, var(--gold-soft) 100%);
}

@media (min-width: 768px) {
  .difference {
    padding: 5rem 2rem 6rem;
  }
}

.difference-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.difference-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--wine-deep);
  margin: 0 0 0.6rem 0;
  display: block;
}

.difference-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 auto 0.85rem auto;
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.75rem;
  display: inline-block;
}

.difference-heading::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wine-deep) 0%, var(--wine) 40%, var(--gold-soft) 100%);
  border-radius: 2px;
}

.difference-intro {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 auto 2.75rem auto;
  max-width: 42em;
  text-align: center;
}

.difference-highlight {
  color: var(--wine-deep);
  font-weight: 800;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
  margin-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .difference-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.difference-box {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  border: 3px solid transparent;
  box-shadow: 0 4px 20px rgba(90, 31, 46, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.difference-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(90, 31, 46, 0.12);
}

.difference-box--problem {
  border-color: var(--wine-deep);
}

.difference-box--problem:hover {
  box-shadow: 0 12px 40px rgba(90, 31, 46, 0.18);
  background: rgba(90, 31, 46, 0.02);
}

.difference-box--problem .difference-box-title {
  color: var(--wine-deep);
  font-weight: 800;
}

.difference-box--solution {
  border-color: var(--gold-soft);
}

.difference-box--solution:hover {
  box-shadow: 0 12px 40px rgba(228, 194, 90, 0.15);
  background: rgba(228, 194, 90, 0.03);
}

.difference-box--solution .difference-box-title {
  color: var(--text-primary);
  font-weight: 800;
}

.difference-box-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.9rem 0;
}

.difference-box-p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
  font-weight: 600;
}

.difference-cta-wrap {
  text-align: center;
}

.difference-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine-deep);
  background: transparent;
  border: 3px solid var(--wine-deep);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.difference-cta:hover {
  background: var(--wine-deep);
  color: var(--silver-light);
  transform: translateY(-2px);
}

/* —— Meet the Founder: modern, bold, editorial —— */
.founder {
  background: linear-gradient(165deg, var(--wine-deep) 0%, #4a1a27 50%, var(--wine-deep) 100%);
  padding: 3rem 1rem 0;
  overflow: hidden;
  position: relative;
}

@media (min-width: 576px) {
  .founder {
    padding: 3.5rem 1.25rem 0;
  }
}

@media (min-width: 768px) {
  .founder {
    padding: 4rem 2rem 0;
  }
}

.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .founder-layout {
    grid-template-columns: 52% 1fr;
    gap: 3rem;
    align-items: stretch;
  }
}

.founder-image-block {
  order: 1;
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

@media (min-width: 992px) {
  .founder-image-block {
    order: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 0;
    min-height: 620px;
  }
}

/* Taller image; no blend mode so hair and shirt colors render correctly */
.founder-image {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: none;
  min-height: 420px;
  object-fit: contain;
  object-position: left top;
}

@media (min-width: 576px) {
  .founder-image {
    min-height: 480px;
  }
}

@media (min-width: 768px) {
  .founder-image {
    min-height: 560px;
  }
}

@media (min-width: 992px) {
  .founder-image {
    min-height: 620px;
    max-height: 92vh;
  }
}

.founder-content {
  order: 0;
  width: 100%;
}

@media (min-width: 992px) {
  .founder-content {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0.5rem;
    max-width: none;
  }
}

/* Heading: "MEET THE FOUNDER" + "Dr. Chetanna Okasi" — bold, expanded */
.founder-heading-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.75rem;
}

.founder-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.founder-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--silver-light);
  margin: 0;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 0.55rem;
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 479px) {
  .founder-name {
    white-space: normal;
  }
}

.founder-name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--wine) 0%, var(--gold-soft) 50%, var(--yellow-light) 100%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(228, 194, 90, 0.2);
}

.founder-role {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-soft);
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.founder-p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--silver-light);
  margin: 0 0 1.25rem 0;
  font-weight: 800;
  letter-spacing: 0.02em;
  max-width: none;
}

@media (min-width: 992px) {
  .founder-p {
    font-size: 1.22rem;
    line-height: 1.8;
    margin-bottom: 1.35rem;
  }
}

.founder-p:last-of-type {
  margin-bottom: 0.5rem;
}

.founder-cta {
  display: inline-block;
  align-self: flex-start;
  padding: 0.8rem 1.6rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  background: transparent;
  border: 2px solid var(--gold-soft);
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  width: auto;
  max-width: max-content;
}

.founder-cta:hover {
  background: var(--gold-soft);
  color: var(--wine-deep);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

/* —— Closing: faded portrait background, centered CTA —— */
.closing {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3rem 1rem 4.5rem;
}

@media (min-width: 576px) {
  .closing {
    padding: 4rem 1.25rem 5rem;
  }
}

@media (min-width: 768px) {
  .closing {
    padding: 5rem 2rem 6rem;
  }
}

.closing-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.closing-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('assets/closing-hero.png');
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}

.closing-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(90, 31, 46, 0.68);
}

.closing-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.closing-brand {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1rem 0;
  opacity: 0.95;
}

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--silver-light);
  margin: 0 0 1rem 0;
  letter-spacing: -0.03em;
  position: relative;
  padding-bottom: 0.75rem;
  display: inline-block;
}

.closing-headline::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  border-radius: 2px;
}

.closing-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin: 0 0 1rem 0;
}

.closing-strap {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin: 0 0 2.5rem 0;
  opacity: 0.9;
}

.closing-cta {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine-deep);
  background: var(--gold-soft);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.closing-cta:hover {
  background: var(--yellow-light);
  color: var(--wine-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* —— Final section: modern, beautiful ending —— */
.final {
  background: linear-gradient(180deg, #fdfcfb 0%, var(--card-bg) 30%, rgba(250, 248, 249, 0.98) 100%);
  padding: 3.5rem 1rem 4rem;
  text-align: center;
  position: relative;
}

@media (min-width: 576px) {
  .final {
    padding: 4rem 1.25rem 4.5rem;
  }
}

@media (min-width: 768px) {
  .final {
    padding: 5.5rem 1.5rem 4.5rem;
  }
}

.final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.8;
}

@media (min-width: 768px) {
  .final {
    padding: 7rem 2rem 6rem;
  }
}

.final-inner {
  max-width: 520px;
  margin: 0 auto;
}

.final-pretitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wine-deep);
  margin: 0 0 0.85rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.final-pretitle::before,
.final-pretitle::after {
  content: '';
  width: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wine-soft));
}

.final-pretitle::after {
  background: linear-gradient(90deg, var(--wine-soft), transparent);
}

.final-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-primary);
  margin: 0 0 1.35rem 0;
  letter-spacing: -0.02em;
}

.final-brand {
  color: var(--wine-deep);
  position: relative;
}

.final-brand::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-soft), var(--wine-soft));
  opacity: 0.7;
  border-radius: 1px;
}

.final-p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0 0 2rem 0;
  text-align: center;
}

.final-cta {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine-deep);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.final-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201, 162, 39, 0.45);
  filter: brightness(1.05);
}

.final-end {
  margin-top: 4rem;
  padding-top: 2.25rem;
  position: relative;
}

.final-end::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 2rem;
  background: linear-gradient(180deg, var(--wine-muted), transparent);
  border-radius: 1px;
}

.final-line {
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--wine-soft);
  margin: 0 auto 1.25rem auto;
  opacity: 0.6;
}

.final-copy {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.04em;
}

/* —— Modal: modern, unique CTA form —— */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (min-width: 576px) {
  .modal-overlay {
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .modal-overlay {
    padding: 1.5rem;
  }
}

.modal-overlay--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(90, 31, 46, 0.75);
  cursor: pointer;
}

.modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(420px, calc(100vw - 1.5rem));
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  cursor: default;
}

.modal-overlay--open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: rgba(90, 31, 46, 0.08);
  color: var(--text-body);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: rgba(90, 31, 46, 0.15);
  color: var(--wine-deep);
}

/* —— Join community popup (30s delay, dismissible, session-only) —— */
.join-popup {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.join-popup--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.join-popup-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(90, 31, 46, 0.6);
  cursor: pointer;
}

.join-popup-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(380px, calc(100vw - 2rem));
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 1.75rem 1.5rem;
  cursor: default;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.join-popup--open .join-popup-box {
  transform: scale(1) translateY(0);
}

.join-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: rgba(90, 31, 46, 0.08);
  color: var(--text-body);
  font-size: 1.35rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.join-popup-close:hover {
  background: rgba(90, 31, 46, 0.15);
  color: var(--wine-deep);
}

.join-popup-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wine-deep);
  margin: 0 0 0.5rem 0;
  padding-right: 2rem;
}

.join-popup-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0 0 1.25rem 0;
}

.join-popup-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--wine-deep);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.join-popup-cta:hover {
  background: var(--wine-mid);
  transform: translateY(-1px);
}

/* —— Scroll to top —— */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--wine-deep);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(90, 31, 46, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease;
}

.scroll-top:hover {
  background: var(--wine-mid);
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top svg {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-top {
    transition: none;
  }
}

.modal-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--wine-deep) 0%, var(--gold-soft) 50%, var(--wine-deep) 100%);
}

.modal-inner {
  position: relative;
  padding: 1.5rem 1.25rem 1.75rem;
  min-height: 320px;
}

@media (min-width: 576px) {
  .modal-inner {
    padding: 1.75rem 1.5rem 2rem;
    min-height: 360px;
  }
}

@media (min-width: 768px) {
  .modal-inner {
    padding: 2rem 1.75rem 2.25rem;
    min-height: 400px;
  }
}

.modal-pretitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 0.4rem 0;
}

.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--wine-deep);
  margin: 0 0 0.35rem 0;
  letter-spacing: -0.02em;
}

.modal-subtitle {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.modal-optional {
  font-weight: 500;
  color: var(--text-muted);
}

.modal-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: #fff;
  border: 2px solid var(--wine-muted);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.modal-input::placeholder {
  color: var(--text-muted);
}

.modal-input:hover {
  border-color: var(--wine-fade);
}

.modal-input:focus {
  outline: none;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(228, 194, 90, 0.2);
}

.modal-submit {
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine-deep);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.4);
  filter: brightness(1.03);
}

.modal-form-wrap {
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Loader overlay: shown after submit until thank you screen */
.modal-form-loader {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(250, 248, 249, 0.96);
  border-radius: 0 0 24px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-form-wrap--loading .modal-form-loader {
  opacity: 1;
  visibility: visible;
}

.modal-form-loader-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--wine-muted);
  border-top-color: var(--gold-soft);
  border-radius: 50%;
  animation: modalLoaderSpin 0.75s linear infinite;
}

.modal-form-loader-text {
  margin-top: 0.85rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

@keyframes modalLoaderSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .modal-form-loader-spinner {
    animation: none;
    border-top-color: var(--gold-soft);
    border-right-color: var(--gold-soft);
  }
}

.modal-form-wrap--hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.98);
}

.modal-success {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.75rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  background: linear-gradient(180deg, rgba(228, 194, 90, 0.06) 0%, transparent 40%);
}

.modal-success--visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.modal-success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(228, 194, 90, 0.12) 0%, rgba(228, 194, 90, 0.04) 100%);
  box-shadow: 0 0 0 1px rgba(228, 194, 90, 0.2);
}

.modal-success-icon svg {
  width: 56px;
  height: 56px;
}

.modal-success-circle {
  stroke: var(--gold-soft);
  stroke-width: 2.5px;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: modalSuccessCircle 0.65s ease-out forwards;
}

.modal-success-check {
  stroke: var(--wine-deep);
  stroke-width: 3px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: modalSuccessCheck 0.4s ease-out 0.4s forwards;
}

@keyframes modalSuccessCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes modalSuccessCheck {
  to { stroke-dashoffset: 0; }
}

.modal-success-line {
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  margin: 0 auto 1.25rem;
  border-radius: 1px;
  opacity: 0.8;
}

.modal-success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--wine-deep);
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.modal-success-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 1.75rem 0;
  max-width: 22em;
  letter-spacing: 0.01em;
}

.modal-success-close {
  padding: 0.8rem 1.75rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine-deep);
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.modal-success-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.4);
  filter: brightness(1.05);
}

/* ===== Scroll reveal & animations (whole site) ===== */
@keyframes revealFadeUp {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealImage {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes revealFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sections: start hidden, animate in when .in-view */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Images: filmy scale + fade pop-in */
.scroll-reveal .story-image-wrap,
.scroll-reveal .story-image,
.scroll-reveal .belong-image-block,
.scroll-reveal .belong-image,
.scroll-reveal .founder-image-block,
.scroll-reveal .founder-image {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.in-view .story-image-wrap,
.scroll-reveal.in-view .story-image,
.scroll-reveal.in-view .belong-image-block,
.scroll-reveal.in-view .belong-image,
.scroll-reveal.in-view .founder-image-block,
.scroll-reveal.in-view .founder-image {
  opacity: 1;
  transform: scale(1);
}

/* Stagger: text/content after image */
.scroll-reveal .story-text-inner,
.scroll-reveal .belong-text-block,
.scroll-reveal .founder-content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.in-view .story-text-inner { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .belong-text-block { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .founder-content { transition-delay: 0.22s; opacity: 1; transform: translateY(0); }

.scroll-reveal .pillars-inner > .pillars-label,
.scroll-reveal .pillars-inner > .pillars-heading,
.scroll-reveal .pillars-inner > .pillars-underline,
.scroll-reveal .pillars-inner > .pillars-intro {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.in-view .pillars-label { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .pillars-heading { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .pillars-underline { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .pillars-intro { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }

/* Pillar cards stagger */
.scroll-reveal .pillar-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.scroll-reveal.in-view .pillar-card:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal.in-view .pillar-card:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal.in-view .pillar-card:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal.in-view .pillar-card:nth-child(4) { transition-delay: 0.4s; }
.scroll-reveal.in-view .pillar-card { opacity: 1; transform: translateY(0); }

.scroll-reveal .pillars-cta-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.in-view .pillars-cta-wrap { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

/* Difference boxes */
.scroll-reveal .difference-label,
.scroll-reveal .difference-heading,
.scroll-reveal .difference-intro { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.in-view .difference-label { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .difference-heading { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .difference-intro { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.scroll-reveal .difference-box {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.scroll-reveal.in-view .difference-box:nth-child(1) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .difference-box:nth-child(2) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .difference-cta-wrap { transition: opacity 0.6s ease; transition-delay: 0.45s; }

/* Closing & Final inner content */
.scroll-reveal .closing-inner > *,
.scroll-reveal .final-inner > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.in-view .closing-inner > *,
.scroll-reveal.in-view .final-inner > * { opacity: 1; transform: translateY(0); }
.scroll-reveal.in-view .closing-brand { transition-delay: 0.05s; }
.scroll-reveal.in-view .closing-headline { transition-delay: 0.12s; }
.scroll-reveal.in-view .closing-tagline { transition-delay: 0.2s; }
.scroll-reveal.in-view .closing-strap { transition-delay: 0.28s; }
.scroll-reveal.in-view .closing-cta { transition-delay: 0.36s; }
.scroll-reveal.in-view .final-pretitle { transition-delay: 0.05s; }
.scroll-reveal.in-view .final-headline { transition-delay: 0.12s; }
.scroll-reveal.in-view .final-p { transition-delay: 0.2s; }
.scroll-reveal.in-view .final-cta { transition-delay: 0.28s; }
.scroll-reveal.in-view .final-end { transition-delay: 0.35s; }

/* ===== Hover effects (buttons, cards, images) ===== */
.hero-cta,
.story-cta,
.belong-cta,
.pillars-cta-btn,
.difference-cta,
.founder-cta,
.closing-cta,
.final-cta {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
}
.hero-cta:hover,
.story-cta:hover,
.belong-cta:hover,
.pillars-cta-btn:hover,
.difference-cta:hover,
.founder-cta:hover,
.closing-cta:hover,
.final-cta:hover {
  transform: translateY(-3px);
}

.pillar-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(90, 31, 46, 0.15);
}

.difference-box {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.difference-box:hover {
  transform: translateY(-8px);
}

/* Image hover: subtle scale + glow */
.story-image-wrap,
.belong-image-block,
.founder-image-block {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-image-wrap:hover,
.belong-image-block:hover,
.founder-image-block:hover {
  transform: scale(1.02);
}

.hero-tagline-item {
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-tagline-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

/* ===== Responsive: mobile and tablet (100% responsive) ===== */

/* Prevent horizontal overflow site-wide */
body {
  min-width: 0;
}
section {
  min-width: 0;
  overflow-x: hidden;
}

/* Ensure no section blocks vertical scroll on mobile */
@media (max-width: 767.98px) {
  section {
    overflow-x: hidden;
    overflow-y: visible;
  }
  .hero {
    overflow: hidden;
  }
}

/* Extra small phones */
@media (max-width: 374px) {
  .hero-inner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hero-headline-line1,
  .hero-headline-line2 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }
  .hero-body p {
    font-size: 0.95rem;
  }
  .pillars,
  .belong,
  .difference,
  .founder,
  .closing,
  .final {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .pillars-heading {
    font-size: clamp(1.85rem, 5vw, 2.5rem);
  }
  .pillar-card {
    padding: 1.5rem 1.25rem;
  }
  .story-image-block,
  .story-text-block {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .story-image {
    min-height: 280px;
    max-height: 42vh;
  }
  .story-heading {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 0.65rem;
  }
  .story-p,
  .story-line {
    font-size: 0.9375rem;
    margin-bottom: 0.55rem;
  }
  .story-line--highlight {
    font-size: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 0.55rem;
    padding-left: 0.75rem;
  }
  .story-cta {
    margin-top: 0.85rem;
  }
  .closing-brand {
    letter-spacing: 0.2em;
  }
  .closing-strap {
    letter-spacing: 0.12em;
  }
  .modal-overlay {
    padding: 0.5rem;
  }
  .join-popup {
    padding: 0.75rem;
  }
  .join-popup-box {
    padding: 1.5rem 1.25rem;
    max-width: calc(100vw - 1.5rem);
  }
  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
  .ticker-item {
    font-size: 0.75rem;
  }
  .ticker-item--bold {
    font-size: 0.8rem;
  }
}

/* Small phones: touch targets and overflow prevention */
@media (max-width: 575.98px) {
  .hero-cta,
  .pillars-cta-btn,
  .story-cta,
  .belong-cta,
  .difference-cta,
  .founder-cta,
  .closing-cta,
  .final-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
  .modal-close,
  .join-popup-close {
    min-width: 44px;
    min-height: 44px;
  }
  .modal-box {
    max-width: calc(100vw - 1rem);
    border-radius: 20px;
  }
  .modal-inner {
    min-height: 280px;
    padding: 1.25rem 1rem 1.5rem;
  }
  .modal-title {
    font-size: 1.4rem;
  }
  .modal-success {
    padding: 2rem 1.25rem;
  }
  .modal-success-title {
    font-size: 1.75rem;
  }
  .belong-lines li {
    font-size: clamp(1rem, 4vw, 1.2rem);
  }
  .difference-box {
    padding: 1.5rem 1.25rem;
  }
  .difference-box-title {
    font-size: 1.1rem;
  }
  .founder-name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  .founder-p {
    font-size: 1.05rem;
  }
}

/* Tablet: ensure grids and spacing scale */
@media (min-width: 576px) and (max-width: 991.98px) {
  .hero-content {
    max-width: 100%;
  }
  .story-text-inner {
    max-width: 100%;
  }
  .belong-heading {
    font-size: clamp(1.9rem, 4.5vw, 2.75rem);
  }
  .closing-inner {
    max-width: 90%;
  }
  .final-inner {
    max-width: 90%;
    padding: 0 0.5rem;
  }
}

/* Modals and popups: scrollable on short viewports */
@media (max-height: 500px) {
  .modal-overlay {
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow-y: auto;
  }
  .modal-box {
    margin: auto;
  }
  .modal-inner {
    min-height: 0;
  }
  .join-popup {
    align-items: flex-start;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow-y: auto;
  }
  .join-popup-box {
    margin: auto;
  }
}

/* Safe area for scroll-to-top (notches, home indicators on iOS) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .scroll-top {
    bottom: max(1.5rem, env(safe-area-inset-bottom));
    right: max(1.5rem, env(safe-area-inset-right));
  }
}

@media (max-width: 575.98px) {
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .scroll-top {
      bottom: max(1rem, env(safe-area-inset-bottom));
      right: max(1rem, env(safe-area-inset-right));
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-reveal .story-image-wrap,
  .scroll-reveal .story-image,
  .scroll-reveal .belong-image-block,
  .scroll-reveal .belong-image,
  .scroll-reveal .founder-image-block,
  .scroll-reveal .founder-image,
  .scroll-reveal .pillar-card,
  .scroll-reveal .difference-box,
  .scroll-reveal .story-text-inner,
  .scroll-reveal .belong-text-block,
  .scroll-reveal .founder-content,
  .scroll-reveal .pillars-inner > *,
  .scroll-reveal .closing-inner > *,
  .scroll-reveal .final-inner > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .join-popup-box {
    transform: none;
    transition: none;
  }
}
