/* ===========================================================
   Afrimart — design tokens
   =========================================================== */
:root {
  --forest: #00502b;
  --forest-dark: #003b1f;
  --leaf: #3e8a5c;
  --leaf-light: #6fb583;
  --orange: #f89206;
  --orange-dark: #d97b00;
  --orange-light: #fdf1de;
  --black: #14140f;
  --black-soft: #1e1e17;
  --cream: #faf7f1;
  --cream-deep: #f2ead6;
  --card: #ffffff;
  --ink: #1a1a17;
  --ink-soft: #5b5a52;
  --line: #e6dfc9;
  --danger: #b3492f;

  --font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 2px 10px rgba(20, 20, 15, 0.08);
  --shadow-lift: 0 14px 30px rgba(20, 20, 15, 0.16);
  --container: 1180px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-dark);
  margin: 0 0 0.4em;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 56px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--orange-dark);
  background: var(--orange-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ===========================================================
   Animation keyframes
   =========================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(248, 146, 6, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(248, 146, 6, 0); }
}

@keyframes pop {
  0% { transform: scale(0.94); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Scroll-reveal utility — main.js toggles .in-view via IntersectionObserver */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--orange-dark); color: #fff; box-shadow: var(--shadow-lift); }

.btn-outline {
  background: transparent;
  border-color: var(--cream-deep);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--orange); }

.btn-dark {
  background: var(--black);
  color: var(--cream);
}
.btn-dark:hover { background: var(--forest); }

.btn-block { width: 100%; }

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 16px rgba(20, 20, 15, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

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

.brand-logo {
  height: 38px;
  width: auto;
  transition: transform 0.3s var(--ease);
}
.brand:hover .brand-logo { transform: scale(1.05) rotate(-1deg); }

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  color: var(--forest-dark);
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

.main-nav a:hover { background: var(--cream-deep); }
.main-nav a.active { background: var(--black); color: var(--cream); }
.main-nav a.active::after { display: none; }

.main-nav a.contact-link {
  background: var(--orange);
  color: var(--black);
  margin-left: 6px;
  font-weight: 700;
}
.main-nav a.contact-link::after { display: none; }
.main-nav a.contact-link:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--forest-dark);
}
.nav-toggle svg { width: 28px; height: 28px; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 480px at 88% -15%, rgba(0, 80, 43, 0.12), transparent 60%),
    radial-gradient(700px 380px at -5% 115%, rgba(62, 138, 92, 0.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 48px 0 60px;
}

/* Add class="hero has-photo" on the <section class="hero"> + inline
   style="--hero-photo:url('assets/storefront.jpg')" to run a real photo
   of the storefront across the whole section later. ::before lays the
   photo full-bleed behind everything; ::after is a soft scrim that fades
   from solid cream (left, behind the headline) to transparent (right,
   behind the glass card) so the photo stays visible under the card and
   the headline text stays readable on the left. */
.hero.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-photo);
  background-size: cover;
  background-position: center;
}
.hero.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(250, 247, 241, 0.94) 0%, rgba(250, 247, 241, 0.8) 38%, rgba(250, 247, 241, 0.25) 68%, rgba(250, 247, 241, 0.05) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 { animation: fadeInUp 0.6s var(--ease) both; }
.hero-copy p.lead { animation: fadeInUp 0.6s var(--ease) 0.08s both; }
.hero-actions { animation: fadeInUp 0.6s var(--ease) 0.16s both; }
.hero-card { animation: fadeInUp 0.7s var(--ease) 0.24s both; }

.hero-copy p.lead {
  font-size: 1.1rem;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* Frosted-glass hero buttons: translucent + blurred rather than solid
   fills, so they read as floating panels above whatever is behind them
   (the green/cream backdrop now, a storefront photo later). */
.hero-actions .btn {
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 8px 22px rgba(20, 20, 15, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hero-actions .btn-primary {
  background: rgba(248, 146, 6, 0.16);
  border: 1.5px solid rgba(248, 146, 6, 0.6);
  color: var(--orange-dark);
}
.hero-actions .btn-primary:hover {
  background: rgba(248, 146, 6, 0.3);
  border-color: var(--orange);
  color: var(--black);
  box-shadow: 0 10px 26px rgba(20, 20, 15, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hero-actions .btn-dark {
  background: rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(20, 20, 15, 0.4);
  color: var(--black);
}
.hero-actions .btn-dark:hover {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--black);
}

/* Frosted-glass "Visit the Store" card: translucent + blurred so it
   never fully hides whatever sits behind it — the gradient backdrop
   now, a storefront photo later. */
.hero-card {
  position: relative;
  background: rgba(20, 20, 15, 0.4);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lift);
}

.hero-card h3 { color: var(--cream); margin-bottom: 16px; font-family: var(--font-display); }

.info-row {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(250, 246, 236, 0.14);
}
.info-row:last-of-type { border-bottom: none; }

.info-row .ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 2px;
}

.info-row strong { display: block; color: var(--cream); font-size: 0.95rem; }
.info-row span { display: block; color: rgba(250, 246, 236, 0.75); font-size: 0.92rem; }

.hero-card .btn { margin-top: 18px; }

/* ===========================================================
   Section headings
   =========================================================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head p { margin: 0; max-width: 50ch; }

/* ===========================================================
   Product grid & cards
   =========================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
  animation: pop 0.5s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 45ms);
}
.product-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
  border-color: var(--orange-light);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.07); }

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 10px;
}
.product-placeholder .emoji { font-size: 2.4rem; line-height: 1; }
.product-placeholder .cat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.7;
}

.stock-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(179, 73, 47, 0.94);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.product-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--leaf);
}

.product-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest-dark);
  margin: 0;
}

.product-desc {
  font-size: 0.87rem;
  color: var(--ink-soft);
  margin: 2px 0 6px;
  flex: 1;
}

.product-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px dashed var(--line);
}

.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--orange-dark);
}

.product-unit {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.product-card.out-of-stock { opacity: 0.55; }
.product-card.out-of-stock .product-media { filter: grayscale(0.6); }

/* ===========================================================
   Featured strip
   =========================================================== */
.featured-section { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ===========================================================
   Shipping teaser banner
   =========================================================== */
.ship-teaser {
  background: linear-gradient(120deg, var(--black), var(--black-soft) 70%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(248, 146, 6, 0.25);
}
.ship-teaser .ship-copy { max-width: 480px; }
.ship-teaser h3 { color: var(--cream); display: flex; align-items: center; gap: 10px; }
.ship-teaser h3 svg { color: var(--orange); animation: floatY 2.6s ease-in-out infinite; }
.ship-teaser p { color: rgba(250, 246, 236, 0.8); margin: 6px 0 0; }
.ship-teaser .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(248, 146, 6, 0.16);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ===========================================================
   Shop page controls
   =========================================================== */
.shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.search-wrap {
  position: relative;
  max-width: 420px;
}
.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--ink-soft);
}
.search-input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--card);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.search-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(248, 146, 6, 0.18);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-pill {
  padding: 9px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--card);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest-dark);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.filter-pill:hover { border-color: var(--orange); transform: translateY(-1px); }
.filter-pill.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
}

.results-meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.empty-state, .error-state, .loading-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}
.error-state {
  background: #fbeee9;
  border: 1px solid #f0d3c7;
  border-radius: var(--radius-md);
}
.error-state strong { display: block; color: var(--danger); font-size: 1.05rem; margin-bottom: 6px; }

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.skeleton-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}
.skeleton-card .sk-media { aspect-ratio: 4/3; background: var(--cream-deep); animation: pulse 1.4s ease-in-out infinite; }
.skeleton-card .sk-line { height: 12px; margin: 14px 16px; border-radius: 6px; background: var(--cream-deep); animation: pulse 1.4s ease-in-out infinite; }
.skeleton-card .sk-line.short { width: 50%; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===========================================================
   Generic page hero (Shop / Shipping / Contact)
   =========================================================== */
.page-hero {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 52px 0;
  text-align: center;
}
.page-hero h1 { color: var(--cream); animation: fadeInUp 0.6s var(--ease) both; }
.page-hero p { color: rgba(250, 246, 236, 0.78); max-width: 60ch; margin: 0 auto; animation: fadeInUp 0.6s var(--ease) 0.1s both; }

/* ===========================================================
   Shipping "coming soon" page
   =========================================================== */
.coming-soon {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 70px 20px;
}
.coming-soon .icon-badge {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatY 3s ease-in-out infinite, fadeInUp 0.6s var(--ease) both;
}
.coming-soon .icon-badge svg { width: 40px; height: 40px; color: var(--orange-dark); }
.coming-soon .eyebrow { animation: fadeInUp 0.6s var(--ease) 0.1s both; }
.coming-soon h1 { animation: fadeInUp 0.6s var(--ease) 0.16s both; }
.coming-soon .message {
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 auto 30px;
  animation: fadeInUp 0.6s var(--ease) 0.24s both;
}
.coming-soon .call-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1.5px solid var(--orange-light);
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  color: var(--forest-dark);
  box-shadow: var(--shadow-card);
  animation: fadeInUp 0.6s var(--ease) 0.32s both, pulseSoft 2.8s ease-in-out 1.5s infinite;
  transition: transform 0.2s var(--ease);
}
.coming-soon .call-line:hover { transform: translateY(-2px) scale(1.02); }
.coming-soon .call-line svg { width: 20px; height: 20px; color: var(--orange); }

/* ===========================================================
   Contact / About page
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.detail-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.detail-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: none; }
.detail-row .ico {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-row strong { display: block; color: var(--forest-dark); font-size: 1rem; margin-bottom: 2px; }
.detail-row a, .detail-row span { color: var(--ink-soft); font-size: 0.94rem; transition: color 0.15s ease; }
.detail-row a:hover { color: var(--orange-dark); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.hours-table td { padding: 6px 0; color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--forest-dark); }

/* ===========================================================
   About blurb
   =========================================================== */
.about-block { max-width: 70ch; margin: 0 auto 50px; text-align: center; }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--black);
  color: rgba(250, 246, 236, 0.75);
  padding: 46px 0 24px;
  margin-top: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.14);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.site-footer h4 { color: var(--orange); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.site-footer a { display: block; padding: 5px 0; color: rgba(250, 246, 236, 0.75); font-size: 0.92rem; transition: color 0.15s ease, transform 0.15s ease; }
.site-footer a:hover { color: var(--orange); transform: translateX(3px); }
.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 20px;
    gap: 4px;
    display: none;
    box-shadow: var(--shadow-card);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 16px; }
  .main-nav a.contact-link { margin-left: 0; text-align: center; }
  .nav-toggle { display: inline-flex; }
  .ship-teaser { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  section { padding: 40px 0; }
  .hero { padding: 34px 0 44px; }
  .coming-soon { padding: 50px 16px; }
}
