@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --cream: #F5EFE4;
  --cream-2: #ECE2D1;
  --cream-3: #E3D7C2;
  --espresso: #281E16;
  --espresso-2: #3D2F24;
  --terracotta: #BF623D;
  --terracotta-deep: #A14E2F;
  --sage: #7E8C6E;
  --muted: #7E7064;
  --border: #DDD0BC;
  --white: #FBF8F2;
  --nav-h: 74px;
  --max-w: 1180px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
}

html { scroll-behavior: smooth; }

:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--espresso);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.8rem, 7.5vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
p { color: var(--muted); }
em { font-style: italic; }

.serif-it { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-dark { background: var(--espresso); color: var(--cream); }
.btn-dark:hover { background: var(--terracotta); transform: translateY(-2px); }
.btn-terra { background: var(--terracotta); color: var(--white); }
.btn-terra:hover { background: var(--terracotta-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--espresso); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--espresso); }
.btn-light { background: var(--cream); color: var(--espresso); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); }

/* --- Nav --- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245, 239, 228, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 208, 188, 0.6);
  z-index: 200;
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem; font-weight: 500;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav-logo .mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--terracotta), var(--terracotta-deep));
  position: relative; flex-shrink: 0;
}
.nav-logo .mark::after {
  content: ''; position: absolute; inset: 6px 6px auto auto;
  width: 7px; height: 7px; border-radius: 50%; background: var(--cream); opacity: 0.85;
}
.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--espresso-2); transition: color 0.2s; }
.nav-links a:hover { color: var(--terracotta); }
.nav-links .btn { color: var(--cream); }
.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: none; border: none; padding: 4px; min-width: 44px; min-height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: 0.3s; }

/* --- Hero --- */
.hero {
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 4rem; align-items: center; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.75rem; }
.hero-eyebrow .line { width: 38px; height: 1px; background: var(--terracotta); }
.hero h1 { margin-bottom: 1.75rem; }
.hero h1 .serif-it { color: var(--terracotta); }
.hero-sub { font-size: 1.12rem; line-height: 1.7; max-width: 440px; margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-meta { margin-top: 3rem; display: flex; gap: 2.5rem; }
.hero-meta-item .n { font-family: 'Fraunces', serif; font-size: 1.9rem; line-height: 1; }
.hero-meta-item .l { font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; }

/* Coffee bag visual */
.bag {
  position: relative; width: 100%; max-width: 320px; margin: 0 auto;
  aspect-ratio: 3/4.2;
  background: linear-gradient(160deg, var(--espresso-2), var(--espresso));
  border-radius: 6px 6px 10px 10px;
  padding: 2.5rem 1.75rem;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 70px -30px rgba(40, 30, 22, 0.55);
  transform: rotate(-3deg);
}
.bag::before {
  content: ''; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 62%; height: 18px; background: var(--espresso-2);
  border-radius: 4px 4px 0 0; box-shadow: inset 0 3px 6px rgba(0,0,0,0.3);
}
.bag-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: auto; }
.bag-badge {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream); border: 1px solid rgba(245,239,228,0.3); padding: 0.3rem 0.6rem; border-radius: 50px;
}
.bag-dot { width: 24px; height: 24px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--terracotta), var(--terracotta-deep)); }
.bag-name { font-family: 'Fraunces', serif; color: var(--cream); font-size: 2.1rem; line-height: 1.05; margin-bottom: 0.4rem; }
.bag-name em { color: var(--terracotta); }
.bag-origin { color: rgba(245,239,228,0.6); font-size: 0.82rem; letter-spacing: 0.04em; }
.bag-notes { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(245,239,228,0.15); display: flex; flex-wrap: wrap; gap: 0.4rem; }
.bag-note { font-size: 0.66rem; color: var(--cream); background: rgba(245,239,228,0.1); padding: 0.25rem 0.6rem; border-radius: 50px; }

/* --- Marquee ticker --- */
.ticker { background: var(--espresso); color: var(--cream); padding: 0.9rem 0; overflow: hidden; white-space: nowrap; border-block: 1px solid var(--espresso-2); }
.ticker-track { display: inline-flex; gap: 3rem; animation: scroll 28s linear infinite; }
.ticker-track span { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; display: inline-flex; align-items: center; gap: 3rem; }
.ticker-track span::after { content: '✦'; color: var(--terracotta); font-style: normal; font-size: 0.7rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* --- Section header --- */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 620px; }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
.section-head p { font-size: 1.08rem; margin-top: 1.1rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* --- Intro split --- */
.intro { background: var(--cream-2); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.intro-visual { aspect-ratio: 4/5; border-radius: 14px; background:
  radial-gradient(circle at 70% 25%, rgba(191,98,61,0.35), transparent 55%),
  linear-gradient(150deg, var(--cream-3), var(--espresso-2));
  position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 2rem;
}
.intro-visual .stamp {
  font-family: 'Fraunces', serif; font-style: italic; color: var(--cream);
  font-size: 1.3rem; line-height: 1.3;
}
.intro-visual::before {
  content: ''; position: absolute; top: 2rem; right: 2rem; width: 84px; height: 84px;
  border: 1px solid rgba(245,239,228,0.4); border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(191,98,61,0.9), rgba(161,78,47,0.6));
}
.intro h2 { margin-bottom: 1.5rem; }
.intro p + p { margin-top: 1rem; }
.intro .sign { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.4rem; color: var(--espresso); margin-top: 1.75rem; }

/* --- Coffee grid --- */
.coffee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.coffee-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column;
}
.coffee-card:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -28px rgba(40,30,22,0.4); }
.coffee-top { padding: 1.75rem 1.75rem 1.5rem; position: relative; }
.coffee-swatch { height: 130px; border-radius: 10px; margin-bottom: 1.5rem; position: relative; overflow: hidden; }
.coffee-swatch::after {
  content: attr(data-letter); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 4.5rem; color: rgba(251,248,242,0.85); font-style: italic;
}
.sw-light { background: linear-gradient(150deg, #D9A86B, #C2683F); }
.sw-medium { background: linear-gradient(150deg, #A1502F, #6E3A22); }
.sw-dark { background: linear-gradient(150deg, #4A3527, #281E16); }
.sw-decaf { background: linear-gradient(150deg, #8A9A7B, #5E6B4F); }
.coffee-roast { position: absolute; top: 2.4rem; right: 2.4rem; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; background: rgba(40,30,22,0.85); color: var(--cream); padding: 0.3rem 0.7rem; border-radius: 50px; }
.coffee-card h3 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.coffee-region { font-size: 0.8rem; color: var(--terracotta); font-weight: 500; letter-spacing: 0.02em; margin-bottom: 0.9rem; }
.coffee-card .desc { font-size: 0.9rem; line-height: 1.6; padding: 0 1.75rem; }
.coffee-notes { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 1.25rem 1.75rem 0; }
.coffee-note { font-size: 0.68rem; color: var(--espresso-2); background: var(--cream-2); padding: 0.3rem 0.7rem; border-radius: 50px; }
.coffee-foot { margin-top: auto; padding: 1.5rem 1.75rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); margin-top: 1.5rem; }
.coffee-price { font-family: 'Fraunces', serif; font-size: 1.4rem; }
.coffee-price span { font-family: 'Inter'; font-size: 0.75rem; color: var(--muted); }
.coffee-buy { font-size: 0.78rem; font-weight: 600; color: var(--terracotta); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.coffee-card:hover .coffee-buy { gap: 0.55rem; }

/* --- Quotes strip (Loved by locals) --- */
.quotes { background: var(--cream-2); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.quote-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  padding: 2rem 1.75rem 1.75rem; display: flex; flex-direction: column;
}
.quote-mark { font-family: 'Fraunces', serif; font-style: italic; font-size: 3rem; line-height: 0.6; color: var(--terracotta); margin-bottom: 1rem; }
.quote-card blockquote { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.08rem; line-height: 1.55; color: var(--espresso); }
.quote-card figcaption { margin-top: auto; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.1rem; }
.q-name { font-size: 0.85rem; font-weight: 600; color: var(--espresso); }
.q-role { font-size: 0.78rem; color: var(--terracotta); font-weight: 500; }

/* --- Subscribe band --- */
.subscribe { background: var(--espresso); color: var(--cream); }
.subscribe .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.subscribe h2 { color: var(--cream); margin-bottom: 1.25rem; }
.subscribe h2 em { color: var(--terracotta); }
.subscribe p { color: rgba(245,239,228,0.7); font-size: 1.05rem; margin-bottom: 2rem; }
.sub-card { background: var(--espresso-2); border-radius: 16px; padding: 2.5rem; border: 1px solid rgba(245,239,228,0.1); }
.sub-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(245,239,228,0.12); }
.sub-row:last-of-type { border-bottom: none; }
.sub-row .k { font-size: 0.92rem; color: var(--cream); }
.sub-row .v { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--terracotta); }
.sub-card .btn { width: 100%; justify-content: center; margin-top: 1.75rem; }

/* --- Visit strip --- */
.visit-section { background: var(--cream-2); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.visit-info h2 { margin-bottom: 1.5rem; }
.visit-detail { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.visit-item { display: flex; gap: 1rem; align-items: flex-start; }
.visit-item svg { width: 20px; height: 20px; color: var(--terracotta); flex-shrink: 0; margin-top: 3px; stroke-width: 1.6; }
.visit-item p { color: var(--espresso); font-weight: 500; }
.visit-item span { display: block; color: var(--muted); font-weight: 400; font-size: 0.9rem; margin-top: 0.15rem; }
.visit-map {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  position: relative; min-height: 420px;
  background:
    radial-gradient(circle at 72% 22%, rgba(191,98,61,0.14), transparent 46%),
    radial-gradient(circle at 18% 78%, rgba(126,140,110,0.12), transparent 42%),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(40,30,22,0.05) 35px 36px),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(40,30,22,0.05) 35px 36px),
    var(--cream-3);
}
.map-fallback {
  position: absolute; inset: 0; padding: 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.map-fallback .map-pin {
  width: 36px; height: 36px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: radial-gradient(circle at 35% 35%, var(--terracotta), var(--terracotta-deep));
  position: relative; margin-bottom: 1rem;
  box-shadow: 0 10px 18px -8px rgba(40,30,22,0.35);
}
.map-fallback .map-pin::after { content: ''; position: absolute; inset: 12px; border-radius: 50%; background: var(--cream); opacity: 0.9; }
.map-fallback .map-name { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--espresso); }
.map-fallback .map-addr { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin-top: 0.35rem; }
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: none; display: block; filter: grayscale(20%) sepia(12%) contrast(0.95); position: relative; z-index: 1; }

/* --- Wholesale band --- */
.wholesale-band { background: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) 0; border-top: 1px solid var(--border); }
.wholesale-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem 3rem; flex-wrap: wrap; }
.wholesale-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-top: 0.9rem; }
.wholesale-copy p { margin-top: 0.75rem; max-width: 54ch; }

/* --- Page header --- */
.page-header { padding: calc(var(--nav-h) + 4.5rem) 0 4rem; background: var(--cream-2); border-bottom: 1px solid var(--border); }
.page-header .eyebrow { display: block; margin-bottom: 1.1rem; }
.page-header h1 { max-width: 14ch; }
.page-header p { font-size: 1.1rem; margin-top: 1.25rem; max-width: 50ch; }

/* --- About story --- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,6vw,6rem); align-items: start; }
.story-lead { font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.35; color: var(--espresso); font-weight: 400; }
.story-body p + p { margin-top: 1.1rem; }
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1rem; }
.value-card { background: var(--cream-2); border-radius: 14px; padding: 2rem; }
.value-card .num { font-family: 'Fraunces', serif; font-style: italic; color: var(--terracotta); font-size: 1.3rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; }

/* --- Team --- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1; border-radius: 50%; margin: 0 auto 1.25rem; max-width: 180px;
  background: linear-gradient(150deg, var(--cream-3), var(--espresso-2)); display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 3rem; color: var(--cream); }
.team-card h3 { font-size: 1.4rem; }
.team-card .role { font-size: 0.78rem; color: var(--terracotta); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-top: 0.25rem; }

/* --- CTA band --- */
.cta-band { background: var(--terracotta); color: var(--white); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(251,248,242,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 46ch; margin-inline: auto; }

/* --- Footer --- */
footer { background: var(--espresso); color: var(--cream); padding: clamp(3.5rem,6vw,5.5rem) 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.5rem; margin-bottom: 3.5rem; }
.footer-brand .nav-logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { color: rgba(245,239,228,0.5); font-size: 0.9rem; max-width: 260px; }
.footer-col h4 { font-family: 'Inter'; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,239,228,0.4); margin-bottom: 1.1rem; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.92rem; color: rgba(245,239,228,0.7); transition: color 0.2s; }
.footer-col a:hover { color: var(--terracotta); }
.footer-news p { font-size: 0.9rem; color: rgba(245,239,228,0.6); margin-bottom: 1rem; }
.footer-news form { display: flex; gap: 0.5rem; }
.footer-news input { flex: 1; min-width: 0; background: var(--espresso-2); border: 1px solid rgba(245,239,228,0.15); border-radius: 50px; padding: 0.75rem 1rem; color: var(--cream); font-family: inherit; font-size: 1rem; }
.footer-news input:focus { outline: none; border-color: var(--terracotta); }
.footer-news button { background: var(--terracotta); border: none; color: var(--white); border-radius: 50px; padding: 0 1.25rem; font-weight: 600; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid rgba(245,239,228,0.12); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(245,239,228,0.4); flex-wrap: wrap; gap: 0.5rem; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .bag { max-width: 240px; }
  .intro-grid, .subscribe .container, .visit-grid, .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .coffee-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .values, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-news { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: flex-start; padding: 1.75rem var(--pad); gap: 1.4rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-meta { gap: 1.75rem; }
  .coffee-grid { grid-template-columns: 1fr; }
  .values, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Lightwork demo attribution bar (sticky above the site nav) */
/* demo bar: FIXED BOTTOM (moved from top 2026-08-21) */
.lw-demo-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; display: block; height: calc(40px + env(safe-area-inset-bottom)); line-height: 40px; box-sizing: border-box; padding: 0 8px env(safe-area-inset-bottom); background: #241631; color: rgba(255,255,255,0.88); font-family: system-ui, -apple-system, "Segoe UI", sans-serif; font-size: clamp(9px, 2.7vw, 13px); letter-spacing: 0; white-space: nowrap; text-decoration: none; text-align: center; }
.lw-demo-bar strong { color: #78ffd3; font-weight: 700; }
.lw-demo-bar:hover { background: #2f1d40; color: #ffffff; }
/* the demo sites pin their own nav to the viewport top: drop it below the bar */

/* grid children must be allowed to shrink below content width on narrow phones */
.footer-grid > * { min-width: 0; }
.footer-brand, .footer-col, .footer-news { min-width: 0; }

body { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
