﻿    :root {
      --blue: #a2ddf2;
      --pink: #f6a6be;
      --navy: #2d2b7b;
      --cream: #efddc7;
      --ink: #23224f;
      --muted: #696685;
      --red: #ef233c;
      --soft: #fff8fb;
      --line: rgba(246, 166, 190, .34);
      --shadow: 0 22px 54px rgba(45, 43, 123, .13);
      --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
      --sans: "Nunito Sans", "Segoe UI", Arial, sans-serif;
      --menu-font: "Montserrat", "Nunito Sans", "Segoe UI", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--sans);
      color: var(--ink);
      background: #fff;
      line-height: 1.55;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input { font: inherit; }
    .container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

    .topbar {
      background: linear-gradient(90deg, #fac7d7, var(--pink), #fac7d7);
      color: var(--navy);
      text-align: center;
      font-size: 14px;
      font-family: var(--menu-font);
      font-weight: 700;
      letter-spacing: .18px;
      padding: 8px 16px;
    }
    .red-heart { color: var(--red); font-weight: 900; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(14px);
      box-shadow: 0 10px 30px rgba(45, 43, 123, .07);
    }
    .nav {
      min-height: 108px;
      display: grid;
      grid-template-columns: 170px 1fr auto;
      align-items: center;
      gap: 30px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      padding-bottom: 9px;
    }
    .brand img { width: 132px; }
    .menu {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: clamp(18px, 3vw, 40px);
      color: var(--navy);
      font-family: var(--menu-font);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .5px;
      line-height: 1.1;
      text-transform: uppercase;
    }
    .menu a { position: relative; padding: 10px 0; }
    .menu a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 2px;
      width: 0;
      height: 2px;
      border-radius: 10px;
      background: var(--pink);
      transition: .22s ease;
      transform: translateX(-50%);
    }
    .menu a:hover::after,
    .menu a.is-active::after { width: 100%; }
    .nav-actions { display: flex; align-items: center; gap: 14px; color: var(--navy); }
    .icon-btn {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 0;
      background: transparent;
      color: var(--navy);
      position: relative;
      cursor: pointer;
    }
    .icon-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }
    .header-search {
      display: flex;
      align-items: center;
      height: 42px;
      border: 1px solid rgba(45, 43, 123, .14);
      border-radius: 999px;
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 10px 24px rgba(45, 43, 123, .07);
      overflow: hidden;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .header-search:focus-within {
      border-color: rgba(246, 166, 190, .9);
      box-shadow: 0 12px 28px rgba(246, 166, 190, .18);
    }
    .header-search input {
      width: clamp(130px, 13vw, 190px);
      border: 0;
      background: transparent;
      color: var(--navy);
      font: 800 13px/1 var(--body-font);
      padding: 0 0 0 16px;
      outline: 0;
    }
    .header-search input::placeholder { color: rgba(45, 43, 123, .52); }
    .quote-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--pink), var(--red));
      color: #fff;
      font: 900 13px/1 var(--body-font);
      box-shadow: 0 13px 28px rgba(255, 77, 109, .23);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .quote-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255, 77, 109, .3); }
    .badge {
      position: absolute;
      right: 3px;
      top: 1px;
      min-width: 16px;
      height: 16px;
      border-radius: 99px;
      display: grid;
      place-items: center;
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 900;
      padding: 0 4px;
    }
    .mobile-menu { display: none; }
    .mobile-nav {
      display: none;
      border-top: 1px solid rgba(246, 166, 190, .3);
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 18px 32px rgba(45, 43, 123, .08);
    }
    .mobile-nav-inner {
      display: grid;
      gap: 2px;
      padding: 10px 0 16px;
      color: var(--navy);
      font-family: var(--menu-font);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .45px;
      text-transform: uppercase;
    }
    .mobile-nav a {
      display: flex;
      align-items: center;
      min-height: 42px;
      border-radius: 8px;
      padding: 0 14px;
    }
    .mobile-nav a:hover,
    .mobile-nav a.is-active { background: #fff1f6; color: #d95680; }

    body:not(.is-loaded) .topbar,
    body:not(.is-loaded) .site-header,
    body:not(.is-loaded) .hero-copy,
    body:not(.is-loaded) .hero-arrow,
    body:not(.is-loaded) .dots {
      opacity: 0;
    }
    body.is-loaded .topbar,
    body.is-loaded .site-header {
      animation: fadeDown .55s ease both;
    }
    body.is-loaded .hero-bg img {
      animation: softZoom 1.2s ease both;
    }
    body.is-loaded .hero-copy {
      animation: fadeUp .75s .18s ease both;
    }
    body.is-loaded .hero-arrow,
    body.is-loaded .dots {
      animation: fadeIn .6s .45s ease both;
    }
    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-12px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes softZoom {
      from { transform: scale(1.04); filter: saturate(.92); }
      to { transform: scale(1); filter: saturate(1); }
    }

    .hero {
      position: relative;
      overflow: hidden;
      min-height: clamp(540px, 33.4vw, 660px);
      background: #fff8f5;
    }
    .hero .container {
      width: calc(100% - 128px);
      max-width: none;
    }
    .hero::before,
    .hero::after,
    .floral-corner::before,
    .floral-corner::after {
      content: "";
      position: absolute;
      width: 170px;
      height: 210px;
      pointer-events: none;
      opacity: .68;
      background:
        radial-gradient(circle at 40% 24%, #f6a6be 0 7px, transparent 8px),
        radial-gradient(circle at 52% 38%, #ffd8e3 0 13px, transparent 14px),
        radial-gradient(circle at 28% 54%, #f6a6be 0 10px, transparent 11px),
        radial-gradient(circle at 62% 66%, #efddc7 0 12px, transparent 13px),
        linear-gradient(62deg, transparent 48%, rgba(45, 43, 123, .25) 49% 51%, transparent 52%);
    }
    .hero::before { left: -28px; bottom: -32px; transform: rotate(-14deg) scale(.86); z-index: 2; }
    .hero::after { right: -34px; top: 42px; transform: rotate(22deg) scale(.66); opacity: .38; z-index: 2; }
    .hero::before,
    .hero::after,
    .hero .petal { display: none; }
    .floral-corner::before { left: -38px; bottom: -26px; transform: rotate(-12deg) scale(.82); }
    .floral-corner::after { right: -44px; top: 58%; transform: rotate(18deg) scale(.74); opacity: .52; }
    .petal {
      position: absolute;
      width: 26px;
      height: 42px;
      border-radius: 70% 20% 70% 20%;
      background: linear-gradient(150deg, rgba(246, 166, 190, .85), rgba(255, 226, 235, .3));
      transform: rotate(-35deg);
      filter: blur(.1px);
    }
    .petal.p1 { left: 40%; top: 16%; }
    .petal.p2 { left: 52%; top: 39%; transform: rotate(30deg) scale(.72); }
    .petal.p3 { right: 3%; bottom: 24%; transform: rotate(34deg) scale(.82); }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
    .hero-models {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      overflow: hidden;
    }
    .model-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateX(32px) scale(1.015);
      transition: opacity .7s ease, transform .7s ease;
      clip-path: inset(0 0 0 39%);
    }
    .model-slide.is-active {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
    .model-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
    .hero-grid {
      min-height: clamp(540px, 33.4vw, 660px);
      display: flex;
      align-items: center;
      position: relative;
      z-index: 2;
      padding: 44px 0 52px;
    }
    .hero-copy {
      width: min(460px, 44vw);
      margin-left: clamp(52px, 5.4vw, 108px);
    }
    .hero-copy.is-changing {
      animation: copySwap .48s ease;
    }
    @keyframes copySwap {
      0% { opacity: 0; transform: translateY(16px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--navy);
      font-family: var(--serif);
      font-size: 23px;
      font-weight: 600;
      letter-spacing: 0;
      margin-bottom: 14px;
    }
    .eyebrow::before,
    .eyebrow::after,
    .decor-line::before,
    .decor-line::after {
      content: "";
      display: block;
      width: 44px;
      height: 1px;
      background: var(--pink);
    }
    h1 {
      margin: 0;
      font-family: var(--serif);
      font-size: clamp(58px, 6.1vw, 88px);
      line-height: .9;
      color: var(--navy);
      font-weight: 600;
      letter-spacing: 0;
    }
    h1 span { display: block; color: var(--pink); }
    .hero-copy p {
      max-width: 450px;
      margin: 24px 0 30px;
      color: #35345f;
      font-size: 19px;
      font-weight: 600;
    }
    .cta-row { display: flex; flex-wrap: wrap; gap: 16px; }
    .btn {
      min-height: 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      padding: 0 24px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .15px;
      text-transform: uppercase;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn.primary { color: #fff; background: var(--navy); box-shadow: 0 14px 32px rgba(45, 43, 123, .24); }
    .btn.secondary { color: #e5678c; border-color: var(--pink); background: rgba(255, 255, 255, .75); }
    .dots {
      display: flex;
      gap: 10px;
      position: absolute;
      left: 50%;
      bottom: 20px;
      transform: translateX(-50%);
      z-index: 3;
    }
    .dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #ffd8e3;
      border: 2px solid #fff;
      cursor: pointer;
    }
    .dots span.is-active { background: var(--pink); }
    .hero-arrow {
      position: absolute;
      top: 50%;
      z-index: 4;
      width: 42px;
      height: 42px;
      border: 0;
      background: transparent;
      color: rgba(45, 43, 123, .28);
      transform: translateY(-50%);
      cursor: pointer;
    }
    .hero-arrow svg { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 1.5; }
    .hero-arrow.prev { left: 24px; }
    .hero-arrow.next { right: 24px; }

    .section { padding: 74px 0; position: relative; }
    .section-head { text-align: center; margin-bottom: 34px; }
    .section-head h2 {
      margin: 0;
      color: var(--navy);
      font-family: var(--serif);
      font-size: clamp(34px, 4vw, 46px);
      font-weight: 500;
      line-height: 1.1;
    }
    .section-head h2 span { color: var(--pink); }
    .decor-line {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      color: var(--pink);
      margin-top: 10px;
      font-size: 13px;
    }

    .about {
      background: linear-gradient(180deg, #fff 0%, #fff9fb 100%);
      overflow: hidden;
    }
    .about-shell {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: clamp(34px, 6vw, 76px);
      align-items: center;
    }
    .about-photo {
      position: relative;
      max-width: 430px;
      justify-self: center;
    }
    .about-photo::before {
      content: "";
      position: absolute;
      inset: -22px -22px 22px 22px;
      border: 10px solid #ffe2ea;
      border-radius: 220px 220px 24px 24px;
      z-index: 0;
    }
    .about-photo img {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      object-position: top center;
      border: 10px solid #fff;
      border-radius: 220px 220px 24px 24px;
      box-shadow: var(--shadow);
    }
    .about-copy h2 {
      margin: 0;
      color: var(--navy);
      font-family: var(--serif);
      font-size: clamp(38px, 4.7vw, 54px);
      font-weight: 500;
      line-height: 1.08;
    }
    .about-copy h2 span { color: var(--pink); }
    .script {
      margin: 5px 0 24px;
      color: var(--navy);
      font-family: var(--serif);
      font-size: 27px;
      font-style: italic;
    }
    .about-copy p {
      max-width: 650px;
      color: #3e3b66;
      font-size: 16px;
      margin: 0 0 14px;
    }
    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }
    .mini-card {
      text-align: center;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      padding: 22px 14px 20px;
      box-shadow: 0 12px 28px rgba(45, 43, 123, .07);
    }
    .mini-icon, .benefit-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 12px;
      display: grid;
      place-items: center;
      border: 2px solid var(--pink);
      border-radius: 50%;
      color: var(--navy);
      background: #fff7fa;
    }
    .mini-icon svg, .benefit-icon svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.8; }
    .mini-card h3, .benefit h3 {
      margin: 0 0 5px;
      color: var(--navy);
      font-size: 15px;
    }
    .mini-card p, .benefit p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .products { background: #fff; }
    .product-slider {
      position: relative;
      padding: 0 54px 34px;
    }
    .product-viewport {
      overflow: hidden;
      padding: 2px 2px 12px;
    }
    .product-track {
      display: flex;
      gap: 28px;
      transition: transform .55s ease;
      will-change: transform;
    }
    .product-card {
      position: relative;
      flex: 0 0 calc((100% - 56px) / 3);
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 18px 38px rgba(45, 43, 123, .11);
      transition: transform .22s ease, box-shadow .22s ease;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 24px 48px rgba(45, 43, 123, .16);
    }
    .heart {
      position: absolute;
      right: 12px;
      top: 12px;
      z-index: 2;
      width: 36px;
      height: 36px;
      border: 1px solid rgba(45, 43, 123, .14);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--navy);
      background: rgba(255, 255, 255, .88);
    }
    .heart svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
    .product-card img {
      width: 100%;
      aspect-ratio: 1 / 1.16;
      object-fit: cover;
      object-position: top center;
      background: #fff6f9;
    }
    .product-info {
      padding: 17px 14px 20px;
      text-align: center;
    }
    .product-info h3 {
      margin: 0 0 5px;
      color: var(--navy);
      font-size: 16px;
      font-weight: 700;
    }
    .price {
      color: var(--navy);
      font-weight: 900;
      font-size: 17px;
    }
    .product-arrow {
      position: absolute;
      top: 42%;
      z-index: 3;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(246, 166, 190, .52);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.9);
      color: var(--navy);
      box-shadow: 0 12px 26px rgba(45, 43, 123, .12);
      cursor: pointer;
    }
    .product-arrow svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
    .product-arrow.prev { left: 2px; }
    .product-arrow.next { right: 2px; }
    .product-dots {
      display: flex;
      justify-content: center;
      gap: 9px;
      margin-top: 8px;
    }
    .product-dots span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ffd8e3;
      border: 2px solid #fff;
      box-shadow: 0 0 0 1px rgba(246, 166, 190, .25);
      cursor: pointer;
    }
    .product-dots span.is-active { background: var(--pink); }

    .why { padding: 20px 0 70px; background: #fff; }
    .benefit-strip {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 8px;
      background:
        radial-gradient(circle at 3% 15%, rgba(246, 166, 190, .2), transparent 18%),
        radial-gradient(circle at 98% 86%, rgba(246, 166, 190, .19), transparent 16%),
        linear-gradient(90deg, #fff8fb, #fff, #fff7f2);
      box-shadow: var(--shadow);
      padding: 28px 38px 34px;
    }
    .benefit-strip h2 {
      margin: 0 0 24px;
      text-align: center;
      color: var(--navy);
      font-family: var(--serif);
      font-size: clamp(32px, 4vw, 42px);
      font-weight: 500;
      line-height: 1.1;
    }
    .benefit-strip h2 span { color: var(--pink); }
    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .benefit {
      display: grid;
      grid-template-columns: 64px 1fr;
      align-items: center;
      gap: 14px;
      padding: 12px 20px;
      border-right: 1px dashed rgba(246, 166, 190, .78);
    }
    .benefit:last-child { border-right: 0; }
    .benefit-icon { margin: 0; width: 54px; height: 54px; }
    .benefit h3, .benefit p { text-align: left; }

    .footer {
      color: #fff;
      background: var(--navy);
      overflow: hidden;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 1.25fr .8fr .95fr 1fr 1.35fr;
      gap: 36px;
      padding: 62px 0 46px;
    }
    .footer-logo-card {
      width: 178px;
      margin: 0 0 18px;
      padding: 10px 12px 9px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .95);
      box-shadow: 0 18px 34px rgba(8, 6, 52, .22);
    }
    .footer-brand img {
      width: 100%;
      margin: 0;
      filter: none;
    }
    .footer-brand p {
      max-width: 275px;
      margin: 0 0 20px;
      color: #ecebff;
      font-size: 14.5px;
      font-weight: 700;
      line-height: 1.5;
    }
    .socials { display: flex; gap: 12px; align-items: center; }
    .socials a {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--pink);
      color: #fff;
      box-shadow: 0 8px 18px rgba(0,0,0,.12);
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }
    .socials a:hover { transform: translateY(-2px); background: #ff8fb0; box-shadow: 0 12px 22px rgba(0,0,0,.18); }
    .socials svg { width: 16px; height: 16px; fill: currentColor; }
    .foot-col h3 {
      margin: 0 0 17px;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: .55px;
      color: #fff;
    }
    .foot-col a,
    .foot-col p {
      display: block;
      margin: 0 0 10px;
      color: #ecebff;
      font-size: 14px;
    }
    .newsletter {
      display: grid;
      grid-template-columns: 1fr auto;
      width: min(100%, 330px);
      margin-top: 13px;
      overflow: hidden;
      border-radius: 8px;
      background: #fff;
    }
    .newsletter input {
      min-width: 0;
      border: 0;
      outline: 0;
      padding: 13px 14px;
      color: var(--navy);
    }
    .newsletter button {
      border: 0;
      padding: 0 18px;
      background: var(--pink);
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
    }
    .footer-bottom {
      background: #fff8f2;
      color: var(--navy);
      font-size: 13px;
    }
    .bottom-row {
      min-height: 56px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
    }
    .payments {
      display: flex;
      align-items: center;
      gap: 16px;
      font-weight: 900;
      font-style: italic;
    }
    .mc {
      position: relative;
      width: 32px;
      height: 20px;
      display: inline-block;
    }
    .mc::before,
    .mc::after {
      content: "";
      position: absolute;
      top: 2px;
      width: 17px;
      height: 17px;
      border-radius: 50%;
      opacity: .9;
    }
    .mc::before { left: 2px; background: #ef3e42; }
    .mc::after { right: 2px; background: #f7b600; }
    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 24px;
      z-index: 60;
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      box-shadow: 0 16px 32px rgba(9, 112, 54, .28);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .whatsapp-float:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 38px rgba(9, 112, 54, .36);
    }
    .whatsapp-float svg {
      width: 29px;
      height: 29px;
      fill: currentColor;
    }

    @media (max-width: 1080px) {
      .nav { grid-template-columns: 145px 1fr auto; min-height: 92px; }
      .menu { display: none; }
      .mobile-menu { display: grid; }
      .site-header.is-open .mobile-nav { display: block; }
      .about-shell { grid-template-columns: 1fr; }
      .hero { min-height: 540px; }
      .hero-grid { min-height: 540px; }
      .hero-copy {
        width: min(430px, 50vw);
        margin-left: clamp(34px, 4.2vw, 62px);
      }
      .benefit-grid { grid-template-columns: repeat(2, 1fr); }
      .product-slider { padding-inline: 48px; }
      .product-card { flex-basis: calc((100% - 28px) / 2); }
      .benefit:nth-child(2) { border-right: 0; }
      .footer-main { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 680px) {
      .container { width: min(100% - 28px, 1180px); }
      .hero .container { width: min(100% - 28px, 1180px); }
      .topbar { font-size: 12px; line-height: 1.35; }
      .nav { grid-template-columns: 120px 1fr; gap: 12px; min-height: 80px; }
      .brand img { width: 112px; }
      .nav-actions { justify-content: flex-end; gap: 5px; }
      .header-search input { display: none; }
      .header-search { width: 42px; border-color: transparent; box-shadow: none; background: transparent; }
      .quote-btn { min-height: 38px; padding: 0 12px; font-size: 12px; }
      .mobile-nav-inner { padding-bottom: 12px; }
      .hero { min-height: 610px; }
      .hero-bg img { object-position: 62% center; opacity: .8; }
      .model-slide { display: none; }
      .hero-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 44%, rgba(255,255,255,.16) 100%);
      }
      .hero-grid { min-height: 610px; align-items: flex-start; padding: 34px 0 34px; }
      .hero-copy {
        width: 100%;
        margin-left: 0;
      }
      .eyebrow { font-size: 17px; }
      .eyebrow::before, .eyebrow::after { width: 22px; }
      .hero-copy p { font-size: 16px; margin: 18px 0 24px; }
      .btn { width: 100%; min-height: 50px; }
      .hero-arrow { display: none; }
      .section { padding: 54px 0; }
      .about-photo::before { inset: -14px -14px 14px 14px; border-width: 7px; }
      .mini-grid,
      .benefit-grid,
      .footer-main { grid-template-columns: 1fr; }
      .product-slider { padding: 0 42px 30px; }
      .product-card { flex-basis: 100%; }
      .product-arrow { width: 36px; height: 36px; }
      .benefit,
      .benefit:nth-child(2) {
        border-right: 0;
        border-bottom: 1px dashed rgba(246, 166, 190, .78);
      }
      .benefit:last-child { border-bottom: 0; }
      .benefit-strip { padding: 26px 18px 28px; }
      .footer-main { padding: 46px 0 34px; }
      .newsletter { grid-template-columns: 1fr; }
      .newsletter button { min-height: 44px; }
      .bottom-row { flex-direction: column; justify-content: center; padding: 16px 0; text-align: center; }
      .whatsapp-float { right: 16px; bottom: 18px; width: 50px; height: 50px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
    }
