/* Monrovia Cleaners — graphic overhaul: warm paper, forest, clay */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --paper: #faf7f0;
  --paper-2: #f0e8db;
  --surface: #fffcf7;
  --ink: #14110f;
  --muted: #5c5650;
  --forest: #1f4f9e;
  --forest-deep: #123974;
  /* Accent (blue) */
  --clay: #2c6cc9;
  --clay-soft: rgba(44, 108, 201, 0.18);
  --line: rgba(20, 17, 15, 0.1);
  --line-strong: rgba(20, 17, 15, 0.18);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --space-section: clamp(3.25rem, 9vw, 6rem);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(20, 17, 15, 0.06);
  --shadow-lift: 0 32px 64px rgba(20, 17, 15, 0.1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-inner {
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.skip-link {
  position: absolute;
  top: -120px;
  left: 16px;
  z-index: 100000;
  padding: 12px 18px;
  background: var(--forest);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 16px;
}

a {
  color: var(--forest);
}

a:hover {
  color: var(--clay);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0 0 0.9rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1140px, 100% - 40px);
  margin-inline: auto;
}

@media (max-width: 540px) {
  .container {
    width: min(1140px, 100% - 28px);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1140px, 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
  position: relative;
}

@media (max-width: 540px) {
  .header-inner {
    padding: 0.5rem 0;
    width: min(1140px, 100% - 28px);
  }

  .logo-img {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    padding: 6px;
  }

  .nav-toggle-bar {
    width: 20px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 8px 20px rgba(20, 17, 15, 0.10));
}

.site-nav .nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem 2rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(360px, calc(100vw - 40px));
  max-width: calc(100vw - 24px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-lift);
  display: none;
  box-sizing: border-box;
  overflow: hidden;
}

.site-nav.is-open {
  display: block;
}

.site-nav .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.site-nav li {
  border-bottom: 1px solid var(--line);
}

.site-nav li:last-child {
  border-bottom: none;
}

.site-nav a {
  display: block;
  padding: 0.85rem 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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);
}

@media (max-width: 520px) {
  .site-nav {
    width: calc(100vw - 40px);
  }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 8vw, 5rem);
  background: var(--paper-2);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
}

.hero-pattern {
  position: absolute;
  top: 24px;
  bottom: 24px;
  right: 0;
  width: min(56vw, 620px);
  opacity: 1;
  pointer-events: none;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(20, 17, 15, 0.12);
  border: 1px solid rgba(20, 17, 15, 0.08);
}

.hero-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.92) contrast(0.98);
}

.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(240, 232, 219, 0.92) 0%, rgba(240, 232, 219, 0.55) 38%, rgba(240, 232, 219, 0.22) 58%, rgba(240, 232, 219, 0.08) 72%, rgba(240, 232, 219, 0) 100%),
    radial-gradient(circle at 70% 25%, rgba(44, 108, 201, 0.12) 0%, transparent 55%);
  mask-image: radial-gradient(circle at 65% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1140px, 100% - 40px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

@media (max-width: 960px) {
  .hero-pattern {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: min(1140px, calc(100% - 40px));
    margin-inline: auto;
    height: 220px;
    opacity: 1;
    margin-bottom: 1.25rem;
  }

  .hero-photo {
    object-position: center 22%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .hero-pattern {
    width: min(1140px, calc(100% - 28px));
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 3px var(--clay-soft);
}

.tag-on-dark {
  color: rgba(250, 247, 240, 0.55);
}

.tag-on-dark .tag-dot {
  background: var(--clay);
  box-shadow: 0 0 0 3px rgba(44, 108, 201, 0.35);
}

.hero-title {
  font-size: clamp(2.65rem, 7vw, 4.1rem);
  font-weight: 600;
  max-width: 12ch;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.title-accent {
  display: inline;
  background: linear-gradient(120deg, var(--clay-soft), transparent 65%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-lead {
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-solid {
  background: var(--ink);
  color: var(--paper);
}

.btn-solid:hover {
  background: var(--forest);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-line {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-line:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.btn-on-dark {
  background: var(--clay);
  color: var(--paper);
  border: none;
}

.btn-on-dark:hover {
  background: #245eb2;
  color: var(--paper);
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.hero-pills li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-pills span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.15rem;
}

.hero-card-wrap {
  position: relative;
}

.hero-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: var(--shadow-lift);
}

.hero-card-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 0.5rem;
}

.hero-card-stat {
  font-size: 0.98rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.hero-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-card-tags span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
}

.mono {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Marquee — full viewport width so blue always reaches both edges */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--forest);
  color: var(--paper);
  overflow: hidden;
  padding: 0.85rem 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.marquee-track span {
  white-space: nowrap;
  opacity: 0.85;
}

.marquee-track span + span::before {
  content: "◆";
  margin-right: 2rem;
  opacity: 0.35;
  font-size: 0.55rem;
}

@keyframes marquee {
  to {
    transform: translateX(-25%);
  }
}

/* Sections */
.section {
  padding: var(--space-section) 0;
}

.section-top {
  margin-bottom: 2rem;
  max-width: 520px;
}

.section-top-inline {
  max-width: none;
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.title-num {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clay);
  letter-spacing: 0.02em;
}

.section-deck {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
  max-width: 42ch;
}

/* Bento services */
.services {
  background: var(--paper);
  padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.pricing {
  background: var(--paper);
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: var(--shadow);
}

.price-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.9rem;
}

.price-table {
  display: block;
  border-top: 1px solid var(--line);
  column-count: 2;
  column-gap: 1.75rem;
}

.price-table .row {
  break-inside: avoid;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.46rem 0;
  border-bottom: 1px dashed rgba(20, 17, 15, 0.14);
  font-size: 0.92rem;
}

.price-table .row span:first-child {
  color: var(--ink);
  font-weight: 600;
}

.price-table .row span:last-child {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.price-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    align-items: stretch;
  }

  .price-card {
    padding: 0.75rem 0.55rem 0.65rem;
    border-radius: var(--radius-sm);
    min-width: 0;
  }

  .price-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.45rem;
    line-height: 1.2;
  }

  .price-table {
    column-count: 1;
    column-gap: 0;
    border-top-color: rgba(20, 17, 15, 0.08);
  }

  .price-table .row {
    font-size: 0.68rem;
    padding: 0.32rem 0;
    gap: 0.35rem;
    border-bottom-style: solid;
    border-bottom-color: rgba(20, 17, 15, 0.06);
  }

  .price-table .row span:last-child {
    flex-shrink: 0;
  }

  .price-note {
    font-size: 0.7rem;
    margin-top: 0.55rem;
    line-height: 1.35;
  }
}

@media (max-width: 360px) {
  .price-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .price-card {
    padding: 1rem 0.85rem;
  }

  .price-table .row {
    font-size: 0.8rem;
  }
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.bento-cell {
  grid-column: span 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.4rem;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.bento-wide {
  grid-column: span 4;
  min-height: auto;
}

.bento-accent {
  background: linear-gradient(160deg, var(--forest-deep), var(--forest));
  border-color: transparent;
  color: var(--paper);
}

.bento-accent h3,
.bento-accent p {
  color: rgba(250, 247, 240, 0.92);
}

.bento-accent .bento-label {
  color: rgba(255, 255, 255, 0.72);
}

.bento-accent .bento-icon {
  color: var(--clay);
}

/* Body text on accent card must stay white (overrides .bento-cell p) */
.bento-cell.bento-accent p {
  color: rgba(255, 255, 255, 0.98);
}

.bento-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.bento-cell h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.bento-cell p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  flex-grow: 1;
}

.bento-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: var(--forest);
  opacity: 0.35;
}

@media (max-width: 900px) {
  .bento-cell,
  .bento-wide {
    grid-column: span 6;
    min-height: 0;
  }
}

/* Process */
.process {
  background: var(--paper-2);
  clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--space-section) + 12px);
}

.process-wrap .section-top-inline {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.process-banner {
  margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  line-height: 0;
  aspect-ratio: 2.2 / 1;
  max-height: min(340px, 42vw);
}

.process-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 0;
}

@media (max-width: 900px) {
  .process-banner {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .process-banner img {
    min-height: 200px;
    object-position: center 0;
  }
}

@media (max-width: 540px) {
  .process-banner {
    aspect-ratio: 5 / 3;
  }

  .process-banner img {
    min-height: 180px;
    max-height: 240px;
    object-position: center 0;
  }
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 340px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 960px) {
  .process-layout {
    grid-template-columns: 1fr;
  }

  .quote-card {
    position: static;
    top: auto;
  }
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--clay), var(--forest));
  opacity: 0.35;
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1.25rem;
  padding: 0 0 1.75rem;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--forest);
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.quote-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.8;
  color: var(--clay-soft);
  margin-bottom: 0.25rem;
}

.quote-card blockquote {
  margin: 0;
  padding: 0;
}

.quote-card blockquote p {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 1rem;
}

.quote-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* Visit band */
.visit {
  background: var(--forest-deep);
  color: var(--paper);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.visit::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle, rgba(44, 108, 201, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.visit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 400px);
  gap: 2rem;
  align-items: stretch;
}

.visit-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  color: var(--paper);
  margin: 0 0 1rem;
}

.visit-address {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0.75rem;
}

.visit-address strong {
  color: var(--paper);
}

.visit-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.visit-phone {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  text-decoration: none;
}

.visit-phone:hover {
  color: #fff;
  text-decoration: underline;
}

.visit-contact-sep {
  color: rgba(255, 255, 255, 0.45);
}

.visit-email {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  text-decoration: none;
}

.visit-email:hover {
  color: #fff;
  text-decoration: underline;
}

.visit-hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.visit-hours th {
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.55rem 1rem 0.55rem 0;
  border-bottom: 1px solid rgba(250, 247, 240, 0.12);
}

.visit-hours td {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(250, 247, 240, 0.12);
  color: var(--paper);
}

.visit-panel {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(250, 247, 240, 0.12);
  min-height: 260px;
  background: rgba(0, 0, 0, 0.2);
}

.map-embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

@media (max-width: 880px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .map-embed {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }
}

/* Contact */
.contact {
  background: var(--paper);
}

.contact-stack {
  max-width: 720px;
  margin-inline: auto;
}

.contact-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2rem;
  max-width: 36ch;
}

.contact-head .section-deck {
  max-width: none;
}

.contact-jumbo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-jumbo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: clamp(1.25rem, 4vw, 1.75rem) 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}

.contact-jumbo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(44, 108, 201, 0.35);
}

.contact-jumbo-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-jumbo-value {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 3.8vw, 1.65rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
  word-break: break-word;
}

.contact-jumbo-email .contact-jumbo-value {
  font-size: clamp(1rem, 3.2vw, 1.35rem);
}

.contact-stack-address {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.contact-stack-address a {
  color: var(--muted);
  text-decoration: none;
}

.contact-stack-address a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.contact-testimonial {
  margin: 2.5rem 0 0;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-testimonial blockquote {
  margin: 0;
  padding: 0;
}

.contact-testimonial blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.22rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

.contact-testimonial-by {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  font-style: normal;
}

@media (max-width: 560px) {
  .contact-jumbo-row {
    grid-template-columns: 1fr;
  }

  .contact-jumbo-value {
    font-size: clamp(1.35rem, 6vw, 1.6rem);
  }

  .contact-jumbo-email .contact-jumbo-value {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
  }
}

/* Footer */
.site-footer {
  padding: 2.25rem 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.footer-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--ink);
}
