*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --deep-calm: #567195;
    --soft-sky: #7ca36c;
    --warm-ember: #df207c;
    --parchment: #F8F4F0;
    --charcoal: #2C2C2C;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Manrope', sans-serif;
    background: var(--parchment);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.6;
  }

  h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    line-height: 1.25;
  }

  /* ── NAV ── */
  nav {
    background: var(--deep-calm);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  nav ul a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }

  nav ul a:hover { color: #fff; }

  .nav-cta {
    background: var(--warm-ember);
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    font-weight: 600 !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.88; }

  /* ── HERO: SPLIT ── */
  .hero {
    display: flex;
    min-height: 480px;
    max-height: 480px;
    overflow: hidden;
  }

  .hero-text {
    flex: 0 0 50%;
    background: linear-gradient(135deg, #F8F4F0 0%, rgba(86,113,149,0.08) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6% 4rem 8%;
  }

  .hero-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--deep-calm);
    margin-bottom: 1.25rem;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-style: italic;
  }

  .hero-text p {
    color: #555;
    font-size: 1rem;
    font-weight: 300;
    max-width: 400px;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .btn-primary {
    display: inline-block;
    background: var(--warm-ember);
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 2rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 2px;
    transition: opacity 0.2s, transform 0.2s;
    align-self: flex-start;
  }

  .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

  .hero-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: #999;
    font-weight: 400;
  }

  .hero-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
  }

  .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(86,113,149,0.15) 0%, rgba(223,32,124,0.1) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  /* ── FEATURE ROW ── */
  .features {
    background: var(--parchment);
    padding: 5rem 5%;
  }

  .features-intro {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .features-intro h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    color: var(--charcoal);
    margin-bottom: 0.75rem;
  }

  .features-intro p {
    max-width: 540px;
    margin: 0 auto;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1080px;
    margin: 0 auto;
  }

  .feature-card {
    background: #fff;
    border-radius: 4px;
    padding: 2.25rem 1.75rem;
    border-top: 3px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(86,113,149,0.12);
  }

  .feature-card:nth-child(1) { border-top-color: var(--deep-calm); }
  .feature-card:nth-child(2) { border-top-color: var(--soft-sky); }
  .feature-card:nth-child(3) { border-top-color: var(--warm-ember); }

  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
  }

  .icon-blue { background: rgba(86,113,149,0.12); }
  .icon-green { background: rgba(124,163,108,0.15); }
  .icon-pink { background: rgba(223,32,124,0.10); }

  .feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--charcoal);
  }

  .feature-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
  }

  /* ── ALTERNATING SECTION ── */
  .alt-section {
    background: #fff;
    padding: 5rem 5%;
  }

  .alt-inner {
    display: flex;
    align-items: center;
    gap: 5%;
    max-width: 1080px;
    margin: 0 auto;
  }

  .alt-image {
    flex: 0 0 47%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }

  .alt-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
  }

  .alt-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--deep-calm);
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 2px;
  }

  .alt-text {
    flex: 1;
  }

  .alt-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft-sky);
    margin-bottom: 1rem;
  }

  .alt-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--charcoal);
    margin-bottom: 1.25rem;
  }

  .alt-text h2 em {
    color: var(--deep-calm);
    font-style: italic;
  }

  .alt-text p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 1rem;
  }

  .alt-points {
    list-style: none;
    margin: 1.5rem 0 2rem;
  }

  .alt-points li {
    font-size: 0.88rem;
    color: #555;
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
    border-bottom: 1px solid #f0ece8;
  }

  .alt-points li:last-child { border-bottom: none; }

  .alt-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--soft-sky);
  }

  .btn-outline {
    display: inline-block;
    border: 2px solid var(--deep-calm);
    color: var(--deep-calm);
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
  }

  .btn-outline:hover {
    background: var(--deep-calm);
    color: #fff;
  }

  /* ── QUOTE BAND ── */
  .quote-band {
    background: var(--deep-calm);
    padding: 4rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-band::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 4%;
    font-family: 'Lora', serif;
    font-size: 12rem;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    pointer-events: none;
  }

  .quote-band blockquote {
    font-family: 'Lora', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    font-style: italic;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 1.25rem;
    line-height: 1.55;
    position: relative;
    z-index: 1;
  }

  .quote-band cite {
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--soft-sky);
    position: relative;
    z-index: 1;
  }

  /* ── WAITLIST SECTION ── */
  .waitlist {
    background: var(--parchment);
    padding: 5rem 5%;
  }

  .waitlist-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .waitlist-inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--charcoal);
    margin-bottom: 0.75rem;
  }

  .waitlist-inner p {
    color: #666;
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  .waitlist-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .waitlist-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #d0cbc5;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
  }

  .waitlist-form input[type="email"]:focus {
    border-color: var(--deep-calm);
  }

  .waitlist-form button {
    background: var(--warm-ember);
    color: #fff;
    border: none;
    padding: 0.85rem 1.75rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
  }

  .waitlist-form button:hover { opacity: 0.88; }

  .waitlist-disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #999;
    line-height: 1.6;
  }

  .waitlist-confirmation {
    background: rgba(124,163,108,0.15);
    border: 1.5px solid var(--soft-sky);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    color: var(--charcoal);
    font-size: 0.93rem;
    line-height: 1.7;
    display: none;
    text-align: centre;
  }

  .waitlist-error {
    margin-top: 0.75rem;
    color: var(--warm-ember);
    font-size: 0.85rem;
    display: none;
  }

  /* ── CONTACT SECTION ── */
  .contact-section {
    background: #fff;
    padding: 5rem 5%;
  }

  .contact-inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .contact-inner .section-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--soft-sky);
    margin-bottom: 1rem;
  }

  .contact-inner h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--charcoal);
    margin-bottom: 0.75rem;
  }

  .contact-inner > p {
    color: #666;
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

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

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid #d0cbc5;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    background: var(--parchment);
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--deep-calm);
  }

  .contact-form textarea {
    min-height: 140px;
  }

  .contact-form button {
    align-self: flex-start;
    background: var(--warm-ember);
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .contact-form button:hover { opacity: 0.88; }

  .contact-confirmation {
    background: rgba(124,163,108,0.15);
    border: 1.5px solid var(--soft-sky);
    border-radius: 4px;
    padding: 1.5rem;
    color: var(--charcoal);
    font-size: 0.93rem;
    line-height: 1.7;
    display: none;
  }

  .contact-error {
    color: var(--warm-ember);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    padding: 3.5rem 5% 2rem;
    color: rgba(255,255,255,0.7);
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 300px;
    color: rgba(255,255,255,0.6);
  }

  .footer-col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 0.5rem;
  }

  .footer-col ul a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
  }

  .footer-col ul a:hover { color: #fff; }

  .footer-col address {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
  }

  .footer-col address a {
    color: var(--soft-sky);
    text-decoration: none;
  }

  .footer-crisis {
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--warm-ember);
    padding: 0.85rem 1.1rem;
    border-radius: 0 2px 2px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
    line-height: 1.55;
  }

  .footer-crisis a {
    color: rgba(255,255,255,0.85);
    text-decoration: underline;
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
  }

  .footer-legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-legal-links a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

  .sohosumo-credit {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.28);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .sohosumo-credit:hover { color: rgba(255,255,255,0.5); }

  /* ── COOKIE BANNER ── */
  #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 999;
  }

  #cookie-banner p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    flex: 1;
    min-width: 200px;
  }

  #cookie-banner p a {
    color: var(--soft-sky);
    text-decoration: underline;
  }

  .cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .cookie-btn-accept {
    background: var(--warm-ember);
    color: #fff;
    border: none;
    padding: 0.55rem 1.25rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .cookie-btn-accept:hover { opacity: 0.88; }

  .cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.55rem 1.25rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }

  .cookie-btn-decline:hover {
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.85);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .feature-grid { grid-template-columns: 1fr; max-width: 480px; }
    .alt-inner { flex-direction: column; }
    .alt-image img { height: 280px; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 680px) {
    .hero { flex-direction: column; max-height: none; }
    .hero-text { padding: 3rem 7%; }
    .hero-image { min-height: 260px; flex: none; }
    nav ul { display: none; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  }