/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }

:root {
  --navy: #1F2A4A;
  --sage: #6FB3A6;
  --paper: #FBF8F1;
  --surface: #FFFFFF;
  --text: #2C2A28;
  --muted: #6B6A66;
  --warm: #E8E1D4;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Crimson Text', Georgia, serif;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  overflow-wrap: break-word;
}
p { margin: 0; overflow-wrap: break-word; }
ul { margin: 0; padding: 0; list-style: none; }

/* === UTILITIES === */
.eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-block;
}
.eyebrow.centered {
  display: block;
  text-align: center;
  color: var(--navy);
  opacity: .65;
  margin-bottom: 2.4rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: .95rem 1.9rem;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  min-height: 44px;
}
.btn:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

.btn-accent { background: var(--sage); color: #fff; }
.btn-accent:hover { background: #5fa395; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,42,74,.2); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #16203a; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(31,42,74,.25); }

.btn-shop { background: var(--navy); color: #fff; padding: .7rem 1.3rem; }
.btn-shop:hover { background: var(--sage); transform: translateY(-1px); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

/* === PROMO BAR === */
.promo { background: var(--navy); color: var(--paper); font-size: .85rem; }
.promo-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.promo-inner p { flex: 1; min-width: 0; line-height: 1.4; }
.promo-inner a { color: var(--sage); font-weight: 700; white-space: nowrap; }
.promo-inner a:hover { text-decoration: underline; }
.promo-close {
  background: none;
  border: 0;
  color: var(--paper);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  transition: background .3s ease, box-shadow .3s ease;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo { flex-shrink: 0; line-height: 0; }
.logo img { height: 40px; width: auto; }

.header.scrolled { background: var(--navy); box-shadow: 0 6px 24px rgba(31,42,74,.2); }
.header.scrolled .logo img { background: var(--paper); padding: 5px 9px; border-radius: 3px; }
.header.scrolled .nav-desktop a { color: #fff; }
.header.scrolled .cart-link { color: #fff; }

.nav-desktop { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-desktop a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: .3rem 0;
  white-space: nowrap;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width .25s ease;
}
.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after { width: 100%; }
.nav-desktop a:focus-visible { outline: 2px solid var(--sage); outline-offset: 4px; border-radius: 1px; }

.header-actions { display: flex; align-items: center; gap: .9rem; margin-left: 1rem; flex-shrink: 0; }
.cart-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.cart-count {
  background: var(--sage);
  color: #fff;
  border-radius: 50%;
  padding: .1rem .42rem;
  font-size: .68rem;
  margin-left: .2rem;
  vertical-align: middle;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.header.scrolled .hamburger span { background: #fff; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; border-radius: 2px; }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82%, 320px);
  background: var(--navy);
  color: #fff;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  z-index: 80;
  padding: 1.5rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.4rem;
  margin-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.mobile-menu-logo {
  height: 26px;
  width: auto;
  background: var(--paper);
  padding: 4px 9px;
  border-radius: 2px;
}
.menu-close-btn {
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  border-radius: 2px;
}
.menu-close-btn:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }

.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.mobile-menu nav a:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.mobile-menu .mobile-shop { margin-top: 1.4rem; align-self: flex-start; border: 0; }

.mobile-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
}
.mobile-social a { font-size: .78rem; color: var(--sage); font-weight: 600; letter-spacing: .06em; }
.mobile-social a:hover { color: #fff; }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,22,42,.55);
  z-index: 70;
  cursor: pointer;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: clamp(580px, 88vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(31,42,74,.85) 0%,
    rgba(31,42,74,.38) 42%,
    rgba(31,42,74,.58) 70%,
    rgba(31,42,74,.92) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.4rem 5.5rem;
  color: #fff;
}
.hero-stat {
  font-family: 'Open Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
}
.hero-stat::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sage);
  flex-shrink: 0;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  max-width: 13ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.22);
  line-height: 1.06;
  font-weight: 700;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.hero-link {
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.hero-link:hover { border-color: var(--sage); color: var(--sage); }

/* === INTRO === */
.intro-wrap { overflow: hidden; }

.intro {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 1.4rem 6.5rem;
}

.intro-branch {
  position: absolute;
  top: -50px;
  right: -10px;
  width: 230px;
  opacity: .08;
  pointer-events: none;
  mix-blend-mode: multiply;
  transform: rotate(12deg);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 5rem;
  align-items: center;
}

.intro-text h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 18ch;
  line-height: 1.14;
}
.intro-text p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1.5rem 0 2.2rem;
  max-width: 40ch;
  line-height: 1.72;
}

/* Overlapping photo composition */
.intro-photos {
  position: relative;
  height: 500px;
  min-width: 0;
}
.intro-photo-a {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 84%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(31,42,74,.22), 0 8px 16px rgba(31,42,74,.1);
}
.intro-photo-a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 52%;
}
.intro-photo-b {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 46%;
  overflow: hidden;
  border-radius: 4px;
  border: 5px solid var(--paper);
  box-shadow: 0 18px 42px rgba(31,42,74,.2);
  z-index: 2;
}
.intro-photo-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

/* === OFFERINGS === */
.offerings { max-width: 1200px; margin: 0 auto; padding: 2rem 1.4rem 7rem; }
.section-head { margin-bottom: 3rem; }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  max-width: 18ch;
  margin-top: .65rem;
  line-height: 1.1;
}

/* Asymmetric bento grid */
.bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 440px 310px;
  gap: 1.4rem;
}

/* Grid positions - nth-child layout */
.bento .card:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.bento .card:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento .card:nth-child(3) { grid-column: 3; grid-row: 1; }
.bento .card:nth-child(4) { grid-column: 2 / 4; grid-row: 2; }

/* Card image object-positions */
.bento .card:nth-child(1) img { object-position: 72% 45%; }
.bento .card:nth-child(2) img { object-position: 52% 55%; }
.bento .card:nth-child(3) img { object-position: 50% 45%; }
.bento .card:nth-child(4) img { object-position: 52% 52%; }

/* Larger headings for dominant cards */
.bento .card:nth-child(1) .card-body h3,
.bento .card:nth-child(4) .card-body h3 { font-size: 1.9rem; }

.card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(31,42,74,.14);
  background: var(--navy);
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
  min-width: 0;
}
.card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,42,74,0) 28%, rgba(31,42,74,.92) 100%);
}
.card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.8rem;
  color: #fff;
}
.card-body h3 { color: #fff; font-size: 1.55rem; line-height: 1.1; }
.card-body p {
  font-size: .88rem;
  color: rgba(255,255,255,.88);
  margin-top: .5rem;
  max-width: 34ch;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .4s ease, max-height .45s ease;
}
.card-link {
  display: inline-block;
  margin-top: .85rem;
  font-family: 'Open Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--sage);
}
.card:hover, .card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 30px 56px rgba(31,42,74,.28);
}
.card:hover img, .card:focus-visible img { transform: scale(1.07); }
.card:hover .card-body p, .card:focus-visible .card-body p {
  opacity: 1;
  max-height: 120px;
}
.card:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }

/* === PRESS === */
.press { background: var(--surface); padding: 5rem 1.4rem; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 2rem;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.press-grid li { width: 100%; display: flex; align-items: center; justify-content: center; }
.press-grid img {
  max-height: 44px;
  width: auto;
  max-width: 100%;
  filter: grayscale(1);
  opacity: .48;
  transition: opacity .3s ease, filter .3s ease;
}
.press-grid a:hover img, .press-grid a:focus-visible img { opacity: .9; filter: grayscale(0); }
.press-grid a:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 2px; display: flex; }

/* === CTA BAND === */
.cta-band { position: relative; background: var(--sage); overflow: hidden; }
.cta-branch {
  position: absolute;
  bottom: -50px;
  left: -25px;
  width: 300px;
  opacity: .14;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 5.5rem 1.4rem;
  text-align: center;
}
.cta-inner h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 22ch;
  margin: 0 auto 2.4rem;
  line-height: 1.2;
}

/* === VISIT / CONTACT === */
.visit { background: var(--warm); }
.visit-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.visit-photo { overflow: hidden; }
.visit-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  min-height: 460px;
}
.visit-card {
  padding: 4.5rem clamp(1.4rem, 4vw, 4rem);
  background: var(--surface);
}
.visit-card > .eyebrow { display: block; margin-bottom: .5rem; }
.visit-addr {
  font-family: 'Crimson Text', serif;
  font-size: 1.7rem;
  color: var(--navy);
  margin: 1.2rem 0 1rem;
  line-height: 1.3;
}
.visit-contact a {
  display: block;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 2;
  transition: color .2s ease;
}
.visit-contact a:hover { color: var(--sage); }
.visit-dir {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--sage);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: text-decoration .2s ease;
}
.visit-dir:hover { text-decoration: underline; }
.visit-hours { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--warm); }
.visit-hours > .eyebrow { display: block; margin-bottom: 1rem; }
.visit-hours ul { max-width: 340px; }
.visit-hours li {
  display: flex;
  justify-content: space-between;
  padding: .38rem 0;
  font-size: .91rem;
  border-bottom: 1px dotted rgba(31,42,74,.14);
}
.visit-hours li span:first-child { color: var(--navy); font-weight: 600; }
.visit-hours li span:last-child { color: var(--muted); }

/* === FOOTER === */
.footer { background: var(--navy); color: #dfe2ea; }
.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.4rem 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo {
  height: 40px;
  width: auto;
  background: var(--paper);
  padding: 7px 12px;
  border-radius: 3px;
  margin-bottom: 1.4rem;
}
.footer-brand p { font-size: .91rem; line-height: 1.72; color: #b7bdcc; max-width: 42ch; }
.footer-social { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1.5rem; }
.footer-social a {
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  transition: color .2s ease;
}
.footer-social a:hover { color: #fff; }

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: 'Crimson Text', serif;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: .72rem; }
.footer-col ul a { font-size: .91rem; color: #b7bdcc; transition: color .2s ease; }
.footer-col ul a:hover { color: #fff; }

.signup-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer-signup input {
  flex: 1;
  min-width: 0;
  padding: .85rem 1rem;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  color: #fff;
  border-radius: 2px;
  font-family: inherit;
  font-size: .9rem;
  min-height: 46px;
}
.footer-signup input::placeholder { color: #9aa0b2; }
.footer-signup input:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.signup-msg { font-size: .82rem; margin-top: .7rem; min-height: 1.2em; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.11); }
.footer-bottom p {
  max-width: 1200px;
  margin: 0 auto;
  padding: .4rem 1.4rem;
  font-size: .77rem;
  color: #9aa0b2;
}
.footer-bottom p:first-child { padding-top: 1.6rem; }
.footer-bottom p:last-child { padding-bottom: 1.8rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-legal a { color: #9aa0b2; transition: color .2s ease; }
.footer-legal a:hover { color: var(--sage); }

/* === SCROLL REVEAL — progressive enhancement === */
/* Default: all content visible (no-JS fallback) */
.reveal { transition: opacity .7s ease, transform .7s ease; }

/* With JS active: start hidden, animate in on scroll */
.js .reveal { opacity: 0; transform: translateY(30px); }
.js .reveal.in { opacity: 1; transform: none; }

/* === RESPONSIVE: TABLET 980px === */
@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-branch { width: 180px; }
  .intro-photos { height: 360px; order: -1; }
  .intro-photo-a { width: 90%; height: 90%; }
  .intro-photo-b { width: 46%; height: 50%; }

  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 1.2rem;
  }
  .bento .card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .bento .card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .bento .card:nth-child(3) { grid-column: 1; grid-row: 2; }
  .bento .card:nth-child(4) { grid-column: 2; grid-row: 2; }
  .bento .card:nth-child(1) .card-body h3,
  .bento .card:nth-child(4) .card-body h3 { font-size: 1.55rem; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-photo img { min-height: 320px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* === RESPONSIVE: MOBILE 760px === */
@media (max-width: 760px) {
  /* Nav: hide desktop, show hamburger */
  .nav-desktop { display: none; }
  .cart-link { display: none; }
  .btn-shop { display: none; }
  .hamburger { display: flex; }
  .header-actions { margin-left: auto; }

  /* Intro: photos above text */
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro { padding: 4rem 1.2rem; }
  .intro-photos { height: 280px; order: -1; }
  .intro-photo-a { width: 100%; height: 100%; right: 0; }
  .intro-photo-b { display: none; }
  .intro-branch { display: none; }

  /* Bento: single column */
  .bento { grid-template-columns: 1fr; grid-template-rows: auto; gap: 1rem; }
  .bento .card { grid-column: 1 !important; grid-row: auto !important; aspect-ratio: 4 / 3; min-height: 260px; }
  .bento .card:nth-child(1) .card-body h3,
  .bento .card:nth-child(4) .card-body h3 { font-size: 1.55rem; }

  /* Show card descriptions (no hover on touch) */
  .card-body p { opacity: 1; max-height: 120px; }

  /* Press: 3-col grid */
  .press-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.2rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* === RESPONSIVE: SMALL MOBILE 500px === */
@media (max-width: 500px) {
  .hero-content { padding-bottom: 3rem; padding-left: 1rem; padding-right: 1rem; }
  .hero-cta { gap: 1rem; }
  .hero h1 { font-size: clamp(2.4rem, 8.5vw, 3.4rem); }

  .intro { padding: 3.5rem 1rem; }
  .offerings { padding-left: 1rem; padding-right: 1rem; }
  .press { padding-left: 1rem; padding-right: 1rem; }
  .press-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }

  .visit-card { padding: 2.8rem 1.2rem; }
  .footer-top { padding-left: 1rem; padding-right: 1rem; }
  .footer-bottom p { padding-left: 1rem; padding-right: 1rem; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}