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

  :root {
    --navy: #2a3a52;
    --navy-dark: #1c2a3e;
    --gold: #c9a84c;
    --gold-light: #e0bf72;
    --white: #ffffff;
    --off-white: #f4f1eb;
    --gray: #6b7280;
    --green: #3a6b35;
  }

  body {
    font-family: 'Open Sans', sans-serif;
    background: var(--off-white);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* TOPBAR */
  .topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #c0392b;
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .topbar-left { display: flex; align-items: center; }
  .topbar-ci-logo { height: 64px; width: auto; object-fit: contain; }
  .topbar-center { flex: 1; text-align: center; }
  .topbar-tagline {
    font-size: 0.82rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.9);
  }
  .topbar-right { display: flex; align-items: center; gap: 20px; }
  .topbar-zim-logo { height: 26px; width: auto; opacity: 0.92; }
  .topbar-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .topbar-phone:hover { color: rgba(255,255,255,0.85); }

  /* PRESEASON BANNER */
  .preseason-banner {
    background: linear-gradient(135deg, #2e5038, #3a6b35);
    padding: 14px 40px;
    border-bottom: 3px solid var(--gold);
  }
  .preseason-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .preseason-icon { font-size: 1.4rem; }
  .preseason-text {
    flex: 1;
    color: rgba(255,255,255,0.92);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .preseason-text strong {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .preseason-cta {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transition: background 0.2s;
  }
  .preseason-cta:hover { background: var(--gold-light); }

  /* BRAND BANNER — between topbar and nav */
  .brand-banner {
    background: var(--navy);
    text-align: center;
    padding: 24px 20px 16px;
  }
  .brand-banner-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 4px;
  }
  .brand-banner-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
  }

  /* NAV */
  nav {
    background: var(--navy);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    position: sticky;
    top: 80px;
    z-index: 99;
    box-shadow: 0 2px 16px rgba(0,0,0,0.35);
    border-bottom: 3px solid var(--gold);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .ci-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
  }

  .nav-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
  }

  .zimmatic-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
  }

  /* Quick-links bar — hidden on desktop, visible on mobile */
  .nav-quick { display: none; }

  .nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 13px;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
    background: rgba(255,255,255,0.06);
  }
  /* NAV DROPDOWN */
  .nav-dropdown {
    position: relative;
    display: inline-block;
  }
  .nav-dropdown-toggle {
    cursor: pointer;
  }
  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    min-width: 200px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    border-top: 2px solid var(--gold);
    z-index: 100;
    padding: 8px 0;
  }
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
  }
  .nav-dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.06);
  }

  .nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: 4px !important;
    padding: 9px 20px !important;
    margin-left: 8px;
  }
  .nav-cta:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
  }

  /* HERO */
  .hero {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: center;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(20,32,48,0.95) 42%, rgba(20,32,48,0.55) 75%, rgba(20,32,48,0.2) 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
    z-index: 3;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
    z-index: 3;
  }

  .hero-content {
    position: relative;
    z-index: 4;
    padding: 80px 40px 80px 80px;
    max-width: 700px;
  }

  .hero-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--white);
    letter-spacing: 0.06em;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--gold);
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    color: var(--white);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
  }
  .hero h1 em {
    color: var(--gold);
    font-style: normal;
    display: block;
  }

  .hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 36px;
    border-left: 3px solid var(--gold);
    padding-left: 16px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.4);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  /* SHARED IMAGE STYLES */
  .page-header-img {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 40px 72px;
  }
  .page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(28,42,62,0.85) 0%, rgba(28,42,62,0.92) 100%);
    z-index: 0;
  }
  .page-header-img .page-header-inner {
    position: relative;
    z-index: 1;
  }
  .section-image {
    margin-bottom: 36px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  }
  .responsive-img {
    width: 100%;
    height: auto;
    display: block;
  }
  .section-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
  }
  .section-photo-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
  }

  /* Lindsay lineup tile grid */
  .lindsay-lineup {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(28,42,62,0.12);
  }
  .lindsay-lineup-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #1c2a3e;
    margin: 0 0 6px;
  }
  .lindsay-lineup-sub {
    color: #5a6472;
    margin: 0 0 24px;
    font-size: 0.95rem;
  }
  .lindsay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }
  .lindsay-tile {
    background: #fff;
    border: 1px solid rgba(28,42,62,0.12);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }
  .lindsay-tile-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    background: #f4f6f8;
    border-bottom: 1px solid rgba(28,42,62,0.08);
  }
  .lindsay-tile-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .lindsay-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28,42,62,0.12);
    border-color: #c8102e;
  }
  .lindsay-tile h4 {
    margin: 0 0 8px;
    color: #1c2a3e;
    font-size: 1.05rem;
  }
  .lindsay-tile p {
    margin: 0 0 16px;
    color: #5a6472;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
  }
  .lindsay-tile a.tile-link {
    color: #c8102e;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    align-self: flex-start;
  }
  .lindsay-tile a.tile-link:hover {
    text-decoration: underline;
  }

  .hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .stat-item { text-align: left; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 3px;
  }

  /* TAGLINE BAND */
  .tagline-band {
    background: var(--gold);
    padding: 16px 40px;
    text-align: center;
  }
  .tagline-band p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--navy);
    letter-spacing: 0.12em;
  }

  /* ORIGIN STORY BAND */
  .origin-band {
    background: var(--navy-dark);
    padding: 44px 80px;
    display: flex;
    align-items: center;
    gap: 48px;
    border-bottom: 3px solid rgba(201,168,76,0.3);
  }
  .origin-icon {
    font-size: 3rem;
    flex-shrink: 0;
  }
  .origin-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    max-width: 900px;
  }
  .origin-text strong {
    color: var(--gold);
    font-weight: 700;
  }

  /* SECTIONS */
  section { padding: 80px 40px; }
  .section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--navy);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 14px;
  }
  .section-title.light { color: var(--white); }
  .section-sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 560px;
  }
  .section-sub.light { color: rgba(255,255,255,0.65); }

  /* PRODUCTS */
  .products-section { background: var(--off-white); }
  .products-header { margin-bottom: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: 48px; }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(42,58,82,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(42,58,82,0.16);
  }

  .card-header {
    background: var(--navy);
    padding: 26px 28px 20px;
    position: relative;
  }
  .card-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
  }
  .card-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .card-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.05;
  }
  .card-body {
    padding: 22px 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .card-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
  }
  .card-link {
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }
  .card-link:hover { gap: 12px; }

  /* WHY SECTION */
  .why-section {
    background: var(--navy);
    position: relative;
  }
  .why-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  .why-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .why-bullet {
    width: 26px;
    height: 26px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .why-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 3px;
  }
  .why-text p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.6;
  }

  .why-callout {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    padding: 36px;
    margin-top: 8px;
  }
  .callout-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
  }
  .callout-body {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin-bottom: 28px;
  }
  .counties-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .counties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .county-tag {
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    color: rgba(255,255,255,0.72);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 3px;
  }
  .county-tag.home {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
  }

  /* SERVICE STRIP */
  .service-strip {
    background: var(--white);
    padding: 56px 40px;
    border-top: 4px solid var(--gold);
  }
  .strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
  }
  .strip-item { padding: 16px; }
  .strip-icon { font-size: 2rem; margin-bottom: 10px; }
  .strip-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin-bottom: 7px;
  }
  .strip-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
  }

  /* CTA */
  .cta-section {
    background: var(--navy-dark);
    padding: 80px 40px;
    text-align: center;
    position: relative;
  }
  .cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
  }
  .cta-inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }
  .cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 36px;
  }
  .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-phone {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: block;
    margin-top: 24px;
    text-decoration: none;
  }

  /* FOOTER */
  footer {
    background: #111d2b;
    color: rgba(255,255,255,0.5);
    padding: 52px 40px 28px;
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 32px;
    flex-wrap: wrap;
  }
  .footer-logos {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  .footer-ci-logo {
    height: 44px;
    width: auto;
    opacity: 1.0;
  }
  .footer-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.15);
  }
  .footer-zim-logo {
    height: 22px;
    width: auto;
    opacity: 0.6;
  }
  .footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    opacity: 0.8;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 36px;
  }
  .footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    font-size: 0.74rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Desktop: show text number, hide tap-to-call link */
  .mobile-only-link { display: none; }
  .desktop-only-text { display: inline; }

  /* HAMBURGER MENU */
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: rgba(255,255,255,0.9);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  @media (max-width: 900px) {
    /* Mobile: show tap-to-call link, hide text number */
    .mobile-only-link { display: inline; }
    .desktop-only-text { display: none; }

    /* Preseason banner mobile */
    .preseason-banner { padding: 12px 16px; }
    .preseason-inner { flex-direction: column; text-align: center; }

    /* Topbar mobile */
    .topbar { padding: 0 12px; height: 56px; gap: 8px; }
    .topbar-ci-logo { height: 44px; }
    .topbar-center { display: none; }
    .topbar-zim-logo { height: 16px; }
    .topbar-right { gap: 8px; }
    .topbar-phone { font-size: 0.85rem; }

    /* Brand banner mobile */
    .brand-banner { padding: 16px 16px 10px; }
    .brand-banner-name { font-size: 1.6rem; }

    /* Nav mobile — sticky below topbar */
    nav {
      padding: 0;
      height: auto;
      position: sticky;
      top: 56px;
      z-index: 99;
      flex-wrap: wrap;
    }

    /* Hamburger — sits at far right of the quick-links row */
    .hamburger {
      display: block;
      position: absolute;
      right: 4px;
      top: 6px;
    }
    .hamburger span { width: 20px; height: 2px; margin: 4px 0; }

    /* Quick-links bar — always visible on mobile */
    .nav-quick {
      display: flex !important;
      width: 100%;
      justify-content: center;
      gap: 0;
      padding-right: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-quick a {
      font-family: 'Open Sans', sans-serif;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      padding: 8px 6px;
      text-align: center;
      flex: 1;
      line-height: 1.3;
      transition: color 0.2s;
    }
    .nav-quick a:hover,
    .nav-quick a.active { color: var(--gold); }

    /* Full menu — hidden until hamburger toggled */
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      padding: 4px 0 12px;
      gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      padding: 12px 16px !important;
      font-size: 0.85rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      text-align: center;
    }
    .nav-links a:last-child { border-bottom: none; }

    .nav-cta {
      margin-left: 0 !important;
      margin-top: 8px;
      text-align: center;
    }

    /* Nav dropdown on mobile — completely invisible wrapper */
    .nav-dropdown {
      width: 100%;
      position: static;
      display: contents;
    }
    .nav-dropdown-toggle {
      display: block;
      width: 100%;
      text-align: center;
      background: none !important;
      border: none !important;
      box-shadow: none !important;
      padding: 12px 16px !important;
      font-size: 0.85rem;
      border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    }
    /* Hide sub-menu and arrow entirely on mobile */
    .nav-dropdown-menu { display: none !important; }
    .nav-dropdown:hover .nav-dropdown-menu { display: none !important; }
    .dropdown-arrow { display: none; }

    /* Hero mobile */
    .hero-content { padding: 48px 20px; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 0.9rem; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-actions a { text-align: center; }

    /* Content sections */
    section { padding: 40px 16px; }
    .origin-band { padding: 32px 16px; flex-direction: column; gap: 16px; }

    /* Product grid */
    .product-grid { grid-template-columns: 1fr !important; }
    .pivot-grid { grid-template-columns: 1fr; }
    .section-photo-grid { grid-template-columns: 1fr !important; }

    /* Why section */
    .why-grid { grid-template-columns: 1fr; gap: 36px; }
    .section-title { font-size: 2rem; }

    /* Service strip */
    .strip-inner { grid-template-columns: 1fr; gap: 20px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Page headers */
    .page-header-img { padding: 48px 20px 56px; }
    .page-title { font-size: 2rem; }
    .page-subtitle { font-size: 0.95rem; }
  }

  @media (max-width: 480px) {
    .topbar { padding: 0 12px; }
    .topbar-right { gap: 10px; }
    .hero-content h1 { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .strip-inner { grid-template-columns: 1fr; }
  }

  .zimmatic-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    border-left: 2px solid rgba(255,255,255,0.4);
    padding-left: 16px;
  }
  .zim-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.12em;
    line-height: 1;
    display: flex;
    align-items: flex-start;
  }
  .zim-tm {
    font-size: 0.65rem;
    color: var(--white);
    vertical-align: super;
    margin-left: 1px;
    margin-top: 4px;
  }
  .zim-sub {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    margin-top: 1px;
  }

  .topbar-zim-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
  }