/* ============================================================
   DEL CAMPO DAIRY — Redesign
   Direction: Institutional heritage, modern editorial
   Palette:
     Blue:       #00AECC
     Blue hover: #0099B8
     Blue dark:  #007A99
     Charcoal:   #1C1C1E
     Body text:  #3D3D3D
     Muted:      #7A7A7A
     Off-white:  #F8F6F3
     White:      #FFFFFF
     Border:     #E5E1DB
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&family=Fjalla+One&family=Dancing+Script:wght@400;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/motion-picture-personal-use');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; font-weight: 300; color: #3D3D3D; background: #fff; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CSS Vars ── */
:root {
  --blue:       #00AECC;
  --blue-hover: #0099B8;
  --blue-dark:  #007A99;
  --charcoal:   #1C1C1E;
  --body:       #3D3D3D;
  --muted:      #7A7A7A;
  --offwhite:   #F8F6F3;
  --white:      #FFFFFF;
  --border:     #E5E1DB;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'DM Sans', sans-serif;
  --fjalla:     'Fjalla One', sans-serif;
  --motion:     'Motion Picture Personal Use', cursive;
  --max:        1160px;
  --gutter:     clamp(20px, 5vw, 60px);
}

/* ── Container ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Overline ── */
.overline {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

/* ── Section head ── */
.section-head { margin-bottom: 52px; }
.section-head h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 500; color: var(--charcoal); line-height: 1.15; }
.section-head h2 em { font-style: italic; color: var(--blue); }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--blue);
  transition: background .2s, color .2s, border-color .2s;
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); }

.btn-ghost {
  display: inline-block;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,.55);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-outline {
  display: inline-block;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 34px;
  border: 2px solid var(--blue);
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.text-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.text-link:hover { color: var(--blue-hover); border-color: var(--blue-hover); }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  transition: background .3s, box-shadow .3s;
}
.nav--scrolled {
  background: var(--blue);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1.1;
}
.nav-logo img,
.nav-logo svg {
  height: 135px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: #fff !important;
  color: var(--blue) !important;
  padding: 9px 22px;
  font-size: 12px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: rgba(255,255,255,.85) !important; }
.burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { width: 24px; height: 1.5px; background: #fff; display: block; transition: .3s; }
.burger.open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-7.5px) rotate(-45deg); }
.nav-drawer {
  display: none;
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,.2);
}
.nav-drawer.open { display: block; }
.nav-drawer ul { padding: 12px 0; }
.nav-drawer li a {
  display: block;
  padding: 14px var(--gutter);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(28,28,30,.82) 0%, rgba(28,28,30,.55) 50%, rgba(28,28,30,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 190px var(--gutter) 60px;
  container-type: inline-size;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--fjalla);
  font-size: clamp(36px, 7.5cqi, 80px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 28px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-title em { font-style: normal; color: var(--blue); font-family: var(--motion); font-weight: 700; text-transform: none; }
.hero-title .mobile-br { display: none; }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.7); }
}

/* ═══════════════════════════════
   STATEMENT
═══════════════════════════════ */
.statement {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.statement-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 0;
}
.statement-left h2 em { font-style: italic; color: var(--blue); }
.statement-right p { margin-bottom: 18px; font-size: 15.5px; }
.statement-right strong { color: var(--charcoal); font-weight: 500; }
.cert-badges { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .5px; color: var(--blue); text-transform: uppercase; }

/* Animate in */
.statement-left, .statement-right {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.statement-right { transition-delay: .15s; }
.statement-left.visible, .statement-right.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════
   STAT BAR
═══════════════════════════════ */
.stat-bar {
  background: var(--charcoal);
  padding: 48px 0;
}
.stat-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 52px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.stat-item:nth-child(1) { transition-delay: 0s; }
.stat-item:nth-child(3) { transition-delay: .1s; }
.stat-item:nth-child(5) { transition-delay: .2s; }
.stat-item:nth-child(7) { transition-delay: .3s; }
.stat-item.visible { opacity: 1; transform: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,.12);
}

/* ═══════════════════════════════
   PRODUCTS PREVIEW
═══════════════════════════════ */
.products-preview {
  padding: 100px 0;
  background: var(--offwhite);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease, box-shadow .3s;
}
.prod-card:nth-child(1) { transition-delay: 0s; }
.prod-card:nth-child(2) { transition-delay: .1s; }
.prod-card:nth-child(3) { transition-delay: .2s; }
.prod-card.visible { opacity: 1; transform: none; }
.prod-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.12); transform: translateY(-4px); z-index: 2; }
.prod-card--featured { border-color: var(--blue); border-width: 2px; }

.prod-card-img {
  height: 280px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}
.prod-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.prod-card:hover .prod-card-img img { transform: scale(1.04); }
.prod-card-placeholder {
  font-size: 64px;
  opacity: .35;
}
.prod-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.prod-card-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}
.prod-card-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.prod-card-body p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.prod-card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  align-self: flex-start;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 1px;
  transition: color .2s;
}
.prod-card:hover .prod-card-link { color: var(--blue-hover); }

/* ═══════════════════════════════
   DULCE FEATURE
═══════════════════════════════ */
.dulce-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.dulce-feature-img { overflow: hidden; }
.dulce-feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dulce-feature-text {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dulce-feature-text .overline { color: rgba(0,174,204,.8); }
.dulce-feature-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.dulce-feature-text h2 em { font-style: italic; color: var(--blue); }
.dulce-feature-text p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 36px; }

/* ═══════════════════════════════
   RECIPES TEASE
═══════════════════════════════ */
.recipes-tease {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.recipe-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.recipe-chip {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.recipe-chip:nth-child(1) { transition-delay: 0s; }
.recipe-chip:nth-child(2) { transition-delay: .07s; }
.recipe-chip:nth-child(3) { transition-delay: .14s; }
.recipe-chip:nth-child(4) { transition-delay: .21s; }
.recipe-chip:nth-child(5) { transition-delay: .28s; }
.recipe-chip:nth-child(6) { transition-delay: .35s; }
.recipe-chip.visible { opacity: 1; transform: none; }
.recipe-chip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.recipe-chip:hover img { transform: scale(1.08); }
.recipe-chip-ph {
  width: 100%;
  aspect-ratio: 1;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--muted);
}
.recipe-chip span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 24px 10px 10px;
  text-align: center;
}

/* ═══════════════════════════════
   CTA BAND
═══════════════════════════════ */
.cta-band {
  background: var(--blue);
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cta-band h2 em { font-style: italic; color: rgba(255,255,255,.75); }
.cta-band p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 40px; }
.cta-band .btn-primary { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.cta-band .btn-primary:hover { background: #000; border-color: #000; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
  background: #111;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(255,255,255,.35);
  letter-spacing: .5px;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
  line-height: 1.5;
}
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════
   PAGE BANNER (inner pages)
═══════════════════════════════ */
.page-banner {
  background: var(--blue);
  padding: 190px var(--gutter) 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue-dark);
}
.page-banner .overline { margin-bottom: 12px; color: rgba(255,255,255,.7); }
.page-banner h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
}
.page-banner h1 em { font-style: italic; color: rgba(255,255,255,.85); }
.page-banner h1 .sweet { font-family: var(--motion); font-weight: 700; font-style: normal; color: #fff; }
.page-banner h1 .fjalla { font-family: var(--fjalla); font-weight: 400; font-style: normal; text-transform: uppercase; color: #fff; }
.page-banner p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  max-width: 520px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ═══════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════ */
.products-page { padding: 80px 0; }
.prod-detail {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.prod-detail:last-child { border-bottom: none; }
.prod-detail-img {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 16px;
}
.prod-detail-img img { width: 100%; height: 100%; object-fit: contain; }
.prod-detail-placeholder { font-size: 90px; opacity: .25; }
.prod-detail h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 8px;
}
.prod-detail .prod-subtitle {
  font-style: italic;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 28px;
  display: block;
}
.prod-detail p { font-size: 15px; line-height: 1.85; color: var(--body); margin-bottom: 16px; }
.prod-detail strong { color: var(--charcoal); font-weight: 500; }
.sizes-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 12px;
}
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size-pill {
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  letter-spacing: .5px;
}
.prod-thumbs-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 52px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.prod-thumb-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 10px 4px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.prod-thumb-btn.active { color: var(--blue); border-bottom-color: var(--blue); }

/* ═══════════════════════════════
   RECIPES PAGE
═══════════════════════════════ */
.recipes-page { padding: 72px 0; }
.recipe-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.rfbtn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: .2s;
}
.rfbtn:hover { border-color: var(--blue); color: var(--blue); }
.rfbtn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.recipes-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.r-tile {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: var(--offwhite);
}
.r-tile.hidden { display: none; }
.r-tile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .4s; }
.r-tile:hover img { transform: scale(1.06); }
.r-tile-ph {
  aspect-ratio: 4/3;
  background: var(--offwhite);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: rgba(0,0,0,.15);
  transition: background .3s;
}
.r-tile:hover .r-tile-ph { background: #e8e5e0; }
.r-tile-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  padding: 36px 16px 14px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .3px;
}

/* Recipe modal */
.r-modal-bg {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 600;
  overflow-y: auto;
  padding: 60px 20px;
  backdrop-filter: blur(4px);
}
.r-modal-bg.open { display: block; }
.r-modal {
  background: #fff;
  max-width: 680px;
  margin: 0 auto;
}
.r-modal-hd {
  background: var(--charcoal);
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.r-modal-hd h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  padding-right: 20px;
}
.r-modal-close {
  background: none; border: none;
  color: rgba(255,255,255,.5); font-size: 28px;
  cursor: pointer; line-height: 1; flex-shrink: 0;
  transition: color .2s;
}
.r-modal-close:hover { color: #fff; }
.r-modal-body { padding: 36px; }
.r-modal-body h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.r-modal-body h4:first-child { margin-top: 0; }
.r-modal-body ul { padding-left: 18px; list-style: disc; }
.r-modal-body li, .r-modal-body p {
  font-size: 14.5px; line-height: 1.85; color: var(--body); margin-bottom: 8px;
}
.r-modal-cat {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.r-modal-num {
  color: var(--blue);
  font-weight: 500;
}
.r-modal-desc {
  font-family: var(--serif);
  font-size: 18px !important;
  line-height: 1.75 !important;
  color: var(--body);
}
.rfbtn sup {
  font-size: 9px;
  opacity: .6;
  margin-left: 2px;
}

/* ═══════════════════════════════
   SWEET HUNT / MAP
═══════════════════════════════ */
.sweet-hunt-page { padding: 72px 0; }
.map-section { margin-bottom: 64px; }
.map-container {
  background: var(--offwhite);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#usa-svg { display: block; width: 100%; height: auto; }
.s-path {
  fill: #ddd;
  stroke: #fff;
  stroke-width: .8;
  cursor: default;
  transition: fill .15s;
}
.s-path.has-loc { fill: #aadce8; cursor: pointer; }
.s-path.has-loc:hover { fill: var(--blue); }
.s-path.sel { fill: var(--blue-dark) !important; }
#s-tooltip {
  position: absolute;
  background: var(--charcoal);
  color: #fff;
  padding: 6px 14px;
  font-family: var(--sans);
  font-size: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .12s;
  white-space: nowrap;
  z-index: 10;
  letter-spacing: .5px;
}
.map-legend {
  display: flex;
  gap: 24px;
  padding: 14px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.leg-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.leg-dot { width: 14px; height: 14px; border: 1px solid rgba(0,0,0,.1); }

.s-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 36px; }
.s-chip {
  background: var(--offwhite);
  border: 1px solid var(--border);
  padding: 7px 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: .15s;
}
.s-chip:hover, .s-chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.s-chip sup { font-size: 9px; opacity: .7; }

.s-panel { display: none; }
.s-panel.open { display: block; }
.s-panel-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue);
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}
.s-panel-hd h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--charcoal);
}
.s-back {
  background: none;
  border: 1px solid var(--border);
  padding: 8px 20px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: .2s;
}
.s-back:hover { border-color: var(--blue); color: var(--blue); }
.locs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.loc-card {
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 16px 18px;
  background: #fff;
  transition: box-shadow .2s;
}
.loc-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.loc-city { font-size: 14px; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.loc-addr { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 10px; }
.loc-dir { font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); border-bottom: 1px solid transparent; transition: border-color .2s; }
.loc-dir:hover { border-color: var(--blue); }

/* ═══════════════════════════════
   THE CREW PAGE
═══════════════════════════════ */
.crew-page { padding: 80px 0; }
.crew-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 72px;
}
.crew-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--offwhite);
}
.crew-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.crew-card:hover img { transform: scale(1.06); }
.crew-av { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; background: #e8e5e0; }
.crew-info {
  position: absolute; inset: 0;
  background: rgba(0, 174, 204, .55);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 18px; text-align: center;
  opacity: 0; transition: opacity .3s;
}
.crew-card:hover .crew-info { opacity: 1; }
.crew-name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: #fff; line-height: 1.2; }
.crew-role { font-family: var(--serif); font-size: 16px; font-weight: 400; letter-spacing: 1px; text-transform: none; color: #fff; margin-top: 3px; }
.crew-role-number { font-family: var(--fjalla); font-weight: 400; }
.crew-story { max-width: 700px; }
.crew-story h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 500; color: var(--charcoal); line-height: 1.2; margin-bottom: 24px; }
.crew-story h2 em { font-style: italic; color: var(--blue); }
.crew-story p { font-size: 15.5px; line-height: 1.9; color: var(--body); margin-bottom: 18px; }

/* ═══════════════════════════════
   FIND US PAGE
═══════════════════════════════ */
.find-page { padding: 80px 0; }
.find-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.find-info h2 { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--charcoal); margin-bottom: 28px; }
.info-block { margin-bottom: 24px; }
.info-block .label { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.info-block p, .info-block a { font-size: 15px; color: var(--body); line-height: 1.7; }
.info-block a:hover { color: var(--blue); }
.contact-form h2 { font-family: var(--serif); font-size: 32px; font-weight: 500; color: var(--charcoal); margin-bottom: 28px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-group { margin-bottom: 18px; }
.f-group label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.f-group input, .f-group textarea, .f-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--charcoal);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.f-group input:focus, .f-group textarea:focus, .f-group select:focus { border-color: var(--blue); }
.f-group textarea { min-height: 120px; resize: vertical; }
.f-success { display: none; background: #e0f5fb; border: 1px solid var(--blue); color: var(--blue-dark); padding: 14px 18px; font-size: 14px; margin-top: 14px; }

/* ═══════════════════════════════
   TERMS PAGE
═══════════════════════════════ */
.terms-page { padding: 80px 0; max-width: 760px; }
.terms-page h3 { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--charcoal); margin: 36px 0 8px; }
.terms-page h3:first-child { margin-top: 0; }
.terms-page p { font-size: 15px; line-height: 1.85; color: var(--body); margin-bottom: 12px; }

/* ═══════════════════════════════
   CAKES & PASTRIES PAGE
═══════════════════════════════ */
.cp-download-bar {
  background: var(--charcoal);
  padding: 24px 0;
}
.cp-download-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cp-download-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}
.cp-download-sub {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.cp-page { padding: 72px 0; }

.cp-hero-row { margin-bottom: 80px; }
.cp-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  background: var(--offwhite);
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.cp-hero-card.visible { opacity: 1; transform: none; }
.cp-hero-card--reverse .cp-hero-img { order: 2; }
.cp-hero-card--reverse .cp-hero-text { order: 1; }
.cp-hero-img { overflow: hidden; }
.cp-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 340px; }
.cp-hero-text {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cp-tag {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: block;
}
.cp-hero-text h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cp-hero-text p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.8;
}

.cp-section { margin-bottom: 80px; }
.cp-section-head { margin-bottom: 40px; }
.cp-section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.15;
}
.cp-section-head h2 em { font-style: italic; color: var(--blue); }

.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.cp-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.cp-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s;
}
.cp-card.visible { opacity: 1; transform: none; }
.cp-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-3px); }
.cp-card-img { overflow: hidden; }
.cp-card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .4s; }
.cp-card:hover .cp-card-img img { transform: scale(1.05); }
.cp-card-body { padding: 20px; }
.cp-card-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 8px;
}
.cp-card-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.cp-feature {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.cp-feature.visible { opacity: 1; transform: none; }
.cp-feature-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.cp-feature-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  padding: 80px 48px 40px;
  color: #fff;
}
.cp-feature-overlay h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cp-feature-overlay p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  max-width: 560px;
}
.cp-feature-overlay .cp-tag { color: var(--blue); }

.cp-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 40px 0 60px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════
   MOBILE — TABLET (≤960px)
═══════════════════════════════ */
@media (max-width: 960px) {
  /* Nav */
  .nav-inner { height: 100px; }
  .nav-logo img, .nav-logo svg { height: 85px; }

  /* Layout */
  .statement-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; gap: 2px; }
  .dulce-feature { grid-template-columns: 1fr; }
  .dulce-feature-img { height: 320px; }
  .recipe-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .prod-detail { grid-template-columns: 1fr; gap: 40px; }
  .prod-detail-img { max-width: 320px; }
  .recipes-masonry { grid-template-columns: repeat(2, 1fr); }
  .crew-grid { grid-template-columns: repeat(3, 1fr); }
  .find-grid { grid-template-columns: 1fr; gap: 48px; }
  .f-row { grid-template-columns: 1fr; }
  .stat-grid { gap: 0; }
  .stat-item { padding: 24px 28px; }
  .stat-divider { display: none; }

  /* Cakes & Pastries page */
  .cp-hero-card { grid-template-columns: 1fr; }
  .cp-hero-card--reverse .cp-hero-img { order: 0; }
  .cp-hero-card--reverse .cp-hero-text { order: 0; }
  .cp-hero-img img { min-height: 260px; }
  .cp-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cp-feature-img img { height: 340px; }

  /* Sections — reduce vertical padding */
  .statement { padding: 72px 0; }
  .products-preview { padding: 72px 0; }
  .recipes-tease { padding: 72px 0; }
  .cta-band { padding: 64px 0; }
  .hero-content { padding-top: 140px; }
  .page-banner { padding-top: 140px; padding-bottom: 48px; }

  /* Recipe modal — more room on smaller screens */
  .r-modal-bg { padding: 40px 16px; }
  .r-modal-hd { padding: 24px 24px; }
  .r-modal-body { padding: 24px; }
}

/* ═══════════════════════════════
   MOBILE — PHONE (≤640px)
═══════════════════════════════ */
@media (max-width: 640px) {
  /* Nav — hamburger mode */
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-inner { height: 72px; }
  .nav-logo img, .nav-logo svg { height: 60px; }

  /* Nav drawer — full screen overlay */
  .nav-drawer {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 299;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-drawer ul { padding: 8px 0 24px; }
  .nav-drawer li a {
    padding: 16px var(--gutter);
    font-size: 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Hero */
  .hero { min-height: 520px; max-height: none; }
  .hero-content { padding: 100px var(--gutter) 48px; }
  .hero-title { font-size: min(4.4vw, 32px); white-space: nowrap; }
  .hero-title .mobile-br { display: none; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; padding: 16px 24px; }
  .hero-scroll-hint { display: none; }

  /* Page banner */
  .page-banner { padding: 100px var(--gutter) 36px; }

  /* Statement */
  .statement { padding: 56px 0; }
  .statement-left h2 { font-size: clamp(24px, 6vw, 36px); }
  .statement-right p { font-size: 14.5px; }

  /* Stat bar */
  .stat-bar { padding: 32px 0; }
  .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item { padding: 20px 16px; }
  .stat-num { font-size: 38px; }
  .stat-label { font-size: 9px; letter-spacing: 1.5px; }

  /* Products */
  .products-preview { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .prod-card-body { padding: 20px; }

  /* Dulce feature */
  .dulce-feature-img { height: 240px; }
  .dulce-feature-text { padding: 40px var(--gutter); }

  /* Recipe strip */
  .recipe-strip { grid-template-columns: repeat(2, 1fr); }

  /* Recipes tease */
  .recipes-tease { padding: 56px 0; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band p { font-size: 14.5px; margin-bottom: 28px; }

  /* Footer */
  .footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Recipes masonry page */
  .recipes-masonry { grid-template-columns: 1fr 1fr; }
  .recipe-filter { gap: 6px; margin-bottom: 32px; }
  .rfbtn { padding: 8px 14px; font-size: 10px; }

  /* Recipe modal — full-screen on small devices */
  .r-modal-bg { padding: 0; align-items: stretch; }
  .r-modal { max-width: 100%; min-height: 100vh; display: flex; flex-direction: column; }
  .r-modal-hd { padding: 20px; position: sticky; top: 0; z-index: 1; }
  .r-modal-hd h2 { font-size: 20px; }
  .r-modal-body { padding: 20px; flex: 1; }
  .r-modal-close { font-size: 32px; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }

  /* Crew */
  .crew-page { padding: 48px 0; }
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
  /* Show crew info always on touch (no hover) */
  .crew-info {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
    justify-content: flex-end;
    padding-bottom: 14px;
  }
  .crew-name { font-size: 14px; }
  .crew-role { font-size: 13px; }
  .crew-story { margin-top: 16px; }
  .crew-story h2 { margin-bottom: 16px; }

  /* Sweet Hunt / Map */
  .sweet-hunt-page { padding: 48px 0; }
  .map-container { margin: 0 calc(var(--gutter) * -1); border-left: none; border-right: none; }
  .s-chips { gap: 4px; }
  .s-chip { padding: 6px 12px; font-size: 10px; }
  .s-panel-hd h2 { font-size: 24px; }
  .locs-grid { grid-template-columns: 1fr; }

  /* Find us page */
  .find-page { padding: 48px 0; }
  .find-info h2 { font-size: 28px; }
  .contact-form h2 { font-size: 26px; }

  /* Products detail page */
  .products-page { padding: 48px 0; }
  .prod-detail { padding: 40px 0; gap: 28px; }
  .prod-detail-img { max-width: 100%; }
  .prod-thumbs-nav { gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .prod-thumb-btn { white-space: nowrap; padding: 10px 8px 14px; font-size: 11px; }

  /* Terms */
  .terms-page { padding: 48px 0; }

  /* Cakes & Pastries page mobile */
  .cp-download-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cp-download-inner .btn-primary { align-self: flex-start; }
  .cp-page { padding: 48px 0; }
  .cp-hero-row { margin-bottom: 48px; }
  .cp-hero-text { padding: 28px 20px; }
  .cp-section { margin-bottom: 48px; }
  .cp-grid { grid-template-columns: 1fr; }
  .cp-grid--4 { grid-template-columns: 1fr 1fr; }
  .cp-feature { margin-bottom: 48px; }
  .cp-feature-img img { height: 280px; }
  .cp-feature-overlay { padding: 60px 24px 28px; }
  .cp-links { padding: 24px 0 40px; flex-direction: column; align-items: stretch; }
  .cp-links .btn-outline,
  .cp-links .btn-primary { text-align: center; }

  /* Buttons — minimum touch target size (44px) */
  .btn-primary, .btn-ghost, .btn-outline { padding: 16px 28px; min-height: 48px; }
  .text-link { padding: 4px 0; }

  /* Form inputs — comfortable touch size */
  .f-group input, .f-group textarea, .f-group select { padding: 14px; font-size: 16px; }
}

/* ═══════════════════════════════
   MOBILE — VERY SMALL (≤400px)
═══════════════════════════════ */
@media (max-width: 400px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 32px; }
  .recipe-strip { grid-template-columns: 1fr 1fr; }
  .recipes-masonry { grid-template-columns: 1fr; }
  .crew-grid { grid-template-columns: 1fr; }
  .r-tile-cap { font-size: 11px; padding: 28px 12px 12px; }
  .cp-grid--4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   TOUCH DEVICE ENHANCEMENTS
═══════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  /* Crew cards — always show info (no hover on touch) */
  .crew-info {
    opacity: 1;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
    justify-content: flex-end;
    padding-bottom: 14px;
  }

  /* Disable hover transforms that feel jarring on touch */
  .prod-card:hover { transform: none; box-shadow: none; }
  .recipe-chip:hover img { transform: none; }
  .crew-card:hover img { transform: none; }
  .r-tile:hover img { transform: none; }
  .cp-card:hover { transform: none; box-shadow: none; }
  .cp-card:hover .cp-card-img img { transform: none; }

  /* Active state feedback for touch taps */
  .btn-primary:active { opacity: .85; }
  .btn-ghost:active { opacity: .85; }
  .btn-outline:active { opacity: .85; }
  .prod-card:active { background: var(--offwhite); }
  .recipe-chip:active { opacity: .85; }
  .nav-drawer li a:active { background: rgba(255,255,255,.1); }
  .s-chip:active { opacity: .85; }
  .rfbtn:active { opacity: .85; }
}

/* ═══════════════════════════════
   LANDSCAPE PHONE
═══════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 400px; max-height: 500px; }
  .hero-content { padding-top: 90px; }
  .nav-inner { height: 60px; }
  .nav-logo img, .nav-logo svg { height: 48px; }
  .page-banner { padding-top: 80px; padding-bottom: 28px; }
}
