@font-face {
  font-family: 'Lora';
  src: url('../content/Lora-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Nunito-Sans';
  src: url('../content/NunitoSans.ttf') format('truetype');
  font-weight: 700;
  font-style: bold;
}
@font-face {
  font-family: 'Fields';
  src: url('../content/Fields-SemiBold.otf') format('opentype');
  font-weight: 600; /* semibold */
  font-style: normal;
}
    :root {
      --clay:    #C6803D;
      --sage:    #BAAF69;
      --dusk:    #68672B;
      --cream:   #F7F1E4;
      --linen:   #F7F1E4;
      --warm:    #F4C5B4;
      --mist:    #9BB6DC;
      --bark:    #68672B;
      --sky:     #5985C4;
      --blush:   #F4C5B4;
      --blue:    #5985C4;
      --olive:   #68672B;
    }


    html { scroll-behavior: smooth; }

    body {
      background: var(--linen);
      color: var(--linen);
      font-family: 'Lora', Georgia, serif;
      font-size: 18px;
      line-height: 1.7;
      overflow-x: hidden;
    }
.main-header {
    display: flex !important;
    align-items: center !important;
}
    /* ── HERO — full bleed, frosted card ── */
    .hero {
      min-height: 100vh;
      position: relative;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Photo fills entire hero */
    .hero-scene {
      position: absolute;
      inset: 0;
      background-size: 110%;
      background-position: 85% 15%;
      background-repeat: no-repeat;
      background-color: #2a3d5e;
      z-index: 0;
    }

    /* Subtle dark overlay for readability */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(42,41,20,0.42);
      z-index: 1;
    }


/* Image fills the padded wrapper */
.hero-image {
  width: 100%;           /* full width of padded area */
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;   /* optional: match home page rounding */
}
    /* Subtle dark overlay for readability */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(42,41,20,0.42);
      z-index: 1;
    }

    /* Frosted glass card — lower left, overlapping */
    .hero-card {
      position: absolute;
      bottom: -8rem;
      left: 6rem;
      z-index: 3;
      background: rgba(247,241,228,0.91);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(247,241,228,0.5);
      padding: 2.5rem 3rem;
      max-width: 480px;
      overflow: visible;
    }

    .hero-eyebrow {
      font-family: 'Nunito-Sans';
      font-size: 1rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: 0.9rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.3s forwards;
    }

    .hero-title {
      font-family: 'Nunito-Sans';
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--dusk);
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.5s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--clay);
    }

    .hero-sub {
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--bark);
      line-height: 1.85;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.7s forwards;
    }

    .hero-cta-group {
      display: flex;
      gap: 1.2rem;
      align-items: center;
      justify-content: flex-start;
      opacity: 0;
      animation: fadeUp 0.9s 0.7s forwards;
    }

    .hero-badge {
      position: absolute;
      bottom: -6.2rem;
      left: calc(6rem + 480px);
      background: rgba(89,133,196,0.88);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(247,241,228,0.3);
      padding: 1.2rem 1.6rem;
      width: 160px;
      z-index: 4;
      opacity: 0;
      animation: fadeUp 1s 1s forwards;
    }

    .hero-badge-num {
      font-family: 'Nunito-Sans';
      font-size: 2.4rem;
      font-weight: 400;
      color: var(--cream);
      line-height: 1;
    }

    .hero-badge-text {
        font-family: 'Lora';
      font-size: 1rem;
      color: rgba(247,241,228,0.95);
      margin-top: 0.35rem;
      line-height: 1.4;
    }


    .btn-primary {
      font-family: 'Nunito-Sans';
      display: inline-block;
      padding: 0.95rem 2.2rem;
      background: var(--clay);
      color: var(--cream);
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s;
    }

    .btn-primary:hover {
      background: var(--bark);
      transform: translateY(-2px);
    }

    .btn-ghost {
      font-family: 'Lora';
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--bark);
      text-decoration: none;
      border-bottom: 1px solid var(--clay);
      padding-bottom: 2px;
      transition: color 0.2s;
    }

    .btn-ghost:hover { color: var(--clay); }

    /* ── MARQUEE ── */
    .marquee-bar {
      background: var(--olive);
      color: var(--cream);
      padding: 0.9rem 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .marquee-track {
      display: inline-flex;
      animation: marquee 22s linear infinite;
    }

    .marquee-item {
      font-family: 'DM Mono', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 0 3rem;
      opacity: 0.8;
    }

    .marquee-dot {
      color: var(--clay);
      padding: 0 0.5rem;
    }

    /* ── WHY GROUP ── */
    .why-section {
      padding: 5.5rem 6rem;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 6rem;
      align-items: center;
    }

    .section-label {
      font-family: 'Nunito-Sans';
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: 1.5rem;
    }

    .section-title {
      font-family: 'Nunito-Sans';
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--dusk);
      margin-bottom: 1.8rem;
    }

    .section-title em { 
        font-family: 'Nunito-Sans';
        font-style: italic; color: var(--sage); }

    .why-body {
      font-family: 'Lora';
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--bark);
      line-height: 1.95;
    }

    .why-cards {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .why-card {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 1.4rem;
      align-items: start;
      padding: 2rem 0;
      border-bottom: 1px solid rgba(74,63,53,0.1);
      transition: background 0.2s;
    }

    .why-card:first-child { border-top: 1px solid rgba(74,63,53,0.1); }

    .why-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--linen);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--clay);
      flex-shrink: 0;
      margin-top: 0.2rem;
      border: 1px solid rgba(196,149,106,0.3);
      transition: background 0.25s, color 0.25s;
    }

    .why-card:hover .why-icon { background: var(--clay); color: var(--cream); }

    .why-card-title {
      font-family: 'Nunito-Sans';
      color:var(--olive);
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 0.4rem;
    }

    .why-card-desc {
    font-family: 'Lora';
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--bark);
      line-height: 1.75;
    }

    /* ── EXPERIENCES ── */
    .experiences {
      background: var(--olive);
      color: var(--cream);
      padding: 5.5rem 6rem;
    }

    .experiences-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 4rem;
    }

    .experiences-title {
      font-family: 'Nunito-Sans';
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400;
      line-height: 1.2;
      max-width: 440px;
    }

    .experiences-title em { font-style: italic; color: var(--warm); }

    .experiences-note {
      font-family: 'Lora';
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      color: var(--mist);
      max-width: 240px;
      line-height: 1.6;
      text-align: right;
    }

    .exp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5px;
    }

    .exp-card {
      position: relative;
      padding: 3rem 2.5rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      transition: background 0.3s;
      cursor: default;
    }

    .exp-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 60%, rgba(196,149,106,0.08));
      transition: opacity 0.3s;
      opacity: 0;
      pointer-events: none;
    }
#suggest {
  scroll-margin-top: 120px; /* adjust to match your header height */
}
    .exp-card:hover { background: rgba(255,255,255,0.07); }
    .exp-card:hover::before { opacity: 1; }

    .exp-tag {
      font-family: 'Nunito-Sans';
      font-size: 0.95rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--warm);
      margin-bottom: 1.5rem;
    }

    .exp-card-title {
      font-family: 'Nunito-Sans';
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .exp-card-desc {
        font-family: 'Lora';
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.8;
      color: rgba(245,239,228,0.88);
    }

    .exp-card-icon {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      font-size: 2.2rem;
      opacity: 0.2;
      transition: opacity 0.3s, transform 0.3s;
    }

    .exp-card:hover .exp-card-icon {
      opacity: 0.5;
      transform: scale(1.1);
    }

    /* Coming soon styling */
    .exp-card.coming-soon { opacity: 0.55; }

    .coming-badge {
      display: inline-block;
      margin-top: 1.2rem;
      font-family: 'Nunito-Sans';
      font-size: 0.9rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--clay);
      border: 1px solid var(--clay);
      padding: 0.5rem 1rem;
      opacity: 0.7;
    }

    /* ── SUGGEST A THEME ── */
    .suggest {
      padding: 2rem 2rem;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 7rem;
      align-items: center;
      background: var(--linen);
      display: flex;
      flex-direction: column;

}
    }

    .suggest-visual {
      position: relative;
      height: 480px;
    }

    .suggest-backdrop {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #BAAF69 0%, #68672B 100%);
      border-radius: 2px;
      overflow: hidden;
    }

    .suggest-backdrop::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 30% 60%, rgba(196,149,106,0.3) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    }

    .suggest-quote {
      position: absolute;
      bottom: 3rem;
      left: 2.5rem;
      right: 2.5rem;
      color: var(--cream);
    }

    .suggest-quote-text {
      font-family: 'Lora';
      font-size: 1.5rem;
      font-style: italic;
      line-height: 1.5;
      margin-bottom: 1rem;
    }

    .suggest-quote-attr {
      font-family: 'Lora';
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      opacity: 0.6;
    }

    /* Decorative circle */
    .suggest-circle {
      position: absolute;
      top: -2rem;
      right: -2rem;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      border: 2px solid var(--clay);
      opacity: 0.4;
    }

    .suggest-circle-inner {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 1px solid var(--sage);
      opacity: 0.5;
    }

    /* Form */
    .suggest-form-area {
   max-width: 600px;   /* keeps the form nicely sized */
    width: 100%;        /* allows responsiveness without stretching */
    margin: 0 auto;     /* centers it inside the section */
    justify-content: center; /* centers vertically if section has height */
    text-align: center;      /* centers text inside */
    padding: 4rem 1rem;      /* optional spacing */
}
    }

    .form-group {
      margin-bottom: 1.6rem;
    }

    .form-label {
      display: block;
      font-family: 'Nunito-Sans';
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--bark);
      margin-bottom: 0.6rem;
    }

    .form-control {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1.5px solid rgba(74,63,53,0.3);
      padding: 0.6rem 0;
      font-family: 'Lora', Georgia, serif;
      font-size: 1.05rem;
      color: var(--dusk);
      outline: none;
      transition: border-color 0.25s;
    }

    .form-control:focus { border-color: var(--clay); }

    .form-control::placeholder {
      color: rgba(74,63,53,0.35);
      font-family: 'Lora';
      font-style: italic;
    }

    textarea.form-control {
      resize: none;
      height: 90px;
    }

    .theme-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 0.8rem;
    }

    .chip {
      font-family: 'Lora';
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.4rem 0.9rem;
      border: 1px solid rgba(74,63,53,0.25);
      cursor: pointer;
      transition: all 0.2s;
      color: var(--bark);
      background: transparent;
    }

    .chip:hover, .chip.active {
      background: var(--clay);
      border-color: var(--clay);
      color: var(--cream);
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      padding: 5.5rem 6rem;
      background: var(--cream);
      overflow: hidden;
    }

    .testi-header {
      text-align: center;
      margin-bottom: 5rem;
    }

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

    .testi-card {
      padding: 3rem 2.5rem;
      background: var(--linen);
      position: relative;
    }

    .testi-quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      line-height: 1;
      color: var(--clay);
      opacity: 0.3;
      margin-bottom: -1.5rem;
    }

    .testi-text {
      font-size: 1rem;
      font-style: italic;
      font-weight: 300;
      line-height: 1.9;
      color: var(--bark);
      margin-bottom: 1.5rem;
    }

    .testi-author {
      font-family: 'DM Mono', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--clay);
    }

    /* ── CTA STRIP ── */
    .cta-strip {
      background: var(--blue);
      padding: 4.5rem 6rem;
      text-align: center;
    }

    .cta-strip-header {
      margin-bottom: 4.5rem;
    }

    .cta-strip-label {
      font-family: 'Nunito-Sans';
      font-size: 1rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--linen);
      opacity: 0.85;
      margin-bottom: 1.5rem;
    }

    .cta-strip-title {
      font-family: 'Nunito-Sans';
      font-size: clamp(2rem, 3vw, 3rem);
      font-weight: 400;
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 2.5rem;
    }

    .cta-strip-title em { font-style: italic; color: var(--linen); }

    /* Join-timeline graphic */
    .join-timeline {
      max-width: 1100px;
      margin: 0 auto 4rem;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .join-timeline::before {
      content: '';
      position: absolute;
      top: 24px;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: rgba(247,241,228,0.4);
      z-index: 0;
    }

    .join-step {
      position: relative;
      padding: 0 1rem;
      text-align: center;
      z-index: 1;
    }

    .join-step-num {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--blue);
      border: 1px solid rgba(247,241,228,0.6);
      color: var(--cream);
      font-family: 'Nunito-Sans';
      font-style: italic;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.6rem;
      position: relative;
      z-index: 2;
    }
    
    .join-step-num:hover {
    background-color: var(--linen);   /* or any of your palette colors */
    color:var(--blue);                          /* optional: makes the number readable */
    cursor: pointer;                       /* optional: gives a nice hover feel */
}

    .join-step-title {
      font-family: 'Nunito-Sans';
      font-size: 1.2rem;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 0.8rem;
    }

    .join-step-desc {
     font-family: 'Lora';
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.7;
      color: rgba(247,241,228,0.92);
      max-width: 220px;
      margin: 0 auto;
    }

    .btn-light {
      display: inline-block;
      padding: 1rem 2.5rem;
      background: var(--cream);
      color: var(--bark);
      font-family: 'Nunito-Sans';
      font-size: 0.78rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.25s, transform 0.2s;
      cursor: pointer;
      border: none;
    }

    .btn-light:hover {
      background: var(--linen);
      transform: translateY(-2px);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--olive);
      color: rgba(247,241,228,0.6);
      padding: 3.5rem 6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--cream);
      letter-spacing: 0.06em;
    }

    .footer-note {
      font-family: 'DM Mono', monospace;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-18px); }
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s, transform 0.8s;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVE ── */

    /* Tablet and below */
    @media (max-width: 900px) {
      body { font-size: 18px; }

      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }

      /* Hero: move card from absolute positioning into normal flow */
      .hero {
        min-height: 90vh;
        align-items: flex-end;
      }
      .hero-scene {
        background-size: cover;
        background-position: 60% center;
      }
      .hero-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 4rem 1.5rem 6rem;
        max-width: 100%;
        padding: 2.25rem 1.75rem;
      }
      .hero-badge {
        position: absolute;
        bottom: -3rem;
        left: auto;
        right: 1.5rem;
        width: 130px;
        padding: 1rem 1.2rem;
      }
      .hero-badge-num { font-size: 2rem; }
      .hero-cta-group { flex-wrap: wrap; gap: 1rem; }

      /* Sections */
      .why-section, .suggest, .cta-strip { grid-template-columns: 1fr; padding: 3.5rem 2rem; gap: 2.5rem; }
      .experiences { padding: 3.5rem 2rem; }
      .exp-grid { grid-template-columns: 1fr; }
      .experiences-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .experiences-note { text-align: left; }
      .testi-grid { grid-template-columns: 1fr; }
      .testimonials, .cta-strip { padding: 3.5rem 2rem; }
      .join-timeline { grid-template-columns: 1fr; gap: 2.5rem; }
      .join-timeline::before { display: none; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 3rem 2rem; }
      .suggest-visual { height: 340px; }
    }

    /* Phone */
    @media (max-width: 600px) {
      body { font-size: 17px; line-height: 1.65; }

      nav { padding: 0.9rem 1.2rem; }
      .nav-logo { font-size: 1rem; }

      /* Hero */
      .hero { min-height: 88vh; }
      .hero-scene {
        background-size: cover;
        background-position: 55% center;
      }
      .hero-overlay { background: rgba(42,41,20,0.55); }
      .hero-card {
        margin: 5rem 1rem 5rem;
        padding: 1.75rem 1.4rem;
      }
      .hero-eyebrow {
        font-size: 0.78rem;
        letter-spacing: 0.14em;
        margin-bottom: 0.7rem;
      }
      .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 1.3rem;
      }
      .hero-sub {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
      }
      .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
      }
      .btn-primary {
        text-align: center;
        padding: 0.95rem 1.5rem;
      }
      .btn-ghost { text-align: center; }
      .hero-badge {
        bottom: -2.5rem;
        right: 1rem;
        width: 120px;
        padding: 0.9rem 1rem;
      }
      .hero-badge-num { font-size: 1.7rem; }
      .hero-badge-text { font-size: 0.78rem; }

      /* Marquee */
      .marquee-item {
        font-size: 0.6rem;
        padding: 0 1.5rem;
      }

      /* Sections — reduce side padding and stack */
      .why-section,
      .suggest,
      .cta-strip,
      .experiences,
      .testimonials {
        padding: 3rem 1.25rem;
        gap: 2rem;
      }

      .section-title {
        font-size: 1.9rem;
        line-height: 1.25;
        margin-bottom: 1.2rem;
      }

      .why-body { font-size: 1.05rem; line-height: 1.8; }
      .why-card { padding: 1.5rem 0; gap: 1rem; grid-template-columns: 44px 1fr; }
      .why-icon { width: 40px; height: 40px; font-size: 1.2rem; }
      .why-card-title { font-size: 1.05rem; }
      .why-card-desc { font-size: 1rem; line-height: 1.65; }

      /* Experiences */
      .experiences-title { font-size: 1.9rem; line-height: 1.25; }
      .exp-card { padding: 2.25rem 1.5rem; }
      .exp-card-title { font-size: 1.3rem; }
      .exp-card-desc { font-size: 0.95rem; line-height: 1.65; }
      .exp-tag { font-size: 0.78rem; margin-bottom: 1rem; }
      .exp-card-icon { font-size: 1.8rem; bottom: 1.5rem; right: 1.5rem; }
      .coming-badge { font-size: 0.78rem; }

      /* Suggest form */
      .suggest-visual { height: 280px; }
      .suggest-quote-text { font-size: 1.2rem; }
      .suggest-quote { left: 1.5rem; right: 1.5rem; bottom: 2rem; }
      .suggest-circle { width: 100px; height: 100px; top: -1rem; right: -1rem; }
      .suggest-circle-inner { width: 70px; height: 70px; }
      .form-control { font-size: 1rem; }

      /* Testimonials */
      .testi-card { padding: 2.25rem 1.6rem; }
      .testi-quote-mark { font-size: 4rem; }
      .testi-text { font-size: 0.95rem; line-height: 1.75; }

      /* CTA strip + Join timeline */
      .cta-strip-title { font-size: 1.85rem; line-height: 1.25; }
      .cta-strip-label { font-size: 0.78rem; letter-spacing: 0.15em; }
      .cta-strip-header { margin-bottom: 3rem; }
      .join-timeline { gap: 2rem; }
      .join-step { padding: 0; }
      .join-step-title { font-size: 1.1rem; }
      .join-step-desc { font-size: 0.95rem; max-width: 100%; }

      /* Footer */
      footer { padding: 2.5rem 1.25rem; font-size: 0.85rem; }
      .footer-logo { font-size: 0.95rem; }
      .footer-note { font-size: 0.75rem; line-height: 1.6; }
    }

    /* Very small phones */
    @media (max-width: 380px) {
      .hero-title { font-size: 1.55rem; }
      .hero-card { margin: 4rem 0.85rem 5rem; padding: 1.5rem 1.2rem; }
      .hero-badge { width: 110px; right: 0.85rem; }
      .why-section, .suggest, .cta-strip, .experiences, .testimonials { padding: 3.5rem 1rem; }
      .section-title, .experiences-title, .cta-strip-title { font-size: 1.7rem; }
    }