:root {
  --color-bg: #ffffff;
  --color-soft: #f7f5f3;
  --color-ink: #151515;
  --color-muted: #5e5e5e;
  --color-line: #ded8d4;
  --color-red: #c81712;
  --color-red-dark: #8f0f0b;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--color-ink);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
}

.site-nav a {
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--color-muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="true"] {
  background: #f1e9e7;
  color: var(--color-red-dark);
}

.section-band {
  background:
    linear-gradient(90deg, rgba(200, 23, 18, 0.08), transparent 44%),
    var(--color-bg);
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--color-line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 56px;
  padding: 72px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--color-red-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 4.8rem, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.8rem, 2.6rem, 3.15rem);
  line-height: 1.05;
  font-weight: 800;
}

.lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #333;
  font-size: 1.22rem;
}

.hero-copy,
.content-copy,
.section-heading,
.location-panel {
  min-width: 0;
}

.hero-mark {
  position: relative;
  justify-self: center;
  width: min(360px, 100%);
}

.hero-mark::before {
  content: "";
  position: absolute;
  inset: 15% 2% 8% 8%;
  z-index: -1;
  border: 2px solid rgba(200, 23, 18, 0.25);
  border-radius: 8px;
  transform: rotate(-3deg);
}

.hero-mark img {
  width: 100%;
  filter: drop-shadow(var(--shadow-soft));
}

.section {
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.section-muted {
  background: var(--color-soft);
  border-block: 1px solid var(--color-line);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 56px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7rem, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.content-copy p,
.section-heading p,
.location-note {
  color: var(--color-muted);
}

.content-copy p {
  margin: 0 0 18px;
}

.content-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin: 16px 0 0;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--color-red);
}

.service-item {
  min-height: 220px;
  padding: 28px 28px 30px 0;
  border-bottom: 1px solid var(--color-line);
}

.service-item + .service-item {
  padding-left: 28px;
  border-left: 1px solid var(--color-line);
}

.service-number {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--color-red-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-item h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-item p {
  max-width: 430px;
  margin: 0;
  color: var(--color-muted);
}

.photo-section {
  padding-top: 78px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.photo-grid figcaption {
  border-top: 3px solid var(--color-red);
  padding: 12px 14px 14px;
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.location-panel {
  border-left: 4px solid var(--color-red);
  padding: 4px 0 4px 26px;
}

.location-label {
  margin: 0 0 10px;
  color: var(--color-red-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

address {
  margin: 0;
  color: var(--color-ink);
  font-style: normal;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.32;
}

.location-note {
  margin: 18px 0 0;
}

.site-footer {
  border-top: 1px solid #1f1f1f;
  background: #111;
  color: #f6f6f6;
  padding: 30px 0;
}

.footer-inner {
  display: grid;
  gap: 6px;
}

.footer-inner p {
  margin: 0;
  color: #cfcfcf;
  font-size: 0.88rem;
}

.footer-inner strong {
  color: #fff;
}

@media (max-width: 780px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .header-inner {
    min-height: auto;
    padding: 10px 0 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.92rem;
  }

  .site-nav a {
    padding: 7px 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 0 34px;
  }

  .hero-mark {
    width: min(220px, 62vw);
    justify-self: center;
  }

  h1 {
    font-size: clamp(2.45rem, 2.45rem, 2.45rem);
  }

  h1 span {
    font-size: clamp(1.5rem, 1.5rem, 1.5rem);
  }

  .lead {
    font-size: 1.08rem;
    margin-top: 20px;
  }

  .section {
    padding: 44px 0 56px;
    scroll-margin-top: 122px;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .split,
  .service-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .photo-section {
    padding-top: 50px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .photo-grid img {
    aspect-ratio: 1.55;
  }

  .service-item,
  .service-item + .service-item {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }

  .service-number {
    margin-bottom: 18px;
  }

  .location-panel {
    padding-left: 18px;
  }
}

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