/* ==========================================================================
   Hocean.com — Design Mockup 3 v2 (testsite3)
   Direction: "Consensus" — the elements that appear on most food
   importer / distributor sites (ocmfoods, jansfood, walong, sysco, usfoods,
   gfs, ustrading, hmart, rheebros): big full-width rotating hero banners,
   category tiles, deals strip, product cards, brand wall, services, news.
   Palette: clean white + red (most sites use red) with a hint of Hocean gold.
   ========================================================================== */

:root {
  --red-900: #6d1010;
  --red-700: #a61b26;
  --red-600: #c8102e;
  --red-500: #e03a4e;
  --red-soft: #fdeef0;
  --gold-600: #84680f;
  --gold-500: #c9a227;
  --gold-300: #e8d08a;
  --ink: #17181c;
  --ink-soft: #5c6270;
  --paper: #ffffff;
  --cloud: #f5f6f8;
  --line: #e4e6eb;
  --green: #1f8a4c;
  --green-soft: #e8f5ee;
  --shadow-sm: 0 1px 3px rgba(23, 24, 28, 0.08);
  --shadow-md: 0 12px 30px rgba(23, 24, 28, 0.14);
  --radius: 12px;
  --maxw: 1240px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Consolas, Menlo, monospace;
  --focus-ring: 3px solid rgba(200, 16, 46, 0.45);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.58;
  color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red-600); }
a:hover { color: var(--red-700); }

h1, h2, h3, h4 {
  font-family: var(--font); line-height: 1.18; color: var(--ink);
  margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 2.9vw, 2.15rem); }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1rem; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--red-700); color: #fff;
  padding: 0.75rem 1.25rem; z-index: 1000; border-radius: 0 0 8px 0; text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: var(--focus-ring); outline-offset: 2px; border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section--cloud { background: var(--cloud); }
.section--dark { background: var(--red-900); color: #f4e9e1; }

.section-title { text-align: center; margin-bottom: 2.4rem; }
.section-title .kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red-600);
  margin-bottom: 0.5rem;
}
.section-title h2 { margin-bottom: 0.4rem; }
.section-title .lead { color: var(--ink-soft); max-width: 62ch; margin: 0 auto; }

.lead { font-size: 1.08rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.74rem 1.65rem; border-radius: 8px; font-weight: 700;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  font-size: 0.97rem; line-height: 1.2; transition: background 0.2s, color 0.2s,
  border-color 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn--red { background: var(--red-600); color: #fff; }
.btn--red:hover { background: var(--red-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold-500); color: #221a05; }
.btn--gold:hover { background: var(--gold-300); color: #221a05; }
.btn--ghost { border-color: var(--red-600); color: var(--red-600); background: transparent; }
.btn--ghost:hover { background: var(--red-600); color: #fff; }
.btn--white { background: #fff; color: var(--red-700); }
.btn--white:hover { background: var(--gold-300); color: var(--red-900); }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.88rem; }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--red-900); color: #f6e9de; font-size: 0.84rem; }
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0.42rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.topbar a { color: var(--gold-300); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .tb-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 1.25rem; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--red-900); }
.brand img { height: 50px; width: auto; }
.brand .brand-name { font-weight: 800; font-size: 1.52rem; letter-spacing: -0.02em; display: block; color: var(--red-900); }
.brand .brand-sub { font-size: 0.77rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); display: block; }

.header-right { display: flex; align-items: center; gap: 0.9rem; }

.header-search { position: relative; }
.header-search input {
  width: min(270px, 32vw); padding: 0.56rem 2.55rem 0.56rem 1rem;
  border: 1.5px solid var(--line); border-radius: 8px; font-size: 0.92rem; background: var(--cloud);
}
.header-search input:focus { border-color: var(--red-500); background: #fff; outline: none; }
.header-search .search-btn {
  position: absolute; right: 0.35rem; top: 50%; transform: translateY(-50%);
  border: 0; background: var(--red-600); color: #fff; border-radius: 6px;
  width: 1.9rem; height: 1.9rem; cursor: pointer; font-size: 0.9rem; line-height: 1;
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 0.5rem 0.8rem; font-size: 1.05rem;
  cursor: pointer; color: var(--red-700);
}

.main-nav ul { list-style: none; display: flex; gap: 0.25rem; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 0.55rem 0.95rem; border-radius: 8px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.97rem;
}
.main-nav a:hover { background: var(--cloud); color: var(--red-700); }
.main-nav a[aria-current="page"] { color: var(--red-600); background: var(--red-soft); }

/* ---------- Hero rotating banner carousel (full-width, prominent) ---------- */
.hero-banner {
  position: relative; min-height: clamp(440px, 64vh, 640px); overflow: hidden;
  background: var(--red-900);
}
.hero-banner__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s; }
.hero-banner__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-banner__slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(28, 8, 6, 0.88) 0%, rgba(28, 8, 6, 0.62) 40%,
    rgba(28, 8, 6, 0.2) 70%, rgba(28, 8, 6, 0.45) 100%);
}
.hero-banner__content {
  position: relative; z-index: 2; height: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 4rem 1.25rem; display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start; color: #fff;
}
.hero-banner__brand {
  display: inline-block; background: var(--gold-500); color: #221a05;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.36rem 0.95rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.hero-banner__content h1 { color: #fff; font-size: clamp(2.1rem, 4.8vw, 3.5rem); margin-bottom: 0.6rem; }
.hero-banner__content p { color: #f2e9df; font-size: 1.1rem; max-width: 52ch; }
.hero-banner__content .hb-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.7rem; }

.hero-banner__nav {
  position: absolute; z-index: 5; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 1rem;
}
.hero-banner__dots { display: flex; gap: 0.5rem; }
.hero-banner__dot {
  width: 12px; height: 12px; border-radius: 50%; border: 0;
  background: rgba(255, 255, 255, 0.45); cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hero-banner__dot.is-active { background: var(--gold-500); transform: scale(1.25); }
.hero-banner__arrow {
  background: rgba(255, 255, 255, 0.16); color: #fff; border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%; width: 2.7rem; height: 2.7rem; cursor: pointer; font-size: 1.15rem;
  display: inline-flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.hero-banner__arrow:hover { background: rgba(255, 255, 255, 0.32); }

/* ---------- Category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(222px, 1fr)); gap: 1.3rem; }
.cat-tile {
  display: block; text-decoration: none; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.18s, box-shadow 0.18s;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink); }
.cat-tile__img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--cloud); }
.cat-tile__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.cat-tile:hover .cat-tile__img img { transform: scale(1.05); }
.cat-tile__body { padding: 0.95rem 1.05rem 1.1rem; }
.cat-tile__body h3 { font-size: 1rem; margin-bottom: 0.1rem; }
.cat-tile__count { font-size: 0.83rem; color: var(--ink-soft); }
.cat-tile__more {
  display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.85rem;
  font-weight: 700; color: var(--red-600); margin-top: 0.45rem;
}

/* ---------- Deals strip (horizontal scroll) ---------- */
.deals { position: relative; }
.deals__track {
  display: flex; gap: 1.1rem; overflow-x: auto; padding: 0.4rem 0.2rem 1rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.deal {
  flex: 0 0 230px; scroll-snap-align: start; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink); transition: transform 0.18s, box-shadow 0.18s;
}
.deal:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink); }
.deal__img { aspect-ratio: 1 / 1; background: #fff; display: flex; align-items: center;
  justify-content: center; padding: 0.6rem; position: relative; }
.deal__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.deal__save {
  position: absolute; right: 0.6rem; top: 0.6rem; background: var(--red-600); color: #fff;
  font-size: 0.72rem; font-weight: 800; padding: 0.25rem 0.55rem; border-radius: 999px;
}
.deal__body { padding: 0.75rem 0.9rem 0.9rem; }
.deal__name { font-size: 0.9rem; font-weight: 700; line-height: 1.35; }
.deal__cn { font-size: 0.78rem; color: var(--ink-soft); }
.deal__price { margin-top: 0.5rem; font-size: 0.92rem; }
.deal__price .price-now { font-weight: 800; color: var(--red-600); font-size: 1.02rem; }
.deal__price .price-was { color: var(--ink-soft); text-decoration: line-through; margin-left: 0.35rem; font-size: 0.85rem; }

/* ---------- Product cards ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s; text-decoration: none; color: var(--ink);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink); }
.prod-card__img {
  aspect-ratio: 1 / 1; background: #fff; display: flex; align-items: center;
  justify-content: center; padding: 0.65rem; position: relative;
}
.prod-card__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.prod-card__badges { position: absolute; left: 0.55rem; top: 0.55rem; display: flex; gap: 0.3rem; flex-wrap: wrap; }
.badge { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.22rem 0.5rem; border-radius: 4px; color: #fff; }
.badge--new { background: var(--green); }
.badge--seasonal { background: var(--gold-500); color: #221a05; }
.badge--hot { background: var(--red-600); }
.prod-card__body { padding: 0.8rem 0.9rem 0.95rem; flex: 1; display: flex; flex-direction: column; }
.prod-card__sku { font-family: var(--mono); font-size: 0.72rem; font-weight: 700; color: var(--red-600); }
.prod-card__brand { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--gold-600); margin-top: 0.15rem; }
.prod-card__name { font-size: 0.93rem; font-weight: 700; line-height: 1.35; }
.prod-card__cn { font-size: 0.8rem; color: var(--ink-soft); }
.prod-card__pack { margin-top: auto; padding-top: 0.5rem; font-size: 0.8rem; color: var(--ink-soft); }
.prod-card__pack b { color: var(--ink); }
.prod-card__barcode { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-soft); }

/* ---------- Brand wall ---------- */
.brand-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1.6rem 2.6rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-sm);
}
.brand-strip img { height: 62px; width: auto; max-width: 150px; object-fit: contain;
  opacity: 0.85; filter: grayscale(1); transition: filter 0.25s, opacity 0.25s, transform 0.2s; }
.brand-strip img:hover { filter: none; opacity: 1; transform: translateY(-2px); }

/* ---------- Feature / value props ---------- */
.feature-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.35rem; text-align: center; box-shadow: var(--shadow-sm);
}
.feature__icon {
  width: 3.1rem; height: 3.1rem; margin: 0 auto 0.85rem; border-radius: 50%;
  background: var(--red-soft); color: var(--red-600); display: flex; align-items: center;
  justify-content: center; font-size: 1.45rem;
}
.feature h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.feature p { font-size: 0.89rem; color: var(--ink-soft); margin: 0; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 1.5rem; text-align: center; }
.stats .stat h3 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); color: var(--gold-300); margin-bottom: 0.15rem; }
.stats .stat p { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: #e9dccd; margin: 0; font-weight: 600; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--red-600);
}
.news-card .news-date { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red-600); }
.news-card h3 { font-size: 1rem; margin: 0.4rem 0 0.3rem; }
.news-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--red-900), var(--red-700));
  color: #fff; padding: 3.4rem 1.25rem; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 0.35rem; }
.page-hero .crumb { font-size: 0.9rem; color: var(--gold-300); }
.page-hero .crumb a { color: var(--gold-300); text-decoration: none; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero .lead { color: #f5e9de; margin: 0 auto; max-width: 60ch; }

/* ---------- Two column / content ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.content-block { max-width: 78ch; margin: 0 auto; }
.content-block h2 { margin-top: 2rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--gold-300); }
.content-block ul, .content-block ol { margin: 0 0 1rem 1.4rem; }
.content-block li { margin-bottom: 0.4rem; }

/* Timeline */
.timeline { position: relative; margin: 1.5rem 0 0; padding-left: 1.6rem; }
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 4px; bottom: 4px;
  width: 2px; background: var(--line);
}
.timeline li { position: relative; list-style: none; margin-bottom: 1.4rem; }
.timeline li::before {
  content: ""; position: absolute; left: -1.6rem; top: 6px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--red-600); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--red-600);
}
.timeline .tl-year { font-weight: 800; color: var(--ink); font-family: var(--mono); font-size: 0.98rem; }
.timeline .tl-text { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.2rem;
  border-left: 4px solid var(--red-600);
}
.contact-card h3 { margin-top: 0; font-size: 1.02rem; }
.contact-card dt { font-weight: 700; }
.contact-card dd { margin: 0 0 0.8rem; color: var(--ink-soft); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.3rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.65rem 0.85rem; border: 1.5px solid var(--line);
  border-radius: 8px; font-size: 0.96rem; font-family: var(--font); background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red-500); outline: none; }

/* ---------- Catalog / filter ---------- */
.cat-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 8px;
  padding: 0.42rem 1.05rem; font-size: 0.87rem; font-weight: 600; cursor: pointer;
  color: var(--ink); transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.chip:hover { border-color: var(--red-500); color: var(--red-600); }
.chip[aria-pressed="true"] { background: var(--red-600); border-color: var(--red-600); color: #fff; }
.catalog-count { font-size: 0.9rem; color: var(--ink-soft); }

.panel {
  background: var(--cloud); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; margin-top: 2.4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.panel h3 { margin-bottom: 0.2rem; }
.panel p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red-900), var(--red-700));
  color: #fff; padding: 3.4rem 1.25rem; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { color: #f3e7db; max-width: 58ch; margin: 0 auto 1.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: #2a0e0e; color: #e7d9cc; margin-top: 4rem; }
.site-footer a { color: var(--gold-300); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.2rem;
  padding: 3rem 1.25rem 1.6rem; max-width: var(--maxw); margin: 0 auto;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h3 {
  color: var(--gold-300); font-size: 0.92rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 0.9rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 0.5rem; font-size: 0.94rem; }
.footer-grid .footer-about p { font-size: 0.94rem; color: #d9c8b8; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 1.1rem 1.25rem;
  text-align: center; font-size: 0.85rem; color: #c3ac9a;
}

/* ---------- Mockup note ---------- */
.mockup-note {
  background: var(--gold-300); color: #4a3a08; font-size: 0.85rem; text-align: center;
  padding: 0.5rem 1rem; font-weight: 600;
}
.mockup-note a { color: var(--red-900); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .header-search { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; padding: 0.6rem 1rem 1rem; }
  .section { padding: 3rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
