* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: #101615;
  background:
    linear-gradient(180deg, rgba(226, 68, 63, .09) 0 2px, transparent 2px 76px),
    #f5f6f2;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
h1, h2, h3, p { margin-top: 0; }

:focus-visible {
  outline: 3px solid #e2443f;
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(14px, 4vw, 54px);
  color: #f6f8f5;
  background: #101615;
  border-bottom: 1px solid rgba(226, 68, 63, .36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #101615;
  background: #e2443f;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 950;
}

nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 4vw, 42px);
  color: rgba(246, 248, 245, .75);
  font-size: .88rem;
  font-weight: 850;
}

nav a,
.header-action,
.button,
.mobile-actions a {
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

nav a:hover,
nav a:focus-visible { color: #e2443f; }

.header-action,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  font-weight: 950;
}

.header-action {
  justify-self: end;
  min-width: 112px;
  color: #101615;
  background: #e2443f;
}

.button {
  min-height: 50px;
  padding: 0 18px;
}

.button:hover,
.header-action:hover,
.mobile-actions a:hover { transform: translateY(-2px); }

.primary { color: #101615; background: #e2443f; border-color: #e2443f; }
.secondary { color: #f6f8f5; background: rgba(246, 248, 245, .08); border-color: rgba(246, 248, 245, .44); }
.hero .secondary {
  color: #101615;
  background: rgba(255, 255, 255, .42);
  border-color: rgba(16, 22, 21, .18);
}

.hero {
  min-height: clamp(560px, 78vh, 720px);
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 660px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 7vh, 70px) 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: #e2443f;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 560px;
  margin-bottom: 16px;
  color: #101615;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3.15vw, 3rem);
  font-weight: 950;
}

.lede,
.section-copy p,
.owner-section p,
.visit-copy p {
  color: rgba(16, 22, 21, .72);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.photo-board {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(130px, 1fr));
  gap: 8px;
  height: 390px;
  min-height: 0;
  padding: 8px;
  background: #101615;
  border: 1px solid rgba(16, 22, 21, .2);
  box-shadow: 0 18px 44px rgba(16, 22, 21, .16);
}

.tile {
  margin: 0;
  overflow: hidden;
  border: 0;
  background: #d8dfdc;
  box-shadow: none;
}

.tile-large { grid-row: span 1; }
.tile img { transition: transform .35s ease, filter .35s ease; }
.tile:hover img,
.tile:focus-within img { transform: scale(1.035); filter: contrast(1.04) saturate(1.03); }

.tile-large img { object-position: 50% 48%; }
.tile:nth-child(2) img { object-position: 50% 35%; }
.tile:nth-child(3) img { object-position: 48% 45%; }
.tile:nth-child(4) img { object-position: 48% 28%; }
.tile:nth-child(5) img { object-position: 48% 55%; }
.tile:nth-child(6) img { object-position: 50% 36%; }

.status-strip {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #101615;
  color: #f6f8f5;
  border: 1px solid rgba(16, 22, 21, .18);
}

.status-strip div {
  padding: 18px clamp(12px, 2.4vw, 28px);
  border-right: 1px solid rgba(246, 248, 245, .16);
}

.status-strip div:last-child { border-right: 0; }
.status-strip span { display: block; color: #e2443f; font-size: .74rem; font-weight: 950; text-transform: uppercase; }
.status-strip strong { font-size: clamp(.92rem, 1.4vw, 1.08rem); }

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) 0;
}

.cut-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.service-list article {
  min-height: 190px;
  padding: 24px;
  color: #f6f8f5;
  background: #101615;
  border-bottom: 5px solid #e2443f;
}

.service-list span {
  display: block;
  margin-bottom: 42px;
  color: #e2443f;
  font-weight: 950;
  text-transform: uppercase;
}

.service-list p { color: rgba(246, 248, 245, .76); }

.gallery-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 78px) 0;
}

.gallery-head {
  max-width: 660px;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-grid figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #d8dfdc;
}

.gallery-grid img {
  transition: transform .35s ease, filter .35s ease;
}

.gallery-grid figure:hover img,
.gallery-grid figure:focus-within img {
  transform: scale(1.04);
  filter: contrast(1.05);
}

.gallery-grid figure:nth-child(1) img { object-position: 50% 36%; }
.gallery-grid figure:nth-child(2) img { object-position: 54% 43%; }
.gallery-grid figure:nth-child(3) img { object-position: 50% 34%; }
.gallery-grid figure:nth-child(4) img { object-position: 50% 36%; }
.gallery-grid figure:nth-child(5) img { object-position: 50% 40%; }
.gallery-grid figure:nth-child(6) img { object-position: 54% 42%; }

.owner-section {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  border-top: 1px solid rgba(16, 22, 21, .16);
  border-bottom: 1px solid rgba(16, 22, 21, .16);
}

.visit-section {
  width: min(1120px, calc(100% - 32px));
  margin: clamp(28px, 6vw, 64px) auto clamp(48px, 8vw, 80px);
  display: grid;
  grid-template-columns: minmax(220px, .62fr) minmax(0, 1fr);
  background: #101615;
  color: #f6f8f5;
}

.map-panel {
  min-height: 320px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  color: rgba(246, 248, 245, .72);
  background:
    linear-gradient(90deg, transparent 49%, rgba(226, 68, 63, .74) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(226, 68, 63, .74) 49% 51%, transparent 51%),
    #1b2624;
  font-weight: 950;
  text-transform: uppercase;
}

.visit-copy { padding: clamp(26px, 5vw, 54px); }
.visit-copy .eyebrow { color: #e2443f; }
.visit-copy p { color: rgba(246, 248, 245, .78); }

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  padding: 30px 16px 90px;
  color: rgba(16, 22, 21, .68);
  border-top: 1px solid rgba(16, 22, 21, .12);
}

.mobile-actions { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .cut-reel {
    animation: board-slide 8s ease-in-out infinite alternate;
    transform-origin: center;
  }

  .cut-reel:hover { animation-play-state: paused; }

  @keyframes board-slide {
    from { transform: translateX(0); }
    to { transform: translateX(-8px); }
  }
}

@media (max-width: 860px) {
  nav { display: none; }
  .hero,
  .cut-section,
  .owner-section,
  .visit-section { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-top: 26px; gap: 22px; }
  .photo-board {
    height: 228px;
    grid-template-rows: repeat(2, 1fr);
    padding: 7px;
  }
  .service-list { grid-template-columns: 1fr; }
  .service-list article { min-height: 0; }
  .status-strip { grid-template-columns: 1fr; }
  .status-strip div { border-right: 0; border-bottom: 1px solid rgba(246, 248, 245, .14); }
  .status-strip div:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .map-panel { min-height: 180px; }
}

@media (max-width: 560px) {
  html { scroll-padding-bottom: 76px; }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 58px;
    padding: 9px 12px;
  }
  .brand { font-size: .88rem; }
  .brand-mark { width: 34px; height: 34px; }
  .header-action { min-width: 86px; min-height: 38px; font-size: .8rem; }
  .hero { width: min(100% - 24px, 520px); padding: 20px 0 28px; }
  h1 { font-size: clamp(1.9rem, 12vw, 2.58rem); margin-bottom: 10px; }
  .lede { font-size: .96rem; margin-bottom: 0; }
  .hero-actions { margin-top: 16px; gap: 8px; }
  .button { width: 100%; min-height: 44px; padding: 0 12px; font-size: .86rem; }
  .photo-board {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 76px);
    height: 172px;
    gap: 6px;
    padding: 6px;
  }
  .tile-large { grid-row: span 1; }
  .section,
  .gallery-section { padding: 38px 0; }
  .mobile-actions {
    position: static;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 7px 10px;
    background: #101615;
    border-bottom: 1px solid rgba(246, 248, 245, .2);
  }
  .mobile-actions a {
    min-height: 42px;
    display: grid;
    place-items: center;
    color: #101615;
    background: #e2443f;
    font-size: .76rem;
    font-weight: 950;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0s !important;
  }
}
