:root {
  --red: #b30000;
  --red-dark: #7f0000;
  --black: #111111;
  --white: #ffffff;
  --muted: #666666;
  --line: #e8e8e8;
  --soft: #f6f6f6;
  --container: 1180px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(20px, 5vw, 58px);
  color: var(--white);
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(17, 17, 17, 0.94);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  min-width: max-content;
}

.brand-name {
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  font-weight: 800;
  color: var(--white);
}

.brand-name span {
  color: var(--red);
}

.brand-sub {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100vh;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-butcher-counter.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 30%, rgba(0, 0, 0, 0.16) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  margin-left: clamp(20px, 8vw, 120px);
  padding-top: 68px;
}

.origin-line {
  position: relative;
  margin: 0 0 28px;
  padding-left: 44px;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 800;
  text-transform: uppercase;
}

.origin-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 3px;
  background: var(--red);
  transform: translateY(-50%);
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 9.6rem);
  line-height: 0.88;
  font-weight: 800;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: clamp(1.75rem, 4vw, 3.9rem);
  line-height: 1.04;
  font-weight: 800;
}

.hero-copy {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--white);
  color: var(--black);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 8px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}

.section {
  padding: clamp(76px, 9vw, 124px) 0;
}

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

.section-heading {
  text-align: center;
  margin: 0 auto 54px;
}

.section-heading p,
.section-label {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 4rem);
  line-height: 1.06;
  font-weight: 800;
}

.trust {
  background: var(--white);
}

.trust-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.trust-item,
.partner-card {
  min-height: 260px;
  padding: 20px 42px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child,
.partner-card:last-child {
  border-right: 0;
}

.icon-wrap,
.partner-icon {
  display: inline-flex;
  width: 92px;
  height: 92px;
  margin-bottom: 26px;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border: 3px solid currentColor;
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.icon-wrap svg,
.partner-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item:hover .icon-wrap,
.partner-card:hover .partner-icon {
  color: var(--white);
  background: var(--red);
  transform: translateY(-5px);
}

.trust-item h3,
.partner-card h3 {
  margin: 0 0 12px;
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-item p,
.partner-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  min-height: 620px;
  color: var(--white);
  background: var(--black);
}

.about-copy {
  align-self: center;
  width: min(560px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.about-copy p:not(.section-label) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.85;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.about-points span {
  position: relative;
  padding-top: 18px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.about-points span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--red);
}

.about-image {
  min-height: 620px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners {
  background: var(--white);
}

.partner-card {
  background: var(--white);
}

.gallery-section {
  padding: clamp(76px, 9vw, 118px) 0;
  background: var(--soft);
}

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

.gallery-tile {
  min-height: 240px;
  border: 0;
  background-image: url("assets/gallery-grid.jpg");
  background-repeat: no-repeat;
  background-size: 200% 300%;
  cursor: pointer;
  filter: saturate(0.96) contrast(1.03);
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

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

.gallery-tile:nth-child(2),
.gallery-tile:nth-child(3),
.gallery-tile:nth-child(4),
.gallery-tile:nth-child(5) {
  grid-column: span 2;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  position: relative;
  z-index: 1;
  transform: translateY(-6px);
  filter: saturate(1.08) contrast(1.08);
  box-shadow: var(--shadow);
  outline: 0;
}

.pos-1 { background-position: 0 0; }
.pos-2 { background-position: 100% 0; }
.pos-3 { background-position: 0 50%; }
.pos-4 { background-position: 100% 50%; }
.pos-5 { background-position: 0 100%; }
.pos-6 { background-position: 100% 100%; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  background: var(--black);
  color: var(--white);
}

.contact-panel {
  width: min(540px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 9vw, 114px) 0;
}

.contact address {
  display: grid;
  gap: 18px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.65;
}

.contact address a,
.contact address span {
  position: relative;
  padding-left: 28px;
}

.contact address a::before,
.contact address span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
}

.contact address a:hover {
  color: var(--white);
}

.opening-hours {
  margin: -8px 0 34px;
  color: rgba(255, 255, 255, 0.82);
}

.opening-hours strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.opening-hours dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  max-width: 330px;
}

.opening-hours dt,
.opening-hours dd {
  margin: 0;
}

.opening-hours dt {
  color: rgba(255, 255, 255, 0.64);
}

.opening-hours dd {
  color: var(--white);
  font-weight: 700;
}

.map-wrap {
  min-height: 560px;
  background: var(--white);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.12) contrast(1.02);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 38px clamp(20px, 5vw, 58px);
  background: #050505;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--red);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-image {
  width: min(980px, 92vw);
  aspect-ratio: 3 / 2;
  background-image: url("assets/gallery-grid.jpg");
  background-repeat: no-repeat;
  background-size: 200% 300%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 14px); opacity: 1; }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 22px;
    background: rgba(17, 17, 17, 0.98);
    font-size: 1.2rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle,
  .brand {
    position: relative;
    z-index: 2;
  }

  .hero {
    min-height: 720px;
    height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72));
  }

  .trust-grid,
  .partner-grid,
  .about,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .partner-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 32px 20px;
  }

  .trust-item:last-child,
  .partner-card:last-child {
    border-bottom: 0;
  }

  .about-image {
    min-height: 420px;
  }

  .contact {
    gap: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 18px 20px;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .brand-sub {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 90px;
  }

  .origin-line {
    padding-left: 38px;
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 4rem);
  }

  .hero-lead {
    width: min(330px, 100%);
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    line-height: 1.08;
  }

  .hero-copy {
    width: min(330px, 100%);
    font-size: 0.98rem;
  }

  .hero-actions {
    width: min(330px, 100%);
  }

  .scroll-cue {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tile,
  .gallery-tile:nth-child(n) {
    grid-column: auto;
    min-height: 230px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .site-footer {
    gap: 22px;
  }
}

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