/* ========================================
   ASHFORD & STONE — SHARED STYLES
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --background: hsl(40, 18%, 96%);
  --foreground: hsl(0, 0%, 16%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(215, 39%, 20%);
  --primary-foreground: hsl(40, 18%, 96%);
  --secondary: hsl(30, 20%, 81%);
  --muted: hsl(30, 15%, 90%);
  --muted-foreground: hsl(215, 15%, 40%);
  --accent: hsl(28, 52%, 46%);
  --accent-foreground: hsl(40, 18%, 96%);
  --border: hsl(30, 15%, 85%);
  --stone: hsl(30, 20%, 81%);
  --stone-foreground: hsl(215, 39%, 20%);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
select, input, textarea { font-family: var(--font-body); }

/* --- Layout --- */
.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section-padding { padding-block: 7.5rem; }
@media (max-width: 768px) { .section-padding { padding-block: 4rem; } }

/* --- Typography --- */
.heading-display {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.heading-section {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
}
.heading-subsection {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 500;
}
.label-overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent);
}
.text-body { font-size: 1rem; line-height: 1.75; }
.text-body-lg { font-size: 1.125rem; line-height: 1.75; }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

/* --- Divider --- */
.copper-divider {
  width: 4rem;
  height: 2px;
  background-color: var(--accent);
  margin-inline: auto;
}
.copper-divider.left { margin-inline: 0; }

/* --- Section Heading --- */
.section-heading { margin-bottom: 3rem; }
.section-heading.center { text-align: center; }
.section-heading .overline { margin-bottom: 0.75rem; }
.section-heading h2 { margin-bottom: 1rem; }
.section-heading .subtitle {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  max-width: 48ch;
  line-height: 1.7;
}
.section-heading.center .subtitle { margin-inline: auto; }
.section-heading .copper-divider { margin-top: 1.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-copper {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-copper:hover { background: hsl(28, 52%, 38%); transform: translateY(-1px); }

.btn-copper-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-copper-outline:hover { background: var(--accent); color: var(--accent-foreground); }

.btn-hero-primary {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}
.btn-hero-primary:hover { background: hsl(28, 52%, 38%); }

.btn-hero-secondary {
  background: transparent;
  color: var(--background);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-lg { padding: 1rem 2.5rem; font-size: 0.9rem; }

/* --- Header --- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: hsla(40, 18%, 96%, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  padding-block: 0.5rem;
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.25rem;
  transition: padding 0.3s ease;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--primary);
}
.logo span { color: var(--accent); }

.desktop-nav { display: flex; align-items: center; gap: 2.5rem; }
@media (max-width: 1023px) { .desktop-nav { display: none; } }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 0.25rem;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

.header-cta { display: flex; align-items: center; gap: 1rem; }
@media (max-width: 1023px) { .header-cta { display: none; } }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  color: var(--primary);
}
@media (max-width: 1023px) { .mobile-menu-btn { display: flex; } }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--background);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--foreground);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); }

/* --- Footer --- */
footer { background: var(--primary); color: var(--primary-foreground); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 5rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 0.875rem;
  color: hsla(40, 18%, 96%, 0.65);
  line-height: 1.7;
}
.footer-col-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a, .footer-links span {
  font-size: 0.875rem;
  color: hsla(40, 18%, 96%, 0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--accent); }
.footer-contact-item a, .footer-contact-item p {
  font-size: 0.875rem;
  color: hsla(40, 18%, 96%, 0.65);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid hsla(40, 18%, 96%, 0.1);
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p, .footer-bottom span {
  font-size: 0.75rem;
  color: hsla(40, 18%, 96%, 0.4);
}
.footer-legal { display: flex; gap: 1.5rem; }

/* --- Page Hero --- */
.page-hero {
  background: var(--stone);
  padding-top: 8rem;
  padding-bottom: 4rem;
  min-height: 45vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .page-hero { padding-top: 10rem; padding-bottom: 5rem; }
}
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.breadcrumb a { color: var(--muted-foreground); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .current { color: var(--accent); }
.breadcrumb .sep { color: var(--muted-foreground); font-size: 0.75rem; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.page-hero .subtitle {
  font-size: 1.1rem;
  color: var(--muted-foreground);
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* --- Cards --- */
.service-card {
  background: var(--card);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.12);
}
.service-card .icon {
  width: 2rem; height: 2rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.7; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 1.5rem;
  transition: gap 0.2s;
}
.service-card .learn-more:hover { gap: 0.75rem; }

/* Reason card */
.reason-card { text-align: center; }
.reason-icon {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: hsla(28, 52%, 46%, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.reason-icon svg { width: 1.25rem; height: 1.25rem; color: var(--accent); }
.reason-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.reason-card p { font-size: 0.85rem; color: var(--muted-foreground); }

/* Project card */
.project-card { display: block; }
.project-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card .info { padding-top: 1rem; }
.project-card .category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.project-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  transition: color 0.2s;
}
.project-card:hover h4 { color: var(--accent); }

/* Testimonial card */
.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border: 1px solid var(--border);
}
.testimonial-card .quote-icon { color: hsla(28, 52%, 46%, 0.25); margin-bottom: 1rem; }
.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.testimonial-card .author { font-size: 0.85rem; font-weight: 600; }
.testimonial-card .location { font-size: 0.75rem; color: var(--muted-foreground); }

/* Cert card */
.cert-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--background);
  padding: 1rem;
  border: 1px solid var(--border);
}
.cert-card svg { flex-shrink: 0; color: var(--accent); }
.cert-card span { font-size: 0.875rem; }

/* Value card */
.value-card { text-align: center; }
.value-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: hsla(28, 52%, 46%, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-icon svg { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.value-card h4 { font-family: var(--font-heading); font-size: 1.3rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--muted-foreground); }

/* Team card */
.team-card { text-align: center; }
.team-avatar {
  width: 6rem; height: 6rem;
  border-radius: 50%;
  background: var(--stone);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.team-avatar svg { width: 2.5rem; height: 2.5rem; color: var(--muted-foreground); }
.team-card h4 { font-family: var(--font-heading); font-size: 1.5rem; }
.team-card .role { font-size: 0.85rem; color: var(--accent); font-weight: 500; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* --- Grids --- */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* --- Backgrounds --- */
.bg-card { background: var(--card); }
.bg-stone { background: var(--stone); }
.bg-primary { background: var(--primary); color: var(--primary-foreground); }

/* --- Service Detail (services page) --- */
.service-section { padding-block: 5rem; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.benefit-item svg { flex-shrink: 0; color: var(--accent); margin-top: 0.15rem; }
.benefit-item span { font-size: 0.875rem; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

.process-step { text-align: center; }
.step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: hsla(28, 52%, 46%, 0.25);
  display: block;
  margin-bottom: 0.5rem;
}
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.85rem; color: hsla(40, 18%, 96%, 0.55); }

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--muted-foreground);
  background: transparent;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  color: var(--accent-foreground);
  border-color: var(--accent);
}

.masonry { columns: 1; gap: 1.5rem; }
@media (min-width: 640px) { .masonry { columns: 2; } }
@media (min-width: 1024px) { .masonry { columns: 3; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  cursor: pointer;
  overflow: hidden;
}
.gallery-item .img-wrap { overflow: hidden; }
.gallery-item .img-wrap.r43 { aspect-ratio: 4/3; }
.gallery-item .img-wrap.r34 { aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .info { padding: 0.75rem 0 0.5rem; }
.gallery-item .category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}
.gallery-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  transition: color 0.2s;
}
.gallery-item:hover h4 { color: var(--accent); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  background: none; border: none;
  cursor: pointer;
}
.lightbox-close:hover { color: white; }

/* --- Contact --- */
.contact-form-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-input {
  width: 100%;
  height: 3rem;
  padding-inline: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--foreground);
  transition: border-color 0.2s;
  outline: none;
}
.contact-input:focus { border-color: var(--accent); }

select.contact-input { cursor: pointer; }

textarea.contact-input {
  height: auto;
  padding-block: 0.75rem;
  resize: none;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0; }
.form-group + .form-group { margin-top: 0; }
.form-fields { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-icon {
  width: 3rem; height: 3rem;
  background: hsla(28, 52%, 46%, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--accent); }
.contact-detail-label { font-size: 0.75rem; color: var(--muted-foreground); }
.contact-detail-val { font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.contact-detail a:hover .contact-detail-val { color: var(--accent); }

.hours-box {
  background: var(--card);
  padding: 2rem;
  border: 1px solid var(--border);
}
.hours-box h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.hours-box h4 svg { color: var(--accent); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding-block: 0.25rem; }
.hours-row.closed { color: var(--muted-foreground); }

.emergency-box {
  background: hsla(28, 52%, 46%, 0.05);
  padding: 1.5rem;
  border: 1px solid hsla(28, 52%, 46%, 0.2);
}
.emergency-box h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.emergency-box h4 svg { color: var(--accent); }
.emergency-box p { font-size: 0.875rem; color: var(--muted-foreground); }
.emergency-box a { color: var(--accent); font-weight: 500; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--stone);
  color: var(--stone-foreground);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-info-stack { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }

/* --- Animations --- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

.animate-fade-up { animation: fade-up 0.8s ease-out forwards; }
.animate-fade-up-d1 { animation: fade-up 0.8s ease-out 0.2s forwards; opacity: 0; }
.animate-fade-up-d2 { animation: fade-up 0.8s ease-out 0.4s forwards; opacity: 0; }
.animate-fade-in { animation: fade-in 0.5s ease-out forwards; }
.animate-scroll { animation: scroll-bounce 2s ease-in-out infinite; }

/* CTA section */
.cta-section { background: var(--primary); }
.cta-section .label-overline { color: var(--accent); }
.cta-section h2 { color: var(--primary-foreground); max-width: 24ch; margin-inline: auto; margin-bottom: 1.5rem; }
.cta-section p { color: hsla(40, 18%, 96%, 0.65); max-width: 44ch; margin-inline: auto; margin-bottom: 2.5rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Map */
.map-section { height: 400px; width: 100%; }
.map-section iframe { width: 100%; height: 100%; border: 0; display: block; }
