/* ============================================================
   UPTOWN PHARMACY
   ============================================================ */

/* --- Design tokens ----------------------------------------- */
:root {
  --green-900: #0a3a25;
  --green-700: #0f6b43;
  --green-600: #16895a;
  --green-500: #5b9a7c;
  --green-300: #7fd2ab;
  --green-200: #5fd39c;
  --green-100: #e6f2ea;
  --green-50:  #eaf4ee;

  --bg:        #faf9f5;
  --bg-warm:   #f4f1e9;
  --border:    #e8e2d6;
  --border-warm: #ece6da;
  --border-img:  #e2dccd;

  --text:      #1b2a22;
  --text-mid:  #3c4a42;
  --text-body: #4c5d54;
  --text-muted:#6a7c72;
  --text-faint:#5c6d63;

  --font-display: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body:    'Figtree', system-ui, -apple-system, sans-serif;

  --r-sm:   10px;
  --r-md:   12px;
  --r-card: 18px;
  --r-lg:   22px;
  --r-xl:   24px;
  --r-2xl:  26px;
  --r-full: 999px;

  --shadow-btn:    0 6px 16px rgba(22,137,90,.24);
  --shadow-btn-lg: 0 10px 24px rgba(22,137,90,.26);
  --shadow-card:   0 14px 30px -18px rgba(10,58,37,.3);
  --shadow-img:    0 24px 56px -28px rgba(10,58,37,.34);
  --shadow-hero:   0 30px 70px -34px rgba(10,58,37,.4);
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: #bfe6d2; color: #0c3a26; }

/* --- Skip link ----------------------------------------------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 100;
  background: var(--green-700);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  transition: top .15s;
}
.skip-link:focus {
  top: 12px;
}

/* --- Container --------------------------------------------- */
.container {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.container--sm { max-width: 820px; }
.container--md { max-width: 900px; }
.container--narrow { max-width: 1100px; }

/* --- Typography -------------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-500);
}
.eyebrow--light { color: var(--green-300); }

.display-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--green-900);
  text-wrap: balance;
  margin-top: 22px;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--green-900);
  text-wrap: balance;
  margin-top: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--green-900);
  text-wrap: balance;
}
.eyebrow + .section-title,
.eyebrow + .page-title { margin-top: 14px; }
.section-title--lg  { font-size: clamp(26px, 3.4vw, 42px); }
.section-title--white { color: #fff; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
  color: var(--text-body);
  margin-top: 20px;
}
.body-lg {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 20px;
}
.body-lg + .body-lg { margin-top: 16px; }

/* --- Badge ------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: #11724a;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  padding: 7px 15px;
  border-radius: var(--r-full);
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  flex: none;
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s;
}
.btn--primary {
  background: var(--green-600);
  color: #fff;
  box-shadow: var(--shadow-btn-lg);
}
.btn--primary:hover { background: var(--green-700); }

.btn--outline {
  background: #fff;
  color: var(--green-900);
  border: 1.5px solid #e0d9ca;
  padding: 15px 26px;
}
.btn--outline:hover { border-color: var(--green-600); color: var(--green-600); }

.btn--white {
  background: #fff;
  color: var(--green-900);
}
.btn--white:hover { background: var(--green-50); }

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 15px 26px;
}
.btn--ghost:hover { background: rgba(255,255,255,.2); }

.btn--sm {
  font-size: 14.5px;
  padding: 11px 22px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-btn);
}
.btn--phone { padding: 15px 28px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-700);
  font-weight: 700;
  font-size: 16px;
  transition: gap .18s;
  margin-top: 26px;
}
.arrow-link:hover { gap: 14px; }

.arrow-link--white {
  color: var(--green-50);
  border-bottom: 2px solid rgba(255,255,255,.4);
  padding-bottom: 3px;
  margin-top: 0;
}

/* --- Top bar ----------------------------------------------- */
.topbar {
  background: var(--green-900);
  border-top: 2px solid var(--green-200);
  color: #cfe8db;
  font-size: 13.5px;
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: space-between;
  padding-block: 9px;
}
.topbar__welcome { opacity: .85; }
.topbar__right {
  display: flex;
  gap: 8px 22px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar__phone {
  font-weight: 600;
  color: #eafff5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-200);
  flex: none;
}
.topbar__hours { opacity: .85; }

/* --- Site header / nav ------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,249,245,.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding-block: 15px;
}
.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.site-nav__logo-img {
  height: 40px;
  width: auto;
  display: block;
  flex: none;
}
.logo-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-top: 3px;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  justify-self: center;
}
.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  transition: color .15s;
}
.nav-link:hover { color: var(--green-700); }
.nav-link--active {
  font-weight: 700;
  color: var(--green-700);
}
.site-nav__cta { justify-self: end; }

/* --- Mobile nav toggle --------------------------------------- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: var(--r-sm);
  background: transparent;
  cursor: pointer;
  justify-self: end;
}
.nav-toggle:hover { background: var(--green-100); }
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .18s, opacity .18s;
}
.nav-toggle__bar + .nav-toggle__bar { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav__cta-mobile { display: none; }

@media (max-width: 880px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; }
  .site-nav__cta { display: none; }

  .site-nav__links {
    display: none;
    position: absolute;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    justify-self: stretch;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 6px clamp(20px, 5vw, 40px) 20px;
    box-shadow: 0 20px 34px -22px rgba(10,58,37,.3);
  }
  .site-nav__links.is-open { display: flex; }
  .nav-link { padding: 13px 4px; border-top: 1px solid var(--border); }
  .site-nav__cta-mobile { display: inline-flex; justify-content: center; margin-top: 12px; }
}

/* --- Image placeholders ------------------------------------ */
.img-placeholder {
  border-radius: var(--r-xl);
  border: 1px solid var(--border-img);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #edf5f0 0, #edf5f0 13px, #e4f0e9 13px, #e4f0e9 26px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-img);
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.img-placeholder img.img--pos-top { object-position: center 35%; }
.img-placeholder--4x5   { aspect-ratio: 4 / 5; }
.img-placeholder--hero  {
  width: 100%;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-hero);
  aspect-ratio: 16 / 7;
  min-height: 240px;
}
.img-placeholder__label {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: #6f8a7c;
}
.img-placeholder__chip {
  background: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #d6e6dd;
  font-size: 13px;
}

/* --- Sections ---------------------------------------------- */
.section        { padding-block: clamp(64px, 9vw, 116px); }
.section--md    { padding-block: clamp(56px, 8vw, 110px); }
.section--sm    { padding-block: clamp(48px, 7vw, 90px); }
.section--dark  { background: var(--green-700); color: var(--green-50); }
.section--warm  {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}
.section--bottom-only { padding-block-start: 0; padding-block-end: clamp(64px, 9vw, 116px); }

/* --- Page hero (interior pages) ---------------------------- */
.page-hero {
  background: radial-gradient(680px 340px at 50% 0%, var(--green-50) 0%, rgba(234,244,238,0) 70%), var(--bg);
  border-bottom: 1px solid var(--border-warm);
  padding-block: clamp(48px, 7vw, 84px);
  text-align: center;
}
.page-hero .lead { max-width: 600px; margin-inline: auto; }

/* --- Home hero --------------------------------------------- */
.home-hero {
  background: radial-gradient(680px 360px at 50% 0%, var(--green-50) 0%, rgba(234,244,238,0) 70%), var(--bg);
}
.home-hero__text {
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 40px) clamp(36px, 4vw, 54px);
  text-align: center;
}
.home-hero__text .lead { max-width: 600px; margin-inline: auto; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
.home-hero__image-wrap {
  padding: 0 clamp(20px, 5vw, 40px) clamp(56px, 7vw, 90px);
}
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: -34px;
  position: relative;
  z-index: 2;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 22px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--green-700);
}
.stat-card__label { font-size: 13px; color: var(--text-muted); }

/* --- Values strip ------------------------------------------ */
.values-strip {
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  background: var(--bg-warm);
}
.values-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  align-items: center;
  justify-content: center;
  padding-block: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1.6vw, 18px);
  color: #3f5a4c;
}
.values-strip__dot { color: #bcd3c6; }

/* --- Split layout ------------------------------------------ */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split__media  { flex: 1 1 380px; min-width: 300px; }
.split__content { flex: 1 1 420px; min-width: 300px; }
.split__content .eyebrow + .section-title { margin-top: 14px; }
.split__content .body-lg       { margin-top: 20px; }
.split__content .body-lg + .body-lg { margin-top: 16px; }

/* --- Blockquote -------------------------------------------- */
.blockquote {
  border-left: 3px solid var(--green-600);
  padding: 6px 0 6px 20px;
  margin-top: 26px;
}
.blockquote__text {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  color: #1b3a2b;
  font-weight: 600;
  font-style: italic;
}
.blockquote__cite {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-top: 10px;
}

/* --- Services dark section --------------------------------- */
.services-dark__header {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}
.services-dark__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px 40px;
}
.service-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.service-row__icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-50);
}
.service-row__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 8px;
}
.service-row__desc { font-size: 15px; line-height: 1.6; color: #c7e8d8; }

/* --- Feature cards (why choose) ---------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 42px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 24px 22px;
}
.feature-card__icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-100);
  align-items: center;
  justify-content: center;
}
.check-mark {
  display: inline-block;
  width: 9px;
  height: 15px;
  border-right: 3px solid var(--green-700);
  border-bottom: 3px solid var(--green-700);
  transform: rotate(45deg) translate(-1px, -2px);
}
.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--green-900);
  margin-top: 14px;
  margin-bottom: 7px;
}
.feature-card__desc { font-size: 14.5px; line-height: 1.6; color: var(--text-faint); }

/* --- Why-choose two-column layout -------------------------- */
.why-layout {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 64px);
}
.why-layout__intro { flex: 1 1 320px; min-width: 280px; }
.why-layout__intro .body-lg { margin-top: 18px; max-width: 380px; }
.why-layout__grid  { flex: 1 1 460px; min-width: 300px; }
.why-layout__grid .feature-grid { margin-top: 0; }

/* --- CTA band ---------------------------------------------- */
.cta-band {
  background: var(--bg-warm);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-2xl);
  padding: clamp(36px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.cta-band__text { flex: 1 1 360px; min-width: 280px; }
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--green-900);
  text-wrap: balance;
}
.cta-band__text .body-lg { max-width: 460px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- About: stat cards ------------------------------------- */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.about-stat {
  flex: 1 1 130px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
}
.about-stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--green-700);
}
.about-stat__label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* --- About: value cards ------------------------------------ */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 42px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--green-600);
  border-radius: 16px;
  padding: 28px 26px;
}
.value-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--green-900);
  margin-bottom: 10px;
}
.value-card__desc { font-size: 15px; line-height: 1.65; color: var(--text-faint); }

/* --- About: mission quote ---------------------------------- */
.mission-quote {
  background: var(--green-700);
  color: var(--green-50);
  padding-block: clamp(56px, 8vw, 104px);
  text-align: center;
}
.mission-quote__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.28;
  letter-spacing: -.02em;
  text-wrap: balance;
  margin-top: 18px;
}
.mission-quote__cite { font-size: 15px; color: #bfe6d2; display: block; margin-top: 22px; }

/* --- Services: item list ----------------------------------- */
.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0 56px;
}
.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-block: 30px;
  border-top: 1px solid var(--border);
}
.service-item__icon {
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-700);
}
.service-item__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--green-900);
  margin-bottom: 10px;
}
.service-item__desc { font-size: 15px; line-height: 1.65; color: var(--text-faint); }

/* --- Services: CTA banner (dark) --------------------------- */
.services-cta {
  background: var(--green-700);
  color: var(--green-50);
  padding-block: clamp(56px, 8vw, 104px);
}
.services-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.services-cta__text { flex: 1 1 380px; min-width: 280px; }
.services-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
  margin-bottom: 16px;
}
.services-cta__desc { font-size: 17px; line-height: 1.7; color: #c7e8d8; max-width: 480px; }
.services-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Gallery grid ------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery-cell {
  border-radius: 20px;
  border: 1px solid var(--border-img);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-cell--l { background: repeating-linear-gradient(135deg, #edf5f0 0, #edf5f0 14px, #e4f0e9 14px, #e4f0e9 28px); }
.gallery-cell--d { background: repeating-linear-gradient(135deg, #e4f0e9 0, #e4f0e9 14px, #dbe9e1 14px, #dbe9e1 28px); }
.gallery-cell--span-7  { grid-column: span 7; aspect-ratio: 16 / 10; }
.gallery-cell--span-5  { grid-column: span 5; aspect-ratio: 16 / 10; }
.gallery-cell--span-4  { grid-column: span 4; aspect-ratio: 1 / 1;   }

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cell--span-7,
  .gallery-cell--span-5,
  .gallery-cell--span-4 { grid-column: span 1; aspect-ratio: 4 / 3; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-label {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: #5b7568;
  background: rgba(255,255,255,.85);
  padding: 6px 11px;
  border-radius: 7px;
}
.gallery-note {
  text-align: center;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: #90a89b;
  margin-top: 34px;
}
.gallery-cta {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-warm);
  padding-block: clamp(52px, 7vw, 90px);
}
.gallery-cta__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.gallery-cta__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--green-900);
  text-wrap: balance;
}

/* --- Contact: cards ---------------------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding-block: clamp(40px, 6vw, 72px) clamp(20px, 3vw, 32px);
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
a.contact-card {
  transition: border-color .18s, transform .18s, box-shadow .18s;
}
a.contact-card:hover {
  border-color: #bfe0cd;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -20px rgba(10,58,37,.28);
}
.contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-700);
  font-size: 20px;
}
.contact-card__icon--tel { font-size: 14px; }
.contact-card__label { font-size: 13px; color: var(--text-muted); display: block; }
.contact-card__value { font-size: 18px; font-weight: 700; color: var(--green-900); word-break: break-word; }
.contact-card__value--sm { font-size: 17px; line-height: 1.4; }
.pin-icon {
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  background: var(--green-700);
  transform: rotate(-45deg);
}

/* --- Contact: hours + map ---------------------------------- */
.hours-map {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: clamp(8px, 2vw, 16px) clamp(56px, 8vw, 104px);
}
.hours-panel {
  flex: 1 1 320px;
  min-width: 280px;
  background: var(--green-700);
  color: var(--green-50);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 40px);
}
.hours-panel__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-300);
}
.hours-panel__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-top: 12px;
  margin-bottom: 24px;
}
.hours-table { display: flex; flex-direction: column; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hours-row:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.hours-row__day { color: #c7e8d8; }
.hours-social {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 26px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-md);
  padding: 13px 18px;
  color: #fff;
  font-weight: 600;
  transition: background .18s;
}
.hours-social:hover { background: rgba(255,255,255,.2); }
.hours-social__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.map-panel {
  flex: 2 1 420px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}
.map-embed {
  position: relative;
  flex: 1;
  min-height: 360px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border-img);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.map-embed__link {
  position: absolute;
  left: 16px;
  bottom: 16px;
}

/* --- Footer ------------------------------------------------ */
.site-footer {
  background: var(--green-900);
  color: #bcdccb;
}
.footer-inner { padding-block: clamp(48px, 6vw, 72px) 36px; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
}
.footer-brand { max-width: 330px; }
.footer-logo { display: flex; align-items: center; }
.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  padding: 7px 10px;
  background: rgba(255,255,255,.92);
  border-radius: 8px;
}
.footer-tagline { font-size: 14.5px; line-height: 1.65; color: #9cc6b1; margin-top: 18px; }
.footer-nav-group { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-nav__heading {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 16px;
}
.footer-nav__list { display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.footer-nav__link { transition: color .15s; }
.footer-nav__link:hover { color: #fff; }
.footer-address { color: #9cc6b1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13.5px;
  color: #7fa792;
}
