/* ============================================================
   BACKSTUBE  --  Main stylesheet
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

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

:root {
  --cream:    #F7F2EA;
  --cream2:   #EDE5D8;
  --dark:     #1A1714;
  --dark2:    #2E2A26;
  --wheat:    #C8964A;
  --wheat-lt: #E8C98A;
  --white:    #FFFFFF;
  --gray:     #6B6560;
  --gray-lt:  #AEA9A4;
  --border:   #DDD5C8;
  --red:      #C0392B;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius:   8px;
  --radius-lg:14px;
  --shadow:   0 2px 12px rgba(26,23,20,.08);
  --shadow-md:0 4px 24px rgba(26,23,20,.12);

  --max-w:    1200px;
  --nav-h:    64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Career Banner ── */
.career-banner {
  background: var(--dark);
  color: var(--wheat-lt);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: .02em;
}
.career-banner a {
  color: var(--wheat-lt);
  border-bottom: 1px solid var(--wheat);
  margin-left: 8px;
  font-weight: 500;
  transition: opacity .2s;
  white-space: nowrap;
}
.career-banner a:hover { opacity: .75; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo img { height: 42px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark2);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--wheat);
  transition: width .25s;
}
.nav__links a:hover { color: var(--wheat); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--wheat); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
#lang-toggle {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all .2s;
}
#lang-toggle:hover { color: var(--dark); border-color: var(--dark); }

.btn-order-nav {
  background: var(--dark);
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 6px;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: .02em !important;
  transition: background .2s !important;
}
.btn-order-nav:hover { background: var(--wheat) !important; color: var(--dark) !important; }
.btn-order-nav::after { display: none !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark);
  transition: all .3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .22s;
  cursor: pointer;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn-primary:hover { background: var(--wheat); border-color: var(--wheat); color: var(--dark); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-wheat {
  background: var(--wheat);
  color: var(--dark);
  border: 2px solid var(--wheat);
}
.btn-wheat:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 6px; }

/* ── Hero ── */
.hero {
  position: relative;
  height: calc(100svh - var(--nav-h));
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,23,20,.65) 0%, rgba(26,23,20,.25) 60%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  color: var(--white);
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--wheat-lt);
  margin-bottom: 14px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 640px;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Section titles ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  margin-top: 10px;
  max-width: 580px;
}

/* ── Order Section (homepage) ── */
.order-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
}
.order-section .section-eyebrow { color: var(--wheat-lt); }
.order-section .section-title { color: var(--white); }
.order-section .section-sub { color: rgba(255,255,255,.75); }

.order-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.order-section__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.order-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--wheat-lt);
  font-weight: 500;
}
.order-section__tag::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wheat);
}
.order-section__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.order-section__img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Products ── */
.products-page { padding: 72px 0 80px; }
.products-header { margin-bottom: 40px; }
.products-header .section-title { margin-bottom: 24px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark2);
  background: var(--white);
  transition: all .18s;
}
.filter-btn:hover { border-color: var(--dark); }
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.category-section { margin-bottom: 56px; }
.category-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.product-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.product-card__name { font-family: var(--font-head); font-size: 1rem; font-weight: 600; line-height: 1.3; }
.product-card__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--wheat);
  white-space: nowrap;
  flex-shrink: 0;
}
.product-card__desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

.product-card__badges { display: flex; flex-wrap: wrap; gap: 6px; }
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .03em;
}
.badge-gluten { background: #FFF3CD; color: #856404; }
.badge-melk   { background: #D1ECF1; color: #0C5460; }
.badge-egg    { background: #FDE8D8; color: #7A3E00; }
.badge-soya   { background: #DFE8D4; color: #2D5A1B; }
.badge-sesam  { background: #F0E8D8; color: #6B4B1C; }
.badge-notter { background: #EDE4F5; color: #4A1F7A; }
.badge-peanott{ background: #FAE4D8; color: #7A2E00; }
.badge-sennep { background: #FFF0B3; color: #6B5000; }
.badge-selleri{ background: #DFF5E4; color: #1A5C2E; }
.badge-sulfitt{ background: #F5E0E8; color: #6B1A3A; }
.badge-lupin  { background: #E8F0FA; color: #1A3C6B; }
.badge-fisk   { background: #D8EEF5; color: #0A4A6B; }
.badge-skalldyr { background: #F5ECD8; color: #6B3A0A; }
.badge-vegan  { background: #C8F0D8; color: #0D4A25; }

.nutrition-toggle {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 2px;
  align-self: flex-start;
  transition: color .2s;
}
.nutrition-toggle:hover { color: var(--wheat); }

.nutrition-panel {
  display: none;
  background: var(--cream);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--dark2);
}
.nutrition-panel.open { display: block; }
.nutrition-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.nutrition-row { display: flex; justify-content: space-between; }
.nutrition-row span:last-child { font-weight: 600; color: var(--dark); }

.pdf-downloads {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-top: 16px;
}
.pdf-downloads h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.pdf-links { display: flex; flex-wrap: wrap; gap: 12px; }
.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark2);
  background: var(--cream);
  transition: all .2s;
}
.pdf-link:hover { border-color: var(--wheat); color: var(--wheat); }
.pdf-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Locations ── */
.locations-page { padding: 72px 0 80px; }
.locations-top { margin-bottom: 40px; }

.location-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#locate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--wheat);
  color: var(--dark);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}
#locate-btn:hover { background: var(--dark); color: var(--white); }
#locate-btn svg { width: 16px; height: 16px; }

#location-error {
  font-size: 13px;
  color: var(--red);
  display: none;
  margin-top: 8px;
}

.locations-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
}
#map {
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.location-list, #location-list { display: flex; flex-direction: column; gap: 20px; }

.location-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  cursor: pointer;
  transition: all .2s;
}
.location-card:hover,
.location-card.highlighted { border-color: var(--wheat); box-shadow: 0 0 0 3px rgba(200,150,74,.15); }
.location-card.nearest { border-color: var(--wheat); background: rgba(200,150,74,.06); }
.location-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.location-card__name { font-family: var(--font-head); font-size: 1rem; font-weight: 600; }
.location-card__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--wheat);
  color: var(--dark);
  border-radius: 4px;
}
.location-card__addr { font-size: 13px; color: var(--gray); margin-top: 4px; }
.location-card__hours { font-size: 12px; color: var(--gray); margin-top: 8px; display: flex; flex-direction: column; gap: 2px; }
.location-card__hours span { display: flex; gap: 8px; }
.location-card__hours strong { color: var(--dark2); min-width: 64px; }

.travel-times {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.travel-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}
.travel-item svg { width: 14px; height: 14px; color: var(--wheat); }

.location-card__footer { margin-top: 12px; display: flex; justify-content: flex-end; }

.city-section { margin-bottom: 32px; }
.city-section .location-card { margin-bottom: 16px; }
.city-section .location-card:last-child { margin-bottom: 0; }
.city-heading {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  padding: 14px 0 10px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 12px;
  position: sticky;
  top: calc(var(--nav-h) + 8px);
  background: var(--cream);
  z-index: 2;
}

/* ── Career ── */
.career-page { padding: 72px 0 80px; }
.career-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.career-content__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.career-content__img img { width: 100%; height: 100%; object-fit: cover; }
.career-content__text { display: flex; flex-direction: column; gap: 20px; }
.career-content__text p { font-size: 16px; color: var(--gray); line-height: 1.75; }
.career-contact { font-size: 14px; color: var(--gray); }
.career-contact a { color: var(--wheat); font-weight: 600; }

/* ── Order page ── */
.order-page { padding: 72px 0 80px; }
.order-info {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.order-info__sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.order-info__item { display: flex; flex-direction: column; gap: 4px; }
.order-info__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }
.order-info__value { font-size: 14px; color: var(--dark2); line-height: 1.5; }
.order-info__value a { color: var(--wheat); font-weight: 600; }
.order-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 600px;
}
.order-form-wrapper iframe { width: 100%; border: none; min-height: 1400px; }

/* ── Homepage about ── */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-grid__imgs .img-tall {
  grid-row: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-grid__imgs .img-wide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-grid__imgs img { width: 100%; height: 100%; object-fit: cover; }
.about-grid__text { display: flex; flex-direction: column; gap: 20px; }
.about-grid__text p { font-size: 16px; color: var(--gray); line-height: 1.75; }

/* ── Featured products strip on home ── */
.featured-section { padding: 0 0 80px; }
.featured-section .section-title { margin-bottom: 32px; }
.featured-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.featured-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  cursor: default;
}
.featured-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.featured-card:hover img { transform: scale(1.04); }
.featured-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,23,20,.8) 0%, transparent 100%);
  padding: 32px 16px 16px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
}

/* ── Footer ── */
.footer {
  background: var(--dark2);
  color: rgba(255,255,255,.8);
  padding: 56px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo img { height: 70px; filter: invert(1); }
.footer__tagline { font-size: 14px; opacity: .65; max-width: 260px; line-height: 1.6; }
.footer__social { display: flex; gap: 12px; margin-top: 4px; }
.footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: 13px;
  transition: all .2s;
}
.footer__social a:hover { border-color: var(--wheat); color: var(--wheat); }
.footer__social a svg { width: 16px; height: 16px; }
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: 14px; transition: color .2s; }
.footer__col ul a:hover { color: var(--wheat-lt); }
.footer__col p { font-size: 14px; line-height: 1.7; }
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--wheat-lt); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer__bottom a:hover { color: var(--wheat-lt); }

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  max-width: 580px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-md);
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
#cookie-banner.visible { display: flex; }
.cookie-text { font-size: 14px; line-height: 1.5; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--wheat-lt); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── 404 ── */
.notfound {
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}
.notfound__inner { max-width: 480px; }
.notfound__number {
  font-family: var(--font-head);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.notfound__title { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.notfound__desc { color: var(--gray); margin-bottom: 32px; }

/* ── Privacy ── */
.privacy-page { padding: 72px 0 80px; max-width: 720px; }
.privacy-page h1 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 32px; }
.privacy-page h2 { font-family: var(--font-head); font-size: 1.25rem; margin: 28px 0 10px; }
.privacy-page p, .privacy-page li { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 10px; }
.privacy-page ul { padding-left: 20px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .locations-layout { grid-template-columns: 1fr; }
  #map { display: none; }
  .order-section__inner { grid-template-columns: 1fr; gap: 36px; }
  .order-section__img { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__imgs { display: none; }
  .career-content { grid-template-columns: 1fr; }
  .career-content__img { display: none; }
  .order-info { grid-template-columns: 1fr; }
  .order-info__sidebar { position: static; }
  .featured-strip { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav.menu-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
  .featured-strip { grid-template-columns: 1fr 1fr; }
  .footer { padding: 32px 0 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer__brand { flex-direction: row; align-items: center; gap: 16px; }
  .footer__logo img { height: 44px; }
  .footer__tagline { display: none; }
  .footer__social { margin-top: 0; }
  .footer__col h4 { margin-bottom: 10px; }
  .footer__col ul { gap: 8px; }
  .footer__bottom { padding: 14px 0; font-size: 12px; }
  .hero__title { font-size: 2rem; }
}
