:root {
  --bg: #f7f3ee;
  --surface: #fffaf5;
  --surface-strong: #ffffff;
  --text: #211b17;
  --muted: #6b625c;
  --line: #ded1c6;
  --red: #c82815;
  --red-dark: #8f1b12;
  --green: #697263;
  --shadow: 0 16px 46px rgba(66, 38, 29, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(200, 40, 21, 0.05) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(105, 114, 99, 0.05) 1px, transparent 1px) 0 0 / 56px 56px;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(200, 40, 21, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 8px 10px 8px 18px;
  background: rgba(255, 250, 245, 0.9);
  border: 1px solid rgba(222, 209, 198, 0.82);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(33, 27, 23, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: 92px;
  min-height: 48px;
  align-items: center;
}

.brand img {
  width: 92px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  justify-self: start;
  padding: 0;
  background: transparent;
}

.nav a {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border-radius: 7px;
  background:
    linear-gradient(120deg, rgba(255, 250, 245, 0.88), rgba(200, 40, 21, 0.1)),
    rgba(255, 255, 255, 0.74);
  opacity: 0;
  transform: scaleX(0.72);
  transition: opacity 190ms ease, transform 190ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 190ms ease, transform 190ms ease;
}

.nav a:hover {
  color: var(--red-dark);
  transform: translateY(-1px);
}

.nav a:hover::before,
.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1) translateY(0);
}

.header-dropdown {
  position: relative;
  display: none;
  justify-self: end;
  --dropdown-width: 112px;
}

.header-dropdown summary {
  width: var(--dropdown-width);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 12px;
  border: 1px solid rgba(222, 209, 198, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.header-dropdown summary::-webkit-details-marker {
  display: none;
}

.header-dropdown summary::marker {
  content: "";
}

.header-dropdown summary:hover,
.header-dropdown summary:focus-visible,
.header-dropdown[open] summary {
  border-color: rgba(200, 40, 21, 0.24);
  background: #fffdf9;
  box-shadow: 0 10px 24px rgba(66, 38, 29, 0.08);
}

.header-dropdown svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.header-dropdown summary span {
  flex: 0 0 auto;
}

.header-dropdown[open] svg {
  transform: rotate(180deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  width: var(--dropdown-width);
  display: grid;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(222, 209, 198, 0.86);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.98);
  box-shadow: 0 18px 38px rgba(33, 27, 23, 0.14);
  backdrop-filter: blur(16px);
}

.nav-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(200, 40, 21, 0.08);
  color: var(--red-dark);
}

.hero {
  position: relative;
  min-height: 92dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #211b17;
}

.hero-media,
.hero-overlay {
  position: absolute;
}

.hero-media,
.hero-overlay {
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(33, 27, 23, 0.86) 0%, rgba(33, 27, 23, 0.62) 34%, rgba(33, 27, 23, 0.18) 68%),
    linear-gradient(0deg, rgba(33, 27, 23, 0.58), rgba(33, 27, 23, 0.04) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  min-width: 0;
  margin: 0 auto;
  padding: 148px 0 54px;
  color: #fffaf5;
}

.hero-heading {
  position: relative;
  width: min(760px, 100%);
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffded6;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: 82px;
}

h1 span,
h1 small {
  display: block;
}

h1 .nowrap {
  display: inline;
}

.nowrap {
  white-space: nowrap;
}

h1 small {
  max-width: 560px;
  margin-top: 8px;
  color: rgba(255, 250, 245, 0.88);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 26px;
  line-height: 1.14;
  font-weight: 700;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.lead {
  max-width: 680px;
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(255, 250, 245, 0.86);
}

.lead span {
  color: #ffded6;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead strong {
  color: #fffaf5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.04;
}

.lead em {
  color: rgba(255, 250, 245, 0.8);
  font-size: 20px;
  line-height: 1.35;
  font-style: normal;
}

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

.hero-actions {
  margin: 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  touch-action: manipulation;
}

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

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

.button-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  background: rgba(255, 250, 245, 0.9);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.46);
}

.button-secondary:hover {
  background: #fff;
  border-color: #fff;
}

.hero-award {
  position: absolute;
  top: 24px;
  left: 290px;
  width: 238px;
  height: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  filter: drop-shadow(0 16px 30px rgba(33, 27, 23, 0.2));
}

.hero-award iframe {
  width: 150px;
  height: 50px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  transform: scale(1.58);
  transform-origin: top left;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 245, 0.24);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.15);
  backdrop-filter: blur(12px);
}

.quick-facts div {
  min-height: 92px;
  padding: 18px;
  background: rgba(33, 27, 23, 0.34);
}

.quick-facts dt {
  margin-bottom: 6px;
  color: rgba(255, 250, 245, 0.62);
  font-size: 13px;
}

.quick-facts dd {
  margin: 0;
  font-weight: 700;
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 84px 0;
  scroll-margin-top: 104px;
}

.section-copy {
  max-width: 560px;
  margin-bottom: 32px;
}

.price-list,
.reviews-widget,
.map-widget {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.82);
}

.price-list {
  background: rgba(255, 250, 245, 0.92);
}

.price-item {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.price-item:last-child {
  border-bottom: 0;
}

.price-item:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-4px);
  border-color: rgba(200, 40, 21, 0.28);
  background: #fffdf9;
  box-shadow: 0 14px 34px rgba(66, 38, 29, 0.12);
}

.price-item:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid rgba(200, 40, 21, 0.42);
  outline-offset: -2px;
  background: #fffdf9;
}

.price-item h3 {
  margin-bottom: 7px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

.price-item p,
.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-item strong {
  min-width: 104px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}

.price-item-compact {
  background: var(--surface);
}

.works {
  width: 100%;
  max-width: none;
  padding: 48px 0 72px;
  overflow: hidden;
  color: var(--text);
}

.works .section-copy {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 18px;
}

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

.works h2 {
  color: var(--text);
}

.work-gallery {
  --card-w: clamp(150px, 19vw, 270px);
  --card-h: calc(var(--card-w) * 1.333);
  position: relative;
  width: min(calc(100% - 40px), 920px);
  height: clamp(340px, 40vw, 500px);
  margin: 0 auto;
  isolation: isolate;
  perspective: 1200px;
}

.work-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--card-w);
  height: var(--card-h);
  overflow: hidden;
  padding: 0;
  border: 3px solid rgba(255, 250, 245, 0.96);
  border-radius: 34px;
  background: var(--surface);
  cursor: pointer;
  box-shadow: 0 28px 46px rgba(66, 38, 29, 0.18);
  transform-origin: 50% 86%;
  transform: translate(var(--x), var(--y)) rotate(var(--rotate)) scale(var(--scale));
  transition:
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 300ms ease,
    box-shadow 300ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 44%, rgba(33, 27, 23, 0.18)),
    linear-gradient(90deg, rgba(255, 250, 245, 0.1), transparent 42%);
  opacity: 0.62;
  transition: opacity 300ms ease;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.02) brightness(0.9);
  transition:
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 300ms ease;
}

.work-card:nth-child(1) {
  --x: -158%;
  --y: -42%;
  --rotate: -18deg;
  --scale: 0.82;
  --hover-scale: 0.94;
  z-index: 1;
  filter: saturate(0.76) brightness(0.86);
}

.work-card:nth-child(2) {
  --x: -110%;
  --y: -52%;
  --rotate: -9deg;
  --scale: 0.9;
  --hover-scale: 1.02;
  z-index: 2;
  filter: saturate(0.9) brightness(0.92);
}

.work-card:nth-child(3) {
  --x: -62%;
  --y: -55%;
  --rotate: -1deg;
  --scale: 0.98;
  --hover-scale: 1.1;
  z-index: 3;
  filter: saturate(0.94) brightness(0.96);
}

.work-card:nth-child(4) {
  --x: -15%;
  --y: -52%;
  --rotate: 8deg;
  --scale: 1.04;
  --hover-scale: 1.16;
  z-index: 4;
  filter: none;
}

.work-card:nth-child(5) {
  --x: 28%;
  --y: -42%;
  --rotate: 17deg;
  --scale: 0.9;
  --hover-scale: 1.02;
  z-index: 2;
  filter: saturate(0.82) brightness(0.88);
}

.work-card:hover,
.work-card:focus-visible {
  z-index: 8;
  box-shadow: 0 36px 76px rgba(66, 38, 29, 0.26);
  filter: saturate(1.02) brightness(1);
  transform: translate(var(--x), var(--y)) rotate(var(--rotate)) scale(var(--hover-scale));
}

.work-card:hover::after,
.work-card:focus-visible::after {
  opacity: 0.2;
}

.work-card:hover img,
.work-card:focus-visible img {
  filter: saturate(1.04) contrast(1.02) brightness(1);
  transform: scale(1.035);
}

.trust {
  padding-top: 42px;
  padding-bottom: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(560px, 760px) minmax(360px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.reviews-widget,
.map-widget {
  position: relative;
  overflow: hidden;
  padding: 12px;
}

.map-widget {
  display: grid;
}

.reviews-widget iframe,
.map-widget iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 620px;
  display: block;
  border: 0;
  border-radius: 8px;
  background: var(--surface-strong);
}

.map-widget iframe {
  height: 100%;
  min-height: 620px;
}

.yandex-fallback {
  position: absolute;
  inset: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 245, 0.94), rgba(247, 243, 238, 0.9)),
    var(--surface);
  color: var(--muted);
  text-align: center;
}

.yandex-fallback a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(200, 40, 21, 0.24);
  border-radius: 8px;
  background: rgba(200, 40, 21, 0.08);
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: none;
}

.reviews-widget.is-loaded .yandex-fallback,
.map-widget.is-loaded .yandex-fallback {
  display: none;
}

.reviews-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.reviews-link:hover {
  color: var(--red-dark);
}

.faq {
  padding-top: 64px;
  padding-bottom: 64px;
}

.faq-accordion {
  width: min(100%, 780px);
  display: grid;
  gap: 14px;
}

.faq-item {
  display: grid;
  gap: 0;
}

.faq-question {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(222, 209, 198, 0.78);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.84);
  color: #332b26;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-style: normal;
  line-height: 1.32;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 10px 26px rgba(66, 38, 29, 0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.faq-question:hover,
.faq-question:focus-visible,
.faq-item.is-open .faq-question {
  border-color: rgba(200, 40, 21, 0.2);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 28px rgba(66, 38, 29, 0.07);
}

.faq-question:hover {
  transform: translateY(-1px);
}

.faq-icon,
.faq-toggle {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(33, 27, 23, 0.05);
  color: var(--muted);
}

.faq-icon {
  width: 24px;
  height: 24px;
}

.faq-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  justify-self: end;
  transition:
    transform 240ms ease,
    background 220ms ease,
    color 220ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 240ms ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-toggle {
  background: rgba(200, 40, 21, 0.1);
  color: var(--red-dark);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-toggle::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 320ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  width: calc(100% - 62px);
  margin: 10px 0 4px 62px;
  padding: 18px 20px;
  border: 1px solid rgba(222, 209, 198, 0.62);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.72);
  box-shadow: 0 10px 24px rgba(66, 38, 29, 0.06);
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.faq-answer a {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.contacts {
  padding-top: 18px;
  padding-bottom: 42px;
}

.legal-card {
  width: min(100%, 760px);
  padding: 0;
  background: transparent;
}

.legal-table {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.legal-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(100px, 0.24fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-bottom: 0;
  background: transparent;
  transition:
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.legal-row:last-child {
  border-bottom: 0;
}

.legal-row::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 0;
  width: 2px;
  border-radius: 999px;
  background: var(--red);
  opacity: 0;
  transform: scaleY(0.35);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.legal-row:hover {
  z-index: 1;
  transform: translateX(3px);
  background:
    linear-gradient(90deg, rgba(200, 40, 21, 0.04), rgba(255, 250, 245, 0.46) 44%),
    rgba(255, 250, 245, 0.38);
}

.legal-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.legal-row dt {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0;
}

.legal-row dd {
  margin: 0;
  color: var(--text);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 600;
}

.legal-row a {
  color: inherit;
  text-decoration: none;
}

.legal-row a:hover {
  text-decoration: underline;
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a,
.footer-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2px 14px;
}

.footer-nav a {
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--red-dark);
}

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

  .nav-desktop {
    display: none;
  }

  .header-dropdown {
    display: block;
  }

  h1 {
    font-size: 64px;
  }

  h1 small {
    font-size: 22px;
  }

  h2 {
    font-size: 36px;
  }

  .trust-layout,
  .legal-card {
    width: 100%;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .hero-heading {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-award {
    position: relative;
    top: auto;
    left: auto;
    width: 190px;
    height: 64px;
    margin-top: 0;
  }

  .hero-award iframe {
    transform: scale(1.26);
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 7px 10px;
    gap: 8px;
  }

  .brand {
    min-width: 64px;
    min-height: 44px;
  }

  .brand img {
    width: 64px;
  }

  .header-dropdown {
    --dropdown-width: 104px;
  }

  .header-dropdown summary {
    min-height: 40px;
    padding: 0 10px;
    gap: 4px;
    font-size: 13px;
  }

  .nav-menu a {
    min-height: 38px;
    font-size: 13px;
  }

  .hero {
    min-height: 96dvh;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(33, 27, 23, 0.9), rgba(33, 27, 23, 0.52)),
      linear-gradient(0deg, rgba(33, 27, 23, 0.78), rgba(33, 27, 23, 0.08) 48%);
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    padding: 124px 0 28px;
  }

  .hero-heading {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .hero-award {
    position: relative;
    top: auto;
    left: auto;
    width: 150px;
    height: 50px;
    align-self: start;
    margin-top: 0;
  }

  .hero-award iframe {
    transform: scale(1);
  }

  h1 {
    font-size: 48px;
  }

  h1 small {
    max-width: 330px;
    font-size: 19px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 22px;
  }

  .lead {
    max-width: 330px;
    gap: 8px;
  }

  .lead span {
    font-size: 12px;
  }

  .lead strong {
    font-size: 28px;
    line-height: 1.08;
  }

  .lead em {
    font-size: 17px;
    line-height: 1.36;
  }

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

  .button {
    width: 100%;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .quick-facts div {
    min-height: 78px;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 58px 0;
  }

  .price-item {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .price-item strong {
    text-align: left;
  }

  .reviews-widget {
    padding: 8px;
  }

  .works {
    padding: 32px 0 46px;
  }

  .works .section-copy {
    width: min(calc(100% - 28px), var(--max));
    margin-bottom: 8px;
  }

  .work-gallery {
    --card-w: clamp(126px, 39vw, 176px);
    --card-h: calc(var(--card-w) * 1.333);
    width: min(calc(100% - 28px), 390px);
    height: clamp(280px, 82vw, 360px);
  }

  .work-card:nth-child(1) {
    --x: -138%;
    --y: -42%;
    --rotate: -17deg;
    --scale: 0.82;
    --hover-scale: 0.92;
  }

  .work-card:nth-child(2) {
    --x: -101%;
    --y: -52%;
    --rotate: -9deg;
    --scale: 0.9;
    --hover-scale: 1;
  }

  .work-card:nth-child(3) {
    --x: -63%;
    --y: -55%;
    --rotate: -1deg;
    --scale: 0.98;
    --hover-scale: 1.08;
  }

  .work-card:nth-child(4) {
    --x: -25%;
    --y: -52%;
    --rotate: 8deg;
    --scale: 1.04;
    --hover-scale: 1.14;
  }

  .work-card:nth-child(5) {
    --x: 9%;
    --y: -42%;
    --rotate: 16deg;
    --scale: 0.9;
    --hover-scale: 1;
  }

  .reviews-widget iframe {
    height: 560px;
  }

  .faq {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .faq-accordion {
    width: 100%;
  }

  .faq-question {
    min-height: 64px;
    grid-template-columns: 26px minmax(0, 1fr) 32px;
    gap: 12px;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
  }

  .faq-answer-inner {
    width: calc(100% - 42px);
    margin-left: 42px;
    padding: 16px;
  }

  .faq-item.is-open .faq-answer {
    max-height: 240px;
  }

  .legal-card {
    padding: 0;
  }

  .legal-row {
    grid-template-columns: 1fr;
    gap: 2px;
    min-height: 0;
    padding: 7px 10px;
  }

  .legal-row:hover {
    transform: translateX(0);
  }

  .site-footer {
    width: min(calc(100% - 28px), var(--max));
    min-height: 0;
    padding: 22px 0 26px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

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

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