:root {
  --black: #030504;
  --green-deep: #06130f;
  --green: #0c2c22;
  --green-soft: #143d31;
  --panel: rgba(8, 22, 17, 0.9);
  --gold: #c99a3e;
  --gold-light: #f4d37c;
  --cream: #fff7e8;
  --muted: #c8bba4;
  --line: rgba(244, 211, 124, 0.27);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 8%, rgba(18, 92, 67, 0.42), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(201, 154, 62, 0.18), transparent 25rem),
    linear-gradient(135deg, #020302 0%, var(--green-deep) 42%, #020302 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 211, 124, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 211, 124, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body.is-lightbox-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(3, 5, 4, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  max-width: calc(100% - 70px);
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 0 28px rgba(201, 154, 62, 0.24);
}

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

.brand strong {
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.site-nav a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  gap: clamp(34px, 5.5vw, 86px);
  align-items: center;
  padding: clamp(42px, 6vw, 88px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  max-width: 930px;
  animation: rise-in 700ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  color: var(--cream);
  font-size: clamp(3rem, 8.4vw, 7.35rem);
  line-height: 0.87;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(2.1rem, 4.8vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 1.22rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-text strong {
  color: var(--cream);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 7px;
  font-weight: 950;
}

.button.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  box-shadow: 0 14px 42px rgba(201, 154, 62, 0.22);
}

.button.ghost {
  color: var(--gold-light);
  background: rgba(6, 19, 15, 0.72);
}

.hero-facts {
  display: grid;
  grid-template-columns: 0.75fr 0.85fr 1.65fr;
  gap: 1px;
  max-width: 1000px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
}

.hero-facts span {
  padding: 16px;
  background: rgba(6, 19, 15, 0.86);
  color: var(--cream);
  font-weight: 850;
}

.hero-board {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  isolation: isolate;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(20, 61, 49, 0.72), rgba(6, 19, 15, 0.84)),
    var(--green-deep);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  animation: float-in 850ms ease both;
}

.hero-board-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-board-compact img {
  aspect-ratio: 3 / 4;
}

.hero-image-button {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.hero-image-button picture,
.image-open-button picture,
.price-image-button picture {
  display: block;
  width: 100%;
}

.image-open-button {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.hero-board img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(244, 211, 124, 0.18);
  border-radius: 12px;
  filter: saturate(0.96) brightness(0.9);
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease, z-index 0s;
}

.hero-image-button:hover img,
.hero-image-button:focus-visible img {
  z-index: 4;
  transform: scale(1.03);
  filter: saturate(1.12) brightness(1);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.52);
}

.statement,
.section,
.price-section,
.gallery,
.visit,
.contact,
.seo-local {
  padding: clamp(56px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.statement {
  display: block;
  background: linear-gradient(135deg, rgba(3, 5, 4, 0.96), rgba(12, 44, 34, 0.86));
  border-block: 1px solid var(--line);
}

.statement > div {
  max-width: 1080px;
}

.seo-local {
  background: rgba(3, 5, 4, 0.72);
  border-bottom: 1px solid var(--line);
}

.seo-local p:last-child {
  max-width: 960px;
  color: var(--muted);
  font-size: 1.08rem;
}

.statement img,
.gallery-strip {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.statement p:last-child,
.price-intro p,
.visit p,
.contact p,
.service-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading,
.price-intro {
  max-width: 880px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 154, 62, 0.18), transparent 12rem),
    linear-gradient(160deg, rgba(20, 61, 49, 0.96), rgba(4, 8, 6, 0.98));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
  transform: translateY(22px) scale(0.98);
  opacity: 0;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(244, 211, 124, 0.58);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.38);
}

.service-card:first-child {
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 211, 124, 0.26), transparent 14rem),
    linear-gradient(160deg, rgba(17, 76, 57, 0.98), rgba(4, 8, 6, 0.98));
}

.services.is-visible .service-card {
  animation: card-pop 620ms cubic-bezier(0.2, 0.84, 0.18, 1) forwards;
}

.services.is-visible .service-card:nth-child(2) {
  animation-delay: 110ms;
}

.services.is-visible .service-card:nth-child(3) {
  animation-delay: 220ms;
}

.service-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.28rem, 2.3vw, 1.7rem);
  line-height: 1.08;
}

.service-card p {
  max-width: 38rem;
}

.service-image {
  width: min(100%, 520px);
  height: 620px;
  object-fit: cover;
  object-position: center 78%;
  border: 1px solid rgba(244, 211, 124, 0.28);
  border-radius: 10px;
  filter: saturate(0.98) brightness(0.94);
  transition: transform 240ms ease, filter 240ms ease, box-shadow 240ms ease;
}

.service-image-button {
  max-width: 520px;
  margin-top: auto;
}

.service-image-button:hover .service-image,
.service-image-button:focus-visible .service-image {
  transform: scale(1.02);
  filter: saturate(1.06) brightness(1.02);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.42);
}

.price-section {
  background:
    radial-gradient(circle at 80% 25%, rgba(201, 154, 62, 0.15), transparent 24rem),
    linear-gradient(180deg, rgba(6, 19, 15, 0.28), rgba(3, 5, 4, 0.92));
}

.price-layout-single {
  display: grid;
  place-items: center;
}

.bonus-card,
.opening-card,
address {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.price-flyer {
  width: min(100%, 820px);
  padding: clamp(16px, 3vw, 24px);
  transform: translateY(42px) scale(0.96) rotate(-1.5deg);
  opacity: 0;
}

.price-flyer.is-visible {
  animation: flyer-fly-in 850ms cubic-bezier(0.2, 0.84, 0.18, 1) forwards;
}

.bonus-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 6px;
  font-weight: 950;
  text-transform: uppercase;
}

.bonus-card p {
  color: var(--cream);
  font-size: 1.12rem;
  font-weight: 850;
}

.bonus-card img {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.price-image-button {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.price-image-button img {
  width: 100%;
  transition: transform 220ms ease, filter 220ms ease;
}

.price-image-button:hover img,
.price-image-button:focus-visible img {
  transform: scale(1.01);
  filter: brightness(1.08);
}

.price-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  background: rgba(1, 2, 1, 0.94);
  backdrop-filter: blur(10px);
}

.price-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
  background: rgba(1, 2, 1, 0.94);
  backdrop-filter: blur(10px);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox-frame {
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.image-lightbox-frame img {
  width: auto;
  max-width: min(100%, 1280px);
  max-height: 82svh;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  justify-self: end;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.lightbox-scroll {
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lightbox-scroll img {
  width: min(100%, 900px);
  max-width: none;
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.gallery {
  background: linear-gradient(135deg, #020302, #081b14);
  border-block: 1px solid var(--line);
}

.gallery-strip {
  max-height: 760px;
  object-fit: cover;
}

.gallery-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 10px;
  overflow: visible;
  background: rgba(6, 19, 15, 0.92);
}

.gallery-image-button {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-strip-grid img {
  width: 100%;
  height: clamp(220px, 30vw, 520px);
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.98) brightness(0.93);
  transition: transform 260ms ease, filter 260ms ease, box-shadow 260ms ease;
}

.gallery-image-button:hover img,
.gallery-image-button:focus-visible img {
  z-index: 2;
  transform: scale(1.05);
  filter: saturate(1.08) brightness(1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.68);
}

.visit,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.opening-card,
address {
  padding: 24px;
}

.opening-card p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
  color: var(--cream);
}

.opening-card span {
  color: var(--gold-light);
  font-weight: 950;
  text-align: right;
}

address {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--cream);
  font-size: 1.2rem;
}

address a {
  color: var(--gold-light);
  font-weight: 950;
}

.social-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
}

.social-card {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 211, 124, 0.24), transparent 9rem),
    linear-gradient(135deg, rgba(20, 61, 49, 0.98), rgba(4, 8, 6, 0.98));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  transform: translateY(24px);
  opacity: 0;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -25%;
  width: 54%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 247, 232, 0.16), transparent);
  rotate: 18deg;
  translate: -130% 0;
  transition: translate 620ms ease;
  z-index: -1;
}

.social-card::after {
  content: "↗";
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-weight: 950;
  transition: transform 260ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(244, 211, 124, 0.64);
  transform: translateY(-6px);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.42);
}

.social-card:hover::before,
.social-card:focus-visible::before {
  translate: 310% 0;
}

.social-card:hover::after,
.social-card:focus-visible::after {
  transform: rotate(8deg) scale(1.08);
}

.social-card-instagram {
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 211, 124, 0.28), transparent 9rem),
    radial-gradient(circle at 86% 16%, rgba(91, 36, 92, 0.34), transparent 13rem),
    linear-gradient(135deg, rgba(20, 61, 49, 0.98), rgba(4, 8, 6, 0.98));
}

.social-card-review {
  background:
    radial-gradient(circle at 12% 12%, rgba(244, 211, 124, 0.3), transparent 9rem),
    radial-gradient(circle at 84% 18%, rgba(21, 108, 76, 0.42), transparent 13rem),
    linear-gradient(135deg, rgba(8, 28, 22, 0.98), rgba(4, 8, 6, 0.98));
}

.social-card-kicker {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-card strong {
  max-width: calc(100% - 56px);
  color: var(--cream);
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.02;
}

.social-card span:last-child {
  max-width: 34rem;
  color: var(--muted);
  font-weight: 750;
}

.contact.is-visible .social-card {
  animation: social-rise 720ms cubic-bezier(0.2, 0.84, 0.18, 1) forwards;
}

.contact.is-visible .social-card:nth-child(2) {
  animation-delay: 130ms;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #010201;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.footer-credit {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
  margin-left: 14px;
  color: rgba(216, 205, 186, 0.74);
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-credit::before {
  content: ">";
  color: var(--gold-light);
  font-weight: 950;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  color: var(--gold-light);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 78px) clamp(18px, 5vw, 36px);
}

.legal-page h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.legal-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.legal-panel a {
  color: var(--gold-light);
  font-weight: 850;
}

[data-reveal] {
  transform: translateY(34px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes rise-in {
  from {
    transform: translateY(24px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float-in {
  from {
    transform: translateX(28px) scale(0.96);
    opacity: 0;
  }

  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes image-breathe {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes flyer-fly-in {
  0% {
    transform: translateY(70px) scale(0.92) rotate(-4deg);
    opacity: 0;
  }

  65% {
    transform: translateY(-8px) scale(1.015) rotate(1deg);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes card-pop {
  0% {
    transform: translateY(28px) scale(0.96);
    opacity: 0;
  }

  70% {
    transform: translateY(-5px) scale(1.012);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes social-rise {
  0% {
    transform: translateY(28px) scale(0.97);
    opacity: 0;
  }

  70% {
    transform: translateY(-4px) scale(1.01);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (min-width: 981px) {
  .hero {
    width: min(100%, 1640px);
    min-height: auto;
    margin: 0 auto;
    grid-template-columns: minmax(520px, 0.9fr) minmax(620px, 0.98fr);
    gap: clamp(46px, 4.6vw, 78px);
    align-items: center;
    padding: clamp(52px, 7vh, 82px) clamp(56px, 5vw, 96px) clamp(66px, 8vh, 98px);
    overflow: visible;
  }

  .hero-copy {
    max-width: 740px;
  }

  h1 {
    max-width: 740px;
    font-size: clamp(4rem, 4.8vw, 5.65rem);
    line-height: 0.94;
  }

  .hero-text {
    max-width: 720px;
    font-size: clamp(1.08rem, 1.34vw, 1.28rem);
  }

  .hero-board {
    max-width: 800px;
    justify-self: end;
    gap: 12px;
    padding: 14px;
  }

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

  .hero-board-compact img,
  .hero-board img {
    aspect-ratio: 16 / 10;
  }

  .hero-facts {
    max-width: 760px;
    grid-template-columns: 0.82fr 1.05fr 1.85fr;
  }

  .hero-facts span {
    padding: 15px 17px;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(430px, 0.86fr) minmax(520px, 1fr);
    gap: 34px;
    padding-inline: 50px;
  }

  h1 {
    font-size: clamp(3.35rem, 4.6vw, 4.5rem);
  }

  .hero-text {
    font-size: 1.06rem;
  }

  .hero-board {
    max-width: 640px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--green-deep);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .statement,
  .visit,
  .contact {
    grid-template-columns: 1fr;
  }

  .social-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: auto;
    padding: 28px clamp(16px, 5vw, 34px) 56px;
    overflow: visible;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-board {
    order: -1;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-board-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-strip-grid img {
    height: 300px;
  }

  .service-card {
    min-height: 0;
    gap: 8px;
  }

  .service-image {
    width: 100%;
    height: 560px;
    margin-top: 18px;
  }
}

@media (max-width: 980px) and (orientation: landscape) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 22px;
    padding: 20px clamp(18px, 4vw, 34px) 34px;
  }

  .hero-board {
    order: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }

  .hero-board-compact img,
  .hero-board img {
    aspect-ratio: 16 / 10;
  }

  h1 {
    font-size: clamp(2.3rem, 7vw, 4.4rem);
    line-height: 0.94;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    margin: 18px 0;
  }

  .hero-facts span {
    padding: 12px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.35rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: 1;
  }

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

  .eyebrow,
  .section-kicker {
    letter-spacing: 0.1em;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-board,
  .hero-board-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
  }

  .hero-board-compact img,
  .hero-board img {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .hero-image-button:hover img,
  .hero-image-button:focus-visible img {
    transform: none;
    box-shadow: none;
  }

  .gallery-strip-grid img {
    height: 250px;
  }

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

  .lightbox-scroll img {
    width: min(165vw, 900px);
  }

  .opening-card p {
    display: grid;
    gap: 2px;
  }

  .opening-card span {
    text-align: left;
  }

  .service-image {
    height: 430px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

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

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

  .hero {
    padding: 22px 14px 46px;
  }

  h1 {
    font-size: clamp(2.05rem, 12vw, 2.8rem);
  }

  .hero-actions {
    margin: 24px 0;
  }

  .hero-facts span {
    padding: 14px;
    overflow-wrap: anywhere;
  }
}

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