:root {
  --bg: #050505;
  --dark: #111111;
  --panel: #151515;
  --panel-strong: #1b1b1b;
  --text: #f5f2ed;
  --muted: #bbb4aa;
  --dim: #817b73;
  --line: rgba(245, 242, 237, 0.14);
  --line-strong: rgba(196, 122, 52, 0.46);
  --accent: #c47a34;
  --accent-light: #d4914e;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.52);
  --radius: 8px;
  --max: 1320px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 10%, rgba(196, 122, 52, 0.08), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #080808 44%, #050505 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body::selection {
  background: rgba(196, 122, 52, 0.72);
  color: #050505;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--bg);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  padding: 0 clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(245, 242, 237, 0.08);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.93);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 0;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong {
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: 1.16rem;
}

.brand small {
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.1rem, 2.5vw, 2.6rem);
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a,
.footer-nav a,
.header-phone {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.footer-nav a:hover,
.header-phone:hover {
  color: var(--accent-light);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.1rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone svg,
.button svg,
.mobile-action-bar svg,
.contact-card svg,
.feature-row svg,
.requirements-grid svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone svg {
  color: var(--accent);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(196, 122, 52, 0.62);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #d3934e, #a75f24);
  color: #120904;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(196, 122, 52, 0.18);
}

.nav-button:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header) + 3.5rem) clamp(1rem, 7vw, 7rem) 4rem;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22vh;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.83) 34%, rgba(5, 5, 5, 0.3) 72%, rgba(5, 5, 5, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.55) 0%, rgba(5, 5, 5, 0.08) 46%, #050505 100%);
}

.hero-media::after {
  background:
    radial-gradient(circle at 20% 42%, rgba(196, 122, 52, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.36));
}

.hero-content {
  width: min(100%, 760px);
  margin-top: 1rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent-light);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(4.2rem, 7.4vw, 7.9rem);
  max-width: 10.4ch;
}

h1 span {
  display: block;
}

h1 .accent {
  color: var(--accent);
  text-shadow: 0 0 32px rgba(196, 122, 52, 0.22);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.9vw, 5rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.hero-copy {
  width: min(100%, 650px);
  margin: 1rem 0 0;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.26rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.45rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, #d7944d, #a96228);
  color: #120904;
  box-shadow: 0 18px 36px rgba(196, 122, 52, 0.2);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(5, 5, 5, 0.5);
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(196, 122, 52, 0.1);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 2.4vw, 1.8rem);
  width: min(100%, 720px);
  margin-top: 1.85rem;
}

.feature-row article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.feature-row svg {
  color: rgba(245, 242, 237, 0.74);
}

.feature-row span {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(1rem, 4vw, 3.5rem);
}

.section-heading {
  width: min(100%, 830px);
  margin-bottom: 2.2rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p,
.about-copy p,
.area-content p,
.requirements-section .section-heading p,
.contact-inner p,
.price-card p,
.about-stats p,
.faq-list p,
.proof-strip p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card-featured {
  border-color: var(--line-strong);
}

.service-card img,
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.82) 42%, rgba(17, 17, 17, 0.24)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.82));
}

.service-content {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.service-number,
.service-price,
.price-card span,
.popular-badge {
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0.5rem 0 0.2rem;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  text-transform: uppercase;
}

.service-price {
  margin-bottom: 1rem;
}

.check-list {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  padding: 0;
  color: var(--text);
  list-style: none;
}

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

.check-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.94rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.5rem;
  height: 0.22rem;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.text-link:hover {
  background: var(--accent);
  color: #120904;
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 1rem;
  z-index: 2;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, #d7944d, #a96228);
  color: #120904;
  border-radius: 0 0 var(--radius) var(--radius);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-strip article {
  padding: 1.1rem 1.25rem;
  background: linear-gradient(180deg, #171717, #101010);
}

.proof-strip span {
  display: block;
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.proof-strip p {
  margin: 0.18rem 0 0;
  line-height: 1.35;
}

.pricing-section,
.requirements-section {
  border-top: 1px solid var(--line);
}

.pricing-grid,
.requirements-grid,
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.price-card,
.requirements-grid article,
.about-stats article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.price-card {
  min-height: 290px;
  padding: clamp(1.25rem, 2.6vw, 2rem);
}

.price-card-featured {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 88% 0%, rgba(196, 122, 52, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.price {
  margin: 1.2rem 0 0.9rem;
  color: var(--text);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
}

.price-note {
  color: var(--accent-light) !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pricing-notes article {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(196, 122, 52, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
  padding: clamp(1.25rem, 2.5vw, 1.8rem);
}

.pricing-notes h3 {
  margin-bottom: 0.5rem;
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.pricing-notes p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-section,
.area-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

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

.about-stats article {
  padding: 1.5rem;
}

.about-stats strong {
  color: var(--accent);
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin: 0.45rem 0 0.25rem;
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 250px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--dark);
}

.gallery-item-large {
  grid-row: span 2;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.82));
}

.gallery-item img {
  transition: transform 600ms ease;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.area-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.area-tags span {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.6rem 0.78rem;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.requirements-grid article {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.requirements-grid svg {
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 940px);
  margin: 0 auto;
}

.faq-list details {
  padding: 1.15rem 1.35rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0.8rem 0 0;
}

.contact-section {
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background:
    linear-gradient(90deg, rgba(196, 122, 52, 0.14), transparent 50%),
    linear-gradient(180deg, #101010, #070707);
  border-top: 1px solid var(--line);
}

.contact-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.contact-inner h2 {
  width: min(100%, 780px);
}

.contact-inner p {
  width: min(100%, 660px);
  font-size: 1.06rem;
}

.contact-actions {
  min-width: min(100%, 440px);
}

.contact-card {
  flex: 1 1 190px;
  display: grid;
  gap: 0.25rem;
  min-height: 150px;
  padding: 1.4rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.58);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(196, 122, 52, 0.12);
}

.contact-card svg {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--accent);
}

.contact-card span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--text);
  font-size: 1.05rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2.2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: #020202;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: Oswald, Impact, "Arial Narrow", sans-serif;
  text-transform: uppercase;
}

.footer-brand span,
.copyright {
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-weight: 800;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
  text-align: right;
}

.mobile-action-bar {
  display: none;
}

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

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: var(--header) 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    gap: 0;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(245, 242, 237, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    justify-self: end;
    margin-right: 3.55rem;
  }

  .header-phone {
    display: none;
  }

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

  .service-grid,
  .pricing-grid,
  .about-section,
  .area-section,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    width: min(100%, 520px);
  }

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

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: start;
  }

  .copyright {
    text-align: left;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 1rem;
    grid-template-columns: auto 1fr auto;
    gap: 0.6rem;
  }

  :root {
    --header: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

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

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

  .header-actions {
    display: none;
  }

  .menu-toggle {
    order: 0;
  }

  .hero {
    min-height: 94svh;
    padding: calc(var(--header) + 2.5rem) 1rem 3rem;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 58%, rgba(5, 5, 5, 0.5) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0.15) 48%, #050505 100%);
  }

  h1 {
    font-size: clamp(3.7rem, 17vw, 6rem);
  }

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

  .feature-row,
  .proof-strip,
  .pricing-grid,
  .requirements-grid,
  .gallery-grid,
  .check-list.columns {
    grid-template-columns: 1fr;
  }

  .feature-row {
    width: 100%;
    gap: 0.9rem;
  }

  .feature-row article {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(245, 242, 237, 0.1);
  }

  .section {
    padding-block: 4.25rem;
  }

  .service-card {
    min-height: 520px;
  }

  .service-overlay {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.72) 42%, rgba(17, 17, 17, 0.88)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.45), transparent);
  }

  .service-content {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

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

  .contact-actions {
    display: grid;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--line-strong);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.58);
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    gap: 0.25rem;
    min-height: 56px;
    background: rgba(5, 5, 5, 0.96);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .mobile-action-bar svg {
    color: var(--accent);
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

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

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