/* ============================================
   KindPlate — Global Styles
   Brand: Sage Garden #4A7C59, Warm Linen #FAF6F1,
   Clinical Calm #2A7B88, Terracotta #C4856A,
   Deep Charcoal #2D2D2D, Soft Sage #D4E4D9
   Fonts: Playfair Display (headings), Montserrat (body), Poppins (CTAs)
   ============================================ */

/* ============================================
   KindPlate Rebrand — April 2026
   Expert Board: Rams / Nielsen / Ogilvy / Porter
   ADD-ONLY: existing variables preserved for blog post compatibility
   ============================================ */

/* --- Accessibility --- */
.skip-link { position: absolute; top: -100%; left: 50%; transform: translateX(-50%); background: var(--sage); color: white; padding: 8px 24px; border-radius: 0 0 8px 8px; z-index: 10000; font-weight: 600; text-decoration: none; transition: top 0.2s; }
.skip-link:focus { top: 0; }

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

:root {
  --sage: #4A7C59;
  --sage-dark: #3B6347;
  --sage-light: #5A9A6D;
  --linen: #FAF6F1;
  --teal: #1F6B77;
  --teal-dark: #1F5F6A;
  --terracotta: #C4856A;
  --charcoal: #2D2D2D;
  --soft-sage: #D4E4D9;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D1D1D1;
  --gray-600: #6B6B6B;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Rebrand 2026 Variables (new pages only — do not remove above) --- */
  --ink:           #1A1A1A;
  --parchment:     #F7F4EF;
  --teal-light:    #E8F4F6;
  --sage-light-2:  #D4E4D9;
  --rule:          #E2DDD6;
  --muted:         #6B6B6B;
  --gold:          #B8954A;
  --gold-light:    #F5EDD9;

  /* Spacing scale — 8px base unit */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  48px;
  --space-6:  64px;
  --space-7:  80px;
  --space-8:  96px;
  --space-9:  128px;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--charcoal);
  background: var(--linen);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--gray-600); }

a { color: var(--sage); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--sage-dark); }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-white p { color: rgba(255,255,255,0.85); }
.text-sage { color: var(--sage); }
.text-teal { color: var(--teal); }
.bg-linen { background: var(--linen); }
.bg-soft-sage { background: var(--soft-sage); }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); }
.bg-teal { background: var(--teal); }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }

/* --- Buttons (Poppins, inspired by DoorDash/UberEats bold CTAs) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--sage);
}
.btn-white:hover {
  background: var(--linen);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--sage);
}

.btn-lg { padding: 16px 40px; font-size: 0.95rem; }
.btn-sm { padding: 10px 24px; font-size: 0.82rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- Sticky Navigation (UberEats/DoorDash-style) --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  padding: 16px 0;
}

.nav.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--sage);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--charcoal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--sage); }

.nav-cta { margin-left: 8px; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 6px 0;
  transition: all var(--transition);
}

/* --- Hero Section (Inspired by Factor/HelloFresh: big image, bold headline, clear CTAs) --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,45,45,0.7) 0%, rgba(45,45,45,0.3) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
}

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
}

/* --- How It Works (DoorDash 3-step style, numbered icons) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.steps-grid-5 { grid-template-columns: repeat(5, 1fr); }
.steps-grid-3 { grid-template-columns: repeat(3, 1fr); }

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}

.step-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 600; }
.step-card p { font-size: 0.92rem; }

/* Connector lines between steps */
.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: var(--gray-300);
}

/* --- Two-Tier Showcase (Card-based, like Factor pricing tiers) --- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.tier-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tier-card-img {
  height: 240px;
  overflow: hidden;
}
.tier-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tier-card:hover .tier-card-img img { transform: scale(1.05); }

.tier-card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tier-card .tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.tier-card.healthy .tag { background: var(--soft-sage); color: var(--sage-dark); }
.tier-card.medical .tag { background: #D6EDF0; color: var(--teal-dark); }

.tier-card .tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.tier-features {
  list-style: none;
  margin: 16px 0 24px;
}
.tier-features li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-600);
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.tier-card.medical .tier-features li::before { color: var(--teal); }

.tier-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: auto 0 20px;
  padding-top: 16px;
}
.tier-price span { font-size: 0.85rem; font-weight: 400; color: var(--gray-600); }

/* --- Trust Bar (logo-style badges) --- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}
.trust-item svg { width: 40px; height: 40px; color: var(--sage); }
.trust-item span {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-600);
}

/* --- Testimonials (Deliveroo-style cards) --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--sage);
  position: relative;
}

.testimonial-card .stars {
  color: var(--terracotta);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.testimonial-card cite span {
  display: block;
  font-weight: 400;
  color: var(--gray-600);
  font-size: 0.82rem;
}

/* --- Pricing Table --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.pricing-card:hover { border-color: var(--sage); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card.featured {
  border-color: var(--sage);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-card h3 { font-family: 'Montserrat', sans-serif; }
.pricing-card .price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sage);
  margin: 16px 0 4px;
}
.pricing-card .price-sub {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* --- FAQ Accordion --- */
.faq-list { max-width: 800px; margin: 48px auto 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--sage); }

.faq-question .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  margin: 0 24px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 0.92rem;
}
.comparison-table th {
  background: var(--sage);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 14px 20px;
  text-align: left;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); }
.comparison-table tr:nth-child(even) { background: var(--soft-sage); }
.comparison-table tr:hover { background: rgba(74,124,89,0.08); }

/* --- Contact Form --- */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Footer (4-column like Deliveroo/Factor) --- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; color: var(--white); }
.footer .nav-logo span { color: var(--white); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

.footer h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-newsletter p { font-size: 0.88rem; margin-bottom: 16px; color: rgba(255,255,255,0.6); }

.footer-newsletter .input-group {
  display: flex;
  gap: 8px;
}
.footer-newsletter input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--sage); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--white); }

/* --- Page Header (for inner pages) --- */
.page-header {
  background: var(--soft-sage);
  padding: 120px 0 60px;
  text-align: center;
}
.page-header p { max-width: 600px; margin: 8px auto 0; }

/* --- Content Sections --- */
.content-section { padding: 80px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--soft-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--sage);
}

/* Conditions cards (medical) */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.condition-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border-top: 4px solid var(--teal);
  box-shadow: var(--shadow-sm);
}
.condition-card h3 { color: var(--teal); }

.condition-card ul {
  list-style: none;
  margin-top: 16px;
}
.condition-card ul li {
  padding: 4px 0 4px 24px;
  position: relative;
  font-size: 0.88rem;
  color: var(--gray-600);
}
.condition-card ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--teal);
  font-weight: 700;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.value-card {
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.value-card h3 { color: var(--sage); margin-bottom: 8px; }

/* --- Waitlist Section --- */
.waitlist-form {
  max-width: 480px;
  margin: 32px auto 0;
}

.waitlist-form .input-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.waitlist-form input,
.waitlist-form select {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  background: var(--white);
}
.waitlist-form input:focus,
.waitlist-form select:focus { outline: none; border-color: var(--sage); }

/* --- Delivery Map Area --- */
.delivery-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.delivery-chip {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--soft-sage);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-dark);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--linen);
  z-index: 999;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu a:hover { color: var(--sage); }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; }
.blog-card-body .tag { margin-bottom: 12px; }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--charcoal); transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--sage); }
.blog-card-body p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 16px; }
.blog-card-body .read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
  text-decoration: none;
}
.blog-card-body .read-more:hover { text-decoration: underline; }

.blog-article {
  max-width: 720px;
  margin: 0 auto;
}
.blog-article h2 { font-size: 1.4rem; margin-top: 40px; margin-bottom: 16px; color: var(--sage-dark); }
.blog-article h3 { font-size: 1.15rem; margin-top: 32px; margin-bottom: 12px; }
.blog-article p { margin-bottom: 16px; line-height: 1.8; }
.blog-article ul, .blog-article ol { margin-bottom: 16px; padding-left: 24px; }
.blog-article li { margin-bottom: 8px; line-height: 1.7; }
.blog-article .blog-meta {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.blog-article .blog-cta {
  background: var(--soft-sage);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
.blog-article .blog-cta h3 { margin-top: 0; color: var(--sage); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .steps-grid,
  .steps-grid-5,
  .steps-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .step-card:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .hero { min-height: 80vh; }
  .hero-content { max-width: 100%; }

  .steps-grid,
  .steps-grid-5,
  .steps-grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .step-card { padding: 24px 16px; }

  .tier-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .feature-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .cta-banner { padding: 40px 24px; margin: 0; border-radius: 0; }
  .btn-group { flex-direction: column; align-items: stretch; }

  .comparison-table { font-size: 0.82rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  .waitlist-form .input-row { flex-direction: column; }

  .section-pad { padding: 60px 0; }
}

@media (max-width: 480px) {
  .trust-bar { gap: 24px; }
  .delivery-areas { justify-content: center; }
}

/* ============================================
   REBRAND 2026 — New component styles
   Applied to new pages only. Blog posts unchanged.
   ============================================ */

/* Google Fonts for new pages (DM Sans + DM Mono + Playfair Display) */
/* Load directive is in new page <head> — not in CSS */

/* --- Rebrand Type Scale --- */
.t-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.t-h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}
.t-h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.t-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}
.t-body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--charcoal);
}
.t-meta {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--muted);
}
.t-price {
  font-family: 'DM Mono', monospace;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}

/* --- Rebrand Article Body --- */
.article-body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 68ch;
}
.article-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 2.4em 0 0.6em;
  color: var(--ink);
}
.article-body h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.8em 0 0.4em;
  color: var(--ink);
}
.article-body p { margin-bottom: 1.4em; }
.article-body a { color: var(--teal); border-bottom: 1px solid var(--teal-light); }

/* --- Rebrand Buttons (6px radius — editorial, not app) --- */
.btn-primary-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary-r:hover {
  background: #185863;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31,107,119,0.3);
}
.btn-outline-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1.5px solid var(--teal);
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-r:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.btn-gold:hover {
  background: #a07d3a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,149,74,0.3);
}

/* --- Rebrand Nav (updated logo colors) --- */
.nav-logo-r {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.nav-logo-r .logo-kind { color: var(--ink); }
.nav-logo-r .logo-plate { color: var(--teal); }

.nav-links-r {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links-r a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links-r a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s ease;
}
.nav-links-r a:hover::after,
.nav-links-r a.active::after { width: 100%; }
.nav-links-r a:hover { color: var(--teal); }

/* --- Rebrand Page Backgrounds --- */
.bg-parchment { background: var(--parchment); }
.bg-teal-light { background: var(--teal-light); }
.bg-gold-light  { background: var(--gold-light); }

/* --- Rebrand Card Grid Layouts --- */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* --- Rebrand Base Card --- */
.card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.card-image { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.card-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px 12px 0 0; }
.card-body { padding: 24px; }
.card-body .tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.card-body .tag.affiliate-tag {
  background: var(--gold-light);
  color: var(--gold);
}
.card-body .tag.format-tag {
  background: var(--teal-light);
  color: var(--teal);
}
.card-body .t-h3 { margin-bottom: 8px; }
.card-body .excerpt {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--charcoal);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

/* --- Guide Card (gold premium treatment) --- */
.guide-card {
  background: var(--gold-light);
  border: 1px solid rgba(184,149,74,0.25);
}
.guide-card:hover { border-color: var(--gold); }
.guide-card .card-image { position: relative; }
.guide-card .card-image .price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--gold);
  color: var(--white);
  font-family: 'DM Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0 12px 0 12px;
  padding: 8px 14px;
}
.guide-card .cover-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(184,149,74,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--gold);
  text-align: center;
  padding: 20px;
}
.guide-card .credential {
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}

/* --- Product Card (recommended page) --- */
.product-card .physician-note {
  font-style: italic;
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

/* --- Disclosure Inline Component --- */
.disclosure-inline {
  background: var(--parchment);
  border-left: 3px solid var(--teal);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
}
.disclosure-inline p { margin: 0; }

/* --- Section Rule --- */
hr.section-rule { border: none; border-top: 1px solid var(--rule); margin: 0; }

/* --- Section Pad Rebrand --- */
.section-pad-r { padding: 80px 0; }
.section-pad-sm-r { padding: 48px 0; }

/* --- Container rebrand (1180px) --- */
.container-r {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Trust Trio (homepage) --- */
.trust-trio {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.trust-trio span {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-trio span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* --- Hero Editorial Layout --- */
.hero-editorial {
  padding: 120px 0 80px;
  background: var(--parchment);
}
.hero-editorial-grid {
  display: grid;
  grid-template-columns: 55% 42%;
  gap: 3%;
  align-items: center;
}
.hero-editorial-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  aspect-ratio: 4/5;
}
.hero-editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e8e4de 0%, #d5d0c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: 16px;
}
.hero-sub { margin: 20px 0 32px; max-width: 52ch; }
.hero-editorial .btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* --- Section Headers --- */
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }

/* --- Text Link Right --- */
.text-link-right {
  display: block;
  text-align: right;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: none;
  margin-top: 24px;
}
.text-link-right:hover { text-decoration: underline; }

/* --- Differentiators 3-col --- */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.diff-item { text-align: center; }
.diff-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal);
}
.diff-item .t-h3 { margin-bottom: 10px; }

/* --- Newsletter Section --- */
.newsletter-section { text-align: center; }
.newsletter-inner { max-width: 620px; margin: 0 auto; }
.newsletter-inner .t-h2 { margin: 16px 0 12px; }
.newsletter-inner .t-body { margin-bottom: 28px; }
.subscribe-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 12px;
}
.subscribe-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal);
}

/* --- Filter Bar (blog index) --- */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  position: sticky;
  top: 69px;
  z-index: 100;
}
.filter-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-pill {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.filter-pill:hover,
.filter-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* --- Page Header Slim --- */
.page-header-slim {
  padding: 80px 0 40px;
  text-align: center;
}
.page-header-slim .t-h2 { margin-top: 8px; }

/* --- About Grid --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-grid .credential-line {
  margin: 8px 0 24px;
  display: block;
}
.about-grid .t-body { margin-bottom: 20px; }

/* --- WE WILL NOT List --- */
.commitment-list {
  list-style: none;
  margin-top: 28px;
}
.commitment-list li {
  padding: 16px 0 16px 36px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--charcoal);
}
.commitment-list li:last-child { border-bottom: none; }
.commitment-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* --- FAQ rebrand accordion --- */
.faq-item-r {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.faq-question-r {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s;
  gap: 16px;
}
.faq-question-r:hover { color: var(--teal); }
.faq-question-r .faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item-r.open .faq-question-r .faq-icon { transform: rotate(45deg); }
.faq-answer-r {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-item-r.open .faq-answer-r { max-height: 400px; }
.faq-answer-r p {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--charcoal);
  padding-bottom: 24px;
  margin: 0;
}
.faq-answer-r a { color: var(--teal); }

/* --- Differentiator list (guides page) --- */
.differentiator-list {
  list-style: none;
  margin-top: 28px;
}
.differentiator-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.0625rem;
  color: var(--charcoal);
}
.differentiator-list li:last-child { border-bottom: none; }
.differentiator-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 1.1rem;
}

/* --- Footer rebrand --- */
.footer-r {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-r-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-r-brand .nav-logo-r { margin-bottom: 12px; color: var(--white); }
.footer-r-brand .nav-logo-r .logo-kind,
.footer-r-brand .nav-logo-r .logo-plate { color: var(--white); }
.footer-r-brand p {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-r h4 {
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-r-links { list-style: none; }
.footer-r-links li { margin-bottom: 10px; }
.footer-r-links a {
  color: rgba(255,255,255,0.55);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-r-links a:hover { color: var(--white); }
.footer-r-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-r-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-r-affiliate {
  margin-top: 8px;
  font-size: 0.78rem;
}

/* --- Recommended category section --- */
.rec-category { padding: 80px 0; }
.rec-category + .rec-category { padding-top: 0; }

/* --- Mobile rebrand responsive --- */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-r-grid { grid-template-columns: repeat(2, 1fr); }
  .differentiators-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-editorial-grid { grid-template-columns: 1fr; }
  .hero-editorial-image { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .differentiators-grid { grid-template-columns: 1fr; }
  .footer-r-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-pad-r { padding: 56px 0; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form input[type="email"],
  .subscribe-form .btn-primary-r { width: 100%; }
  .filter-bar { top: 60px; }
  .filter-bar-inner { overflow-x: auto; flex-wrap: nowrap; }
  .page-header-slim { padding: 60px 0 32px; }
}
