:root {
  --ink: #151716;
  --muted: #626b66;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --soft: #f0f5ee;
  --line: #dde3dd;
  --green: #2f6a44;
  --green-dark: #10291c;
  --gold: #efbd3f;
  --gold-soft: #fff1bd;
  --clay: #b84b32;
  --shadow: 0 24px 70px rgba(25, 31, 27, 0.14);
  --shadow-tight: 0 14px 34px rgba(25, 31, 27, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf6 0, var(--paper) 360px),
    var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 246, 0.92);
  border-bottom: 1px solid rgba(239, 189, 63, 0.24);
  box-shadow: 0 8px 28px rgba(25, 31, 27, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-dark);
  background: var(--gold-soft);
}

.header-phone {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 154px;
  min-height: 52px;
  padding: 8px 14px;
  border: 1px solid rgba(239, 189, 63, 0.78);
  border-radius: var(--radius);
  background: #111513;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(17, 21, 19, 0.24), 0 0 0 4px rgba(239, 189, 63, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-phone:hover,
.header-phone:focus-visible,
.header-phone.is-copied {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: #050706;
  box-shadow: 0 16px 38px rgba(17, 21, 19, 0.3), 0 0 0 3px rgba(216, 173, 72, 0.16);
}

.header-phone__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.header-phone strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(239, 189, 63, 0.14), transparent 28%),
    linear-gradient(145deg, #050505 0%, #151515 52%, #252525 100%);
}

.hero__media {
  position: relative;
  min-height: 540px;
  background: #080808;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, rgba(5, 5, 5, 0.62)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.24));
  pointer-events: none;
}

.hero__media picture,
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center 40%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(36px, 5vw, 68px) clamp(44px, 7vw, 92px) clamp(36px, 5vw, 68px);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(5, 5, 5, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.hero__content::before {
  content: "";
  width: 76px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(239, 189, 63, 0.13);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 5.6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero__content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.52;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero__trust,
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.hero__trust a,
.hero__trust span,
.hero__chips span {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.hero__trust a {
  border-color: rgba(239, 189, 63, 0.42);
  color: var(--gold);
}

.hero__chips span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  appearance: none;
  -webkit-appearance: none;
  font-weight: 850;
  text-decoration: none;
  text-align: center;
  overflow-wrap: anywhere;
  box-shadow: var(--shadow-tight);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(25, 31, 27, 0.18);
}

.button--primary {
  background: linear-gradient(180deg, #ffd96c 0%, var(--gold) 100%);
  color: #17160f;
  border-color: rgba(132, 88, 16, 0.18);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
  border-top: 4px solid var(--gold);
}

.quick-strip div {
  padding: 22px clamp(18px, 3.5vw, 38px);
  background: var(--panel);
}

.quick-strip div:first-child {
  background: var(--green-dark);
  color: #fff;
}

.quick-strip div:first-child span {
  color: rgba(255, 255, 255, 0.72);
}

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

.quick-strip span {
  color: var(--muted);
}

.trust-strip strong {
  color: var(--green-dark);
}

.trust-strip div:first-child strong {
  color: var(--gold);
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  padding: clamp(42px, 6vw, 68px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(47, 106, 68, 0.08), transparent 42%),
    #fffdf6;
  border-bottom: 1px solid var(--line);
}

.detail-band__intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
}

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

.detail-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(47, 106, 68, 0.13);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 26px rgba(25, 31, 27, 0.06);
}

.detail-grid strong,
.detail-grid span {
  display: block;
}

.detail-grid strong {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.detail-grid span {
  color: var(--muted);
}

.section {
  padding: clamp(48px, 7vw, 86px) clamp(20px, 5vw, 72px);
}

.section__heading {
  margin-bottom: 26px;
}

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

.service-card,
.work-card {
  border: 1px solid rgba(47, 106, 68, 0.14);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(25, 31, 27, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 189, 63, 0.54);
  box-shadow: 0 24px 52px rgba(25, 31, 27, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.service-card div {
  border-top: 4px solid var(--gold);
  padding: 22px;
}

.service-card p {
  color: var(--muted);
}

.section--soft {
  background:
    linear-gradient(90deg, rgba(239, 189, 63, 0.18), transparent 32%),
    var(--soft);
}

#services {
  background:
    linear-gradient(180deg, rgba(16, 41, 28, 0.04), transparent 220px),
    #fff;
}

#work {
  background:
    linear-gradient(135deg, rgba(47, 106, 68, 0.1), transparent 42%),
    #fff9e8;
}

.reviews-callout {
  max-width: 820px;
  margin-bottom: 0;
  padding: clamp(24px, 5vw, 42px);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-tight);
}

.reviews-callout p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

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

.work-card {
  position: relative;
  min-height: 360px;
}

.work-card__button {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.work-card:hover img,
.work-card__button:focus-visible img {
  transform: scale(1.035);
}

.work-card__button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.work-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  pointer-events: none;
  padding: 8px 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(239, 189, 63, 0.36);
  background: rgba(255, 255, 255, 0.94);
  font-weight: 850;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 40px);
}

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

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 13, 10, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox__figure img {
  width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  object-fit: contain;
  background: #0b110d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.44);
}

.lightbox__close {
  justify-self: end;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--gold);
  color: #17160f;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-align: center;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  place-items: center;
  padding: 22px;
}

.quote-modal.is-open {
  display: grid;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(255, 255, 255, 0.32)),
    rgba(5, 5, 5, 0.48);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.quote-modal__panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 44px);
  overflow: hidden;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, #050505 0%, #181818 42%, #f5f5f5 100%);
  color: #fff;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58);
}

.quote-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.quote-modal__close:hover,
.quote-modal__close:focus-visible {
  background: #fff;
  color: #050505;
}

.quote-modal__intro {
  max-width: 620px;
  margin-bottom: 16px;
  padding-right: 82px;
}

.quote-modal__intro h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
}

.quote-modal__intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.quote-form {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: clamp(14px, 2.5vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 44px rgba(0, 0, 0, 0.18);
}

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

.quote-field {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
}

.quote-form__trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form input {
  min-height: 52px;
  padding: 12px 14px;
}

.quote-form textarea {
  min-height: 108px;
  padding: 14px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(36, 44, 39, 0.48);
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.74);
  background: #fff;
  outline: 3px solid rgba(255, 255, 255, 0.28);
  outline-offset: 2px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.quote-form__actions {
  display: grid;
  gap: 10px;
}

.quote-form__actions .button {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
  border-color: #fff;
  background: #fff;
  color: #050505;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.quote-form__actions .button:hover,
.quote-form__actions .button:focus-visible {
  background: #050505;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.quote-form__status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
  text-align: center;
}

.quote-form__status.is-success {
  color: #fff;
}

.quote-form__status.is-error {
  color: #fff;
}

.quote-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  background: linear-gradient(180deg, #15251b, #0d1610);
  color: rgba(255, 255, 255, 0.76);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 8vw, 82px) clamp(20px, 5vw, 72px);
}

.brand--footer {
  color: #fff;
}

.brand--footer .brand__logo {
  padding: 4px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.footer-brand p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h2,
.footer-contact h2 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  text-decoration: none;
}

.footer-column a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact a:first-of-type {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.footer-socials {
  display: inline-flex;
  justify-content: center;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(216, 173, 72, 0.14);
  color: #fff;
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials [data-social-platform="facebook"] svg,
.footer-socials [data-social-platform="youtube"] svg,
.footer-socials [data-social-platform="tiktok"] svg {
  fill: currentColor;
  stroke: none;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1060px) {
  .site-header {
    gap: 14px;
  }

  .site-nav a {
    padding-inline: 9px;
  }

  .header-phone {
    min-width: 136px;
    padding-inline: 12px;
  }

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

  .hero__media {
    height: 320px;
    min-height: 0;
  }

  .hero__content {
    padding-block: 34px;
  }

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

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

  .detail-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    min-height: 68px;
  }

  .brand__name {
    max-width: 170px;
    line-height: 1.1;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .header-phone {
    display: none;
  }

  .header-phone__label {
    font-size: 0.62rem;
  }

  .header-phone strong {
    font-size: 0.88rem;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px) scale(0.96);
    transform-origin: top center;
    transition: opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 260ms;
    visibility: hidden;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
    visibility: visible;
  }

  .site-nav a {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 190ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, color 180ms ease;
  }

  .site-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav.is-open a:nth-child(2) {
    transition-delay: 45ms;
  }

  .site-nav.is-open a:nth-child(3) {
    transition-delay: 90ms;
  }

  .site-nav.is-open a:nth-child(4) {
    transition-delay: 135ms;
  }

  .site-nav.is-open a:nth-child(5) {
    transition-delay: 180ms;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    height: 190px;
    min-height: 0;
  }

  .hero__media picture {
    display: block;
    height: 100%;
  }

  .hero__media img {
    object-position: center 30%;
  }

  .hero__content {
    padding: 18px 20px 26px;
  }

  .hero__content::before {
    width: 58px;
    height: 5px;
    margin-bottom: 14px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(2.12rem, 9.8vw, 2.78rem);
    line-height: 0.98;
  }

  .hero__content p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero__actions {
    display: none;
  }

  .hero__trust,
  .hero__chips {
    gap: 7px;
    margin-top: 10px;
  }

  .hero__trust a,
  .hero__trust span,
  .hero__chips span {
    min-height: 30px;
    padding: 6px 8px;
    font-size: 0.78rem;
    line-height: 1.15;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(239, 189, 63, 0.5);
    background: rgba(17, 21, 19, 0.96);
    box-shadow: 0 -16px 40px rgba(17, 21, 19, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(239, 189, 63, 0.48);
    border-radius: var(--radius);
    background: #050706;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .mobile-cta a:nth-child(2) {
    background: #181d1a;
  }

  .mobile-cta a:last-child {
    border-color: rgba(132, 88, 16, 0.18);
    background: linear-gradient(180deg, #ffd96c 0%, var(--gold) 100%);
    color: #17160f;
    box-shadow: 0 10px 26px rgba(239, 189, 63, 0.28), 0 0 0 3px rgba(239, 189, 63, 0.12);
  }

  .quick-strip div {
    padding: 14px;
  }

  .detail-band,
  .section {
    padding-block: 38px;
  }

  .quote-modal {
    align-items: end;
    padding: 12px;
  }

  .quote-modal__panel {
    max-height: calc(100dvh - 24px);
    padding: 16px;
  }

  .quote-modal__intro {
    margin-bottom: 14px;
    padding-right: 0;
  }

  .quote-modal__intro h2 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .quote-form {
    gap: 12px;
    padding: 14px;
  }

  .quote-form input {
    min-height: 50px;
  }

  .quote-form textarea {
    min-height: 94px;
  }

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

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

  .quick-strip div {
    min-height: 112px;
  }

  .quick-strip strong {
    font-size: 0.95rem;
    line-height: 1.18;
  }

  .quick-strip span {
    margin-top: 4px;
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    display: grid;
    grid-template-columns: minmax(88px, 32%) minmax(0, 1fr);
    min-height: 124px;
  }

  .service-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  .service-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px;
    border-top: 0;
    border-left: 4px solid var(--gold);
  }

  .service-card h3 {
    margin-bottom: 6px;
    font-size: 1.02rem;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

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

  .work-card,
  .work-card img {
    min-height: 180px;
  }

  .work-card span {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 7px 8px;
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .quote-form__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .work-card,
  .work-card img {
    min-height: 220px;
  }

  .button {
    width: 100%;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom > span:last-child {
    justify-self: center;
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    max-width: 132px;
    font-size: 0.94rem;
  }

  .header-phone {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    align-items: center;
    width: 100%;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav a {
    transition: none;
  }
}
