:root {
      --cream: #FAF5EC;
      --forest: #2C4A3E;
      --coral: #E8714A;
      --gold: #C9943A;
      --sage: #7A9E87;
      --rust: #B85C38;
      --dark: #1A2E26;
      --light-sage: #EBF2ED;
    }

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

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--cream);
      color: var(--dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 245, 236, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(44, 74, 62, 0.1);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--forest);
      letter-spacing: -0.03em;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--forest);
      text-underline-offset: 3px;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 3px;
      transition: color 0.3s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--coral);
      transition: width 0.3s;
    }

    .nav-links a:hover::after { width: 100%; }
    .nav-links a:hover { color: var(--coral); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 6rem 4rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 148, 58, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-label {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 1.5rem;
      padding: 0.4rem 1rem;
      border: 1px solid var(--coral);
      border-radius: 100px;
      animation: fadeUp 0.8s ease both;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 5vw, 5.5rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--forest);
      margin-bottom: 1.5rem;
      animation: fadeUp 0.8s 0.1s ease both;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--coral);
    }

    .hero-desc {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #4A5E56;
      max-width: 480px;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: var(--forest);
      color: var(--cream);
      padding: 1rem 2rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: all 0.3s;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .hero-cta:hover {
      background: var(--coral);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(232, 113, 74, 0.35);
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      animation: fadeIn 1.2s 0.2s ease both;
    }

    .hero-video-wrap {
      position: relative;
      width: 100%;
      max-width: 620px;
    }

    .hero-video {
      width: 100%;
      height: 580px;
      object-fit: cover;
      border-radius: 28px;
      display: block;
      box-shadow:
        0 30px 80px rgba(44, 74, 62, 0.25),
        0 8px 20px rgba(0,0,0,0.12);
    }

    .floating-badge {
      position: absolute;
      background: var(--cream);
      border-radius: 16px;
      padding: 0.8rem 1.2rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      font-size: 0.8rem;
      font-weight: 500;
      z-index: 2;
    }

    .badge-1 {
      top: 24px;
      right: -24px;
      color: var(--forest);
      animation: float 4s ease-in-out infinite;
    }

    .badge-2 {
      bottom: 40px;
      left: -24px;
      color: var(--rust);
      animation: float 4s 1s ease-in-out infinite;
    }

    .badge-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      display: block;
      color: var(--coral);
    }

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

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

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

    /* SECTION BASE */
    section {
      padding: 6rem 4rem;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      color: var(--forest);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    /* ORIGIN */
    .origin {
      background: var(--forest);
      color: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .origin::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -20%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(122, 158, 135, 0.08);
      pointer-events: none;
    }

    .origin-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }

    .origin .section-title { color: var(--cream); }
    .origin .section-label { color: var(--sage); }

    .origin-text {
      font-size: 1.05rem;
      line-height: 1.9;
      color: rgba(250, 245, 236, 0.8);
    }

    .origin-text p + p { margin-top: 1.2rem; }

    .origin-founders {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(0,0,0,0.3);
    }

    .origin-founders img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* CHARACTERISTICS CAROUSEL */
    .characteristics {
      background: var(--light-sage);
      padding: 6rem 0;
      overflow: hidden;
    }

    .characteristics > .section-label,
    .characteristics > .section-title {
      padding: 0 4rem;
    }

    .info-scroll-wrap {
      position: relative;
      margin-top: 3rem;
    }

    .info-scroll-wrap::before,
    .info-scroll-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 60px;
      z-index: 2;
      pointer-events: none;
    }

    .info-scroll-wrap.light::before { left: 0; background: linear-gradient(to right, var(--light-sage), transparent); }
    .info-scroll-wrap.light::after { right: 0; background: linear-gradient(to left, var(--light-sage), transparent); }
    .info-scroll-wrap.white::before { left: 0; background: linear-gradient(to right, white, transparent); }
    .info-scroll-wrap.white::after { right: 0; background: linear-gradient(to left, white, transparent); }

    .info-track {
      display: flex;
      gap: 1.4rem;
      overflow-x: auto;
      overflow-y: visible;
      scroll-behavior: smooth;
      padding: 1rem 4rem 3rem;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
      user-select: none;
    }

    .info-track:active { cursor: grabbing; }
    .info-track::-webkit-scrollbar { display: none; }

    .info-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      padding: 0 4rem;
    }

    .info-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(44, 74, 62, 0.2);
      background: white;
      color: var(--forest);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
    }

    .info-btn:hover {
      background: var(--forest);
      color: var(--cream);
      border-color: var(--forest);
      transform: scale(1.05);
    }

    .info-card {
      flex: 0 0 380px;
      background: var(--cream);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(44, 74, 62, 0.07);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      transform-origin: center top;
    }

    .info-card:hover {
      transform: scale(1.12);
      box-shadow: 0 30px 70px rgba(44, 74, 62, 0.22);
      z-index: 10;
      position: relative;
    }

    .info-card-img {
      width: 100%;
      height: 420px;
      overflow: hidden;
      background: #e8f0eb;
    }

    .info-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      pointer-events: none;
    }

    .info-card:hover .info-card-img img { transform: scale(1.0); }

    .info-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      pointer-events: none;
    }

    .info-card:hover .info-card-img img { transform: scale(1.05); }

    .info-card-body {
      padding: 1.6rem;
    }

    .info-card-icon {
      font-size: 1.8rem;
      display: block;
      margin-bottom: 0.8rem;
    }

    .info-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 0.7rem;
      line-height: 1.3;
    }

    .info-card-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      color: #5A6E65;
    }

    /* WHY BUY carousel uses same info-card but on white bg */
    .why-buy {
      background: white;
      padding: 6rem 0;
      overflow: hidden;
    }

    .why-buy > .why-header {
      padding: 0 4rem;
    }

    .why-buy .info-card {
      background: white;
      border-color: rgba(44, 74, 62, 0.09);
    }

    .why-buy .info-card-body {
      background: white;
    }

    .why-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--coral);
      opacity: 0.35;
      line-height: 1;
      display: block;
      margin-bottom: 0.5rem;
    }

    /* FLAVORS */
    .flavors {
      background: var(--cream);
      padding: 6rem 0 6rem;
      overflow: hidden;
    }

    .flavors-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 3rem;
      padding: 0 4rem;
    }

    .flavors-subtitle {
      color: #6A7E75;
      font-size: 1rem;
      line-height: 1.7;
      margin-top: 1rem;
    }

    /* Scrolling track */
    .flavors-scroll-wrap {
      position: relative;
    }

    .flavors-track {
      display: flex;
      gap: 1.2rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 1rem 4rem 2rem;
      scrollbar-width: none;
      -ms-overflow-style: none;
      cursor: grab;
      user-select: none;
    }

    .flavors-track:active { cursor: grabbing; }
    .flavors-track::-webkit-scrollbar { display: none; }

    /* Fade edges */
    .flavors-scroll-wrap::before,
    .flavors-scroll-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .flavors-scroll-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--cream), transparent);
    }

    .flavors-scroll-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--cream), transparent);
    }

    /* Arrow buttons */
    .flavors-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
      padding: 0 4rem;
    }

    .flavors-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(44, 74, 62, 0.2);
      background: white;
      color: var(--forest);
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.25s;
    }

    .flavors-btn:hover {
      background: var(--forest);
      color: var(--cream);
      border-color: var(--forest);
      transform: scale(1.05);
    }

    /* Cards */
    .flavor-card {
      flex: 0 0 220px;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      text-align: center;
      padding-bottom: 1.4rem;
      border: 1px solid rgba(44, 74, 62, 0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .flavor-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(44, 74, 62, 0.12);
    }

    .flavor-img-wrap {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #f5f0e8;
    }

    .flavor-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      pointer-events: none;
    }

    .flavor-card:hover .flavor-img-wrap img {
      transform: scale(1.06);
    }

    .flavor-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--forest);
      margin: 1rem 0.8rem 0.3rem;
      line-height: 1.3;
    }

    .flavor-card p {
      font-size: 0.78rem;
      color: #8A9E95;
      line-height: 1.4;
      padding: 0 0.8rem;
    }

    /* FOOTER */
    footer {
      background: var(--dark);
      color: rgba(250, 245, 236, 0.6);
      text-align: center;
      padding: 2rem 4rem;
      font-size: 0.82rem;
    }

    footer a {
      color: var(--sage);
      text-decoration: none;
    }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; }
      .hero-visual { order: -1; }
      section { padding: 4rem 1.5rem; }
      .origin-grid, .chars-grid, .reasons-grid { grid-template-columns: 1fr; gap: 2rem; }
      .origin-stats { grid-template-columns: 1fr 1fr; }
    }



/* ===== TEMOIGNAGES.HTML ===== */
:root {
      --cream: #FAF5EC;
      --forest: #2C4A3E;
      --coral: #E8714A;
      --gold: #C9943A;
      --sage: #7A9E87;
      --rust: #B85C38;
      --dark: #1A2E26;
      --light-sage: #EBF2ED;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background-color: var(--cream);
      color: var(--dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 245, 236, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(44, 74, 62, 0.1);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--forest);
      letter-spacing: -0.03em;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--forest);
      text-underline-offset: 3px;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 3px;
      transition: color 0.3s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--coral);
      transition: width 0.3s;
    }

    .nav-links a:hover::after { width: 100%; }
    .nav-links a:hover { color: var(--coral); }
    .nav-links a.active { color: var(--coral); }
    .nav-links a.active::after { width: 100%; }

    /* PAGE HEADER */
    .page-header {
      padding: 10rem 4rem 5rem;
      background: var(--forest);
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 25rem;
      color: rgba(122, 158, 135, 0.08);
      position: absolute;
      top: -5rem;
      left: 2rem;
      line-height: 1;
      pointer-events: none;
    }

    .breadcrumb {
      font-size: 0.8rem;
      color: var(--sage);
      margin-bottom: 2rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .breadcrumb a {
      color: var(--sage);
      text-decoration: none;
    }

    .breadcrumb a:hover { color: var(--cream); }

    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 900;
      color: var(--cream);
      line-height: 1.1;
      max-width: 700px;
    }

    .page-header h1 em {
      font-style: italic;
      color: var(--coral);
    }

    .page-header p {
      color: rgba(250, 245, 236, 0.75);
      font-size: 1.1rem;
      max-width: 550px;
      margin-top: 1.5rem;
      line-height: 1.8;
    }

    /* FEATURED TESTIMONY */
    .featured {
      padding: 6rem 4rem;
      background: var(--cream);
    }

    .featured-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 5rem;
      align-items: center;
    }

    .person-card {
      text-align: center;
    }

    .avatar {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      margin: 0 auto 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
      color: white;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    .person-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--forest);
    }

    .person-meta {
      font-size: 0.85rem;
      color: var(--sage);
      margin-top: 0.3rem;
    }

    .person-location {
      font-size: 0.82rem;
      color: #8A9E95;
      margin-top: 0.2rem;
    }

    .stars {
      color: var(--gold);
      font-size: 1.1rem;
      margin-top: 1rem;
      letter-spacing: 0.1em;
    }

    .testimony-block {
      position: relative;
    }

    .quote-mark {
      font-family: 'Playfair Display', serif;
      font-size: 8rem;
      color: var(--coral);
      opacity: 0.15;
      position: absolute;
      top: -2.5rem;
      left: -1rem;
      line-height: 1;
      pointer-events: none;
    }

    .testimony-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 1.5rem;
    }

    blockquote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-style: italic;
      color: var(--forest);
      line-height: 1.6;
      border: none;
      padding: 0;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }

    .testimony-body {
      font-size: 1rem;
      line-height: 1.85;
      color: #4A5E56;
    }

    .testimony-body p + p {
      margin-top: 1.2rem;
    }

    .testimony-tag {
      display: inline-block;
      margin-top: 1.5rem;
      padding: 0.4rem 1rem;
      background: var(--light-sage);
      border-radius: 100px;
      font-size: 0.8rem;
      color: var(--forest);
      font-weight: 500;
    }

    /* MORE TESTIMONIALS */
    .more-testimonials {
      background: var(--light-sage);
      padding: 6rem 4rem;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3vw, 2.8rem);
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 3rem;
    }

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

    .mini-card {
      background: var(--cream);
      border-radius: 20px;
      padding: 2rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .mini-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(44, 74, 62, 0.1);
    }

    .mini-stars {
      color: var(--gold);
      font-size: 0.95rem;
      margin-bottom: 1rem;
    }

    .mini-quote {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1rem;
      color: var(--forest);
      line-height: 1.5;
      margin-bottom: 1.2rem;
    }

    .mini-text {
      font-size: 0.88rem;
      color: #6A7E75;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .mini-author {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .mini-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--coral), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: white;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .mini-name {
      font-weight: 500;
      font-size: 0.88rem;
      color: var(--forest);
    }

    .mini-meta {
      font-size: 0.78rem;
      color: #8A9E95;
    }

    /* CTA */
    .back-cta {
      background: var(--forest);
      padding: 4rem;
      text-align: center;
    }

    .back-cta p {
      color: rgba(250, 245, 236, 0.75);
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--coral);
      color: white;
      padding: 1rem 2rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s;
    }

    .cta-btn:hover {
      background: var(--cream);
      color: var(--forest);
      transform: translateY(-2px);
    }

    footer {
      background: var(--dark);
      color: rgba(250, 245, 236, 0.6);
      text-align: center;
      padding: 2rem 4rem;
      font-size: 0.82rem;
    }

    footer a {
      color: var(--sage);
      text-decoration: none;
    }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .page-header { padding: 7rem 1.5rem 3rem; }
      .featured { padding: 4rem 1.5rem; }
      .featured-inner { grid-template-columns: 1fr; gap: 3rem; }
      .more-testimonials { padding: 4rem 1.5rem; }
      .cards-grid { grid-template-columns: 1fr; }
      .back-cta { padding: 3rem 1.5rem; }
    }


/* ===== SEO.HTML ===== */
:root {
      --cream: #FAF5EC;
      --forest: #2C4A3E;
      --coral: #E8714A;
      --gold: #C9943A;
      --sage: #7A9E87;
      --rust: #B85C38;
      --dark: #1A2E26;
      --light-sage: #EBF2ED;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background-color: var(--cream);
      color: var(--dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 245, 236, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(44, 74, 62, 0.1);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--forest);
      text-decoration: none;
    }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--forest);
      text-underline-offset: 3px;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 3px;
      transition: color 0.3s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--coral);
      transition: width 0.3s;
    }

    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a:hover, .nav-links a.active { color: var(--coral); }

    /* PAGE HEADER */
    .page-header {
      padding: 10rem 4rem 5rem;
      background: linear-gradient(135deg, var(--dark) 0%, var(--forest) 100%);
      position: relative;
      overflow: hidden;
    }

    .page-header::after {
      content: 'SEO';
      position: absolute;
      right: -2rem;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Playfair Display', serif;
      font-size: 18rem;
      font-weight: 900;
      color: rgba(122, 158, 135, 0.06);
      pointer-events: none;
      white-space: nowrap;
    }

    .breadcrumb {
      font-size: 0.8rem;
      color: var(--sage);
      margin-bottom: 2rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .breadcrumb a { color: var(--sage); text-decoration: none; }
    .breadcrumb a:hover { color: var(--cream); }

    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--cream);
      line-height: 1.1;
      max-width: 650px;
    }

    .page-header h1 em { font-style: italic; color: var(--coral); }

    .page-header p {
      color: rgba(250, 245, 236, 0.75);
      font-size: 1.05rem;
      max-width: 600px;
      margin-top: 1.5rem;
      line-height: 1.8;
    }

    /* INTRO */
    .seo-intro {
      padding: 5rem 4rem;
      background: var(--cream);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--coral);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 2.5vw, 2.5rem);
      font-weight: 700;
      color: var(--forest);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .intro-text {
      font-size: 1rem;
      line-height: 1.85;
      color: #4A5E56;
    }

    .intro-text p + p { margin-top: 1.2rem; }

    .seo-philosophy {
      background: var(--light-sage);
      border-radius: 20px;
      padding: 2.5rem;
    }

    .philosophy-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 1.2rem;
    }

    .philosophy-list {
      list-style: none;
    }

    .philosophy-list li {
      display: flex;
      gap: 0.8rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(44, 74, 62, 0.1);
      font-size: 0.9rem;
      color: #4A5E56;
      line-height: 1.5;
    }

    .philosophy-list li:last-child { border-bottom: none; }

    .philosophy-list li::before {
      content: '✓';
      color: var(--sage);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* PAGE ANALYSES */
    .page-analysis {
      padding: 5rem 4rem;
    }

    .page-analysis:nth-child(even) { background: var(--light-sage); }
    .page-analysis:nth-child(odd) { background: var(--cream); }

    .analysis-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid rgba(44, 74, 62, 0.08);
    }

    .page-badge {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 900;
      flex-shrink: 0;
    }

    .badge-p1 { background: var(--coral); color: white; }
    .badge-p2 { background: var(--forest); color: white; }

    .analysis-header-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--forest);
    }

    .analysis-header-text p {
      font-size: 0.88rem;
      color: var(--sage);
      margin-top: 0.2rem;
      font-family: 'DM Mono', monospace;
    }

    .analysis-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }

    .kw-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .kw-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .kw-item {
      background: white;
      border-radius: 12px;
      padding: 1.2rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      border-left: 3px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .kw-item:hover {
      border-left-color: var(--coral);
      box-shadow: 0 4px 20px rgba(44, 74, 62, 0.07);
    }

    .kw-word {
      font-family: 'DM Mono', monospace;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--forest);
      flex-shrink: 0;
    }

    .kw-reason {
      font-size: 0.82rem;
      color: #6A7E75;
      line-height: 1.5;
      text-align: right;
    }

    .kw-badge {
      display: inline-block;
      padding: 0.2rem 0.6rem;
      border-radius: 6px;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 0.3rem;
    }

    .badge-primary { background: rgba(232, 113, 74, 0.12); color: var(--coral); }
    .badge-secondary { background: rgba(122, 158, 135, 0.15); color: var(--forest); }
    .badge-long { background: rgba(201, 148, 58, 0.12); color: var(--gold); }

    .analysis-full {
      margin-top: 3rem;
    }

    .analysis-full-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 1rem;
    }

    .analysis-full p {
      font-size: 0.95rem;
      line-height: 1.85;
      color: #4A5E56;
      margin-bottom: 1rem;
    }

    .technical-seo {
      background: var(--forest);
      padding: 5rem 4rem;
    }

    .technical-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }

    .tech-card {
      background: rgba(250, 245, 236, 0.06);
      border: 1px solid rgba(250, 245, 236, 0.1);
      border-radius: 16px;
      padding: 2rem;
    }

    .tech-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .tech-card p {
      font-size: 0.88rem;
      color: rgba(250, 245, 236, 0.65);
      line-height: 1.6;
    }

    .technical-seo .section-title { color: var(--cream); }
    .technical-seo .section-label { color: var(--sage); }

    .back-cta {
      background: var(--dark);
      padding: 4rem;
      text-align: center;
    }

    .back-cta p { color: rgba(250, 245, 236, 0.75); margin-bottom: 1.5rem; }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--coral);
      color: white;
      padding: 1rem 2rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s;
    }

    .cta-btn:hover {
      background: var(--cream);
      color: var(--forest);
      transform: translateY(-2px);
    }

    footer {
      background: var(--dark);
      color: rgba(250, 245, 236, 0.6);
      text-align: center;
      padding: 2rem 4rem;
      font-size: 0.82rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    footer a { color: var(--sage); text-decoration: none; }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .page-header { padding: 7rem 1.5rem 3rem; }
      .seo-intro, .page-analysis, .technical-seo { padding: 3rem 1.5rem; }
      .intro-grid, .analysis-grid, .technical-grid { grid-template-columns: 1fr; gap: 2rem; }
    }


/* ===== INFORMATION.HTML ===== */
:root {
      --cream: #FAF5EC;
      --forest: #2C4A3E;
      --coral: #E8714A;
      --gold: #C9943A;
      --sage: #7A9E87;
      --rust: #B85C38;
      --dark: #1A2E26;
      --light-sage: #EBF2ED;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background-color: var(--cream);
      color: var(--dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 245, 236, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(44, 74, 62, 0.1);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--forest);
      text-decoration: none;
    }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--forest);
      text-underline-offset: 3px;
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 3px;
      transition: color 0.3s;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--coral);
      transition: width 0.3s;
    }

    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a:hover, .nav-links a.active { color: var(--coral); }

    /* PAGE HEADER */
    .page-header {
      padding: 10rem 4rem 5rem;
      background: var(--cream);
      border-bottom: 1px solid rgba(44, 74, 62, 0.08);
    }

    .breadcrumb {
      font-size: 0.8rem;
      color: var(--sage);
      margin-bottom: 2rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .breadcrumb a { color: var(--sage); text-decoration: none; }
    .breadcrumb a:hover { color: var(--forest); }

    .page-header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--forest);
      line-height: 1.1;
    }

    .page-header h1 em { font-style: italic; color: var(--coral); }

    .page-header p {
      color: #6A7E75;
      font-size: 1.05rem;
      max-width: 600px;
      margin-top: 1.2rem;
      line-height: 1.8;
    }

    /* TABLES SECTION */
    .tables-section {
      padding: 5rem 4rem;
    }

    .table-block {
      margin-bottom: 5rem;
    }

    .table-block:last-child { margin-bottom: 0; }

    .table-header {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      margin-bottom: 2rem;
    }

    .table-num {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--forest);
      color: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .table-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--forest);
    }

    .table-subtitle {
      font-size: 0.85rem;
      color: var(--sage);
      margin-top: 0.2rem;
    }

    /* TABLE STYLING */
    .styled-table {
      width: 100%;
      border-collapse: collapse;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 30px rgba(44, 74, 62, 0.08);
    }

    .styled-table thead tr {
      background: var(--forest);
      color: var(--cream);
    }

    .styled-table thead th {
      padding: 1.1rem 1.5rem;
      text-align: left;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .styled-table tbody tr {
      border-bottom: 1px solid rgba(44, 74, 62, 0.07);
      transition: background 0.2s;
    }

    .styled-table tbody tr:last-child { border-bottom: none; }

    .styled-table tbody tr:nth-child(even) { background: rgba(235, 242, 237, 0.4); }

    .styled-table tbody tr:hover { background: rgba(122, 158, 135, 0.08); }

    .styled-table tbody td {
      padding: 1.2rem 1.5rem;
      vertical-align: top;
      font-size: 0.92rem;
      line-height: 1.6;
      color: #3A4E46;
    }

    .ai-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.3rem 0.8rem;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 500;
      font-family: 'DM Mono', monospace;
      white-space: nowrap;
    }

    .chip-claude { background: rgba(232, 113, 74, 0.12); color: var(--rust); }
    .chip-midjourney { background: rgba(44, 74, 62, 0.1); color: var(--forest); }
    .chip-chatgpt { background: rgba(122, 158, 135, 0.15); color: #1A5740; }
    .chip-dalle { background: rgba(201, 148, 58, 0.12); color: #8A6010; }

    .prompt-text {
      font-family: 'DM Mono', monospace;
      font-size: 0.8rem;
      background: rgba(44, 74, 62, 0.05);
      border-left: 3px solid var(--sage);
      padding: 0.6rem 0.8rem;
      border-radius: 0 6px 6px 0;
      color: #4A5E56;
      line-height: 1.5;
      margin-top: 0.4rem;
    }

    .content-tag {
      display: inline-block;
      padding: 0.25rem 0.6rem;
      border-radius: 6px;
      font-size: 0.75rem;
      background: var(--light-sage);
      color: var(--forest);
      font-weight: 500;
    }

    .contrib-name {
      font-weight: 500;
      color: var(--forest);
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
    }

    .contrib-role {
      font-size: 0.78rem;
      color: var(--sage);
      margin-top: 0.1rem;
    }

    .contrib-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.6rem;
    }

    .contrib-tag {
      display: inline-block;
      padding: 0.2rem 0.6rem;
      border-radius: 6px;
      font-size: 0.75rem;
      background: rgba(44, 74, 62, 0.06);
      color: var(--forest);
      border: 1px solid rgba(44, 74, 62, 0.12);
    }

    .avatar-sm {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--coral), var(--gold));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: white;
      font-size: 1rem;
      vertical-align: middle;
      margin-right: 0.6rem;
    }

    .back-cta {
      background: var(--forest);
      padding: 4rem;
      text-align: center;
    }

    .back-cta p { color: rgba(250, 245, 236, 0.75); margin-bottom: 1.5rem; }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--coral);
      color: white;
      padding: 1rem 2rem;
      border-radius: 100px;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: all 0.3s;
    }

    .cta-btn:hover {
      background: var(--cream);
      color: var(--forest);
      transform: translateY(-2px);
    }

    footer {
      background: var(--dark);
      color: rgba(250, 245, 236, 0.6);
      text-align: center;
      padding: 2rem 4rem;
      font-size: 0.82rem;
    }

    footer a { color: var(--sage); text-decoration: none; }

    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .page-header { padding: 7rem 1.5rem 3rem; }
      .tables-section { padding: 3rem 1.5rem; }
      .styled-table thead th, .styled-table tbody td { padding: 0.9rem 1rem; }
      .back-cta { padding: 3rem 1.5rem; }
    }

/* ===== FIXES INFORMATION.HTML ===== */
.contrib-name {
  vertical-align: middle;
  white-space: nowrap;
}

.styled-table thead th:first-child,
.styled-table tbody td:first-child {
  width: 220px;
  min-width: 220px;
}

.styled-table tbody td {
  padding: 1.6rem 1.5rem;
}

.prompt-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.82rem;
  background: rgba(44, 74, 62, 0.05);
  border-left: 3px solid var(--sage, #7A9E87);
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  color: #4A5E56;
  line-height: 1.8;
  margin-top: 0.7rem;
  word-break: break-word;
  white-space: pre-wrap;
  width: 420px;
  min-width: 420px;
  box-sizing: border-box;
}

/* ===== ACCESSIBILITY: focus styles ===== */
:focus-visible {
  outline: 3px solid #E8714A;
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #E8714A;
  outline-offset: 3px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: #2C4A3E;
  color: #FAF5EC;
  padding: 0.8rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 500;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ===== PERFORMANCE: reduce motion for users who prefer it ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== PRINT styles ===== */
@media print {
  nav, .back-cta, footer { display: none; }
  body { font-size: 12pt; }
}

/* ===== CLS FIX: stabilize layout during font loading ===== */
html {
  font-size: 16px; /* explicit prevents reflow */
}

/* Use transform instead of top/left for animations — compositor only */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

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

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

/* Prevent layout shift from floating badges */
.floating-badge {
  will-change: transform;
}

/* Explicit min-height on hero to prevent CLS */
.hero {
  min-height: 100vh;
}

/* Prevent nav from causing CLS during font load */
nav {
  min-height: 70px;
}


/* ===== HAMBURGER MENU — MOBILE ONLY ===== */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--forest, #2C4A3E);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Animate burger → X when open */
.nav-burger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(250, 245, 236, 0.98);
    backdrop-filter: blur(16px);
    padding: 5rem 2rem 2rem;
    gap: 0;
    z-index: 99;
    box-shadow: 0 8px 30px rgba(44, 74, 62, 0.12);
    list-style: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(44, 74, 62, 0.08);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--forest, #2C4A3E);
    letter-spacing: 0.03em;
    text-decoration: none;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--coral, #E8714A);
  }

  .nav-links a::after {
    display: none;
  }
}
