/* ============================================
   Kyanda Coffee — Modern Unique Design
   ============================================ */

   @font-face {
    font-family: 'Danilo Catalina';
    src: url('fonts/DaniloCatalina.woff2') format('woff2'),
         url('fonts/DaniloCatalina.woff') format('woff'),
         url('fonts/DaniloCatalina.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  :root {
    --color-1: #331d17;
    --color-2: #644137;
    --color-3: #495542;
    --color-4: #9c5a26;
    --color-5: #bd6b25;
    --color-6: #dca15d;
    --color-7: #d8ceca;
    --color-8: #fefefe;
  
    --espresso: #331d17;
    --roast: #644137;
    --earth: #495542;
    --accent: #bd6b25;
    --beige: #dca15d;
    --beige-light: #d8ceca;
    --cream: #fefefe;
  
    --font-display: 'Danilo Catalina', 'Outfit', sans-serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
  
    --radius: 12px;
    --radius-xl: 20px;
    --container: 1280px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--espresso);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
  }
  
  body.nav-open { overflow: hidden; }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  
  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 6vw, 3rem);
  }
  
  /* ============================================
     Navigation — Minimal Glass
     ============================================ */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
  }
  
  .nav.scrolled {
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(51, 29, 23, 0.06);
  }
  
  .nav.scrolled .nav-logo,
  .nav.scrolled .nav-menu a {
    color: var(--espresso);
  }
  
  .nav.scrolled .nav-menu a:hover {
    color: var(--roast);
  }
  
  .nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 6vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-logo {
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .nav-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
  }
  
  /* Hero: show white logo, hide dark */
  .nav-logo--hero {
    filter: brightness(0) invert(1);
  }
  .nav-logo--scrolled {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
  }
  
  .nav:not(.scrolled) .nav-logo--hero {
    opacity: 1;
  }
  .nav:not(.scrolled) .nav-logo--scrolled {
    opacity: 0;
  }
  
  /* Scrolled or menu open: show dark logo for white header */
  .nav.scrolled .nav-logo--hero,
  body.nav-open .nav-logo--hero {
    opacity: 0;
  }
  .nav.scrolled .nav-logo--scrolled,
  body.nav-open .nav-logo--scrolled {
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }
  
  .nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
  }
  
  .nav-menu a:hover {
    color: var(--beige);
  }
  

  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  
  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--espresso);
    border-radius: 1px;
  }
  
  /* Hide nav close by default (desktop); displayed only inside the mobile media query */
  .nav-close {
    display: none;
  }

  /* Mobile nav overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(51, 29, 23, 0.4);
    z-index: 1002; /* raised so it sits above the header container when open */
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-container {
      position: relative;
      z-index: 1001;
    }
    .nav-toggle {
      display: flex;
      position: relative;
      width: 44px;
      height: 44px;
      padding: 8px;
      border-radius: 8px;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
    }
    .nav-toggle span {
      width: 22px;
      height: 3px;
      background: var(--cream);
      transition: transform 0.3s ease, opacity 0.3s ease;
      border-radius: 2px;
    }
    .nav.scrolled .nav-toggle span {
      background: var(--espresso);
    }
    body.nav-open .nav-toggle span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    body.nav-open .nav-toggle span:nth-child(2) {
      opacity: 0;
    }
    body.nav-open .nav-toggle span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    body.nav-open .nav-toggle span {
      background: var(--espresso);
    }
    body.nav-open .nav-overlay {
      display: block;
      opacity: 1;
      pointer-events: auto;
    }
    .nav-overlay {
      display: block;
      pointer-events: none;
    }

    /* Close button (mobile only) */
    .nav-close {
      display: none;
      position: absolute;
      top: 14px;
      right: 14px;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      line-height: 1;
      color: var(--espresso);
      padding: 6px;
      cursor: pointer;
    }
    .nav-menu .nav-close {
      display: block;
    }

    body.nav-open .nav {
      background: var(--cream);
      box-shadow: 0 1px 0 rgba(51, 29, 23, 0.08);
    }
    body.nav-open .nav-logo-img {
      filter: none;
    }
    .nav-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: min(300px, 100%);
      height: 100vh;
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 5.5rem;
      padding-left: 2rem;
      gap: 0.25rem;
      background: var(--cream);
      box-shadow: -4px 0 24px rgba(51, 29, 23, 0.12);
      transform: translateX(100%);
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1003; /* sit above the overlay */
    }
    .nav-menu.open {
      transform: translateX(0);
    }
    .nav-menu li {
      list-style: none;
    }
    .nav-menu a {
      display: block;
      padding: 0.875rem 0;
      font-size: 1rem;
      font-weight: 500;
      color: var(--espresso);
      border-bottom: 1px solid rgba(51, 29, 23, 0.06);
    }
    .nav-menu a:hover {
      color: var(--roast);
    }
  }
  
  /* ============================================
     Buttons
     ============================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .btn-primary {
    background: var(--espresso);
    color: var(--cream);
  }
  
  .btn-primary:hover {
    background: var(--roast);
    transform: translateY(-2px);
  }
  
  .btn-primary.btn-light {
    background: var(--cream);
    color: var(--espresso);
  }
  
  .btn-primary.btn-light:hover {
    background: var(--beige-light);
  }
  
  .btn-ghost {
    background: transparent;
    color: var(--espresso);
    border-color: var(--espresso);
  }
  
  .btn-ghost:hover {
    background: var(--espresso);
    color: var(--cream);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--espresso);
    border-color: var(--espresso);
  }
  
  .btn-outline:hover {
    background: var(--espresso);
    color: var(--cream);
  }
  
  .btn-outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--cream);
  }

  /* ============================================
     WhatsApp floating link — larger, anchored bottom-right
     ============================================ */
  .whatsapp-float {
    position: fixed;
    right: env(safe-area-inset-right, 1.25rem);
    bottom: env(safe-area-inset-bottom, 1.75rem);
    z-index: 1400;
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    background: #25D366;
    color: #fff;
    padding: .9rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform .12s ease, box-shadow .12s ease, opacity .2s ease;
    opacity: 0;
    transform: translateY(28px);
    will-change: transform, opacity;
  }

  .whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
    animation: float-bob 3s ease-in-out infinite;
  }

  .whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,0.22); }

  @keyframes float-bob {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
  }

  .whatsapp-float-icon { width: 26px; height: 26px; fill: #fff; display: inline-block; }
  .whatsapp-float-text { display: none; }

  /* show text on larger screens */
  @media (min-width: 640px) {
    .whatsapp-float-text { display: inline-block; }
  }

  /* Align with container on wide screens */
  @media (min-width: 900px) {
    .whatsapp-float {
      right: calc((100vw - var(--container)) / 2 + 1rem);
      bottom: 2.5rem; /* lift it a bit off the corner */
    }
  }

  /* Mobile & small tablets: inset the button to match container padding and increase size slightly */
  @media (max-width: 900px) {
    .whatsapp-float { right: clamp(1.5rem, 6vw, 3rem); bottom: 2rem; padding: .75rem 1rem; font-size: 0.98rem; }
    .whatsapp-float-icon { width: 22px; height: 22px; }
  }

  @media (max-width: 480px) {
    .whatsapp-float { right: clamp(1.5rem, 6vw, 2rem); bottom: 1.75rem; padding: .7rem .9rem; font-size: 0.98rem; }
    .whatsapp-float-icon { width: 20px; height: 20px; }
  }

  /* hide while menu open */
  body.nav-open .whatsapp-float { display: none; }
  
  .btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
  
  /* ============================================
     Hero — Split Layout
     ============================================ */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding-top: 0;
  }
  
  .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(6rem, 12vw, 8rem) clamp(3rem, 8vw, 6rem);
    background: var(--espresso);
    color: var(--cream);
  }
  
  .hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 1.5rem;
  }
  
  .hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
  }
  
  .hero-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 420px;
  }
  
  .hero-actions {
    display: flex;
    gap: 1rem;
  }
  
  .hero-actions .btn-primary {
    background: var(--cream);
    color: var(--espresso);
    border-color: var(--cream);
  }
  .hero-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--espresso);
    border-color: rgba(255, 255, 255, 0.95);
  }
  
  .hero-visual {
    position: relative;
    overflow: hidden;
  }
  
  .hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
  }
  
  @media (max-width: 900px) {
    .hero-split {
      grid-template-columns: 1fr;
    }
    .hero-content {
      padding: clamp(5rem, 10vw, 6rem) clamp(2rem, 6vw, 3rem);
      min-height: 60vh;
    }
    .hero-visual {
      min-height: 40vh;
    }
    .hero-visual img {
      min-height: 40vh;
    }
  }
  
  /* ============================================
     Section Header
     ============================================ */
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }
  
  .section-header h2,
  .section-header .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--espresso);
    line-height: 1.2;
  }
  
  /* ============================================
     Why — Bento Grid
     ============================================ */
  .why {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--cream);
  }
  
  .why-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
  }
  
  .why-card {
    background: var(--cream);
    border: 1px solid var(--beige-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .why-card:hover {
    border-color: var(--beige);
    box-shadow: 0 20px 60px rgba(51, 29, 23, 0.08);
  }
  
  .why-card-large {
    grid-row: span 2;
  }
  
  .why-card-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .why-card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  
  .why-card-large .why-card-img {
    aspect-ratio: 3/4;
  }
  
  .why-card-wide .why-card-img {
    aspect-ratio: auto;
    min-height: 200px;
  }
  
  .why-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .why-card:hover .why-card-img img {
    transform: scale(1.05);
  }
  
  .why-card-content {
    padding: 1.75rem;
  }
  
  .why-card-large .why-card-content {
    padding: 2rem;
  }
  
  .why-card-wide .why-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.5rem;
  }
  
  .why-card h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 0.5rem;
  }
  
  .why-card p {
    font-size: 0.9375rem;
    color: var(--roast);
    line-height: 1.6;
  }
  
  
  @media (max-width: 900px) {
    .why-bento {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }
    .why-card-large {
      grid-row: span 1;
    }
    .why-card-wide {
      grid-column: span 1;
      grid-template-columns: 1fr;
    }
    .why-card-wide .why-card-img {
      aspect-ratio: 4/3;
    }
  }
  
  /* ============================================
     About — Overlapping Layout
     ============================================ */
  .about {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--beige-light);
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-visual {
    position: relative;
  }
  
  .about-visual img {
    width: 100%;
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  
  .about-visual-badge {
    position: absolute;
    bottom: -1rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--cream);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--espresso);
    box-shadow: 0 8px 32px rgba(51, 29, 23, 0.12);
  }
  
  .about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 1.25rem;
  }
  
  .about-content p {
    color: var(--roast);
    margin-bottom: 1rem;
    line-height: 1.65;
  }
  
  .about-content .btn {
    margin-top: 0.5rem;
  }
  
  @media (max-width: 900px) {
    .about-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .about-visual { order: -1; }
  }
  
  /* ============================================
     Benefits Section
     ============================================ */
  .benefits {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--cream);
  }
  
  .benefits .section-header {
    margin-bottom: 2.5rem;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  .benefit-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(51, 29, 23, 0.12);
  }
  
  .benefit-item--1 {
    background: rgba(220, 161, 93, 0.2);
    border-color: rgba(220, 161, 93, 0.5);
  }
  .benefit-item--1:hover { border-color: var(--beige); }
  
  .benefit-item--2 {
    background: rgba(73, 85, 66, 0.08);
    border-color: rgba(73, 85, 66, 0.3);
  }
  .benefit-item--2:hover { border-color: var(--earth); }
  
  .benefit-item--3 {
    background: rgba(189, 107, 37, 0.12);
    border-color: rgba(189, 107, 37, 0.4);
  }
  .benefit-item--3:hover { border-color: var(--accent); }
  
  .benefit-item--4 {
    background: rgba(100, 65, 55, 0.08);
    border-color: rgba(100, 65, 55, 0.3);
  }
  .benefit-item--4:hover { border-color: var(--roast); }
  
  .benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
  }
  
  .benefit-item--1 .benefit-icon { color: var(--roast); }
  .benefit-item--2 .benefit-icon { color: var(--earth); }
  .benefit-item--3 .benefit-icon { color: var(--accent); }
  .benefit-item--4 .benefit-icon { color: var(--espresso); }
  
  .benefit-item h3 {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--espresso);
    margin-bottom: 0.35rem;
  }
  
  .benefit-item p {
    font-size: 0.9375rem;
    color: var(--roast);
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* ============================================
     Product — Single Pouch Feature
     ============================================ */
  .products {
    padding: clamp(5rem, 10vw, 8rem) 0;
  }
  
  .product-feature {
    background: var(--beige-light);
  }
  
  .product-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
  
  .product-feature-image {
    position: sticky;
    top: 6rem;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius-xl);
  }
  
  .product-feature-image img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(51, 29, 23, 0.12);
    object-fit: contain;
  }
  
  .product-feature-content .section-badge {
    margin-bottom: 0.5rem;
  }
  
  .product-feature-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--espresso);
    margin-bottom: 1rem;
  }
  
  .product-lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--roast);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .product-details {
    margin-bottom: 2rem;
  }
  
  .product-details p {
    font-size: 1rem;
    color: var(--roast);
    line-height: 1.75;
    margin-bottom: 1.25rem;
  }
  
  .product-details p:last-child {
    margin-bottom: 0;
  }
  
  .product-benefits {
    list-style: none;
    margin: 1rem 0 1.25rem;
    padding: 0;
  }
  
  .product-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--roast);
    line-height: 1.6;
  }
  
  .product-benefits li::before {
    content: "◎";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
  }
  
  @media (max-width: 900px) {
    .product-feature-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .product-feature-image {
      position: static;
    }
  }
  
  /* ============================================
     CTA Section
     ============================================ */
  .cta-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 1.5rem;
  }
  
  .cta-bg {
    position: absolute;
    inset: 0;
  }
  
  .cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(51, 29, 23, 0.92) 0%, rgba(100, 65, 55, 0.88) 50%, rgba(51, 29, 23, 0.9) 100%);
  }
  
  .cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
    background-size: 32px 32px;
  }
  
  .cta-content {
    position: relative;
    text-align: center;
    max-width: 560px;
  }
  
  .cta-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 1rem;
  }
  
  .cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }
  
  .cta-content > p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }
  
  .cta-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    color: var(--cream);
    transition: all 0.3s ease;
  }
  
  .cta-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--beige);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  }
  
  .cta-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige);
  }
  
  .cta-card-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .cta-card-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--beige);
  }
  
  .cta-card-value {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    word-break: break-word;
    text-align: center;
  }
  
  .cta-location {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  @media (max-width: 640px) {
    .cta-actions {
      grid-template-columns: 1fr;
    }
  
    .cta-card-value {
      font-size: 0.9375rem;
    }
  }
  
  /* ============================================
     Footer — Kahawia-style minimal
     ============================================ */
  .footer {
    padding: clamp(3rem, 6vw, 4rem) 0 2rem;
    background: var(--espresso);
    color: rgba(255, 255, 255, 0.85);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 0.75rem;
  }
  
  .footer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  .footer-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--beige);
    margin-bottom: 0.5rem;
  }
  
  .footer-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 280px;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1rem;
  }
  
  .footer-links a,
  .footer-contact a {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
  }
  
  .footer-links a:hover,
  .footer-contact a:hover {
    color: var(--cream);
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .footer-bottom p {
    font-size: 0.8125rem;
    opacity: 0.7;
  }
  
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
    .footer-desc {
      max-width: none;
    }
  }
  
  /* ============================================
     Animations & Microinteractions
     ============================================ */
  /* Page loader (simple circular spinner around logo) */
  .page-loader {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    transition: opacity .45s ease, visibility .45s ease;
  }
  .page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

  .loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side,#ffa516 94%,#0000) top/8px 8px no-repeat,
                conic-gradient(#0000 30%,#ffa516);
    -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 8px),#000 0);
    animation: loader-spin 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  @keyframes loader-spin{ 100%{ transform: rotate(1turn); } }

  .loader-logo {
    width: 58%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }

  /* Hide content behind loader until reveal */
  body:not(.content-ready) > *:not(#page-loader) {
    opacity: 0;
    transform: translateY(8px) scale(.998);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events: none;
    user-select: none;
  }
  body.content-ready > *:not(#page-loader) {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    user-select: auto;
  }

  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .loader { animation: none !important; }
  }

  /* Base section reveal (kept for backward compatibility) */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered child reveals: each direct child gets a --delay set by JS */
  .animate-on-scroll > * {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s var(--delay, 0ms) ease-out, transform 0.6s var(--delay, 0ms) ease-out;
  }
  .animate-on-scroll.in-view > * {
    opacity: 1;
    transform: none;
  }

  /* Modern reveal with 3D tilt variants */
  .reveal { opacity: 0; transform: perspective(1000px) translateY(26px) rotateX(6deg) scale(.995); transition: transform 0.8s cubic-bezier(.2,.9,.3,1), opacity 0.8s ease; }
  .reveal.in-view { opacity: 1; transform: none; }
  .reveal-left { transform: perspective(1000px) translateX(-28px) translateY(18px) rotateZ(-6deg) rotateX(6deg); }
  .reveal-right { transform: perspective(1000px) translateX(28px) translateY(18px) rotateZ(6deg) rotateX(6deg); }
  .reveal-up { transform: perspective(1000px) translateY(36px) rotateX(6deg); }

  /* Subtle parallax for images inside reveal */
  .reveal img { transition: transform .6s ease; transform-origin: center; }
  .reveal.in-view img { transform: translateY(-6px) scale(1.02); }

  /* Interactive hover effects */
  .why-card,
  .benefit-item,
  .product-feature-image,
  .product-feature-image img,
  .cta-card,
  .footer-card {
    transition: transform 0.24s cubic-bezier(.2,.9,.3,1), box-shadow 0.24s ease;
  }

  .why-card:hover,
  .why-card:focus-within,
  .benefit-item:hover,
  .product-feature-image:hover,
  .cta-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 18px 40px rgba(51, 29, 23, 0.08);
  }

  /* Buttons micro-lift */
  .btn { transition: transform 0.16s ease, box-shadow 0.16s ease; }
  .btn:hover { transform: translateY(-3px); }

  /* Hero image subtle depth effect */
  .hero-visual img {
    transition: transform 0.25s ease-out, filter 0.3s ease;
    will-change: transform;
    transform-origin: center;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  }

  /* Ensure floating icon animations respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
    .whatsapp-float.visible { animation: none; transform: none; }
  }
  