@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --butter:   #fff4c5;
  --brown:    #735240;
  --periwinkle: #d9e2f5;
  --blush:    #fbdbe0;
  --cherry:   #bc2d30;
  --olive:    #868a12;
  --cream:    #fff8ee;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Nunito', sans-serif;
}

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--brown);
    overflow-x: hidden;
  }

  /* ─── NAV ─────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 40px;
    background: rgba(255,248,238,.85);
    backdrop-filter: blur(10px);
    border-bottom: 1.5px dashed rgba(115,82,64,.18);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.25rem;
    color: var(--brown);
    text-decoration: none;
    letter-spacing: .01em;
  }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a {
    font-size: .85rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; text-decoration: none;
    color: var(--brown); opacity: .7; transition: opacity .2s;
  }
  .nav-links a:hover { opacity: 1; color: #868a12;}
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-pill {
    background: var(--butter); color: #735240;
    padding: 9px 20px; border-radius: 100px;
    border: 2px solid #735240;
    font-size: .8rem; font-weight: 800; letter-spacing: .04em;
    text-transform: uppercase; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
  }
  .nav-pill:hover { transform: translate(-2px,-2px); background: var(--blush);}

  /* ─── HERO ─────────────────────────────── */
  .hero {
    min-height: 100svh;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: visible;
  }
  
  /* subtle dot grid background */
  .hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 8px;
    background-image: radial-gradient(circle, rgba(74,46,26,0.09) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  /* floating blobs */
  .blob {
    position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 0;
  }
  .blob-1 { width: 380px; height: 380px; background: var(--butter); top: 8%; right: 5%; opacity: .55; filter: blur(60px); }
  .blob-2 { width: 260px; height: 260px; background: var(--blush); bottom: 10%; left: 3%; opacity: .5; filter: blur(50px); }
  .blob-3 { width: 180px; height: 180px; background: var(--periwinkle); top: 50%; left: 38%; opacity: .45; filter: blur(40px); }

  /* ── LEFT COLUMN ── */
  .hero-left { position: relative; z-index: 1; }

  /* eyebrow pill */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #ffd4de; border-radius: 100px;
    padding: 6px 16px; margin-bottom: 22px;
    font-size: .78rem; font-weight: 800; letter-spacing: .07em;
    text-transform: uppercase; color: var(--brown);
    width: fit-content; margin-bottom: 28px;
    /* entrance */
    opacity: 0; transform: translateY(12px);
    animation: fadeUp 0.55s ease 0.1s forwards;
  }

  /* main headline */
  .headline {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 20px;
  }
  h1.headline em { color: var(--cherry); font-style: italic; }

  .subtext {
    font-size: 1rem; line-height: 1.75; font-weight: 400;
    max-width: 420px; color: var(--brown);
    margin-bottom: 40px;
    opacity: 0; animation: fadeUp 0.6s ease 0.4s forwards;
  }

  /* ── CTA BUTTONS ── */
  .hero-btns {
    display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    opacity: 0; animation: fadeUp 0.6s ease 0.5s forwards;
  }

  /* btn-primary with sticker hover */
.btn-wrap {
  display: inline-block;
  position: relative;
}
.hover-sticker {
  position: absolute;
  pointer-events: none;
  width: 80px; height: 80px;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(0.34,1.56,0.64,1),
              transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 20;
}
.sticker-right {
  right: -86px; top: 50%;
  transform: translateY(-50%) scale(0.4) rotate(-20deg);
}
.btn-wrap:hover .sticker-right {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(-6deg);
}

  .btn-primary {
    background: var(--periwinkle); color: #735240;
    padding: 15px 32px; border-radius: 100px;
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
    text-decoration: none; display: inline-block;
    border: 1.5px solid var(--brown);
    transition: transform 0.18s, box-shadow 0.18s;
    white-space: nowrap;
  }
  .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 5px 6px 0 rgba(115,82,64,.4); }

  .btn-ghost {
    background: transparent; color: var(--brown);
    padding: 14px 30px; border-radius: 100px;
    font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
    text-decoration: none; display: inline-block;
    border: 2px solid rgba(74,46,26,0.25);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
  }
  .btn-ghost:hover { border-color: var(--brown); background: var(--brown); color: var(--cream); }

  /* social proof strip */
  .proof-strip {
    display: flex; align-items: center; gap: 16px;
    margin-top: 44px; padding-top: 28px;
    border-top: 1px dashed rgba(74,46,26,0.15);
    opacity: 0; animation: fadeUp 0.6s ease 0.6s forwards;
  }
  .proof-faces { display: flex; }
  .proof-face {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2.5px solid var(--cream);
    background: var(--peri);
    font-size: 0.95rem;
    display: flex; align-items: center; justify-content: center;
    margin-left: -9px;
  }
  .proof-face:first-child { margin-left: 0; background: var(--blush); }
  .proof-face:nth-child(2) { background: var(--butter); }
  .proof-copy {
    font-size: 0.82rem; line-height: 1.45; font-weight: 400; opacity: 0.7;
  }
  .proof-copy strong { color: var(--orange); font-weight: 700; opacity: 1; }

  /* ── RIGHT COLUMN ── */
  .hero-right {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    height: 480px;
  }
  .polaroid {
    position: absolute;
    background: #fff;
    padding: 14px 14px 48px;
    box-shadow: 0 8px 32px rgba(115,82,64,.15), 0 2px 8px rgba(0,0,0,.08);
    width: clamp(160px, 16vw, 250px);
    font-family: var(--serif);
    font-style: italic;
    font-size: .85rem;
    color: var(--brown);
    text-align: center;
    cursor: default;
    transition: transform .3s;
  }
  .polaroid:hover { z-index: 10; transform: scale(1.04) rotate(0deg) !important; }
  .pol-3:hover { transform: scale(1.04) rotate(0deg) !important; }
  .polaroid-img {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    border-radius: 2px;
    margin-bottom: 10px;
    background: var(--butter);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    overflow: hidden;
  }
  .polaroid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pol-1 { transform: rotate(-6deg); top: 0px; left: 25px; z-index: 3; }
  .pol-2 { transform: rotate(4deg); top: 60px; right: 15px; z-index: 2; }
  .pol-3 { transform: rotate(-2deg); bottom: -10px; left: 30%; z-index: 1; }

  @keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-10px) rotate(4deg); }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
  }

  /* ── TICKER BAND ── */
  .ticker {
    background: var(--butter);
    padding: 8px 0; overflow: hidden; position: relative; z-index: 10;
  }
  .ticker-track {
    display: flex; white-space: nowrap; width: max-content;
    animation: scroll 30s linear infinite;
  }
  .ticker-track span {
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 0 20px; opacity: .9;
  }
  @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ── VIBE STATEMENT ── */
  .vibe {
    background: url('../backgrounds/vibe_background.png') center/cover no-repeat;
    min-height: clamp(500px, 60vh, 800px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* big faded background word */
  .vibe::before {
    content: 'bestie';
    position: absolute;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 400;
    color: rgba(255,255,255,0.04);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.03em;
  }
 
  .vibe-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative; z-index: 1;
  text-align: center;
  padding: clamp(90px, 8vw, 140px) 48px;
  }
 
  .vibe-text {}
 
  /* big serif italic quote */
  .vibe-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1.15;
    color: #868a12;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
  }
  .vibe-quote em {
    font-style: normal;
    background: rgba(255, 244, 197, 0.5); /* that's --butter at 50% opacity */
    color: #868a12;
    padding: 0 8px 2px;
    border-radius: 4px;
  }
 
  /* sticker floating near the shapes */
  .vibe-sticker {
    position: absolute;
    pointer-events: none;
  }
  .vs-1 { width: clamp(100px,10vw,150px); height: clamp(100px,10vw,150px); top: 10%; right: 2%; transform: rotate(10deg); opacity: 0.9; }
  .vs-2 { width: clamp(100px,10vw,150px); height: clamp(100px,10vw,150px); bottom: 8%; left: 6%;  transform: rotate(-8deg); opacity: 0.85; }
  .vs-1 img, .vs-2 img { width: 100%; height: 100%; object-fit: contain; }
  .vs-1 img { animation: wiggle 3s ease-in-out infinite; }
  .vs-2 img { animation: wiggle 3.5s ease-in-out infinite; animation-delay: 0.5s; }
  
  @keyframes wiggle {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%       { transform: rotate(8deg) translateY(-30px); }
  }
  /* scroll-reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.12s; }
  .reveal-delay-2 { transition-delay: 0.24s; }
  .reveal-delay-3 { transition-delay: 0.36s; }

  /* ── COURSE SECTION ── */
  .course {
    background: var(--blush);
    padding: 110px 48px 120px;
    position: relative;
    overflow: visible;
    text-align: center;
  }

  .course-wave {
    display: block;
    position: absolute;
    top: -58px; left: 0;
    width: 100%; height: 60px;
    pointer-events: none;
  }

  .course-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative; z-index: 1;
  }

  .course-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.55);
    border-radius: 100px;
    padding: 6px 18px; margin-bottom: 28px;
    font-size: .75rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; color: var(--brown);
    border: 1.5px solid rgba(115,82,64,.15);
  }

  .course-heading {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: var(--brown);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
  }
  .course-heading em { font-style: italic; color: var(--olive); }

  .course-subtext {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.75; font-weight: 500;
    color: var(--brown); opacity: 0.75;
    max-width: 580px; margin: 0 auto 52px;
  }

  .course-pills {
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: center; margin-bottom: 52px;
  }
  .course-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(115,82,64,.14);
    border-radius: 100px; padding: 10px 22px;
    font-size: clamp(0.82rem, 1.2vw, 0.95rem);
    font-weight: 700; color: var(--brown);
    transition: background .2s, transform .2s;
  }
  .course-pill:hover { background: #fff; transform: translateY(-2px); }

  .course-cta-row {
    display: flex; align-items: center; gap: 24px;
    flex-wrap: wrap; justify-content: center;
  }
  .btn-course {
    background: var(--butter); color: var(--brown);
    padding: 16px 36px; border-radius: 100px;
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    font-weight: 800; letter-spacing: .05em;
    text-decoration: none; display: inline-block;
    text-transform: uppercase;
    box-shadow: 3px 4px 0 rgba(115,82,64,.35);
    transition: transform .2s, box-shadow .2s, background .2s;
    white-space: nowrap;
    border: 1.5px solid var(--brown);
  }
  .btn-course:hover { transform: translate(-2px,-2px); box-shadow: 5px 6px 0 rgba(115,82,64,.4); background: rgba(255,244,197,0.95); }

  .course-sticker { position: absolute; pointer-events: none; z-index: 2; }
  .cs-1 { width: clamp(100px,10vw,150px); height: clamp(100px,10vw,150px); top: 50%; right: 4%; transform: translateY(-50%); }
  .cs-2 { width: clamp(100px,10vw,150px); height: clamp(100px,10vw,150px); bottom: 20%; left: 3%; }
  .cs-1 img, .cs-2 img {
    width: 100%; height: 100%; object-fit: contain;
    animation: wiggle 3.5s ease-in-out infinite;
  }
  .cs-2 img { animation-delay: 1.2s; }

  /* ── ABOUT SECTION ── */
  .about {
    background: var(--butter);
    padding: 60px 48px 100px;  
    position: relative;
    overflow: hidden;
  }
  .about::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
  }
  .about-inner {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center;
    position: relative; z-index: 1;
  }
  .about-visual {
    position: relative; display: flex;
    align-items: center; justify-content: center;
    min-height: 500px;
  }
  .about-photo {
    width: 300px; height: 380px;
    background: linear-gradient(145deg, var(--blush), var(--periwinkle));
    border-radius: 180px 180px 140px 140px;
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(115,82,64,.18);
    border: 4px solid #fff;
    position: relative; z-index: 2; overflow: hidden;
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .about-fact-card {
    position: absolute; background: #fff; border-radius: 14px;
    padding: 12px 16px; font-size: 0.8rem; font-weight: 700; color: var(--brown);
    box-shadow: 2px 2px 0 rgba(115,82,64,.1);
    display: flex; align-items: center; gap: 8px; white-space: nowrap; z-index: 4;
  }
  .about-fact-card .afc-icon { font-size: 1.1rem; }
  .afc-1 { bottom: 30px; left: 20px; transform: rotate(-3deg); }
  .afc-2 { top: 30px;   left: 20px; transform: rotate(2deg); }
  .afc-3 { bottom: 80px; right: 20px; transform: rotate(4deg); }

  .about-sticker { position: absolute; pointer-events: none; z-index: 3; }
  .ab-s1 { width: 90px; height: 90px; top: 10px; right: -10px; transform: rotate(15deg); }
  .ab-s2 { width: 110px; height: 110px; bottom: 60px; left: -20px; transform: rotate(-10deg); }
  .ab-s1 img, .ab-s2 img { width: 100%; height: 100%; object-fit: contain; }

  .about-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.12; color: var(--brown); margin-bottom: 10px;
  }
  .about-heading em { font-style: italic; color: var(--cherry); }
  .about-body {
    font-size: 0.97rem; line-height: 1.8; color: var(--brown); opacity: 0.85; margin-bottom: 14px;
  }
  .about-body strong { font-weight: 800; }

  .about-cta {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .btn-about {
    background: var(--periwinkle); color: var(--brown);
    padding: 14px 28px; border-radius: 100px;
    font-size: 0.86rem; font-weight: 800; letter-spacing: .04em;
    text-decoration: none; display: inline-block; text-transform: uppercase;
    box-shadow: 3px 3px 0 rgba(115,82,64,.3);
    transition: transform .2s, box-shadow .2s, background .2s; white-space: nowrap;
  }
  .btn-about:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(115,82,64,.35); background: var(--cherry); color: var(--cream); }
  .about-ig-note {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brown);
    opacity: 0.6;
  }
  /* ── OFFERS SECTION ── */
  .offers {
    background: url('../backgrounds/offer_background.png') center/cover no-repeat;
    padding: 90px 48px 100px;
    position: relative;
    overflow: hidden;
  }

  .offers-inner {
    max-width: 1080px; margin: 0 auto;
    position: relative; z-index: 1;
  }

  .offers-header {
    text-align: center; margin-bottom: 56px;
  }
  .offers-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blush); border-radius: 100px;
    padding: 6px 16px; margin-bottom: 20px;
    font-size: .75rem; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; color: var(--brown);
    border: 1.5px solid rgba(115,82,64,.15);
  }
  .offers-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.12; color: var(--brown);
  }
  .offers-heading em { font-style: italic; color: var(--cherry); }

  /* 3-card grid */
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .offer-card {
    border-radius: 24px;
    padding: 40px 32px 36px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    position: relative; overflow: hidden;
    border: 1.5px solid rgba(115,82,64,.1);
    transition: transform .25s, box-shadow .25s;
    min-height: 480px;
  }
  .offer-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(115,82,64,.13); }

  /* card colours */
  .offer-card-1 { background: var(--blush); }
  .offer-card-2 { background: var(--butter); }
  .offer-card-3 { background: var(--periwinkle); }

 .offer-type {
    font-size: 0.7rem; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: var(--brown); opacity: 0.55;
    margin-bottom: 10px;
  }

  .offer-name {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--olive); line-height: 1.2;
    margin-bottom: 12px;
  }

  .offer-desc {
    font-size: 0.9rem; line-height: 1.65;
    color: var(--brown);
    margin-bottom: 28px; flex: 1;
  }

  .offer-sticker-img {
    width: 120px; height: 120px;
    object-fit: contain;
    margin-bottom: 24px;
  }

  /* status badge */
  .offer-status {
    display: inline-block;
    border-radius: 100px; padding: 6px 18px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: .06em;
    text-transform: uppercase; text-decoration: none;
    transition: transform .18s, box-shadow .18s;
    white-space: nowrap;
  }
  .status-live {
    background: var(--brown); color: var(--cream);
    box-shadow: 3px 3px 0 rgba(115,82,64,.3);
  }
  .status-live:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(115,82,64,.35); background: var(--cherry); }
  .status-soon {
    background: rgba(115,82,64,.1); color: var(--brown);
    border: 1.5px dashed rgba(115,82,64,.3);
    cursor: default;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    nav {
      padding: 12px 18px;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .nav-links { display: none; }
    .nav-pill {
      width: auto;
      flex-shrink: 0;
      padding: 8px 16px;
      font-size: .75rem;
      text-align: center;
      white-space: nowrap;
    }
    .hero {
      grid-template-columns: 1fr;
      padding: 100px 20px 60px;
      justify-items: center;
      align-items: start;
    }
    .hero-left {
      padding: 20px 0 40px;
      order: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
    }
    .hero-right {
      width: min(100%, 420px);
      max-width: 100%;
      height: auto;
      padding: 40px 0 20px;
      order: 1;
      min-height: 380px;
    }
    .pol-1 { left: 15%; }
    .pol-2 { right: 15%; }
    .pol-3 { left: 25%; }
    .vibe-inner { padding: clamp(70px, 10vw, 90px) 14px; }
    .course { padding: 80px 24px 80px; }
    .course-subtext { max-width: 100%; }
    .proof-strip { flex-direction: column; align-items: flex-start; gap: 10px; }
    .cs-2 { z-index: 0; }
    .about { padding: 70px 24px; }
    .about-inner { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { min-height: 380px; }
    .afc-1 { left: 0; }
    .afc-2 { left: 0; }
    .afc-3 { right: 0; }
    .offers { padding: 70px 24px; }
    .offers-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .subtext {
      max-width: 100%;
      padding: 0 8px;
    }
    .btn-primary {
      width: auto;
      white-space: nowrap; /* change from normal to nowrap */
      text-align: center;
      padding: 14px 24px;
      font-size: 0.8rem;
    }
    .hero-btns {
      justify-content: center;
      width: 100%;
    }

    .love-notes {
      min-height: auto;
      padding: 60px 0;
    }
    .ln-container {
      gap: 32px;
      padding: 0 20px;
    }
    .ln-card {
      padding: 28px 20px;
      max-width: 100%;
    }
    .ln-arrow {
      top: 40px;
      transform: none;
    }
    .ln-prev { left: 12px; }
    .ln-next { right: 12px; }
    .ln-label {
      font-size: 0.65rem;
    }
    .ln-title { font-size: 1rem; }
    .ln-quote { font-size: 0.86rem; }
  }

  /* ── LOVE NOTES (TESTIMONIALS) ── */
  .love-notes {
    position: relative;
    min-height: 750px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ln-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    width: 100%;
    padding: 60px 40px;
    position: relative;
    z-index: 2;
  }

  /* full bleed background image */
  .love-notes-bg {
    position: absolute; inset: 0;
    background: url('../backgrounds/lovenotes_background.png') center/cover no-repeat;
    z-index: 0;
  }
  /* dark overlay so text is readable */
  .love-notes-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(80,40,20,0.1);
  }

  /* arrow buttons */
  .ln-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: #b2caff;
    color: rgb(255, 255, 255); font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; backdrop-filter: blur(6px);
    transition: background .2s, transform .2s;
    border: none;
    z-index: 10;
    -webkit-backdrop-filter: blur(6px);
  }
  .ln-arrow:hover { background: #fff4c5; color: #868a12; transform: translateY(-50%) scale(1.08); }
  .ln-prev { left: 32px; }
  .ln-next { right: 32px; }

  /* card */
  .ln-card-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .ln-card {
    background: #eff4ff;
    border-radius: 8px 32px 8px 32px;
    padding: 44px 52px 36px;
    max-width: 560px; width: 100%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    position: relative;
    /* slide transition */
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .ln-card.hidden {
    opacity: 0; transform: translateY(16px); pointer-events: none;
    position: absolute;
  }

  .ln-quote-mark {
    font-family: var(--serif);
    font-size: 4rem; line-height: 0.5;
    color: #b2caff;
    display: block; margin-bottom: 16px;
  }

  .ln-quote {
    font-family: var(--sans);
    font-size: 1rem; line-height: 1.7;
    color: var(--brown); margin-bottom: 24px;
  }
  .ln-quote strong { font-style: normal; font-weight: 800; color: var(--brown); }

  .ln-handle {
    font-size: 0.78rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: var(--brown); opacity: 0.5;
  }

  /* dots indicator */
  .ln-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .ln-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer; transition: background .2s, transform .2s;
    border: none; padding: 0;
  }
  .ln-dot.active { background: #fff; transform: scale(1.3); }

  /* button */
  .ln-button-wrap {
    display: flex;
    justify-content: center;
  }


  /* section label */
  .ln-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff8ee;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 100px; padding: 6px 18px;
    font-size: .72rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; color: #bc2d30;
    backdrop-filter: blur(6px); white-space: nowrap;
  }

  .ln-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--cherry);
    position: relative;
    overflow: hidden;
  }

  /* top wave — cream/lovenotes bg drips into cherry footer */
  .footer-wave {
    display: block;
    position: absolute;
    bottom: 0px; left: 0;
    width: 100%; height: 60px;
    pointer-events: none; z-index: 1;
  }

  /* subtle dot texture */
  footer::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  .footer-top {
    padding: 80px 48px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    max-width: 1080px; margin: 0 auto;
    position: relative; z-index: 2;
  }

  /* col 1 — brand */
  .footer-logo {
    font-family: var(--serif);
    font-size: 1.6rem; font-style: italic;
    color: #fff; display: block; margin-bottom: 14px;
    letter-spacing: 0.01em;
  }
  .footer-tagline {
    font-size: 0.9rem; line-height: 1.75;
    color: rgba(255,255,255);
    max-width: 260px; margin-bottom: 28px;
  }
  .footer-socials { display: flex; gap: 10px; }
  .footer-social-btn {
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 100px; padding: 9px 20px;
    font-size: 0.75rem; font-weight: 800; letter-spacing: .07em;
    text-transform: uppercase; text-decoration: none;
    color: #fff; transition: background .2s, transform .2s;
    white-space: nowrap;
  }
  .footer-social-btn:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

  /* col 2 — nav links */
  .footer-nav-title {
    font-size: 1rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: rgba(255,255,255);
    margin-bottom: 18px;
  }
  .footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-nav-links a {
    font-size: 0.9rem; font-weight: 600;
    color: rgba(255,255,255); text-decoration: none;
    transition: color .2s;
  }
  .footer-nav-links a:hover { color: #fff; }

  /* divider */
  .footer-divider {
    max-width: 1080px; margin: 0 auto;
    border: none; border-top: 1px solid rgba(255,255,255,0.25);
    position: relative; z-index: 2;
  }

  /* bottom bar */
  .footer-bottom {
    max-width: 1080px; margin: 0 auto;
    padding: 24px 48px 36px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
    position: relative; z-index: 2;
  }
  .footer-copy {
    font-size: 0.78rem; color: rgba(255,255,255); font-weight: 500;
  }
  .footer-made {
    font-family: var(--serif); font-style: italic;
    font-size: 0.82rem; color: rgba(255,255,255);
  }

  /* footer stickers */
  .footer-sticker {
    position: absolute; pointer-events: none; z-index: 2;
  }
  .ft-s1 { width: 100px; height: 100px; bottom: 20px; left: 3%; transform: rotate(-10deg); opacity: 0.85; }
  .ft-s2 { width: 175px; height: 175px; top: 30px; right: 4%; transform: rotate(8deg); opacity: 0.85; }
  .ft-s1 img, .ft-s2 img { width: 100%; height: 100%; object-fit: contain; }

  /* responsive */
  @media (max-width: 860px) {
    .footer-top {  grid-template-columns: 1fr 1fr; }
    .footer-bottom { padding: 20px 24px 32px; flex-direction: column; text-align: center; }
    .ft-s1, .ft-s2 { display: none; }
  }

  #fd-form-69e5b37b0b288087539e4e67 input {
    border-radius: 100px !important;
  }
  #fd-form-69e5b37b0b288087539e4e67 button {
    border-radius: 100px !important;
    background: #fff !important;
    color: var(--cherry) !important;
  }

  .callout-danger {
    background: #fff7f7;
    border-left: 4px solid #868a12;
    border-radius: 0 12px 12px 0;
    padding: 16px 22px;
    margin: 18px 0;
    font-size: .93rem;
    font-weight: 700;
    line-height: 1.7;
    color: #7a2222;
    letter-spacing: .03em;
  }
