    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    :root {
      --cream: #F5F1E8;
      --tan: #D4C5A9;
      --brown: #5C4A3A;
      --black: #111111;
      --white: #ffffff;
      --tan-hover: #C4B599
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 90px
    }

    body {
      font-family: 'DM Sans', sans-serif;
      background-color: var(--cream);
      color: var(--brown);
      line-height: 1.6
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', serif;
      color: var(--black)
    }

    img {
      display: block;
      max-width: 100%
    }

    a {
      text-decoration: none;
      color: inherit
    }

    button {
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      border: none;
      background: none
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(245, 241, 232, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--tan)
    }

    .header-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0.75rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .logo-img {
      height: 64px;
      width: 64px
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2rem
    }

    nav a,
    nav button {
      color: var(--brown);
      font-size: 1rem;
      transition: color 0.2s;
      background: none;
      border: none
    }

    nav a:hover,
    nav button:hover {
      color: var(--black)
    }

    .btn-order-nav {
      background: var(--black);
      color: var(--cream) !important;
      padding: 0.5rem 1.5rem;
      border-radius: 9999px;
      transition: background 0.2s !important
    }

    .btn-order-nav:hover {
      background: var(--brown) !important
    }

    .mobile-menu-btn {
      display: none;
      padding: 4px;
      color: var(--black)
    }

    .mobile-menu-btn svg {
      width: 28px;
      height: 28px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round
    }

    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 40
    }

    .mobile-overlay.open {
      display: block
    }

    .mobile-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5)
    }

    .mobile-panel {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 75%;
      max-width: 320px;
      background: var(--cream);
      padding: 6rem 2rem 2rem;
      box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15)
    }

    /* ── THE FIX: explicitly set display:flex on mobile panel nav ── */
    .mobile-panel nav {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
      align-items: stretch !important
    }

    .mobile-panel nav a,
    .mobile-panel nav button {
      text-align: left;
      font-size: 1.25rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--tan);
      display: block;
      width: 100%
    }

    .mobile-panel .btn-order-nav {
      margin-top: 1.5rem;
      text-align: center;
      padding: 1rem 2rem;
      display: block
    }

    .hero {
      padding-top: 8rem;
      padding-bottom: 5rem;
      padding-left: 1.5rem;
      padding-right: 1.5rem;
      text-align: center
    }

    .hero-logo {
      width: 14rem;
      height: 14rem;
      margin: 0 auto 1.5rem
    }

    .hero h1 {
      font-size: clamp(2.5rem, 7vw, 4.5rem);
      line-height: 1.1;
      margin-bottom: 1.5rem
    }

    .hero p {
      font-size: 1.25rem;
      color: var(--brown);
      max-width: 36rem;
      margin: 0 auto 3rem
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center
    }

    .btn-primary {
      background: var(--black);
      color: var(--cream);
      padding: 1rem 2rem;
      border-radius: 9999px;
      font-size: 1.125rem;
      font-weight: 500;
      transition: background 0.2s
    }

    .btn-primary:hover {
      background: var(--brown)
    }

    .btn-secondary {
      background: var(--tan);
      color: var(--black);
      padding: 1rem 2rem;
      border-radius: 9999px;
      font-size: 1.125rem;
      font-weight: 500;
      transition: background 0.2s
    }

    .btn-secondary:hover {
      background: var(--tan-hover)
    }

    section {
      padding: 5rem 1.5rem
    }

    .section-white {
      background: var(--white)
    }

    .section-cream {
      background: var(--cream)
    }

    .section-black {
      background: var(--black);
      color: var(--cream)
    }

    .container {
      max-width: 56rem;
      margin: 0 auto
    }

    .container-wide {
      max-width: 72rem;
      margin: 0 auto
    }

    .container-full {
      max-width: 1280px;
      margin: 0 auto
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.25rem);
      text-align: center;
      margin-bottom: 1rem
    }

    .section-subtitle {
      text-align: center;
      color: var(--brown);
      font-size: 1.125rem;
      margin-bottom: 4rem
    }

    .about-text {
      font-size: 1.125rem;
      line-height: 1.8
    }

    .about-text p+p {
      margin-top: 1.5rem
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2rem
    }

    .about-item {
      text-align: center
    }

    .about-item .x {
      font-size: 2rem;
      margin-bottom: 0.5rem
    }

    .about-item p {
      font-weight: 500;
      color: var(--black)
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem
    }

    .why-card {
      text-align: center
    }

    .why-icon {
      width: 5rem;
      height: 5rem;
      background: var(--black);
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem
    }

    .why-icon svg {
      width: 2.5rem;
      height: 2.5rem;
      stroke: var(--cream);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .why-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem
    }

    .why-card ul {
      list-style: none;
      color: var(--brown)
    }

    .why-card ul li+li {
      margin-top: 0.5rem
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem
    }

    .product-card {
      background: var(--cream);
      border-radius: 1rem;
      padding: 2rem;
      cursor: pointer;
      border: 2px solid transparent;
      transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
      position: relative
    }

    .product-card:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      border-color: var(--tan);
      transform: translateY(-4px)
    }

    .product-emoji {
      font-size: 3rem;
      margin-bottom: 1rem
    }

    .product-img {
      width: 100%;
      height: 12rem;
      object-fit: cover;
      border-radius: 0.75rem;
      margin-bottom: 1rem
    }

    .product-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 0.75rem
    }

    .product-name {
      font-size: 1.5rem;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--black)
    }

    .product-price {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--brown);
      white-space: nowrap
    }

    .product-tagline {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--black);
      margin-bottom: 0.75rem
    }

    .product-desc {
      color: var(--brown);
      margin-bottom: 1rem
    }

    .product-details {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.4s ease, padding-top 0.3s;
      display: block !important;
      border-top: none;
      padding-top: 0;
      margin-top: 0
    }

    .product-details.open {
      max-height: 500px;
      border-top: 1px solid var(--tan);
      padding-top: 1rem;
      margin-top: 0.5rem
    }

    .product-details p {
      font-weight: 500;
      color: var(--black);
      margin-bottom: 0.5rem
    }

    .product-details ul {
      list-style: none;
      color: var(--brown);
      font-size: 0.875rem
    }

    .product-details ul li+li {
      margin-top: 0.25rem
    }

    .product-details .benefits {
      margin-top: 1rem
    }

    .product-card .expand-hint {
      font-size: 0.78rem;
      color: var(--tan-hover);
      margin-top: 0.25rem;
      display: flex;
      align-items: center;
      gap: 0.3rem
    }

    .product-card.expanded {
      border-color: var(--brown);
      box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14)
    }

    .btn-whatsapp {
      display: block;
      margin-top: 1.5rem;
      background: var(--black);
      color: var(--cream);
      text-align: center;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      font-weight: 500;
      transition: background 0.2s
    }

    .btn-whatsapp:hover {
      background: var(--brown)
    }

    .philosophy-text {
      font-size: 1.125rem;
      line-height: 1.8;
      text-align: center
    }

    .philosophy-text p+p {
      margin-top: 1.5rem
    }

    .philosophy-essentials {
      font-weight: 500;
      color: var(--black);
      font-size: 1.25rem;
      margin-top: 1.5rem
    }

    .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem
    }

    .philosophy-card {
      background: var(--white);
      padding: 2rem;
      border-radius: 1rem;
      text-align: center;
      font-weight: 500;
      color: var(--black);
      font-size: 1.125rem
    }

    .personality-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem
    }

    .personality-img-wrap {
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s
    }

    .personality-img-wrap:hover {
      transform: scale(1.03)
    }

    .personality-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover
    }

    .personality-caption {
      text-align: center;
      margin-top: 3rem;
      color: var(--brown);
      font-size: 1.125rem
    }

    .gallery-filters {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-bottom: 3rem
    }

    .filter-btn {
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      font-weight: 500;
      font-size: 1rem;
      background: var(--white);
      color: var(--brown);
      border: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s
    }

    .filter-btn:hover {
      background: var(--tan)
    }

    .filter-btn.active {
      background: var(--black);
      color: var(--cream)
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem
    }

    .gallery-item {
      position: relative;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: box-shadow 0.3s;
      aspect-ratio: 1/1;
      cursor: pointer
    }

    .gallery-item:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2)
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
      background: var(--tan)
    }

    .gallery-item:hover img {
      transform: scale(1.1)
    }

    .gallery-item .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0);
      transition: background 0.3s
    }

    .gallery-item:hover .overlay {
      background: rgba(0, 0, 0, 0.2)
    }
    
    .gallery-item:has(video) {
      height: auto;
    }
    
    .gallery-item video {
      width: 100%;
      height: auto;
      display: block;
    }

    .section-black .section-title {
      color: var(--cream)
    }

    .cta-sub {
      font-size: 1.25rem;
      margin-bottom: 3rem;
      color: var(--tan)
    }

    .btn-cta-primary {
      background: var(--cream);
      color: var(--black);
      padding: 1rem 2rem;
      border-radius: 9999px;
      font-size: 1.125rem;
      font-weight: 500;
      transition: background 0.2s
    }

    .btn-cta-primary:hover {
      background: var(--tan)
    }

    .btn-cta-outline {
      background: transparent;
      color: var(--cream);
      border: 2px solid var(--cream);
      padding: 1rem 2rem;
      border-radius: 9999px;
      font-size: 1.125rem;
      font-weight: 500;
      transition: background 0.2s, color 0.2s;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif
    }

    .btn-cta-outline:hover {
      background: var(--cream);
      color: var(--black)
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center
    }

    footer {
      padding: 3rem 1.5rem;
      background: var(--cream);
      border-top: 1px solid var(--tan)
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 2rem
    }

    .footer-logo {
      height: 6rem;
      width: 6rem;
      margin-bottom: 1rem
    }

    .footer-tagline {
      color: var(--brown)
    }

    footer h4 {
      font-weight: 500;
      color: var(--black);
      margin-bottom: 0.75rem
    }

    .footer-link {
      display: block;
      color: var(--brown);
      transition: color 0.2s
    }

    .footer-link:hover {
      color: var(--black)
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid var(--tan);
      color: var(--brown)
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
      gap: 1rem
    }

    .testimonial-stars {
      color: #E5A020;
      font-size: 1.1rem;
      letter-spacing: 2px
    }

    .testimonial-text {
      color: var(--brown);
      font-size: 1rem;
      line-height: 1.7;
      flex: 1;
      font-style: italic
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem
    }

    .testimonial-avatar {
      width: 2.8rem;
      height: 2.8rem;
      border-radius: 9999px;
      background: var(--tan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0
    }

    .testimonial-name {
      font-weight: 600;
      color: var(--black);
      font-size: 0.95rem
    }

    .testimonial-dog {
      font-size: 0.82rem;
      color: var(--brown)
    }

    .img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 0.75rem;
      margin-bottom: 1rem
    }

    .img-wrap::before {
      content: '';
      display: block;
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite
    }

    .img-wrap.loaded::before {
      display: none
    }

    @keyframes shimmer {
      0% {
        background-position: 200% 0
      }

      100% {
        background-position: -200% 0
      }
    }

    .hidden {
      display: none !important
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    .fade-in-up {
      opacity: 0;
      animation: fadeInUp 0.6s ease forwards
    }

    .fade-in-up.delay-1 {
      animation-delay: 0.1s
    }

    .fade-in-up.delay-2 {
      animation-delay: 0.2s
    }

    .fade-in-up.delay-3 {
      animation-delay: 0.3s
    }

    .sticky-order {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 999;
      background: #25D366;
      color: #fff;
      padding: 0.85rem 1.4rem;
      border-radius: 9999px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      opacity: 0;
      transform: translateY(20px)
    }

    .sticky-order.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.4s, transform 0.4s, box-shadow 0.2s
    }

    .sticky-order:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55)
    }

    .sticky-order svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0
    }

    /* ── RESPONSIVE ── */
    @media (max-width:960px) {

      /* Hide ONLY the desktop nav, not all navs */
      #desktop-nav {
        display: none
      }

      .mobile-menu-btn {
        display: block
      }

      .about-grid {
        grid-template-columns: 1fr
      }

      .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem
      }

      .menu-grid {
        grid-template-columns: 1fr 1fr
      }

      .philosophy-grid {
        grid-template-columns: 1fr
      }

      .personality-grid {
        grid-template-columns: 1fr
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .footer-grid {
        grid-template-columns: 1fr
      }

      .testimonials-grid {
        grid-template-columns: 1fr
      }

      .sticky-order span.label {
        display: none
      }
    }

    @media (max-width:600px) {
      .menu-grid {
        grid-template-columns: 1fr
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .hero-logo {
        width: 10rem;
        height: 10rem
      }
    }
    
    .video-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.95);
      z-index: 999999;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }
    .video-modal video {
      width: 100vw;
      max-height: 90vh;
      outline: none;
      display: block;
    }
    .video-modal-close {
      position: fixed;
      top: 0.8rem;
      right: 1rem;
      font-size: 3rem;
      color: white;
      cursor: pointer;
      line-height: 1;
      background: rgba(0,0,0,0.5);
      border: none;
      z-index: 1000000;
      padding: 0.2rem 0.8rem;
      border-radius: 50%;
    }
    
    body.modal-open .video-modal {
      transform: none !important;
    }
    
    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }

    /* ── IMAGE MODAL ── */
    .image-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.95);
      z-index: 999999;
      align-items: center;
      justify-content: center;
    }

    .image-modal.open {
      display: flex;
    }

    .image-modal img {
      max-width: 95vw;
      max-height: 92vh;
      object-fit: contain;
      border-radius: 0.5rem;
      box-shadow: 0 8px 48px rgba(0,0,0,0.6);
      animation: imgModalIn 0.22s ease;
    }

    @keyframes imgModalIn {
      from { opacity: 0; transform: scale(0.94); }
      to   { opacity: 1; transform: scale(1); }
    }

    .image-modal-close {
      position: fixed;
      top: 0.8rem;
      right: 1rem;
      font-size: 3rem;
      color: white;
      cursor: pointer;
      line-height: 1;
      background: rgba(0,0,0,0.5);
      border: none;
      z-index: 1000000;
      padding: 0.2rem 0.8rem;
      border-radius: 50%;
    }

    /* Make gallery images show a pointer cursor */
    .gallery-item img {
      cursor: zoom-in;
    }

