:root {
  --bg: #131313;
  --bg-soft: #1c1b1b;
  --panel: #20201f;
  --panel-2: #2a2a2a;
  --text: #e5e2e1;
  --muted: #b4acab;
  --muted-2: #8f8584;
  --border: rgba(255,255,255,.08);
  --accent: #dc3545;
  --accent-soft: #ffb3b2;
  --gold: #ffdf9e;
  --max: 1200px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.2) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.15) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.1) 0 1px, transparent 1px);
  background-size: 12px 12px, 14px 14px, 10px 10px;
  z-index: 2;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-bar,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-bar { min-height: 78px; }
.brand,
.footer-brand {
  font: italic 700 1.5rem/1 "Newsreader", serif;
  letter-spacing: -0.03em;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}


.main-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.main-nav a,
.footer-nav a,
.footer-copy {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-2);
}
.main-nav a:first-child { color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: .25rem; }
.main-nav a:hover,
.footer-nav a:hover { color: var(--gold); }

.button {
  display: inline-block;
  padding: .9rem 1.3rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.button-primary {
  background: var(--accent);
  color: #fff;
}
.button-primary:hover { filter: brightness(1.08); }

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent 35%, rgba(19,19,19,.45));
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: grayscale(100%);
}
.hero-grid,
.heritage-grid,
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
}
.hero-grid { grid-template-columns: 2fr 1fr; align-items: end; }
.hero-copy h1,
.section h2,
.contact-title {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -0.04em;
}
.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  max-width: 12ch;
}
.hero-copy h1 span,
.heritage-copy h2 span,
.contact-title { font-style: italic;   color: rgb(220 53 69); }
.eyebrow,
.label,
.card-meta,
.community-line,
.info-row h3,
.heritage-note {
  font-family: "Space Grotesk", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .22em;

}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .8rem;
}
.lead {
  margin: 0 0 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 300;
}
.hours-card strong { font: italic 700 1.4rem/1.1 "Newsreader", serif; }
.label { color: var(--gold); display: block; font-size: .65rem; margin-bottom: .35rem; }

.section { padding: 5rem 0; }
.section-alt { background: var(--bg-soft); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section h2,
.contact-title { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.section-intro {
  max-width: 34rem;
  color: var(--muted-2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}


@media (max-width: 640px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  padding: 2.25rem;
  background: var(--bg);
  border-right: 1px solid var(--border);
  transition: background .25s ease;
}
.service-card:last-child { border-right: 0; }
.service-card-mid { background: var(--panel); }
.service-card:hover { background: #393939; }
.service-icon,
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.service-icon svg,
.info-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
  color: #ffdf9e;
}
.service-card h3 {
  margin: 0 0 .8rem;
  font: italic 700 2rem/1.1 "Newsreader", serif;
}
.service-card p { color: var(--muted); margin: 0; }
.card-meta {
  margin-top: 2rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: .62rem;
  color: var(--muted-2) !important;
}

.heritage-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.heritage-image-wrap { position: relative; }
.heritage-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--panel-2);
  filter: grayscale(100%) brightness(.92) contrast(1.15);
}
.years-badge {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  width: 10rem;
  min-height: 10rem;
  padding: 1rem;
  background: rgba(19,19,19,.7);
  border: 1px solid rgba(255,223,158,.3);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.years-badge strong {
  display: block;
  color: var(--gold);
  font: 700 3.25rem/1 "Newsreader", serif;
}
.years-badge span {
  font: 700 .55rem/1.4 "Space Grotesk", Arial, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.quote-block {
  border-left: 4px solid var(--border);
  padding-left: 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-style: italic;
}
.heritage-note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: .72rem;
  font-style: normal;
}

.contact-grid { grid-template-columns: 5fr 7fr; margin-bottom: 3rem; }
.info-stack { display: grid; gap: 2rem; }
.info-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.info-icon {
  color: var(--accent-soft);
  font-size: 1.8rem;
  line-height: 1;
}
.info-row h3 {
  margin: 0 0 .5rem;
  color: var(--text);
  font-size: .7rem;
}
.info-row p,
.hours-list { margin: 0; color: var(--muted); }
.hours-list { padding: 0; list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .15rem 0;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.contact-aside blockquote {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-style: italic;
  font-size: 1.1rem;
}
.community-line {
  color: var(--gold);
  font-size: .68rem;
}
.community-line::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  margin-right: .9rem;
  vertical-align: middle;
  background: var(--gold);
}

.map-panel {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}
.map-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
  filter: grayscale(100%);
}
.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 1.25rem;
  transform: translate(-50%, -50%);
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(220,53,69,.2);
}
.map-label {
  position: absolute;
  left: 50%;
  top: calc(50% + 2rem);
  transform: translateX(-50%);
  padding: .8rem 1rem;
  background: rgba(19,19,19,.92);
  border: 1px solid var(--border);
  white-space: nowrap;
  font: 700 .62rem/1.2 "Space Grotesk", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.map-button {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
}

.site-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-copy { margin: .65rem 0 0; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero-grid,
  .heritage-grid,
  .contact-grid,
  .section-heading,
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: 0; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: 0; }
  .years-badge {
    left: .75rem;
    bottom: .75rem;
    width: 8rem;
    min-height: 8rem;
  }
}

@media (max-width: 640px) {
  .nav-bar,
  .footer-row { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 6rem; }
  .lead,
  .contact-aside blockquote,
  .quote-block { padding-left: 1rem; }
  .map-label {
    max-width: calc(100% - 2rem);
    white-space: normal;
    text-align: center;
  }
  .map-button {
    left: 1rem;
    right: auto;
    bottom: 1rem;
  }
}

.map-section {
  padding: 60px 20px;
  text-align: center;
}

.map-section h2 {
  margin-bottom: 20px;
}

.map-panel {
  position: relative;

  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.map-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1);
}

.map-label {
  position: absolute;
  left: 16px;
  bottom: 72px;
  z-index: 2;
  background: rgba(19, 19, 19, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
  white-space: nowrap;
}

.map-button {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  font-size: 0.68rem;
  padding: 12px 16px;
  white-space: nowrap;
}



.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(19, 19, 19, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  height: 36px;   /* mobile */
  width: auto;
}


.topbar-cta {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 10px 14px;
  font-size: 12px;
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .topbar {
    padding: 16px 32px;
    gap: 24px;
  }

  .site-logo img {
    height: 48px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 24px;
  }

  .topbar-cta {
    padding: 12px 20px;
    font-size: 13px;
  }
}