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

    :root {
      --color-cream: #f5f0e8;
      --color-cream-light: #faf7f2;
      --color-brown-dark: #2c1810;
      --color-brown: #5c3a24;
      --color-brown-medium: #8b6914;
      --color-gold: #c8a45a;
      --color-gold-light: #d4b06a;
      --color-text: #3a2a1a;
      --color-text-light: #7a6a5a;
      --font-heading: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', -apple-system, sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--color-text);
      background-color: var(--color-cream-light);
      overflow-x: hidden;
    }

    /* ==================== HEADER ==================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 100;
      padding: 1.2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background-color 0.4s, padding 0.4s, box-shadow 0.4s;
    }

    .header.scrolled {
      background-color: rgba(44, 24, 16, 0.95);
      padding: 0.8rem 3rem;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
      backdrop-filter: blur(10px);
    }

    .header-logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: #fff;
    }

    .header-logo img {
      height: 40px;
      width: auto;
    }

    .header-logo span {
      font-family: var(--font-heading);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

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

    .header-nav a {
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.05em;
      transition: color 0.3s;
      position: relative;
    }

    .header-nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--color-gold);
      transition: width 0.3s;
    }

    .header-nav a:hover {
      color: #fff;
    }

    .header-nav a:hover::after {
      width: 100%;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      margin: 5px 0;
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ==================== HERO ==================== */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to bottom, rgba(30,15,8,0.55) 0%, rgba(30,15,8,0.4) 50%, rgba(30,15,8,0.7) 100%),
        url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1600&q=80') center/cover no-repeat;
      transform: scale(1.05);
      transition: transform 8s ease-out;
    }

    .hero.visible .hero-bg {
      transform: scale(1);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      max-width: 700px;
      padding: 0 2rem;
    }

    .hero-logo {
      width: clamp(180px, 30vw, 320px);
      height: auto;
      margin-bottom: 1.2rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s 0.3s forwards;
    }

    .hero-content p {
      font-size: clamp(0.9rem, 1.5vw, 1.05rem);
      font-weight: 300;
      line-height: 1.7;
      color: rgba(255,255,255,0.8);
      margin-bottom: 2.5rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s 0.6s forwards;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s 0.9s forwards;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      border: none;
    }

    .btn-primary {
      background: var(--color-gold);
      color: var(--color-brown-dark);
    }

    .btn-primary:hover {
      background: var(--color-gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(200, 164, 90, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.5);
    }

    .btn-outline:hover {
      border-color: #fff;
      background: rgba(255,255,255,0.1);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(255,255,255,0.6);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      opacity: 0;
      animation: fadeInUp 1s 1.2s forwards;
    }

    .hero-scroll .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
      animation: scrollPulse 2s infinite;
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 1; transform: scaleY(1); }
      50% { opacity: 0.4; transform: scaleY(0.6); }
    }

    /* ==================== MARQUEE ==================== */
    .marquee-section {
      background: var(--color-cream);
      padding: 1.2rem 0;
      overflow: hidden;
      border-top: 1px solid rgba(0,0,0,0.05);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 30s linear infinite;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      padding: 0 2.5rem;
      white-space: nowrap;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-text-light);
    }

    .marquee-item .dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--color-gold);
      flex-shrink: 0;
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ==================== ABOUT / NOSSA HISTORIA ==================== */
    .about {
      padding: 7rem 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

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

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

    .about-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 500;
      line-height: 1.2;
      color: var(--color-brown-dark);
      margin-bottom: 1.5rem;
    }

    .about-title em {
      font-style: italic;
      color: var(--color-brown);
    }

    .about-text {
      font-size: 0.95rem;
      line-height: 1.8;
      color: var(--color-text-light);
    }

    .about-text p + p {
      margin-top: 1rem;
    }

    .about-image {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    /* ==================== PRODUCTS ==================== */
    .products {
      padding: 5rem 3rem 7rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      text-align: center;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--color-gold);
      margin-bottom: 0.8rem;
    }

    .section-title {
      text-align: center;
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 500;
      color: var(--color-brown-dark);
      margin-bottom: 2.5rem;
    }

    .product-tabs {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 3rem;
    }

    .product-tab {
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      border: 1.5px solid rgba(0,0,0,0.12);
      background: transparent;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--color-text-light);
      cursor: pointer;
      transition: all 0.3s;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .product-tab.active {
      background: var(--color-brown-dark);
      color: #fff;
      border-color: var(--color-brown-dark);
    }

    .product-tab:not(.active):hover {
      border-color: var(--color-brown);
      color: var(--color-brown);
    }

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

    .product-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    .product-card-image {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
    }

    .product-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card:hover .product-card-image img {
      transform: scale(1.08);
    }

    .product-card-image .badge {
      position: absolute;
      top: 0.75rem;
      right: 0.75rem;
      width: 28px;
      height: 28px;
      background: var(--color-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 0.3s, transform 0.3s;
    }

    .product-card:hover .badge {
      opacity: 1;
      transform: scale(1);
    }

    .badge svg {
      width: 14px;
      height: 14px;
      stroke: var(--color-brown-dark);
      fill: none;
      stroke-width: 2;
    }

    .product-card-body {
      padding: 1.2rem 1.4rem 1.4rem;
    }

    .product-card-body h3 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-brown-dark);
      margin-bottom: 0.4rem;
    }

    .product-card-body p {
      font-size: 0.82rem;
      line-height: 1.6;
      color: var(--color-text-light);
    }

    /* ==================== QUOTE ==================== */
    .quote-section {
      position: relative;
      padding: 6rem 3rem;
      background:
        linear-gradient(rgba(30,15,8,0.75), rgba(30,15,8,0.75)),
        url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?w=1600&q=80') center/cover no-repeat fixed;
      text-align: center;
      color: #fff;
    }

    .quote-text {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400;
      font-style: italic;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* ==================== LOCATION ==================== */
    .location {
      padding: 7rem 3rem;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .location-info .about-label {
      margin-bottom: 0.8rem;
    }

    .location-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 500;
      color: var(--color-brown-dark);
      margin-bottom: 2.5rem;
      line-height: 1.2;
    }

    .location-item {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .location-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--color-brown-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .location-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--color-gold);
      fill: none;
      stroke-width: 1.5;
    }

    .location-item-content h4 {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-brown-dark);
      margin-bottom: 0.3rem;
    }

    .location-item-content p {
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--color-text-light);
    }

    .location-item-content a {
      color: var(--color-gold);
      text-decoration: none;
      font-size: 0.82rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 0.3rem;
      transition: color 0.3s;
    }

    .location-item-content a:hover {
      color: var(--color-brown);
    }

    .location-hours {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 500;
      color: var(--color-brown-dark);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .location-hours span {
      color: var(--color-gold);
    }

    .location-image {
      border-radius: 12px;
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
    }

    .location-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .location-image-label {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      background: rgba(255,255,255,0.95);
      padding: 0.8rem 1.2rem;
      border-radius: 8px;
      backdrop-filter: blur(10px);
    }

    .location-image-label h4 {
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--color-brown-dark);
    }

    .location-image-label p {
      font-size: 0.75rem;
      color: var(--color-text-light);
    }

    /* ==================== FOOTER ==================== */
    .footer {
      background: var(--color-brown-dark);
      color: rgba(255,255,255,0.6);
      padding: 2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      color: #fff;
      text-decoration: none;
    }

    .footer-logo img {
      height: 32px;
      width: auto;
    }

    .footer-logo span {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .footer-center {
      font-size: 0.75rem;
      text-align: center;
      line-height: 1.6;
    }

    .footer-right {
      font-size: 0.72rem;
    }

    /* ==================== ANIMATIONS ==================== */
    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-scale {
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }
    .stagger-5 { transition-delay: 0.5s; }
    .stagger-6 { transition-delay: 0.6s; }
    .stagger-7 { transition-delay: 0.7s; }
    .stagger-8 { transition-delay: 0.8s; }
    .stagger-9 { transition-delay: 0.9s; }

    /* ==================== RESPONSIVE ==================== */
    @media (max-width: 900px) {
      .header {
        padding: 1rem 1.5rem;
      }

      .header.scrolled {
        padding: 0.7rem 1.5rem;
      }

      .header-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(44, 24, 16, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
      }

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

      .header-nav a {
        font-size: 1.2rem;
      }

      .mobile-menu-btn {
        display: block;
        z-index: 101;
      }

      .about-grid,
      .location-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .about {
        padding: 4rem 1.5rem;
      }

      .products {
        padding: 4rem 1.5rem;
      }

      .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
      }

      .location {
        padding: 4rem 1.5rem;
      }

      .quote-section {
        padding: 4rem 1.5rem;
      }

      .footer {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 600px) {
      .product-grid {
        grid-template-columns: 1fr;
      }

      .hero-logo {
        width: 200px;
      }
    }
