/* =========================================================================
   Sweet Sip — site stylesheet
   ========================================================================= */

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

body {
  font-family: 'Nunito', -apple-system, sans-serif;
  background: linear-gradient(180deg, #FBEAF0 0%, #FDF4F7 25%, #FFFFFF 50%, #FDF4F7 75%, #FBEAF0 100%);
  color: #4B1528;
  line-height: 1.6;
  min-height: 100vh;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 32px; }

/* --- Header / nav --------------------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,192,209,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .logo { height: 48px; width: auto; display: block; }
nav ul { display: flex; gap: 32px; list-style: none; }
nav a { color: #72243E; text-decoration: none; font-size: 14px; font-weight: 500; }
nav a:hover, nav a.active { color: #D4537E; }
.order-btn {
  background: #D4537E;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.order-btn:hover { background: #4B1528; }

/* --- Page header common --------------------------------------------------- */
.page-header { text-align: center; padding: 64px 0 32px; }
.page-eyebrow {
  font-size: 12px;
  color: #993556;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.page-header h1 {
  font-size: 64px;
  font-weight: 500;
  color: #4B1528;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-header h1 .accent,
.page-header h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: #D4537E;
}
.page-header p {
  font-size: 16px;
  color: #72243E;
  max-width: 540px;
  margin: 0 auto;
}

/* Italic accent — wrap accent words in <em> */
em, .accent {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: #D4537E;
  font-weight: 500;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: #4B1528;
  color: white;
}
.btn-primary:hover { background: #D4537E; }
.btn-secondary {
  background: white;
  color: #4B1528;
  border: 1px solid #F4C0D1;
}
.btn-secondary:hover { background: #FBEAF0; }
.btn-small { padding: 8px 14px; font-size: 12px; }

/* --- Hero (homepage) ------------------------------------------------------ */
.hero { padding: 80px 0 38px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  font-size: 12px;
  color: #993556;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 {
  font-size: 68px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -2px;
  color: #4B1528;
  margin-bottom: 20px;
}
.hero p {
  font-size: 17px;
  color: #72243E;
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.btn-row { display: flex; gap: 12px; }

.hero-images { position: relative; height: 480px; }
.hero-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-1 { left: -2%; top: 12%; width: 47%; height: 76%; transform: rotate(-4deg); z-index: 3; }
.hero-img-2 { left: 28%; top: 8%;  width: 47%; height: 76%; transform: rotate(2deg);  z-index: 2; }
.hero-img-3 { left: 53%; top: 6%;  width: 57%; height: 92%; transform: rotate(8deg);  z-index: 1; }

/* --- Section common ------------------------------------------------------- */
.menu-section { padding: 52px 0 80px; }
.section-eyebrow {
  text-align: center;
  font-size: 12px;
  color: #993556;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 500;
  color: #4B1528;
  margin-bottom: 48px;
  letter-spacing: -1px;
  line-height: 1.1;
}

/* --- Card grid (homepage menu) -------------------------------------------- */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.menu-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(244,192,209,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(75,21,40,0.12); }
.menu-card-img { width: 100%; height: 200px; overflow: hidden; background: #FBEAF0; }
.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 20px 22px; }
.menu-card h3 { font-size: 19px; font-weight: 500; color: #4B1528; margin-bottom: 6px; letter-spacing: -0.3px; }
.menu-card p { font-size: 13px; color: #993556; line-height: 1.5; }

/* --- Featured card (homepage) --------------------------------------------- */
.featured { padding: 60px 0; }
.featured-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(244,192,209,0.6);
  box-shadow: 0 8px 24px rgba(75,21,40,0.06);
}
.featured-img { width: 100%; height: 100%; min-height: 360px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-content h2 {
  font-size: 36px;
  font-weight: 500;
  color: #4B1528;
  margin-bottom: 14px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.featured-content p { font-size: 15px; color: #72243E; margin-bottom: 24px; }

/* --- Locations preview (homepage) ----------------------------------------- */

/* --- Reviews section ---------------------------------------------------- */
.reviews { padding: 60px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(244,192,209,0.6);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #D4537E;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 15px;
  color: #4B1528;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.review-author {
  font-size: 12px;
  color: #993556;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.locations { padding: 80px 0; }
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card {
  background: white;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(244,192,209,0.6);
  position: relative;
  transition: transform 0.2s;
}
.location-card:hover { transform: translateY(-4px); }
.location-card.new { border: 2px solid #D4537E; }
.badge-new {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #D4537E;
  color: white;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.location-pin {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #FBEAF0;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 18px;
}
.location-card h3 { font-size: 22px; font-weight: 500; color: #4B1528; margin-bottom: 6px; letter-spacing: -0.3px; }
.location-card .sub { font-size: 14px; color: #72243E; margin-bottom: 4px; }
.location-card .addr { font-size: 12px; color: #993556; margin-bottom: 16px; }
.location-card a { color: #D4537E; font-size: 13px; font-weight: 500; text-decoration: none; }
.location-card a:hover { color: #4B1528; }

/* --- Menu page sticky category nav --------------------------------------- */
.cat-nav {
  position: sticky;
  top: 78px;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(244,192,209,0.5);
  border-bottom: 1px solid rgba(244,192,209,0.5);
  padding: 14px 0;
  margin: 24px 0 0;
}
.cat-nav-inner { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; overflow-x: auto; }
.cat-pill {
  padding: 8px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid #F4C0D1;
  color: #72243E;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.cat-pill:hover { background: #FBEAF0; color: #D4537E; }
.cat-pill.active { background: #D4537E; color: white; border-color: #D4537E; }

/* --- Menu category sections ---------------------------------------------- */
.menu-category { padding: 56px 0 16px; scroll-margin-top: 160px; }
.cat-header {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  margin-bottom: 32px;
  align-items: center;
}
.cat-image {
  width: 100%; height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(75,21,40,0.1);
}
.cat-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-info h2 {
  font-size: 44px;
  font-weight: 500;
  color: #4B1528;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
  line-height: 1.05;
}
.cat-info .desc { font-size: 15px; color: #72243E; max-width: 520px; }

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  column-rule: 1px solid rgba(244,192,209,0.5);
}
.item {
  padding: 8px 0;
  font-size: 15px;
  color: #4B1528;
  border-bottom: 1px solid rgba(244,192,209,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.item:last-child { border-bottom: none; }
.item.popular { color: #D4537E; font-weight: 500; }
.item.popular::before { content: '★'; color: #D4537E; font-size: 11px; }
.item.new::after {
  content: 'NEW';
  font-size: 9px;
  background: #ED93B1;
  color: white;
  padding: 2px 6px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-left: auto;
}

.tea-selector {
  background: white;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid rgba(244,192,209,0.6);
}
.tea-selector .label {
  font-size: 11px;
  color: #993556;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}
.tea-selector .options { display: flex; gap: 8px; flex-wrap: wrap; }
.tea-selector .options span {
  background: #FBEAF0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #4B1528;
}

.toppings-section {
  background: white;
  border-radius: 20px;
  padding: 28px 32px;
  border: 1px solid rgba(244,192,209,0.6);
  margin: 32px 0;
}
.toppings-section h3 { font-size: 24px; font-weight: 500; color: #4B1528; margin-bottom: 6px; letter-spacing: -0.5px; }
.toppings-section .desc { font-size: 14px; color: #72243E; margin-bottom: 16px; }
.toppings-list { font-size: 14px; color: #4B1528; line-height: 1.9; }
.toppings-list span:not(:last-child)::after {
  content: '·';
  color: #ED93B1;
  margin-left: 12px;
  margin-right: 4px;
  font-weight: 600;
}

/* --- Locations page ------------------------------------------------------- */
.quick-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0 36px;
}
.quick-pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: white;
  border: 1px solid #F4C0D1;
  color: #72243E;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.quick-pill:hover { background: #FBEAF0; color: #D4537E; }
.quick-pill.featured { background: #D4537E; color: white; border-color: #D4537E; }
.quick-pill.featured::before { content: '✦'; margin-right: 6px; }

.location {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(244,192,209,0.6);
  margin-bottom: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 4px 16px rgba(75,21,40,0.04);
  scroll-margin-top: 100px;
}
.location.new { border: 2px solid #D4537E; }
.location-info { padding: 10px 12px; position: relative; }
.location.new .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #D4537E;
  color: white;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.location h2 {
  font-size: 30px;
  font-weight: 500;
  color: #4B1528;
  letter-spacing: -0.8px;
  margin-bottom: 2px;
  line-height: 1.05;
}
.location .place {
  font-size: 12px;
  color: #993556;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
}
.location .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}

.location .info-row {
  display: flex;
  gap: 10px;
  margin-bottom: 4px;
  font-size: 13px;
  color: #4B1528;
  line-height: 1.4;
}
.info-row .icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #FBEAF0;
  color: #D4537E;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}
.info-row .label {
  font-size: 11px;
  color: #993556;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2px;
}
.info-row .info-value { font-size: 14px; color: #4B1528; }
.info-row .info-value strong { color: #4B1528; font-weight: 500; }

.hours { font-size: 12px; }
.hours-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  color: #72243E;
}
.hours-summary .day { font-weight: 500; color: #4B1528; }
.hours-summary .today { color: #D4537E; }
.hours-summary .today::before { content: '● '; }

.actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 22px;
  padding-bottom: 16px;
  border-top: 1px solid rgba(244,192,209,0.4);
}

.location-map {
  background: linear-gradient(135deg, #FBEAF0 0%, #F4C0D1 100%);
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }
.location.reverse { grid-template-columns: 1fr 1fr; }
.location.reverse .location-map { order: -1; }

/* --- FAQ ------------------------------------------------------------------ */
.faq-section {
  background: white;
  border-radius: 24px;
  padding: 40px 48px;
  margin: 48px 0;
  border: 1px solid rgba(244,192,209,0.6);
}
.faq-section h2 {
  font-size: 32px;
  font-weight: 500;
  color: #4B1528;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}
.faq-section .desc { font-size: 15px; color: #72243E; margin-bottom: 28px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; }
.faq-item h3 { font-size: 15px; font-weight: 500; color: #4B1528; margin-bottom: 6px; }
.faq-item p { font-size: 14px; color: #72243E; line-height: 1.6; }

/* --- About page ----------------------------------------------------------- */
.story { padding: 64px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.story-image {
  width: 100%; height: 480px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(75,21,40,0.12);
}
.story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-content .eyebrow {
  font-size: 12px;
  color: #993556;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.story-content h2 {
  font-size: 44px;
  font-weight: 500;
  color: #4B1528;
  letter-spacing: -1.4px;
  margin-bottom: 20px;
  line-height: 1.05;
}
.story-content p { font-size: 16px; color: #72243E; line-height: 1.7; margin-bottom: 16px; }
.story-content p strong { color: #4B1528; font-weight: 500; }

.pull-quote {
  background: white;
  border-radius: 28px;
  padding: 56px;
  margin: 48px 0;
  border: 1px solid rgba(244,192,209,0.6);
  box-shadow: 0 8px 24px rgba(75,21,40,0.04);
  text-align: center;
}
.pull-quote .mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 80px;
  color: #ED93B1;
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}
.pull-quote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 28px;
  color: #4B1528;
  line-height: 1.4;
  max-width: 720px;
  margin: 0 auto 24px;
  font-weight: 400;
}
.pull-quote cite {
  font-style: normal;
  font-size: 13px;
  color: #993556;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.values { padding: 64px 0; }
.values-header { text-align: center; margin-bottom: 48px; }
.values-header .eyebrow {
  font-size: 12px;
  color: #993556;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.values-header h2 {
  font-size: 42px;
  font-weight: 500;
  color: #4B1528;
  letter-spacing: -1.2px;
  line-height: 1.05;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value {
  background: white;
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid rgba(244,192,209,0.6);
}
.value-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #FBEAF0;
  color: #D4537E;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.value h3 { font-size: 19px; font-weight: 500; color: #4B1528; margin-bottom: 8px; letter-spacing: -0.3px; }
.value p { font-size: 14px; color: #72243E; line-height: 1.6; }

.stats {
  background: linear-gradient(135deg, #4B1528 0%, #993556 50%, #D4537E 100%);
  color: white;
  border-radius: 28px;
  padding: 56px 48px;
  margin: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 60px;
  font-weight: 500;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.stat-label {
  font-size: 12px;
  color: #F4C0D1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- CTA banner ---------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #4B1528 0%, #D4537E 100%);
  color: white;
  border-radius: 28px;
  padding: 48px;
  text-align: center;
  margin: 48px 0 80px;
}
.cta-banner h2 { color: white; font-size: 36px; margin-bottom: 12px; letter-spacing: -1px; }
.cta-banner h2 em { color: #FBEAF0; }
.cta-banner p { color: #F4C0D1; max-width: 460px; margin: 0 auto 24px; font-size: 15px; }
.cta-btn {
  background: white;
  color: #4B1528;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover { background: #FBEAF0; }

.cta-section { text-align: center; padding: 64px 0 80px; }
.cta-section h2 {
  font-size: 48px;
  font-weight: 500;
  color: #4B1528;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.05;
}
.cta-section p { font-size: 17px; color: #72243E; max-width: 480px; margin: 0 auto 28px; }
.cta-buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* --- Footer --------------------------------------------------------------- */
footer { background: #4B1528; color: #FBEAF0; padding: 48px 0 32px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-bottom: 12px;
  /* Lighten and tint the pink logo to soft pink for visibility on dark footer */
  filter: brightness(1.6) saturate(0.5) opacity(0.95);
}
footer p { font-size: 13px; color: #F4C0D1; line-height: 1.6; }
footer h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ED93B1;
  margin-bottom: 14px;
  font-weight: 500;
}
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: #F4C0D1; font-size: 13px; text-decoration: none; }
footer a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(244,192,209,0.2);
  padding-top: 20px;
  font-size: 12px;
  color: #ED93B1;
  display: flex;
  justify-content: space-between;
}

/* --- Mobile --------------------------------------------------------------- */
@media (max-width: 768px) {
  .location .info-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 32px; }
  .hero-images { height: 380px; padding: 0 4%; }
  .hero-img-1 { left: 0%;   top: 12%; width: 44%; height: 72%; }
  .hero-img-2 { left: 26%;  top: 8%;  width: 44%; height: 72%; }
  .hero-img-3 { left: 50%;  top: 6%;  width: 50%; height: 86%; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 44px; }
  .page-header h1 { font-size: 40px; }
  .menu-grid, .locations-grid, .reviews-grid { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-header { grid-template-columns: 1fr; gap: 16px; }
  .cat-info h2 { font-size: 32px; }
  .items-grid { grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .location, .location.reverse { grid-template-columns: 1fr; }
  .location.reverse .location-map { order: 0; }
  .location-info { padding: 9px 9px; }
  .location-map { min-height: 200px; }
  .faq-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 32px 24px; }
  .cta-banner h2 { font-size: 26px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-image { height: 320px; }
  .story-content h2 { font-size: 32px; }
  .pull-quote { padding: 36px 28px; }
  .pull-quote blockquote { font-size: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats { padding: 36px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 44px; }
  .cta-section h2 { font-size: 32px; }
  nav ul { display: none; }
}
