    /* ═══════════════════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════════════════ */
    :root {
      --navy: #263B80;
      --navy-dark: #1A2B60;
      --navy-light: #334FB4;
      --cream: #F6F5F0;
      --cream-dark: #EDE9DF;
      --coffee: #895C3D;
      --coffee-dark: #6B4630;
      --tan: #E6DAC5;
      --charcoal: #1A1A1A;
      --gray: #858482;
      --white: #FFFFFF;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body: 'Inter', system-ui, sans-serif;

      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-full: 999px;

      --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
      --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
      --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);

      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      --max-width: 1280px;
    }

    /* ═══════════════════════════════════════════════════
       BASE RESET
    ═══════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      overflow-x: hidden;
      width: 100%;
    }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--charcoal);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
      position: relative;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    /* ═══════════════════════════════════════════════════
       UTILITIES
    ═══════════════════════════════════════════════════ */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 32px;
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }
    }

    .section-label {
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--coffee);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 600;
      line-height: 1.15;
      color: var(--navy);
    }

    .section-title.light {
      color: var(--white);
    }

    .section-body {
      font-size: 1.05rem;
      color: var(--gray);
      line-height: 1.75;
      max-width: 560px;
    }

    .section-body.light {
      color: rgba(255, 255, 255, 0.72);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: var(--radius-full);
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition: var(--transition);
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--navy);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--navy-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(38, 59, 128, 0.35);
    }

    .btn-outline {
      border: 2px solid currentColor;
      color: var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--navy);
      transform: translateY(-2px);
    }

    .btn-coffee {
      background: var(--coffee);
      color: var(--white);
    }

    .btn-coffee:hover {
      background: var(--coffee-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(137, 92, 61, 0.35);
    }

    .btn-ghost {
      border: 2px solid var(--navy);
      color: var(--navy);
    }

    .btn-ghost:hover {
      background: var(--navy);
      color: var(--white);
    }

    /* Scroll Reveal */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ═══════════════════════════════════════════════════
       NAVIGATION
     ═══════════════════════════════════════════════════ */
    #site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
      padding: 0;
    }

    #site-header.scrolled {
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      gap: 24px;
    }

    /* Logo */
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      text-decoration: none;
    }

    .nav-logo img {
      height: 40px;
      width: auto;
      object-fit: contain;
      transition: var(--transition);
    }

    .nav-logo .logo-scrolled {
      display: none;
    }

    .nav-logo .logo-default {
      display: block;
    }

    #site-header.scrolled .nav-logo .logo-default {
      display: none;
    }

    #site-header.scrolled .nav-logo .logo-scrolled {
      display: block;
    }

    #site-header.mobile-nav-open .nav-logo .logo-default {
      display: block !important;
    }

    #site-header.mobile-nav-open .nav-logo .logo-scrolled {
      display: none !important;
    }

    /* Nav Links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links a {
      padding: 8px 14px;
      border-radius: var(--radius-full);
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.88);
      transition: var(--transition);
      text-decoration: none;
    }

    .nav-links a:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.12);
    }

    #site-header.scrolled .nav-links a {
      color: var(--charcoal);
    }

    #site-header.scrolled .nav-links a:hover {
      color: var(--navy);
      background: var(--cream);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-cta {
      padding: 10px 22px;
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 600;
      background: var(--white);
      color: var(--navy);
      transition: var(--transition);
      letter-spacing: 0.02em;
      text-decoration: none;
    }

    .nav-cta:hover {
      background: var(--tan);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    }

    #site-header.scrolled .nav-cta {
      background: var(--navy);
      color: var(--white);
    }

    #site-header.scrolled .nav-cta:hover {
      background: var(--navy-dark);
    }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 28px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .nav-hamburger span {
      display: block;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }

    #site-header.scrolled .nav-hamburger span {
      background: var(--charcoal);
    }

    .nav-hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Nav */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--navy);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      padding: 100px 24px 32px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      box-sizing: border-box;
    }

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

    .mobile-nav a {
      font-family: var(--font-display);
      font-size: 1.45rem;
      color: var(--white);
      padding: 10px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      width: 100%;
      max-width: 320px;
      text-align: center;
      transition: var(--transition);
      text-decoration: none;
    }

    .mobile-nav a:hover {
      color: var(--tan);
    }

    .mobile-nav .mobile-cta {
      margin-top: 20px;
      background: var(--white);
      color: var(--navy);
      border-radius: var(--radius-full);
      padding: 12px 32px;
      font-family: var(--font-body);
      font-size: 0.95rem;
      font-weight: 700;
      text-decoration: none;
      border-bottom: none;
      width: auto;
      max-width: none;
    }

    /* Override header styling when mobile menu is open */
    #site-header.mobile-nav-open {
      background: transparent !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }


    #site-header.mobile-nav-open .nav-hamburger span {
      background: var(--white) !important;
    }

    @media (max-width: 991px) {
      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }
    }

    /* ═══════════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════════ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--navy-dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://static.darcoffee.com/files/header-bg.webp');
      background-size: cover;
      background-position: center 30%;
      transform: scale(1.05);
      transition: transform 8s ease-out;
    }

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

    .hero-video-element {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      /* hidden until ready to play */
      transition: opacity 1.2s ease;
      /* smooth fade-in over the image */
    }

    .hero-video-element.playing {
      opacity: 1;
      /* triggered by JS when video can actually play */
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg,
          rgba(26, 43, 96, 0.85) 0%,
          rgba(38, 59, 128, 0.70) 40%,
          rgba(137, 92, 61, 0.40) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 860px;
      padding: 0 24px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 24px;
    }

    .hero-eyebrow::before,
    .hero-eyebrow::after {
      content: '';
      display: block;
      width: 32px;
      height: 1px;
      background: var(--tan);
      opacity: 0.6;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }

    .hero-title em {
      font-style: italic;
      color: var(--tan);
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: rgba(255, 255, 255, 0.80);
      margin-bottom: 44px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

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

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.4;
        transform: scaleY(1);
      }

      50% {
        opacity: 1;
        transform: scaleY(1.1);
      }
    }

    /* ═══════════════════════════════════════════════════
       STATS STRIP
    ═══════════════════════════════════════════════════ */
    #stats-strip {
      background: var(--navy);
      padding: 28px 0;
    }

    .stats-grid {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }

    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 12px 48px;
      border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--tan);
      line-height: 1;
    }

    .stat-label {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.60);
      margin-top: 4px;
    }

    @media (max-width: 600px) {
      .stat-item {
        padding: 12px 24px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        width: 50%;
      }

      .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.12);
      }

      .stat-item:last-child,
      .stat-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
      }
    }

    /* ═══════════════════════════════════════════════════
       ABOUT / BRAND STORY
    ═══════════════════════════════════════════════════ */
    #about {
      padding: 120px 0;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

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

    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    .about-image-wrap {
      position: relative;
    }

    .about-image-main {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .about-image-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--navy);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 20px 24px;
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    .about-badge-number {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--tan);
      display: block;
      line-height: 1;
    }

    .about-badge-text {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.70);
      margin-top: 4px;
    }

    .about-content {
      padding-right: 20px;
    }

    .about-content .section-title {
      margin-bottom: 20px;
    }

    .about-content .section-body {
      margin-bottom: 16px;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin: 32px 0;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--charcoal);
    }

    .about-feature-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--tan);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about-feature-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--navy);
      fill: none;
    }

    /* ═══════════════════════════════════════════════════
       VERTICALS / SERVICES
    ═══════════════════════════════════════════════════ */
    #services {
      padding: 120px 0;
      background: var(--cream);
    }

    .services-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 72px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    @media (max-width: 1100px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    .service-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }

    .service-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .service-card:hover .service-card-bg {
      transform: scale(1.07);
    }

    .service-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26, 27, 38, 0.90) 0%, rgba(26, 27, 38, 0.30) 55%, transparent 100%);
      transition: var(--transition);
    }

    .service-card:hover .service-card-overlay {
      background: linear-gradient(to top, rgba(38, 59, 128, 0.92) 0%, rgba(38, 59, 128, 0.55) 60%, rgba(38, 59, 128, 0.15) 100%);
    }

    .service-card-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px 24px;
      z-index: 2;
    }

    .service-card-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      transition: var(--transition);
    }

    .service-card-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--white);
      fill: none;
      transition: var(--transition);
    }

    .service-card:hover .service-card-icon svg {
      stroke: var(--navy);
    }

    .service-card:hover .service-card-icon {
      background: var(--tan);
    }

    .service-card-tag {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--tan);
      margin-bottom: 6px;
    }

    .service-card-title {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 10px;
    }

    .service-card-desc {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.70);
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .service-card:hover .service-card-desc {
      max-height: 80px;
      opacity: 1;
    }

    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--tan);
      margin-top: 14px;
      opacity: 0;
      transform: translateY(8px);
      transition: var(--transition);
      letter-spacing: 0.04em;
    }

    .service-card:hover .service-card-link {
      opacity: 1;
      transform: translateY(0);
    }

    .service-card-link svg {
      transition: transform 0.3s ease;
    }

    .service-card-link:hover svg {
      transform: translateX(4px);
    }

    /* Service card backgrounds */
    .svc-shops {
      background-color: #2A2A2A;
    }

    .svc-store {
      background-color: #1A2B40;
    }

    .svc-app {
      background-color: #1E1A28;
    }

    .svc-cart {
      background-color: #2A1A10;
    }

    /* ═══════════════════════════════════════════════════
       FEATURED PRODUCTS
    ═══════════════════════════════════════════════════ */
    #products {
      padding: 120px 0;
      background: var(--cream);
    }

    .products-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      gap: 24px;
      flex-wrap: wrap;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    @media (max-width: 1100px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    .product-card {
      background: var(--white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      cursor: pointer;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .product-image-wrap {
      position: relative;
      aspect-ratio: 1/1;
      overflow: hidden;
      background: var(--cream-dark);
    }

    .product-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

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

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--navy);
      color: var(--white);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: var(--radius-full);
    }

    .product-info {
      padding: 20px;
    }

    .product-roast {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--coffee);
      margin-bottom: 6px;
    }

    .product-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .product-desc {
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .product-price {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--charcoal);
    }

    .product-add {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: var(--transition);
    }

    .product-add:hover {
      background: var(--coffee);
      transform: scale(1.1);
    }

    /* ═══════════════════════════════════════════════════
       LOCATIONS
    ═══════════════════════════════════════════════════ */
    #locations {
      padding: 120px 0;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .locations-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 72px;
    }

    .locations-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

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

    .location-card {
      background: var(--white);
      border: 1px solid var(--cream-dark);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      cursor: pointer;
    }

    .location-card:hover {
      background: var(--white);
      border-color: var(--tan);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .location-number {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 700;
      color: rgba(137, 92, 61, 0.15);
      line-height: 1;
      margin-bottom: 16px;
    }

    .location-name {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }

    .location-address {
      font-size: 0.85rem;
      color: var(--gray);
      margin-bottom: 16px;
      line-height: 1.6;
    }

    .location-hours {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: var(--coffee);
      font-weight: 500;
    }

    .location-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4CAF50;
      flex-shrink: 0;
      box-shadow: 0 0 6px #4CAF50;
    }

    .location-actions {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .location-btn {
      flex: 1;
      padding: 9px 12px;
      border-radius: var(--radius-full);
      font-size: 0.78rem;
      font-weight: 600;
      text-align: center;
      transition: var(--transition);
    }

    .location-btn-primary {
      background: var(--navy);
      color: var(--white);
    }

    .location-btn-primary:hover {
      background: var(--navy-dark);
    }

    .location-btn-ghost {
      border: 1.5px solid var(--navy);
      color: var(--navy);
    }

    .location-btn-ghost:hover {
      background: var(--navy);
      color: var(--white);
    }

    /* ═══════════════════════════════════════════════════
       COFFEE CART CTA
    ═══════════════════════════════════════════════════ */
    #coffee-cart {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }

    .coffee-cart-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://static.darcoffee.com/files/img/catering.webp');
      background-size: cover;
      background-position: center;
      opacity: 0.25;
    }

    .coffee-cart-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .coffee-cart-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }
    }

    .coffee-cart-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(137, 92, 61, 0.08);
      border: 1px solid rgba(137, 92, 61, 0.20);
      color: var(--coffee);
      border-radius: var(--radius-full);
      padding: 6px 16px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .coffee-cart-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.4rem);
      color: var(--navy);
      line-height: 1.15;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .coffee-cart-title em {
      font-style: italic;
      color: var(--coffee);
    }

    .coffee-cart-body {
      font-size: 1rem;
      color: var(--gray);
      line-height: 1.75;
      margin-bottom: 36px;
    }

    .coffee-cart-features {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 40px;
    }

    .coffee-cart-feature {
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--charcoal);
      font-size: 0.92rem;
      font-weight: 500;
    }

    .coffee-cart-feature-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 50%;
      background: rgba(137, 92, 61, 0.10);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1.5px solid rgba(137, 92, 61, 0.18);
    }

    .coffee-cart-feature-icon svg {
      width: 17px;
      height: 17px;
      stroke: var(--coffee);
      fill: none;
    }

    .coffee-cart-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .coffee-cart-image-frame {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
      position: relative;
    }

    .coffee-cart-image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .coffee-cart-image-badge {
      position: absolute;
      top: 20px;
      right: -16px;
      background: var(--navy);
      color: var(--white);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    /* ═══════════════════════════════════════════════════
       APP DOWNLOAD SECTION
    ═══════════════════════════════════════════════════ */
    #app-section {
      padding: 120px 0;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .app-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    @media (max-width: 900px) {
      .app-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
      }
    }

    .app-content .section-title {
      margin-bottom: 16px;
    }

    .app-content .section-body {
      margin-bottom: 32px;
    }

    .app-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 40px;
    }

    @media (max-width: 900px) {
      .app-features {
        justify-items: center;
      }
    }

    .app-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      text-align: left;
    }

    .app-feature-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-sm);
      background: var(--navy);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .app-feature-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--white);
      fill: none;
    }

    .app-feature-text strong {
      display: block;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 2px;
    }

    .app-feature-text span {
      font-size: 0.78rem;
      color: var(--gray);
    }

    .app-badges {
      display: flex;
      gap: 14px;
      flex-wrap: nowrap;
      max-width: 100%;
      align-items: center;
    }

    @media (max-width: 900px) {
      .app-badges {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
      }
      .app-badge-img-link img {
        height: 82px !important;
        width: auto !important;
      }
    }

    .app-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--charcoal);
      color: var(--white);
      border-radius: var(--radius-sm);
      padding: 12px 20px;
      transition: var(--transition);
    }

    .app-badge:hover {
      background: var(--navy);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .app-badge-img-link {
      display: inline-block;
      transition: var(--transition);
      flex: 0 1 auto;
      max-width: 100%;
    }

    .app-badge-img-link:hover {
      transform: translateY(-2px);
    }

    .app-badge-img-link img {
      height: 96px;
      display: block;
      border-radius: 8px;
      max-width: 100%;
      width: auto;
      object-fit: contain;
    }

    .app-badge-icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .app-badge-icon svg {
      width: 24px;
      height: 24px;
    }

    .app-badge-text {
      display: flex;
      flex-direction: column;
    }

    .app-badge-text small {
      font-size: 0.65rem;
      opacity: 0.7;
      letter-spacing: 0.06em;
    }

    .app-badge-text strong {
      font-size: 1rem;
      font-weight: 700;
    }

    .app-mockup-wrap {
      display: flex;
      justify-content: center;
      position: relative;
    }

    .app-mockup {
      width: 280px;
      aspect-ratio: 9/19;
      background: var(--navy-dark);
      border-radius: 36px;
      border: 8px solid var(--charcoal);
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .app-mockup-screen {
      flex: 1;
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 60%, var(--coffee-dark) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      gap: 12px;
    }

    .app-mockup-logo {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--tan);
      font-weight: 700;
    }

    .app-mockup-title {
      font-family: var(--font-display);
      font-size: 1rem;
      color: var(--white);
      font-weight: 600;
    }

    .app-mockup-btn {
      width: 100%;
      padding: 10px;
      background: var(--tan);
      border-radius: 12px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--navy);
      text-align: center;
    }

    .app-glow {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(38, 59, 128, 0.25), transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    /* ═══════════════════════════════════════════════════
       WHOLESALE & FRANCHISE SECTIONS
     ═══════════════════════════════════════════════════ */
    #wholesale-section {
      padding: 120px 0;
      background: var(--cream);
      color: var(--charcoal);
      position: relative;
      overflow: hidden;
    }

    #wholesale-section .reveal {
      position: relative;
      z-index: 2;
    }

    .wholesale-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
    }

    .wholesale-tag {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(137, 92, 61, 0.08);
      color: var(--coffee);
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .wholesale-title {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .wholesale-title em {
      font-style: italic;
      color: var(--coffee);
    }

    .wholesale-body {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--gray);
      margin-bottom: 30px;
    }

    .wholesale-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .wholesale-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .wholesale-feature-icon {
      flex-shrink: 0;
      margin-top: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wholesale-feature-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--coffee);
      fill: none;
    }

    .wholesale-feature-text strong {
      display: block;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .wholesale-feature-text p {
      font-size: 0.85rem;
      color: var(--gray);
      line-height: 1.4;
    }

    .wholesale-visual {
      position: relative;
    }

    .wholesale-image-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    }

    .wholesale-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4/3;
      display: block;
      transition: transform 0.8s var(--transition-ease);
    }

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

    /* Franchise Section styling */
    #franchise-section {
      padding: 120px 0;
      background: var(--cream);
      color: var(--charcoal);
      position: relative;
      overflow: hidden;
    }

    .franchise-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 60px;
      align-items: center;
    }

    .franchise-tag {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(38, 59, 128, 0.08);
      color: var(--navy);
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .franchise-title {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.15;
      color: var(--navy);
      margin-bottom: 24px;
    }

    .franchise-title em {
      font-style: italic;
      color: var(--coffee);
    }

    .franchise-body {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--charcoal);
      opacity: 0.85;
      margin-bottom: 30px;
    }

    .franchise-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 40px;
    }

    .franchise-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .franchise-step-num {
      width: 32px;
      height: 32px;
      background: var(--navy);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .franchise-step-content strong {
      display: block;
      font-size: 1rem;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .franchise-step-content p {
      font-size: 0.88rem;
      color: var(--charcoal);
      opacity: 0.75;
      line-height: 1.4;
    }

    .franchise-visual {
      position: relative;
    }

    .franchise-image-wrap {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

    .franchise-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4/3;
      display: block;
      transition: transform 0.8s var(--transition-ease);
    }

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

    /* Responsive adjustments */
    @media (max-width: 991px) {

      .wholesale-grid,
      .franchise-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .franchise-grid .franchise-visual {
        order: 2;
      }

      .wholesale-title,
      .franchise-title {
        font-size: 2.5rem;
      }
    }

    /* ═══════════════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════════════ */
    #testimonials {
      padding: 120px 0;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .testimonials-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 64px;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .testimonial-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 16px;
    }

    .testimonial-stars span {
      color: #F6C447;
      font-size: 1rem;
    }

    .testimonial-text {
      font-size: 0.95rem;
      color: var(--charcoal);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 24px;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
    }

    /* Footer styled to match header colors */
    .footer {
      background: var(--white);
      color: var(--charcoal);
      border-top: 1px solid var(--cream-dark);
      padding: 80px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    /* Tablet: collapse to 2-col with brand spanning full width on top */
    @media (max-width: 900px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      /* Brand spans full width and centers */
      .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-logo {
        justify-content: center;
        width: 100%;
        gap: 0;
      }

      .footer-logo picture {
        width: 50vw;
        max-width: 250px;
        display: block;
        margin: 0 auto;
      }

      .footer-logo img {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: auto;
      }

      .footer-social {
        justify-content: center;
      }

      /* Contact Us spans full width and centers */
      .footer-col-contact {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-col-contact .footer-links {
        align-items: center;
        width: 100%;
      }

      .footer-col-contact .footer-contact-item {
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
      }
    }

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

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-col-contact {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-col-contact .footer-links {
        align-items: center;
        width: 100%;
      }

      .footer-col-contact .footer-contact-item {
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      /* Footer bottom: stack and center on mobile */
      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
      }

      .footer-bottom-links {
        justify-content: center;
      }

      .footer-legal-notice {
        text-align: center;
      }
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .footer-logo img {
      width: 130px;
      height: auto;
      object-fit: contain;
    }

    .footer-logo-text {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--navy);
    }

    .footer-brand-desc {
      font-size: 0.85rem;
      color: var(--gray);
      line-height: 1.75;
      margin-bottom: 24px;
      max-width: 300px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social-link {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .footer-social-link:hover {
      background: var(--navy);
      border-color: var(--navy);
      color: var(--white);
      transform: translateY(-2px);
    }

    .footer-col-title {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--navy);
      margin-bottom: 20px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 0.85rem;
      color: var(--gray);
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--navy);
      padding-left: 4px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.82rem;
      color: var(--gray);
      margin-bottom: 12px;
      line-height: 1.6;
    }

    .footer-contact-icon {
      font-size: 1rem;
      margin-top: 1px;
      flex-shrink: 0;
      color: var(--coffee);
    }

    .footer-bottom {
      border-top: 1px solid var(--cream-dark);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: 0.78rem;
      color: var(--gray);
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a {
      font-size: 0.78rem;
      color: var(--gray);
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: var(--navy);
    }

    .footer-legal-notice {
      font-size: 0.7rem;
      color: rgba(137, 92, 61, 0.55);
      /* beautiful soft brown/muted shade */
      line-height: 1.6;
      margin-top: 20px;
      width: 100%;
      text-align: left;
      border-top: 1px dashed var(--cream-dark);
      padding-top: 16px;
    }

    /* ═══════════════════════════════════════════════════
       BACK TO TOP
    ═══════════════════════════════════════════════════ */
    .back-to-top {
      position: fixed;
      bottom: 32px;
      right: 32px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      box-shadow: var(--shadow-md);
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 500;
    }

    .back-to-top.visible {
      opacity: 1;
      pointer-events: all;
    }

    .back-to-top:hover {
      background: var(--coffee);
      transform: translateY(-3px);
    }

    /* ═══════════════════════════════════════════════════
       NEWSLETTER SECTION
    ═══════════════════════════════════════════════════ */
    #newsletter {
      position: relative;
      background: var(--cream);
      padding: 120px 0;
      overflow: hidden;
      text-align: center;
    }

    .newsletter-bg-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.05;
      background-image: radial-gradient(var(--tan) 1px, transparent 1px);
      background-size: 20px 20px;
      pointer-events: none;
    }

    .newsletter-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .newsletter-content .section-title {
      margin-bottom: 8px;
      color: var(--navy);
    }

    .newsletter-content .section-body {
      color: var(--gray);
      margin-bottom: 24px;
    }

    .newsletter-form {
      display: flex;
      width: 100%;
      max-width: 500px;
      gap: 12px;
      position: relative;
    }

    @media (max-width: 576px) {
      .newsletter-form {
        flex-direction: column;
        gap: 16px;
      }
    }

    .newsletter-input {
      flex: 1;
      padding: 16px 24px;
      border-radius: var(--radius-full);
      border: 1px solid rgba(38, 59, 128, 0.15);
      background: rgba(38, 59, 128, 0.04);
      color: var(--charcoal);
      font-family: var(--font-body);
      font-size: 0.95rem;
      outline: none;
      transition: var(--transition);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .newsletter-input::placeholder {
      color: rgba(38, 59, 128, 0.4);
    }

    .newsletter-input:focus {
      border-color: var(--navy);
      background: rgba(38, 59, 128, 0.06);
      box-shadow: 0 0 0 4px rgba(38, 59, 128, 0.08);
    }

    .newsletter-btn {
      padding: 16px 36px;
      border-radius: var(--radius-full);
      background: var(--navy);
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      letter-spacing: 0.04em;
      transition: var(--transition);
    }

    .newsletter-btn:hover {
      background: var(--navy-dark);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(38, 59, 128, 0.2);
    }

    .newsletter-btn:active {
      transform: translateY(0);
    }

    /* ═══════════════════════════════════════════════════
       OVERLAPPING LAYOUTS & ASYMMETRIC GRIDS (CUSTOM)
       ═══════════════════════════════════════════════════ */
    @keyframes float-slow {

      0%,
      100% {
        transform: translateY(0) rotate(-12deg);
      }

      50% {
        transform: translateY(-20px) rotate(-8deg);
      }
    }

    @keyframes float-bean-1 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(-10px, -20px) rotate(15deg);
      }
    }

    @keyframes float-bean-2 {

      0%,
      100% {
        transform: translate(0, 0) rotate(0deg);
      }

      50% {
        transform: translate(15px, -15px) rotate(-20deg);
      }
    }

    .floating-bean {
      position: absolute;
      width: 48px;
      height: 48px;
      opacity: 0.12;
      pointer-events: none;
      z-index: 5;
    }

    .floating-bean svg {
      width: 100%;
      height: 100%;
      fill: var(--coffee);
    }

    .floating-bean.cream-fill svg {
      fill: var(--tan);
      opacity: 0.4;
    }

    .bean-pos-1 {
      top: -30px;
      left: 10%;
      animation: float-bean-1 7s ease-in-out infinite;
    }

    .bean-pos-2 {
      top: 25%;
      right: 5%;
      animation: float-bean-2 9s ease-in-out infinite;
      transform: scale(1.3);
    }

    .bean-pos-3 {
      bottom: 10%;
      left: 3%;
      animation: float-bean-1 8s ease-in-out infinite;
      transform: scale(0.8);
    }

    .bean-pos-4 {
      top: -20px;
      right: 15%;
      animation: float-bean-2 10s ease-in-out infinite;
    }

    /* Stats strip overlapping */
    #stats-strip {
      position: relative;
      z-index: 30;
      margin-top: -65px;
      margin-bottom: -15px;
      background: transparent;
      padding: 0;
    }

    #stats-strip .container {
      background: var(--navy);
      border-radius: var(--radius-lg);
      padding: 24px 40px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    @media (max-width: 600px) {
      #stats-strip {
        margin-top: -40px;
        margin-bottom: 60px;
      }

      #stats-strip .container {
        margin: 0 16px;
        padding: 16px 8px;
        border-radius: 16px;
        width: auto;
        max-width: calc(100% - 32px);
      }
    }

    /* Asymmetric About Grid */
    #about {
      position: relative;
      overflow: visible;
      padding: 180px 0 140px;
    }

    @media (min-width: 901px) {
      .about-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 64px;
      }

      .about-image-wrap {
        transform: translateY(-50px);
        margin-bottom: -50px;
        z-index: 10;
      }
    }

    /* Asymmetric Services Grid */
    #services {
      position: relative;
      overflow: visible;
    }

    @media (min-width: 901px) {
      .services-grid {
        padding-top: 40px;
        padding-bottom: 40px;
      }

      .services-grid .service-card:nth-child(odd) {
        transform: translateY(-25px);
      }

      .services-grid .service-card:nth-child(even) {
        transform: translateY(25px);
      }

      .services-grid .service-card:hover {
        transform: translateY(var(--hover-y, -25px)) scale(1.02);
      }

      .services-grid .service-card:nth-child(odd):hover {
        --hover-y: -35px;
      }

      .services-grid .service-card:nth-child(even):hover {
        --hover-y: 15px;
      }
    }

    /* Floating coffee bag and boundary breaker */
    #products {
      position: relative;
      overflow: visible;
      z-index: 10;
      padding: 120px 0;
    }

    .floating-coffee-bag {
      position: absolute;
      top: -160px;
      right: 10%;
      width: 190px;
      height: auto;
      z-index: 25;
      pointer-events: none;
      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
      animation: float-slow 9s ease-in-out infinite;
    }


    /* CTA row in About: button + floating image side by side */
    .about-cta-row {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* Floating image for About section — beside the CTA */
    .floating-about-img {
      width: 170px;
      height: auto;
      border-radius: var(--radius-md);
      filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
      animation: float-slow 10s ease-in-out infinite;
      flex-shrink: 0;
      display: block;
    }

    @media (max-width: 600px) {
      .floating-about-img {
        width: 110px;
      }
    }

    @media (max-width: 768px) {
      .floating-coffee-bag {
        width: 120px;
        top: -100px;
        right: 5%;
      }
    }

    /* Asymmetric Products Grid */
    @media (min-width: 901px) {
      .products-grid .product-card:nth-child(even) {
        transform: translateY(40px);
      }

      .products-grid .product-card:nth-child(even):hover {
        transform: translateY(32px);
      }

      .products-grid .product-card:nth-child(odd):hover {
        transform: translateY(-8px);
      }
    }

    /* Section Watermark Numbers (Serif style) */
    .section-watermark-number {
      font-family: var(--font-display);
      font-size: clamp(8rem, 16vw, 12rem);
      font-weight: 700;
      color: rgba(137, 92, 61, 0.09);
      /* very subtle warm coffee/gold */
      line-height: 1;
      position: absolute;
      top: -10px;
      left: 5%;
      user-select: none;
      pointer-events: none;
      z-index: 0;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .section-watermark-number {
        font-size: clamp(3rem, 10vw, 5rem);
        top: 15px;
        left: 4%;
      }

      #stats-strip {
        margin-bottom: 60px !important;
      }

      #about,
      #locations,
      #services,
      #products,
      #coffee-cart,
      #wholesale-section,
      #franchise-section,
      #testimonials,
      #app-section,
      #newsletter {
        padding: 140px 0 !important;
      }
    }
