/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
    :root {
      --teal:       #35C6C3;
      --teal-light: #5DD9D6;
      --teal-dark:  #1FA8A5;
      --pink:       #E8196C;
      --pink-hover: #c8115c;
      --gold:       #C4A76B;
      --gold-light: #E8D4A0;
      --cream:      #F8F4EE;
      --white:      #FFFFFF;
      --dark:       #1A1A1A;
      --gray:       #6B6B6B;
      --gray-light: #F0EFEB;
      --nav-h:      68px;
    }

    /* ─── RESET ──────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a  { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─── NAV ────────────────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      height: var(--nav-h);
      background: var(--white);
      border-bottom: 1px solid rgba(0,0,0,.07);
      display: flex;
      align-items: center;
      padding: 0 40px;
      gap: 32px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }
    .nav-logo-img {
      height: 40px;
      width: auto;
      display: block;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 400;
      letter-spacing: .5px;
      color: var(--dark);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--teal-dark); }
    .nav-links .active {
      background: var(--pink);
      color: var(--white);
      padding: 7px 18px;
      border-radius: 30px;
      font-weight: 500;
    }
    .nav-links .active:hover { background: var(--pink-hover); color: var(--white); }
    .nav-search {
      margin-left: auto;
      display: flex;
      align-items: center;
      background: var(--gray-light);
      border-radius: 30px;
      padding: 8px 18px;
      gap: 8px;
      width: 240px;
    }
    .nav-search input {
      border: none;
      background: transparent;
      outline: none;
      font-size: 13px;
      font-family: 'DM Sans', sans-serif;
      color: var(--dark);
      width: 100%;
    }
    .nav-search input::placeholder { color: var(--gray); }
    .nav-icons {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-left: 20px;
      color: var(--dark);
    }
    .nav-icons svg { width: 22px; height: 22px; cursor: pointer; }
    .nav-divider { width: 1px; height: 22px; background: #ccc; }

    /* ─── HERO CAROUSEL ─────────────────────────────────────────── */
    .hero {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .carousel {
      display: flex;
      transition: transform .6s cubic-bezier(.77,0,.18,1);
    }
    .slide {
      min-width: 100%;
      position: relative;
      height: 580px;
      overflow: hidden;
    }

    /* Slide 1 – warm beige/dark */
    .slide-1 {
      background: #2B2620;
    }
    .slide-1 .slide-bg {
      position: absolute; inset: 0;
      background: linear-gradient(120deg, #2B2620 45%, #5C4A38 100%);
    }
    .slide-1 .slide-img {
      position: absolute;
      right: 0; bottom: 0;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      width: 55%;
      opacity: .95;
    }
    .slide-1 .slide-content {
      position: absolute;
      left: 60px; top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      color: var(--white);
    }
    .slide-1 .brand-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 12px;
      display: block;
    }
    .slide-1 h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 54px;
      font-weight: 300;
      line-height: 1.1;
      color: var(--white);
      margin-bottom: 10px;
    }
    .slide-1 h1 em {
      font-style: italic;
      color: var(--gold-light);
    }
    .slide-1 .subtitle {
      font-size: 13px;
      color: rgba(255,255,255,.65);
      letter-spacing: 1px;
      margin-bottom: 32px;
    }
    .kinty-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      backdrop-filter: blur(6px);
      border-radius: 40px;
      padding: 10px 22px;
      font-size: 12px;
      letter-spacing: 1px;
      color: rgba(255,255,255,.9);
    }
    .kinty-badge .dot {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--teal);
      display: flex; align-items: center; justify-content: center;
    }
    .deco-blob {
      position: absolute;
      left: -30px; bottom: -20px;
      width: 160px; height: 160px;
      z-index: 1;
    }

    /* Slide 2 – teal */
    .slide-2 {
      background: var(--teal);
    }
    .slide-2 .slide-img {
      position: absolute;
      right: 0; bottom: 0;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      width: 50%;
      opacity: .9;
    }
    .slide-2 .slide-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 30%, #5DD9D6 0%, #1FA8A5 80%);
    }
    .slide-2 .deco-blobs {
      position: absolute; inset: 0;
    }
    .slide-2-flor {
      position: absolute;
      left: -70px; bottom: -70px;
      width: 340px;
      opacity: .18;
      z-index: 1;
      filter: brightness(0) invert(1);
      pointer-events: none;
    }
    .slide-2 .slide-content {
      position: absolute;
      left: 60px; top: 40%;
      transform: translateY(-50%);
      z-index: 2;
      color: var(--white);
    }
    .slide-2-eyebrow {
      display: block;
      font-size: 10px;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: rgba(255,255,255,.65);
      margin-bottom: 18px;
    }
    .slide-2-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: 50px;
      font-weight: 300;
      line-height: 1.12;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }
    .slide-2-heading em {
      font-style: italic;
      color: rgba(255,255,255,.75);
      text-transform: none;
    }
    .slide-2-line {
      width: 48px;
      height: 2px;
      background: rgba(255,255,255,.5);
      margin-bottom: 16px;
    }
    .slide-2-sub {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,.55);
    }

    /* Slide 3 – editorial */
    .slide-3 {
      background: #F5F0E8;
    }
    .slide-3 .slide-img {
      position: absolute;
      left: 0; top: 0;
      height: 100%;
      width: 52%;
      object-fit: cover;
      object-position: center top;
    }
    .slide-3 .slide-content {
      position: absolute;
      left: 56%; top: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }
    .slide-3 h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 48px;
      font-weight: 300;
      line-height: 1.15;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .slide-3 h2 em { font-style: italic; color: var(--teal-dark); }
    .slide-3 p {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 28px;
      max-width: 320px;
      line-height: 1.7;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--pink);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .5px;
      padding: 13px 28px;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .btn-primary:hover { background: var(--pink-hover); transform: translateY(-1px); }
    .slide-3 .deco-bird {
      position: absolute;
      right: 55%; top: 48px;
      width: 64px; opacity: .25;
      fill: var(--gold);
    }

    /* Carousel controls */
    .carousel-dots {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.5);
      border: 2px solid rgba(255,255,255,.6);
      cursor: pointer;
      transition: background .3s, transform .2s;
    }
    .dot.active {
      background: var(--white);
      transform: scale(1.25);
    }
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      background: rgba(255,255,255,.18);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,.3);
      color: var(--white);
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .2s;
      font-size: 18px;
    }
    .carousel-arrow:hover { background: rgba(255,255,255,.3); }
    .carousel-arrow.prev { left: 20px; }
    .carousel-arrow.next { right: 20px; }

    /* ─── PRODUCTS STRIP ─────────────────────────────────────────── */
    .products-section {
      padding: 72px 60px 80px;
      background: var(--white);
    }
    .products-section .section-label {
      text-align: center;
      font-size: 11px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--teal-dark);
      margin-bottom: 10px;
    }
    .products-section .section-title {
      text-align: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      font-weight: 300;
      color: var(--dark);
      margin-bottom: 52px;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      max-width: 960px;
      margin: 0 auto;
    }
    .product-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      cursor: pointer;
    }
    .product-card:hover .product-img-wrap { transform: translateY(-6px); }
    .product-img-wrap {
      width: 160px; height: 200px;
      display: flex; align-items: flex-end; justify-content: center;
      transition: transform .35s cubic-bezier(.34,1.56,.64,1);
      margin-bottom: 24px;
    }
    .product-img-wrap img {
      max-height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 12px 24px rgba(0,0,0,.12));
    }
    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .product-subtitle {
      font-size: 12px;
      color: var(--gray);
      letter-spacing: .5px;
      margin-bottom: 6px;
    }
    .product-vol {
      font-size: 12px;
      color: var(--gray);
    }

    /* ─── BRAND BANNER ───────────────────────────────────────────── */
    .brand-banner {
      position: relative;
      overflow: hidden;
      background: var(--cream);
      padding: 0;
      display: flex;
      align-items: stretch;
    }
    .brand-banner-img {
      width: 56%;
      min-height: 420px;
      object-fit: cover;
      object-position: center;
      flex-shrink: 0;
    }
    .brand-banner-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 56px;
      position: relative;
      z-index: 2;
    }
    .brand-banner-content .eyebrow {
      font-size: 10px;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--teal-dark);
      margin-bottom: 14px;
    }
    .brand-banner-content h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 300;
      line-height: 1.2;
      color: var(--dark);
      margin-bottom: 14px;
    }
    .brand-banner-content h3 em {
      font-style: italic;
      color: var(--gold);
    }
    .brand-banner-content p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.75;
      max-width: 340px;
      margin-bottom: 32px;
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 2px solid var(--dark);
      color: var(--dark);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 13px 28px;
      border-radius: 40px;
      background: transparent;
      cursor: pointer;
      transition: all .2s;
      width: fit-content;
    }
    .btn-outline:hover {
      background: var(--dark);
      color: var(--white);
    }
    .circle-arrow {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--pink);
      display: flex; align-items: center; justify-content: center;
    }
    .circle-arrow svg { width: 16px; height: 16px; fill: var(--white); }

    /* ─── PRODUCT FEATURES ───────────────────────────────────────── */
    .features-section {
      padding: 80px 60px;
      background: var(--white);
    }
    .features-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .features-left .eyebrow {
      font-size: 10px;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--teal-dark);
      margin-bottom: 12px;
    }
    .features-left h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 40px;
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .features-left h2 em { font-style: italic; color: var(--teal-dark); }
    .features-left p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .features-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .tag {
      font-size: 12px;
      font-weight: 500;
      padding: 8px 18px;
      border-radius: 30px;
      border: 1.5px solid var(--teal);
      color: var(--teal-dark);
      background: rgba(53,198,195,.06);
    }
    .features-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .feat-card {
      background: var(--gray-light);
      border-radius: 16px;
      padding: 28px 22px;
      position: relative;
      overflow: hidden;
      transition: transform .25s;
    }
    .feat-card:hover { transform: translateY(-4px); }
    .feat-card .icon {
      width: 40px; height: 40px;
      border-radius: 12px;
      background: var(--teal);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .feat-card .icon svg { width: 20px; height: 20px; fill: var(--white); }
    .feat-card h4 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
    }
    .feat-card p {
      font-size: 12px;
      color: var(--gray);
      line-height: 1.6;
    }
    .feat-card.accent {
      background: var(--teal);
      color: var(--white);
    }
    .feat-card.accent .icon { background: rgba(255,255,255,.2); }
    .feat-card.accent h4 { color: var(--white); }
    .feat-card.accent p  { color: rgba(255,255,255,.8); }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    footer {
      background: var(--pink);
      color: var(--white);
      padding: 48px 60px 32px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 200px 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,.2);
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer-logo .circle {
      width: 46px; height: 46px;
      border-radius: 50%;
      
      display: flex; align-items: center; justify-content: center;
    }
    .footer-logo .name {
      font-weight: 700;
      font-size: 20px;
      letter-spacing: 1px;
    }
    .footer-section h5 {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 16px;
      opacity: .7;
    }
    .footer-section ul li {
      margin-bottom: 10px;
    }
    .footer-section ul li a {
      font-size: 14px;
      color: rgba(255,255,255,.85);
      transition: color .2s;
    }
    .footer-section ul li a:hover { color: var(--white); }
    .footer-section .branch {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 14px;
    }
    .footer-section .branch svg {
      width: 16px; height: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      fill: rgba(255,255,255,.7);
    }
    .footer-section .branch p {
      font-size: 13px;
      line-height: 1.5;
      color: rgba(255,255,255,.85);
    }
    .social-row {
      display: flex;
      gap: 10px;
      margin-top: 12px;
    }
    .social-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .2s;
    }
    .social-icon:hover { background: rgba(255,255,255,.35); }
    .social-icon svg { width: 16px; height: 16px; fill: var(--white); }
    .footer-bottom {
      padding-top: 20px;
      text-align: center;
      font-size: 12px;
      color: rgba(255,255,255,.5);
    }

    /* ─── ANIMATIONS ─────────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp .7s cubic-bezier(.4,0,.2,1) both; }
    .delay-1 { animation-delay: .15s; }
    .delay-2 { animation-delay: .3s; }
    .delay-3 { animation-delay: .45s; }

    /* ─── FOOTER LOGO ───────────────────────────────────────────── */
    .footer-logo-img {
      height: 36px;
      width: auto;
      display: block;
      filter: brightness(0) invert(1);
    }

    /* ─── TEAL DECO BLOBS (SVG) ─────────────────────────────────── */
    .blob-svg { position: absolute; pointer-events: none; }