/*
Theme Name: Get komplete
Theme URI: https://wordpress.org/themes/getkomplete/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Get komplete brings your site to life with header video and immersive featured images. With a focus on business sites, it features multiple sections on the front page as well as widgets, navigation and social menus, a logo, and more. Personalize its asymmetrical grid with a custom color scheme and showcase your multimedia content with post formats. Our default theme for 2017 works great in many languages, for any abilities, and on any device.
Version: 4.0
Tested up to: 6.9
Requires at least: 4.7
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: getkomplete
Tags: one-column, two-columns, right-sidebar, flexible-header, accessibility-ready, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Accessibility
3.0 Alignments
4.0 Clearings
5.0 Typography
6.0 Forms
7.0 Formatting
8.0 Lists
9.0 Tables
10.0 Links
11.0 Featured Image Hover
12.0 Navigation
13.0 Layout
   13.1 Header
   13.2 Front Page
   13.3 Regular Content
   13.4 Posts
   13.5 Pages
   13.6 Footer
14.0 Comments
15.0 Widgets
16.0 Media
   16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 Normalize
Styles based on Normalize v5.0.0 @link https://github.com/necolas/normalize.css
--------------------------------------------------------------*/


/* =========================================
     DESIGN TOKENS
  ========================================== */
  :root {
    /* Brand colors — Option A from brief */
    --bg:           #F7F5F0;  /* primary off-white */
    --bg-pure:      #FFFFFF;
    --ink:          #1F1F1B;  /* rich charcoal */
    --ink-soft:     #4A4A43;
    --ink-muted:    #7C7A6E;
    --olive:        #445C46;  /* brand accent */
    --olive-deep:   #2F4231;  /* hover */
    --sage:         #A8B59A;  /* secondary */
    --sage-soft:    #D6DCCB;
    --terracotta:   #B86A4B;  /* warm accent — use sparingly */
    --stone:        #D9D2C7;  /* premium neutral */
    --espresso:     #3A2E2A;
    --line:         rgba(31,31,27,0.12);
    --line-soft:    rgba(31,31,27,0.06);

    /* Typography */
    --font-display: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:    'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif:   'Instrument Serif', Georgia, serif;

    /* Spacing scale (per brief) */
    --section-y:    140px;
    --section-y-sm: 96px;

    /* Radii */
    --r-card: 22px;
    --r-pill: 999px;
  }

  /* =========================================
     RESET & BASE
  ========================================== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

  body {
    font-family: var(--font-body);
    font-size: 19px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  ::selection { background: var(--olive); color: var(--bg); }

  /* Container */
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

  /* Section base */
  section { padding: var(--section-y) 0; position: relative; }

  /* =========================================
     TYPOGRAPHY
  ========================================== */
  .eyebrow {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 18px;
    color: var(--olive);
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--olive);
    display: inline-block;
  }

  .h-display {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .h-section {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.018em;
  }

  .h-card {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .lede {
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 60ch;
  }

  em.italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

  /* =========================================
     BUTTONS
  ========================================== */
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    height: 58px; padding: 0 32px;
    font-size: 17px; font-weight: 600;
    border-radius: var(--r-pill);
    transition: all 280ms cubic-bezier(.2,.8,.2,1);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--olive);
    color: var(--bg);
  }
  .btn-primary:hover {
    background: var(--olive-deep);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -12px rgba(68,92,70,0.45);
  }
  .btn-primary .arrow { transition: transform 280ms cubic-bezier(.2,.8,.2,1); }
  .btn-primary:hover .arrow { transform: translateX(4px); }

  .btn-ghost {
    color: var(--ink);
    border: 1px solid var(--line);
    background: transparent;
  }
  .btn-ghost:hover { border-color: var(--ink); }

  .btn-light {
    background: var(--bg);
    color: var(--ink);
  }
  .btn-light:hover { background: var(--bg-pure); transform: translateY(-1px); }

  /* =========================================
     ANNOUNCEMENT BAR
  ========================================== */
  .announce {
     
    background: var(--olive);
    color: var(--bg);
    text-align: center;
    padding: 11px 24px;
    font-size: 14px;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 60;
  }
  .announce strong { font-weight: 600; }
  .announce em { font-family: var(--font-serif); font-style: italic; opacity: 0.8; margin: 0 10px; }
  .announce a { border-bottom: 1px solid rgba(247,245,240,0.4); padding-bottom: 1px; }
  .announce a:hover { border-bottom-color: var(--bg); }

  /* =========================================
     NAV
  ========================================== */
  nav.top {
    position: sticky; top: 0;
    background: rgba(247,245,240,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-soft);
    z-index: 50;
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 76px;
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
  }
  .logo-mark {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--bg);
    display: grid; place-items: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 2px;
  }
  .nav-links {
    display: flex; gap: 36px; list-style: none;
    font-size: 15px;
    color: var(--ink-soft);
  }
  .nav-links a { transition: color 200ms; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: flex; gap: 12px; align-items: center; }
  .nav-cta .btn { height: 44px; padding: 0 22px; font-size: 14.5px; }

  /* =========================================
     HERO
  ========================================== */
  .hero {
    padding: 80px 0 var(--section-y);
    position: relative;
    margin-bottom: -55px;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-copy { max-width: 600px; }
  .hero-copy .eyebrow { margin-bottom: 28px; }
  .hero h1 { margin-bottom: 32px; }
  .hero h1 .accent { color: var(--olive); }
  .hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

  .hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 40px;
    max-width: 52ch;
  }
  .hero-cta-row {
    display: flex; gap: 16px; align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .micro-trust {
    font-size: 13.5px;
    color: var(--ink-muted);
    font-family: var(--font-serif);
    font-style: italic;
  }
  .trust-strip {
    display: flex; gap: 28px; flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--line-soft);
  }
  .trust-item {
    font-size: 14px;
    color: #000000;
    display: flex; align-items: center; gap: 8px;
    letter-spacing: 0.02em;
  }
  .trust-item svg { color: var(--olive); flex-shrink: 0; }

  /* Hero visual */
  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 640px;
  }
  .hero-image {
    width: 100%; height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--stone);
    position: relative;
  }
  .hero-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1200ms cubic-bezier(.2,.8,.2,1);
  }
  .hero-visual:hover .hero-image img { transform: scale(1.03); }

  /* Floating protein badge — signature element */
  .protein-badge {
    position: absolute;
    background: var(--bg);
    border-radius: 50%;
    width: 132px; height: 132px;
    display: grid; place-items: center;
    text-align: center;
    box-shadow: 0 24px 48px -16px rgba(31,31,27,0.18);
    border: 1px solid var(--line-soft);
    font-family: var(--font-display);
  }
  .protein-badge.b1 {
    top: 32px; left: -32px;
    transform: rotate(-6deg);
  }
  .protein-badge .num {
    font-size: 36px; font-weight: 700;
    color: var(--olive);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .protein-badge .lbl {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 13px;
    color: var(--ink-soft);
    margin-top: 4px;
    letter-spacing: 0.02em;
  }

  /* Editorial caption tag on hero image */
  .img-caption {
    position: absolute;
    bottom: 24px; left: 24px;
    background: rgba(31,31,27,0.85);
    backdrop-filter: blur(8px);
    color: var(--bg);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-size: 13px;
    letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 10px;
  }
  .img-caption .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--terracotta);
  }

  /* Marquee strip below hero */
  .marquee-strip {
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    padding: 22px 0;
    overflow: hidden;
    background: var(--bg);
  }
  .marquee {
    display: flex; gap: 64px;
    white-space: nowrap;
    animation: scroll 38s linear infinite;
  }
  .marquee span {
    font-family: var(--font-serif);
    font-style: normal;
    font-size: 22px;
    color: var(--ink-soft);
    display: inline-flex; align-items: center; gap: 64px;
  }
  .marquee span::after {
    content: "✦"; color: var(--olive); font-style: normal;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* =========================================
     FRICTION SECTION
  ========================================== */
  .friction {
    background: var(--bg-pure);
  }
  .friction-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: end;
  }
  .friction-head h2 { max-width: 14ch; }
  .friction-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .friction-card {
    background: var(--bg-pure);
    padding: 48px 32px 56px;
    transition: background 320ms;
    position: relative;
  }
  .friction-card:hover { background: var(--bg); }
  .friction-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--olive);
    margin-bottom: 56px;
    display: flex; align-items: center; gap: 10px;
  }
  .friction-num::after {
    content: ""; flex: 1; height: 1px; background: var(--line);
  }
  .friction-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.012em;
    margin-bottom: 16px;
  }
  .friction-card p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .friction-close {
    margin-top: 80px;
    text-align: center;
  }
  .friction-close .statement {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
    color: var(--ink);
    max-width: 22ch;
    margin: 0 auto 40px;
  }

  /* =========================================
     HOW IT WORKS — 3 STEPS
  ========================================== */
  .how {
    background: var(--bg);
  }
  .how-head {
    text-align: center;
    margin-bottom: 96px;
  }
  .how-head .eyebrow { margin-bottom: 24px; }
  .how-head h2 { max-width: 18ch; margin: 0 auto 24px; }
  .how-head p { margin: 0 auto; }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
  }
  .step { position: relative; }
  .step-image {
    aspect-ratio: 5/6;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    background: var(--stone);
    position: relative;
  }
  .step-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 900ms cubic-bezier(.2,.8,.2,1);
  }
  .step:hover .step-image img { transform: scale(1.04); }
  .step-num {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--bg);
    color: var(--olive);
    padding: 8px 16px;
    border-radius: var(--r-pill);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
  }
  .step h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.012em;
    margin-bottom: 14px;
  }
  .step p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.55;
  }
  .how-cta { text-align: center; margin-top: 80px; }

  /* =========================================
     PILLARS — DARK SECTION
  ========================================== */
  .pillars {
    background: var(--olive);
    color: var(--bg);
    overflow: hidden;
    position: relative;
  }
  .pillars::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top right, rgba(255,255,255,0.06), transparent 60%);
    pointer-events: none;
  }
  .pillars .eyebrow { color: var(--sage); }
  .pillars .eyebrow::before { background: var(--sage); }
  .pillars-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 96px;
  }
  .pillars-head h2 { color: var(--bg); max-width: 14ch; }
  .pillars-head p { color: rgba(247,245,240,0.75); }

  .pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(247,245,240,0.18);
    border-top: 1px solid rgba(247,245,240,0.18);
    border-bottom: 1px solid rgba(247,245,240,0.18);
  }
  .pillar {
    background: var(--olive);
    padding: 56px 32px 64px;
    transition: background 400ms;
  }
  .pillar:hover { background: var(--olive-deep); }
  .pillar-num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 32px;
    color: var(--sage);
    margin-bottom: 80px;
    line-height: 1;
  }
  .pillar h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--bg);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .pillar p {
    font-size: 15.5px;
    color: rgba(247,245,240,0.7);
    line-height: 1.55;
  }
  .pillar-tag {
    margin-top: 28px;
    display: inline-block;
    font-size: 12.5px;
    color: var(--terracotta);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .pillars-bridge {
    margin-top: 96px;
    text-align: center;
  }
  .pillars-bridge .statement {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.4;
    color: var(--bg);
    max-width: 32ch;
    margin: 0 auto 40px;
  }

  /* =========================================
     WEEKLY MENU
  ========================================== */
  .menu {
    background: var(--bg-pure);
  }
  .menu-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }
  .menu-head .lede { margin-top: 16px; }
  .menu-head .badge-strip {
    display: inline-flex;
    background: var(--sage-soft);
    color: var(--olive-deep);
    padding: 8px 18px;
    border-radius: var(--r-pill);
    font-size: 13px;
    letter-spacing: 0.04em;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .menu-head .badge-strip svg { color: var(--olive); }

  .week-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 56px;
  }
  .meal-card {
    background: var(--bg);
    border-radius: var(--r-card);
    overflow: hidden;
    transition: transform 320ms cubic-bezier(.2,.8,.2,1), box-shadow 320ms;
    cursor: pointer;
  }
  .meal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -20px rgba(31,31,27,0.18);
  }
  .meal-day {
    padding: 16px 20px 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .meal-image {
    aspect-ratio: 1/1;
    margin: 12px 16px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--stone);
    position: relative;
  }
  .meal-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.8,.2,1);
  }
  .meal-card:hover .meal-image img { transform: scale(1.06); }
  .meal-protein-pill {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--bg);
    color: var(--olive);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  .meal-info {
    padding: 4px 20px 24px;
  }
  .meal-info h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .meal-meta {
    font-size: 13px;
    color: var(--ink-muted);
    display: flex; gap: 8px; align-items: center;
  }
  .meal-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-muted); }

  .menu-callouts {
    display: flex; justify-content: center;
    gap: 36px; flex-wrap: wrap;
    padding: 28px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 56px;
  }
  .menu-callouts .trust-item { font-size: 15px; color: var(--ink); }

  .menu-pull {
    text-align: center;
    margin-bottom: 48px;
  }
  .menu-pull .quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(26px, 2.6vw, 38px);
    line-height: 1.3;
    color: var(--ink);
    max-width: 26ch;
    margin: 0 auto;
  }
  .menu-pull .quote::before {
    content: "❝"; color: var(--olive); margin-right: 8px; font-size: 1.2em; vertical-align: -8px;
  }
  .menu-cta { text-align: center; }

  /* =========================================
     STORIES
  ========================================== */
  .stories {
    background: var(--bg);
  }
  .stories-head {
    text-align: center;
    margin-bottom: 80px;
  }
  .stories-head h2 { max-width: 22ch; margin: 0 auto 24px; }
  .stories-head p { margin: 0 auto; max-width: 56ch; }

  .story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
  }
  .story-card {
    background: var(--bg-pure);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-card);
    padding: 40px 32px 36px;
    display: flex; flex-direction: column;
    transition: transform 320ms, border-color 320ms;
  }
  .story-card:hover {
    transform: translateY(-4px);
    border-color: var(--line);
  }
  .story-quote-mark {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 56px;
    color: var(--terracotta);
    line-height: 0.6;
    margin-bottom: 28px;
  }
  .story-card blockquote {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    flex: 1;
  }
  .story-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
  }
  .story-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sage-soft);
    color: var(--olive);
    display: grid; place-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
  }
  .story-meta .name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
  }
  .story-meta .role {
    font-size: 13px;
    color: var(--ink-muted);
    font-family: var(--font-serif);
    font-style: italic;
    margin-top: 2px;
  }

  .stories-close {
    text-align: center;
  }
  .stories-close .statement {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.4;
    color: var(--ink-soft);
    max-width: 36ch;
    margin: 0 auto 36px;
  }

  /* =========================================
     PRICING
  ========================================== */
  .pricing {
    background: var(--bg-pure);
  }
  .pricing-head {
    text-align: center;
    margin-bottom: 72px;
  }
  .pricing-head h2 { max-width: 18ch; margin: 0 auto 24px; }
  .pricing-head p { margin: 0 auto; max-width: 50ch; }

  .pricing-cards {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    max-width: 1100px; margin: 0 auto 64px;
  }
  .price-card {
    background: var(--bg);
    border-radius: var(--r-card);
    padding: 44px 40px 40px;
    position: relative;
    border: 1px solid var(--line-soft);
  }
  .price-card.hero-card {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .price-card.hero-card .feature-list li { color: rgba(247,245,240,0.85); }
  .price-card.hero-card .feature-list svg { color: var(--sage); }

  .price-badge {
    position: absolute;
    top: -14px; left: 40px;
    background: var(--terracotta);
    color: var(--bg);
    padding: 7px 16px;
    border-radius: var(--r-pill);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .price-card .label {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--sage);
    margin-bottom: 12px;
  }
  .price-card.hero-card .label { color: var(--sage); }
  .price-card:not(.hero-card) .label { color: var(--olive); }
  .price-card h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.018em;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .price-card .desc {
    font-size: 15.5px;
    color: var(--ink-soft);
    margin-bottom: 32px;
    line-height: 1.55;
  }
  .price-card.hero-card .desc { color: rgba(247,245,240,0.7); }

  .price-amount {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 32px;
  }
  .price-amount .currency {
    font-size: 22px;
    font-weight: 500;
    opacity: 0.7;
  }
  .price-amount .num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .price-amount .per {
    font-size: 15px;
    color: var(--ink-muted);
    font-family: var(--font-serif);
    font-style: italic;
  }
  .price-card.hero-card .per { color: rgba(247,245,240,0.55); }

  .feature-list {
    list-style: none;
    margin-bottom: 36px;
  }
  .feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0;
    font-size: 15.5px;
    color: var(--ink-soft);
  }
  .feature-list svg {
    color: var(--olive);
    margin-top: 4px;
    flex-shrink: 0;
  }
  .price-card .btn { width: 100%; justify-content: center; }
  .price-card.hero-card .btn-primary {
    background: var(--bg); color: var(--ink);
  }
  .price-card.hero-card .btn-primary:hover {
    background: var(--bg-pure);
  }
  .price-microcopy {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--ink-muted);
  }
  .price-card.hero-card .price-microcopy { color: rgba(247,245,240,0.5); }

  /* Risk reversal block */
  .risk-block {
    max-width: 1100px; margin: 0 auto;
    background: var(--sage-soft);
    border-radius: var(--r-card);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .risk-block h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .risk-block p {
    font-size: 15px;
    color: var(--ink-soft);
  }
  .risk-pills {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .risk-pill {
    background: var(--bg);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    font-size: 14px;
    color: var(--ink);
    display: flex; align-items: center; gap: 8px;
  }
  .risk-pill svg { color: var(--olive); }

  /* =========================================
     FAQ
  ========================================== */
  .faq {
    background: var(--bg);
  }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 96px;
    align-items: start;
  }
  .faq-head {
    position: sticky; top: 120px;
  }
  .faq-head h2 { margin-bottom: 24px; }
  .faq-list {
    border-top: 1px solid var(--line);
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-question {
    width: 100%;
    text-align: left;
    padding: 28px 0;
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 32px;
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.3;
    transition: color 200ms;
  }
  .faq-question:hover { color: var(--olive); }
  .faq-question .num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--olive);
    flex-shrink: 0;
    padding-top: 4px;
    width: 32px;
  }
  .faq-q-text { flex: 1; }
  .faq-toggle {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    transition: all 280ms cubic-bezier(.2,.8,.2,1);
    margin-top: 2px;
  }
  .faq-toggle svg { transition: transform 280ms cubic-bezier(.2,.8,.2,1); }
  .faq-item.open .faq-toggle {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--bg);
  }
  .faq-item.open .faq-toggle svg { transform: rotate(45deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 380ms cubic-bezier(.2,.8,.2,1);
  }
  .faq-answer-inner {
    padding: 0 0 28px 56px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 60ch;
  }
  .faq-item.open .faq-answer { max-height: 240px; }

  /* =========================================
     FINAL CTA
  ========================================== */
  .final-cta {
    background: var(--olive);
    color: var(--bg);
    text-align: center;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 50% 0%, rgba(247,245,240,0.08), transparent),
      radial-gradient(ellipse 50% 40% at 50% 100%, rgba(184,106,75,0.12), transparent);
    pointer-events: none;
  }
  .final-cta .eyebrow { color: var(--sage); margin-bottom: 32px; }
  .final-cta .eyebrow::before { background: var(--sage); }
  .final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.02;
    margin-bottom: 28px;
    color: var(--bg);
  }
  .final-cta h2 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--sage);
  }
  .final-cta p {
    font-size: 19px;
    color: rgba(247,245,240,0.75);
    max-width: 50ch;
    margin: 0 auto 48px;
    line-height: 1.55;
  }
  .final-cta-row {
    display: flex; gap: 16px; justify-content: center;
    margin-bottom: 56px;
    flex-wrap: wrap;
  }
  .final-cta .btn-primary {
    background: var(--bg); color: var(--ink); height: 64px; padding: 0 36px; font-size: 17px;
  }
  .final-cta .btn-primary:hover { background: var(--bg-pure); }
  .final-cta .btn-ghost {
    color: var(--bg); border-color: rgba(247,245,240,0.3); height: 64px; padding: 0 32px; font-size: 17px;
  }
  .final-cta .btn-ghost:hover { border-color: var(--bg); }
  .final-trust {
    display: flex; justify-content: center; gap: 36px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 15px;
    color: rgba(247,245,240,0.6);
    flex-wrap: wrap;
  }

  /* =========================================
     FOOTER
  ========================================== */
  footer {
    background: var(--ink);
    color: var(--bg);
    padding: 80px 0 36px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 72px;
  }
  .footer-brand .logo { color: var(--bg); margin-bottom: 20px; }
  .footer-brand .logo-mark { background: var(--sage); color: var(--ink); }
  .footer-brand p {
    font-size: 15px;
    color: rgba(247,245,240,0.55);
    line-height: 1.6;
    max-width: 30ch;
    margin-bottom: 28px;
  }
  .footer-trust-badges {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .footer-trust-badges span {
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid rgba(247,245,240,0.18);
    border-radius: var(--r-pill);
    color: rgba(247,245,240,0.75);
    letter-spacing: 0.02em;
  }
  .footer-col h5 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--sage);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: rgba(247,245,240,0.7);
    font-size: 15px;
    transition: color 200ms;
  }
  .footer-col a:hover { color: var(--bg); }
  .footer-bottom {
    border-top: 1px solid rgba(247,245,240,0.12);
    padding-top: 32px;
    display: flex; justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom p {
    font-size: 13px;
    color: rgba(247,245,240,0.45);
    font-family: var(--font-serif);
    font-style: italic;
  }
  .social-row { display: flex; gap: 12px; }
  .social-row a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(247,245,240,0.18);
    display: grid; place-items: center;
    color: rgba(247,245,240,0.7);
    transition: all 200ms;
  }
  .social-row a:hover {
    background: var(--bg); color: var(--ink); border-color: var(--bg);
  }

  /* =========================================
     STICKY WHATSAPP
  ========================================== */
  .whatsapp-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    background: var(--olive);
    color: var(--bg);
    padding: 14px 22px 14px 18px;
    border-radius: var(--r-pill);
    display: flex; align-items: center; gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    z-index: 40;
    box-shadow: 0 16px 40px -12px rgba(31,31,27,0.25);
    transition: all 280ms cubic-bezier(.2,.8,.2,1);
  }
  .whatsapp-fab:hover {
    transform: translateY(-2px);
    background: var(--olive-deep);
  }

  /* =========================================
     ENTRANCE ANIMATIONS
  ========================================== */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1);
  }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal.d-1 { transition-delay: 100ms; }
  .reveal.d-2 { transition-delay: 200ms; }
  .reveal.d-3 { transition-delay: 300ms; }
  .reveal.d-4 { transition-delay: 400ms; }
  .reveal.d-5 { transition-delay: 500ms; }

  /* =========================================
     RESPONSIVE
  ========================================== */
  @media (max-width: 980px) {
    :root { --section-y: 96px; --section-y-sm: 72px; }
    .wrap, .wrap-narrow { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-cta .btn-ghost { display: none; }
    .hero-grid,
    .friction-head,
    .pillars-head,
    .menu-head,
    .faq-grid,
    .footer-grid { grid-template-columns: 1fr; gap: 48px; }
    .friction-cards,
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .steps,
    .story-grid,
    .pricing-cards { grid-template-columns: 1fr; gap: 24px; }
    .pricing-cards { gap: 32px; }
    .week-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hero-visual { max-height: 480px; }
    .protein-badge.b1 { width: 100px; height: 100px; left: -16px; }
    .protein-badge .num { font-size: 28px; }
    .faq-head { position: static; }
    .footer-grid { gap: 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .risk-block { flex-direction: column; align-items: flex-start; gap: 24px; }
  }

  @media (max-width: 580px) {
    body { font-size: 17px; }
    .friction-cards,
    .pillar-grid { grid-template-columns: 1fr; }
    .week-row { grid-template-columns: 1fr; }
    .menu-callouts { gap: 16px; flex-direction: column; align-items: flex-start; }
    .nav-inner { height: 64px; }
    .announce { font-size: 12.5px; padding: 9px 16px; }
    .announce em { display: none; }
    .price-card { padding: 36px 28px 32px; }
    .risk-block { padding: 32px 28px; }
    .whatsapp-fab span { display: none; }
    .whatsapp-fab { padding: 14px; }
  }