/* ============================================================
   Zola's Fine Foods — Global Styles
   Dark-themed, modern, elegant
   ============================================================ */

/* ---------- @font-face — Local Fonts ---------- */

/* Crimson Pro (serif — headings) */
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-Italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-MediumItalic.ttf') format('truetype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-SemiBoldItalic.ttf') format('truetype'); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-BoldItalic.ttf') format('truetype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-ExtraBold.ttf') format('truetype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-ExtraBoldItalic.ttf') format('truetype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-Black.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-BlackItalic.ttf') format('truetype'); font-weight: 900; font-style: italic; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-LightItalic.ttf') format('truetype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-ExtraLight.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Crimson Pro'; src: url('/assets/fonts/CrimsonPro-ExtraLightItalic.ttf') format('truetype'); font-weight: 200; font-style: italic; font-display: swap; }

/* Spline Sans (sans-serif — body) */
@font-face { font-family: 'Spline Sans'; src: url('/assets/fonts/SplineSans-Light.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Spline Sans'; src: url('/assets/fonts/SplineSans-Regular.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Spline Sans'; src: url('/assets/fonts/SplineSans-Medium.ttf') format('truetype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Spline Sans'; src: url('/assets/fonts/SplineSans-SemiBold.ttf') format('truetype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Spline Sans'; src: url('/assets/fonts/SplineSans-Bold.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: swap; }

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand palette */
  --zff-black:    #0a0a0a;
  --zff-dark:     #131313;
  --zff-card:     #1a1a1a;
  --zff-border:   #2a2a2a;
  --zff-muted:    #888;
  --zff-light:    #e0e0e0;
  --zff-white:    #f5f5f5;
  --zff-accent:   #c8a246;          /* warm gold */
  --zff-accent-hover: #dbb85c;

  /* Typography */
  --font-heading: 'Crimson Pro', Georgia, serif;
  --font-body:    'Spline Sans', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 6rem 2rem;
  --container-max:   1200px;
  --navbar-height:   74px;
  --subnav-height:   80px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--zff-black);
  color: var(--zff-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;            /* prevent horizontal scroll from animations */
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding-inline: 1.25rem;       /* prevent content touching screen edges */
}

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--zff-accent);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--zff-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--zff-muted);
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--zff-accent);
  color: var(--zff-black);
}
.btn-primary:hover {
  background: var(--zff-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,162,70,.3);
}

.btn-outline {
  background: transparent;
  color: var(--zff-accent);
  border: 1.5px solid var(--zff-accent);
}
.btn-outline:hover {
  background: var(--zff-accent);
  color: var(--zff-black);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  transition: transform .3s var(--ease);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem max(2rem, calc((100% - var(--container-max)) / 2 + 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--zff-border);
}

.navbar__logo img {
  height: 42px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--zff-light);
  position: relative;
  transition: color .3s var(--ease);
}

.navbar__links > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--zff-accent);
  transition: width .3s var(--ease);
}

.navbar__links > a:hover {
  color: var(--zff-accent);
}
.navbar__links > a:hover::after {
  width: 100%;
}

/* ---------- Dropdowns ---------- */
.dropdown {
  position: relative;
}

.dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--zff-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .3s var(--ease);
}

.dropdown__trigger:hover,
.dropdown.open .dropdown__trigger {
  color: var(--zff-accent);
}

.dropdown__chevron {
  transition: transform .3s var(--ease);
}

.dropdown.open .dropdown__chevron {
  transform: rotate(180deg);
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: rgba(20, 20, 20, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--zff-border);
  border-radius: 12px;
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 1001;
}

.dropdown.open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown__menu a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--zff-light);
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.dropdown__menu a:hover {
  background: rgba(200, 162, 70, .1);
  color: var(--zff-accent);
}

/* Remove underline animation from dropdown links */
.dropdown__menu a::after {
  display: none;
}

/* Mobile hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--zff-light);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Sub-navigation (brand bar) ---------- */
.subnav {
  position: fixed;
  top: var(--navbar-height);
  left: 0; right: 0;
  z-index: 999;
  background: var(--zff-dark);
  border-bottom: 1px solid var(--zff-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav::-webkit-scrollbar { display: none; }

.subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: .75rem 1.25rem;
  min-height: var(--subnav-height);
}

.subnav__links {
  display: flex;
  gap: .25rem;
  align-items: stretch;
  justify-content: center;
}

.subnav__links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 500;
  color: var(--zff-muted);
  padding: .5rem 1rem;
  border-radius: 10px;
  white-space: nowrap;
  text-decoration: none;
  transition: color .2s var(--ease);
}

.subnav__links a i {
  font-size: 1.25rem;
  transition: transform .2s var(--ease);
}

.subnav__links a:hover {
  color: var(--zff-accent);
}

.subnav__links a:hover i {
  transform: scale(1.1);
}

.subnav__links a.active {
  color: var(--zff-accent);
}

/* When subnav exists, push page content below both fixed bars */
.has-subnav .hero {
  padding-top: calc(var(--navbar-height) + var(--subnav-height) + 4rem);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;            /* accounts for mobile browser chrome */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(200,162,70,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__logo {
  width: clamp(120px, 20vw, 200px);
  margin-bottom: 2rem;
  animation: fadeUp .8s var(--ease) both;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--zff-accent);
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeUp .8s .15s var(--ease) both;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--zff-white);
  line-height: 1.15;
  max-width: 800px;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .3s var(--ease) both;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--zff-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  animation: fadeUp .8s .45s var(--ease) both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp .8s .6s var(--ease) both;
}

/* ---------- Brands Section ---------- */
.brands {
  padding: var(--section-padding);
}

.brands__header {
  text-align: center;
  margin-bottom: 4rem;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: 2.5rem;
}

.brand-card {
  background: var(--zff-card);
  border: 1px solid var(--zff-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.brand-card__top {
  padding: 3rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-card__logo {
  height: 90px;
  width: auto;
  margin-bottom: 1.5rem;
}

.brand-card__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--zff-white);
  margin-bottom: .35rem;
}

.brand-card__slogan {
  font-size: .95rem;
  color: var(--zff-accent);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.brand-card__desc {
  font-size: .95rem;
  color: var(--zff-muted);
  line-height: 1.7;
  max-width: 420px;
}

.brand-card__bottom {
  padding: 1.5rem 2.5rem 2rem;
  display: flex;
  justify-content: center;
}

/* Neowork credit */
.brand-card__credit {
  font-size: .7rem;
  color: var(--zff-muted);
  opacity: .6;
  margin-top: .5rem;
}

/* ---------- About Section ---------- */
.about {
  padding: var(--section-padding);
  background: var(--zff-dark);
}

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

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__text p {
  color: var(--zff-light);
  font-size: .98rem;
  line-height: 1.8;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.pillar {
  background: var(--zff-card);
  border: 1px solid var(--zff-border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.pillar:hover {
  border-color: var(--zff-accent);
  transform: translateX(4px);
}

.pillar__number {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--zff-accent);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.pillar__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--zff-white);
  margin-bottom: .4rem;
}

.pillar__desc {
  font-size: .88rem;
  color: var(--zff-muted);
  line-height: 1.6;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: var(--section-padding);
  text-align: center;
}

.cta-banner__inner {
  background: linear-gradient(135deg, var(--zff-card) 0%, rgba(200,162,70,.08) 100%);
  border: 1px solid var(--zff-border);
  border-radius: 24px;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--zff-white);
  margin-bottom: 1rem;
}

.cta-banner__desc {
  color: var(--zff-muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--zff-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

/* Info column (left) */
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__logo img {
  height: 36px;
  width: auto;
  opacity: .7;
  transition: opacity .3s var(--ease);
}
.footer__logo:hover img {
  opacity: 1;
}

.footer__contact,
.footer__hours,
.footer__address {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.footer__contact a,
.footer__hours p,
.footer__address p {
  font-size: .82rem;
  color: var(--zff-muted);
  line-height: 1.6;
}

.footer__contact a {
  transition: color .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer__contact a:hover {
  color: var(--zff-accent);
}

/* Nav columns (right) */
.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--zff-white);
  margin-bottom: .75rem;
  letter-spacing: .5px;
}

.footer__col nav {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer__col a {
  font-size: .82rem;
  color: var(--zff-muted);
  transition: color .3s var(--ease);
}
.footer__col a:hover {
  color: var(--zff-accent);
}

/* Legacy single-row links (kept for compatibility) */
.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: .85rem;
  color: var(--zff-muted);
  transition: color .3s var(--ease);
}
.footer__links a:hover {
  color: var(--zff-accent);
}

.footer__copy {
  font-size: .8rem;
  color: var(--zff-muted);
  opacity: .6;
  text-align: center;
  border-top: 1px solid var(--zff-border);
  padding-top: 1.5rem;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94),
              transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Direction variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94),
              transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94),
              transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-up variant */
.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94),
              transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children — add .stagger to the parent grid/container */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: .12s; }
.stagger > .reveal:nth-child(3) { transition-delay: .24s; }
.stagger > .reveal:nth-child(4) { transition-delay: .36s; }
.stagger > .reveal:nth-child(5) { transition-delay: .48s; }
.stagger > .reveal:nth-child(6) { transition-delay: .60s; }

/* Hero entrance — plays once on page load */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero > * {
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero > *:nth-child(1) { animation-delay: .1s; }
.hero > *:nth-child(2) { animation-delay: .25s; }
.hero > *:nth-child(3) { animation-delay: .4s; }
.hero > *:nth-child(4) { animation-delay: .55s; }
.hero > *:nth-child(5) { animation-delay: .7s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero > * {
    opacity: 1;
    animation: none;
  }
}

/* ---------- Responsive ---------- */

/* Touch devices — disable hover transforms that cause jank */
@media (hover: none) {
  .brand-card:hover {
    transform: none;
  }
  .pillar:hover {
    transform: none;
  }
  .btn-primary:hover,
  .btn-outline:hover {
    transform: none;
  }
}

/* Tablet ≤ 900px */
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .brands__header {
    margin-bottom: 3rem;
  }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.25rem;
    --navbar-height: 52px;
    --subnav-height: 40px;
  }

  /* Navbar */
  .navbar {
    padding: .85rem 1.25rem;
  }

  .navbar__logo img {
    height: 34px;
  }

  .navbar__links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    padding: 2rem;
  }

  .navbar__links.open {
    transform: translateX(0);
  }

  .navbar__links > a {
    font-size: 1.15rem;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Mobile dropdowns — stacked, no float */
  .dropdown {
    width: 100%;
  }

  .dropdown__trigger {
    font-size: 1.15rem;
    width: 100%;
    justify-content: space-between;
    padding: .25rem 0;
  }

  .dropdown__menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    border-left: 2px solid var(--zff-accent);
    padding: 0 0 0 1rem;
    margin-top: .5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
  }

  .dropdown.open .dropdown__menu {
    max-height: 400px;
    transform: none;
  }

  .dropdown__menu a {
    padding: .45rem 0;
    font-size: 1rem;
  }

  /* Hero */
  .hero {
    padding: 6rem 1.25rem 4rem;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__tagline {
    letter-spacing: 1px;
  }

  /* Brands */
  .brands__grid {
    grid-template-columns: 1fr;
  }

  .brand-card__top {
    padding: 2rem 1.5rem 1.5rem;
  }

  .brand-card__bottom {
    padding: 1rem 1.5rem 1.75rem;
  }

  .brand-card__logo {
    height: 70px;
  }

  /* About */
  .about__text p {
    font-size: .93rem;
  }

  .pillar {
    padding: 1.25rem;
  }

  .pillar:hover {
    transform: none;               /* avoid horizontal overflow */
  }

  /* CTA Banner */
  .cta-banner__inner {
    padding: 3rem 1.5rem;
    border-radius: 18px;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 1.25rem;
  }

  .footer__links {
    gap: 1.25rem;
  }
}

/* Small phones ≤ 480px */
@media (max-width: 480px) {
  :root {
    --section-padding: 3rem 1rem;
  }

  .hero {
    padding: 5.5rem 1rem 3rem;
  }

  .hero__logo {
    width: clamp(90px, 30vw, 140px);
    margin-bottom: 1.5rem;
  }

  .hero__title {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
  }

  .hero__description {
    font-size: .92rem;
    margin-bottom: 2rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: .75rem;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-subtitle {
    font-size: .95rem;
  }

  .brand-card {
    border-radius: 14px;
  }

  .brand-card__top {
    padding: 1.75rem 1.25rem 1.25rem;
  }

  .brand-card__bottom {
    padding: .75rem 1.25rem 1.5rem;
  }

  .brand-card__name {
    font-size: 1.35rem;
  }

  .brand-card__logo {
    height: 60px;
  }

  .btn {
    padding: .75rem 1.5rem;
    font-size: .88rem;
  }

  .cta-banner__inner {
    padding: 2.5rem 1.25rem;
    border-radius: 14px;
  }

  .cta-banner__actions {
    flex-direction: column;
  }

  .cta-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__links {
    flex-direction: column;
    gap: .75rem;
    align-items: center;
  }

  .footer__columns {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer__info {
    align-items: center;
  }

  .footer__contact,
  .footer__hours,
  .footer__address {
    align-items: center;
  }

  .footer__col nav {
    align-items: center;
  }
}
