:root {
  --red: #c80f2e;
  --red-dark: #8f0a21;
  --yellow: #ffd12f;
  --ink: #241f21;
  --muted: #70686b;
  --line: #eadfe2;
  --paper: #fffaf7;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(36, 31, 33, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 223, 226, 0.86);
  backdrop-filter: blur(14px);
}

.site-header.has-shadow {
  box-shadow: 0 10px 30px rgba(36, 31, 33, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--red);
  background: var(--yellow);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
  border-color: var(--yellow);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--red);
}

.header-action:hover,
.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.button.map {
  color: var(--red);
  border-color: var(--red);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 15, 16, 0.78) 0%, rgba(25, 15, 16, 0.48) 42%, rgba(25, 15, 16, 0.12) 100%),
    linear-gradient(0deg, rgba(25, 15, 16, 0.74) 0%, rgba(25, 15, 16, 0.03) 50%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 9vw, 92px) clamp(18px, 6vw, 76px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

.eyebrow.light {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(18px, 2.2vw, 23px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--red);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
}

.trust-strip span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.about-section,
.contact-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  align-items: center;
}

.section-copy,
.contact-copy,
.section-title {
  max-width: 780px;
}

.section-copy p,
.contact-copy p,
.category-card p {
  color: var(--muted);
  font-size: 17px;
}

.about-photo img {
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.categories-section {
  background: var(--white);
}

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

.category-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: center;
  padding: clamp(56px, 8vw, 90px) clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--red);
}

.feature-copy h2 {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-list span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  min-height: 230px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--line);
  cursor: pointer;
  overflow: hidden;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
}

.contact-section {
  background: var(--white);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 35px rgba(36, 31, 33, 0.08);
  font-style: normal;
}

.contact-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-card a {
  color: var(--red);
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: var(--white);
  background: var(--ink);
}

.site-footer div,
.site-footer strong,
.site-footer span,
.site-footer small {
  display: block;
}

.site-footer span,
.site-footer small,
.footer-links a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gallery-modal {
  width: min(1080px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.gallery-modal::backdrop {
  background: rgba(10, 8, 9, 0.78);
}

.gallery-modal img {
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  background: var(--ink);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .header-action {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .main-nav.is-open a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .about-section,
  .contact-section,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 34px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .trust-strip,
  .category-grid,
  .feature-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: auto;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}
