:root {
  --ink: #171515;
  --ink-soft: #3c3530;
  --muted: #746b64;
  --white: #ffffff;
  --milk: #faf7f2;
  --cream: #efe6dc;
  --rose: #f1c5c6;
  --peach: #f0c6a4;
  --violet: #c9c4ff;
  --blue: #c9e8f2;
  --mint: #d8eadb;
  --line: rgba(255, 255, 255, 0.46);
  --line-dark: rgba(23, 21, 21, 0.12);
  --glass: rgba(255, 255, 255, 0.5);
  --glass-strong: rgba(255, 255, 255, 0.68);
  --dark-glass: rgba(23, 21, 21, 0.72);
  --shadow: 0 28px 90px rgba(49, 38, 32, 0.16);
  --shadow-strong: 0 34px 110px rgba(40, 29, 24, 0.24);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(125deg, rgba(241, 197, 198, 0.48) 0%, rgba(250, 247, 242, 0) 28%),
    linear-gradient(235deg, rgba(201, 232, 242, 0.62) 0%, rgba(250, 247, 242, 0) 30%),
    linear-gradient(180deg, #fffaf4 0%, #f3ece5 44%, #ffffff 100%);
  color: var(--ink);
  font-family:
    "Inter",
    "Avenir Next",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: -28% -18%;
  z-index: -2;
  background:
    conic-gradient(from 138deg at 24% 18%, rgba(240, 198, 164, 0.52), rgba(201, 196, 255, 0.34), rgba(216, 234, 219, 0.42), rgba(240, 198, 164, 0.52)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  filter: blur(74px);
  opacity: 0.82;
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 62%);
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.promo-bar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(23, 21, 21, 0.92), rgba(72, 56, 49, 0.86)),
    var(--ink);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(23, 21, 21, 0.18);
}

.promo-bar__inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-size: 15px;
}

.promo-bar strong {
  font-size: 16px;
  font-weight: 760;
}

.promo-bar span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  padding: 16px 0;
}

.site-header__inner,
.hero__stats div,
.feature-card,
.service-card,
.process-list article,
.faq-list details,
.request-form,
.price-card,
.price-list,
.production__copy,
.production__image,
.production__facts span,
.location-card,
.map-card,
.contact-links a {
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.28);
  -webkit-backdrop-filter: blur(24px) saturate(1.28);
}

.site-header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
}

.logo {
  display: inline-flex;
  width: 108px;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 620;
}

.main-nav a {
  padding: 10px 9px;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 720;
  white-space: nowrap;
}

.header-phone:hover,
.site-footer a:hover {
  color: #8c604d;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 720;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(176, 122, 93, 0.34);
  outline-offset: 3px;
}

.btn--dark {
  border-color: rgba(23, 21, 21, 0.18);
  background:
    linear-gradient(135deg, #171515 0%, #3a312c 100%);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(23, 21, 21, 0.28);
}

.btn--dark:hover {
  box-shadow: 0 24px 54px rgba(23, 21, 21, 0.34);
}

.btn--light {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.btn--outline {
  min-height: 50px;
  border-color: rgba(23, 21, 21, 0.16);
  background: rgba(255, 255, 255, 0.44);
  color: var(--ink);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.btn--outline:hover,
.btn--light:hover {
  background: var(--white);
  box-shadow: 0 18px 48px rgba(65, 48, 40, 0.16);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

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

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

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: -114px;
  padding: 156px 0 82px;
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(250, 247, 242, 0), rgba(250, 247, 242, 0.96));
  content: "";
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 247, 242, 0.98) 0%, rgba(250, 247, 242, 0.82) 34%, rgba(250, 247, 242, 0.22) 62%, rgba(250, 247, 242, 0.06) 100%),
    linear-gradient(135deg, rgba(241, 197, 198, 0.34), rgba(201, 232, 242, 0.16) 42%, rgba(23, 21, 21, 0.1) 100%);
  content: "";
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: contrast(1.08) saturate(1.04);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: #9c6d58;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 0.98;
  font-weight: 680;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.3vw, 58px);
  line-height: 1;
  font-weight: 660;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 660;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #3e3732;
  font-size: 21px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__stats {
  display: grid;
  max-width: 710px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero__stats div {
  padding: 19px;
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.5);
}

.icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

.stat-icon,
.card-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.24));
  color: #8f634f;
  clip-path: circle(50% at 50% 50%);
  filter: drop-shadow(0 14px 24px rgba(71, 51, 43, 0.12));
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
}

.card-icon {
  margin-bottom: 22px;
}

.hero__stats dt {
  margin-bottom: 4px;
  font-size: 23px;
  font-weight: 820;
}

.hero__stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading p,
.production__copy p,
.shade-band__content p,
.quality__text p,
.request-copy p {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card,
.service-card,
.process-list article,
.faq-list details {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.feature-card::before,
.service-card::before,
.process-list article::before,
.faq-list details::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1));
  content: "";
  pointer-events: none;
}

.feature-card:hover,
.service-card:hover,
.process-list article:hover,
.faq-list details:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-strong);
}

.feature-card > *,
.service-card > *,
.process-list article > *,
.faq-list details > * {
  position: relative;
  z-index: 1;
}

.feature-card {
  min-height: 250px;
  padding: 30px;
}

.feature-card:first-child {
  background:
    linear-gradient(135deg, rgba(23, 21, 21, 0.88), rgba(73, 55, 49, 0.74)),
    rgba(23, 21, 21, 0.78);
  color: var(--white);
}

.feature-card:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-card:first-child .card-icon {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--peach);
}

.feature-card__number,
.process-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #9c6d58;
  font-weight: 820;
}

.feature-card:first-child .feature-card__number {
  color: var(--peach);
}

.feature-card p,
.service-card p,
.process-list p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.prices {
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(23, 21, 21, 0.92), rgba(87, 67, 59, 0.82) 48%, rgba(37, 52, 58, 0.88)),
    var(--ink);
  color: var(--white);
}

.prices::before,
.request-section::before,
.shade-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(241, 197, 198, 0.22), transparent 35%),
    linear-gradient(260deg, rgba(201, 232, 242, 0.16), transparent 38%);
  content: "";
  pointer-events: none;
}

.prices .section-heading p,
.prices .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.prices__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.55fr) minmax(320px, 0.85fr);
  align-items: stretch;
  gap: 20px;
}

.price-card,
.price-list {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.price-card--accent {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.price-card span,
.price-row span {
  color: inherit;
  opacity: 0.76;
}

.price-card strong {
  margin: 12px 0 10px;
  font-size: 40px;
  line-height: 1;
}

.price-card small {
  color: rgba(23, 21, 21, 0.58);
}

.price-list {
  display: grid;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
}

.price-row + .price-row {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-row strong {
  font-size: 22px;
  white-space: nowrap;
}

.production {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(239, 230, 220, 0.5)),
    linear-gradient(260deg, rgba(201, 232, 242, 0.24), rgba(241, 197, 198, 0.2));
}

.production::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), transparent 42%),
    linear-gradient(290deg, rgba(23, 21, 21, 0.08), transparent 46%);
  content: "";
  pointer-events: none;
}

.production__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  align-items: stretch;
  gap: 22px;
}

.production__copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
}

.production__copy h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.04;
  overflow-wrap: break-word;
}

.production__copy p {
  margin-bottom: 30px;
}

.production__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.production__facts span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 720;
}

.production__image {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.production__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 247, 242, 0.78));
}

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

.service-card {
  min-height: 214px;
  grid-column: span 2;
  padding: 28px;
}

.service-card:nth-child(2),
.service-card:nth-child(5) {
  background: rgba(255, 236, 222, 0.58);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
  background: rgba(224, 241, 246, 0.58);
}

.service-card:nth-child(4) {
  background: rgba(226, 239, 226, 0.58);
}

.shade-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    linear-gradient(125deg, rgba(25, 23, 23, 0.94), rgba(70, 56, 49, 0.88)),
    var(--ink);
  color: var(--white);
}

.shade-band__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.shade-band__image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.34);
}

.shade-band__image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.shade-band__content p {
  color: rgba(255, 255, 255, 0.72);
}

.shade-band .eyebrow {
  color: var(--peach);
}

.shade-band .btn--dark {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  box-shadow: none;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-list article {
  padding: 28px;
}

.process-list span {
  margin-bottom: 24px;
}

.quality {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.76), rgba(239, 230, 220, 0.64));
}

.quality__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
}

.quality__text {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.quality__text ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.quality__text li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.quality__text li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--violet));
  content: "";
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 46px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 680;
}

.faq-list p {
  padding-top: 14px;
}

.request-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(125deg, rgba(23, 21, 21, 0.94), rgba(77, 58, 50, 0.86) 48%, rgba(40, 55, 61, 0.9)),
    var(--ink);
  color: var(--white);
}

.request-section__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.request-copy {
  max-width: 590px;
}

.request-copy p,
.request-section .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
}

.contact-links a:hover {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.request-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 720;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 21, 21, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.request-form input,
.request-form select {
  height: 52px;
  padding: 0 16px;
}

.request-form textarea {
  min-height: 116px;
  resize: vertical;
  padding: 14px 16px;
}

.request-form .is-invalid {
  border-color: #b45d4f;
  box-shadow: 0 0 0 3px rgba(180, 93, 79, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #4c6d4f;
  font-weight: 700;
}

.location-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(239, 230, 220, 0.64)),
    linear-gradient(260deg, rgba(201, 232, 242, 0.2), rgba(241, 197, 198, 0.16));
}

.location-section__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: stretch;
}

.location-card,
.map-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.location-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.54);
}

.location-card h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.04;
}

.location-card address {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 22px;
  font-style: normal;
  line-height: 1.35;
}

.location-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.location-card__links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid rgba(23, 21, 21, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.location-card__links a:hover {
  background: var(--ink);
  color: var(--white);
}

.map-card {
  min-height: 430px;
  background: rgba(255, 255, 255, 0.45);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.site-footer {
  padding: 36px 0;
  background: rgba(23, 21, 21, 0.92);
  color: rgba(255, 255, 255, 0.66);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 14px;
}

.site-footer img {
  width: 104px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(28px) saturate(1.3);
    -webkit-backdrop-filter: blur(28px) saturate(1.3);
  }

  .main-nav {
    top: 146px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 0;
  }

  .main-nav a {
    padding: 14px;
    border-radius: var(--radius);
  }

  .header-actions {
    top: 416px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .menu-open .main-nav,
  .menu-open .header-actions {
    display: flex;
  }

  .prices__layout,
  .production__layout,
  .shade-band__layout,
  .quality__layout,
  .faq__layout,
  .location-section__layout,
  .request-section__layout {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .promo-bar__inner {
    min-height: 58px;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    font-size: 13px;
  }

  .promo-bar span {
    font-size: 12px;
  }

  .site-header {
    padding: 10px 0;
  }

  .site-header__inner {
    min-height: 66px;
    padding: 0 16px;
  }

  .logo {
    width: 92px;
  }

  .main-nav {
    top: 140px;
  }

  .header-actions {
    top: 410px;
  }

  .hero {
    min-height: 760px;
    margin-top: -92px;
    padding: 132px 0 46px;
    align-items: flex-end;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(250, 247, 242, 0.18) 0%, rgba(250, 247, 242, 0.5) 28%, rgba(250, 247, 242, 0.9) 78%, rgba(250, 247, 242, 0.98) 100%),
      linear-gradient(90deg, rgba(250, 247, 242, 0.88), rgba(250, 247, 242, 0.18));
  }

  .hero__media {
    inset: 0;
    height: auto;
  }

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

  h1 {
    font-size: 38px;
    line-height: 1;
  }

  h2 {
    font-size: 32px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__stats,
  .advantage-grid,
  .services-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .section,
  .request-section {
    padding: 68px 0;
  }

  .section-heading,
  .section-heading--left {
    margin-bottom: 30px;
    text-align: left;
  }

  .prices__layout,
  .production__layout,
  .shade-band__layout,
  .quality__layout,
  .faq__layout,
  .location-section__layout,
  .request-section__layout {
    gap: 28px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .shade-band {
    padding: 64px 0;
  }

  .shade-band__image img {
    aspect-ratio: 4 / 3;
  }

  .production__copy {
    padding: 24px;
  }

  .production__image img {
    min-height: 340px;
    aspect-ratio: 4 / 3;
  }

  .request-form,
  .location-card,
  .quality__text {
    padding: 22px;
  }

  .location-card,
  .map-card,
  .map-card iframe {
    min-height: 340px;
  }

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

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .site-header__inner {
    border-radius: 7px;
  }

  .hero {
    min-height: 735px;
    padding-top: 124px;
  }

  h1 {
    font-size: 32px;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .feature-card,
  .service-card,
  .process-list article {
    padding: 22px;
  }

  .price-card,
  .price-row {
    padding: 22px;
  }

  .production__image img {
    min-height: 280px;
  }

  .location-card address {
    font-size: 18px;
  }

  .location-card__links a {
    width: 100%;
  }

  .map-card,
  .map-card iframe {
    min-height: 300px;
  }
}
