:root {
  --red: #d31120;
  --red-dark: #7f0710;
  --red-deep: #52060b;
  --gold: #b58a34;
  --ink: #231f20;
  --muted: #6f6867;
  --line: #ece5e0;
  --paper: #faf7f2;
  --soft: #f5eee7;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(35, 31, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(82, 6, 11, 0.96);
  box-shadow: 0 12px 32px rgba(35, 31, 32, 0.18);
  padding-block: 12px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

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

.brand strong {
  font-size: 1.1rem;
}

.brand small {
  margin-top: -4px;
  opacity: 0.84;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a:not(.nav-action)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
  content: "";
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
}

.nav-action {
  background: var(--white);
  color: var(--red-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(35, 31, 32, 0.82), rgba(35, 31, 32, 0.44) 54%, rgba(35, 31, 32, 0.14)),
    linear-gradient(0deg, rgba(82, 6, 11, 0.62), rgba(35, 31, 32, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 128px clamp(20px, 5vw, 72px) 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-content p:not(.eyebrow) {
  width: min(620px, 100%);
  margin-bottom: 30px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(141, 7, 16, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

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

.trust-strip div {
  min-height: 116px;
  padding: 26px clamp(20px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

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

.trust-strip strong {
  color: var(--red-dark);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  background: var(--paper);
}

.about-text {
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.about-text p:last-child,
.section-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--red-dark);
}

.photo-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 420px;
}

.photo-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.categories {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(300px, 1.25fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.section-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.category-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(35, 31, 32, 0.05);
}

.category-grid span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}

.category-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.gallery .section-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.gallery-grid button {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--line);
  cursor: zoom-in;
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(5) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.04);
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, var(--red-deep), var(--red-dark));
  color: var(--white);
}

.contact-copy {
  max-width: 760px;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel > a,
.map-card {
  display: grid;
  gap: 4px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 160ms ease, transform 160ms ease;
}

.contact-panel > a:hover,
.contact-panel > a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-panel > a span,
.map-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-panel > a strong,
.map-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.map-card {
  gap: 12px;
  padding: 22px;
}

.map-card iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
}

.map-link {
  display: inline-flex;
  justify-self: start;
  padding: 0 0 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--white);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

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

.footer span {
  color: rgba(255, 255, 255, 0.72);
}

.footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

dialog {
  width: min(680px, calc(100vw - 32px));
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(35, 31, 32, 0.68);
}

.privacy-modal {
  padding: 34px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--red-dark);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.image-modal {
  width: min(1120px, calc(100vw - 28px));
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

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

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: var(--red-deep);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-action {
    margin-top: 6px;
  }

  .about,
  .categories,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 32px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(35, 31, 32, 0.82), rgba(35, 31, 32, 0.22)),
      linear-gradient(90deg, rgba(82, 6, 11, 0.58), rgba(35, 31, 32, 0.14));
  }

  .hero-content {
    padding: 116px 20px 52px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

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

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

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .photo-band img {
    min-height: 300px;
  }

  .gallery-grid {
    grid-auto-rows: minmax(220px, 60vw);
  }

  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(5) {
    grid-column: span 1;
  }

  .footer {
    display: grid;
  }
}
