
:root {
  --brand: #c3aa63;
  --brand-strong: #aa8d3d;
  --brand-soft: #eadcae;
  --ink: #070707;
  --ink-2: #101010;
  --ink-3: #171717;
  --paper: #f2eee3;
  --paper-2: #e7e0cf;
  --card-bg: #121212;
  --text: #f8f7f2;
  --text-dark: #171715;
  --muted: #b8b5ad;
  --muted-dark: #646158;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(15, 15, 15, 0.15);
  --success: #24b46b;
  --radius: 24px;
  --section-y: 104px;
  --font-body: "Segoe UI", Arial, Helvetica, sans-serif;
  --font-heading: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-button: "Segoe UI", Arial, Helvetica, sans-serif;
  --font-size-base: 17px;
  --font-size-small: 13px;
  --font-size-h1: 92px;
  --font-size-h2: 58px;
  --shell: 1320px;
  --header-h: 78px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  scroll-padding-top: calc(var(--header-h) + 18px);
}

html.__sos_builder_booting body {
  opacity: 0;
}

html.__sos_builder_ready body {
  opacity: 1;
  transition: opacity 0.24s ease;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

p,
ul,
ol {
  margin-top: 0;
}

p {
  color: var(--muted);
  font-size: var(--font-size-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.35rem, 8.4vw, var(--font-size-h1));
}

h2 {
  font-size: clamp(2.45rem, 5.3vw, var(--font-size-h2));
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.05;
}

h4 {
  font-size: 1.15rem;
  line-height: 1.2;
}

::selection {
  background: var(--brand);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.shell--narrow {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: clip;
}

.section--paper {
  background: var(--paper);
  color: var(--text-dark);
  color-scheme: light;
}

.section--paper p {
  color: var(--muted-dark);
}

.section--ink-2 {
  background: var(--ink-2);
}

.section--bordered {
  border-block: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 74px);
}

.section-head--stack {
  display: block;
  max-width: 850px;
}

.section-head--stack .section-kicker {
  margin-bottom: 24px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--brand);
  font-size: var(--font-size-small);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 48px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.section-title {
  max-width: 980px;
}

.section-lead {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.gold {
  color: var(--brand);
}

.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-button);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(195, 170, 99, 0.16);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.button:hover {
  transform: translateY(-3px);
  background: var(--brand-soft);
  box-shadow: 0 22px 46px rgba(195, 170, 99, 0.24);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--text);
  box-shadow: none;
}

.button--ghost:hover {
  border-color: var(--brand);
  background: rgba(195, 170, 99, 0.1);
  color: var(--brand-soft);
  box-shadow: none;
}

.button--dark {
  background: var(--ink);
  color: var(--text);
}

.button--dark:hover {
  background: #242424;
  color: var(--brand-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 0.25s ease;
}

.text-link:hover::after {
  width: 46px;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  stroke: currentColor;
}

/* top strip and header */
.top-strip {
  min-height: 34px;
  border-bottom: 1px solid var(--line);
  background: #020202;
  color: #d6d2c8;
  font-size: 0.77rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.top-strip__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-strip a {
  color: var(--brand-soft);
  font-weight: 750;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(15px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 7, 7, 0.98);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 244px;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.site-nav__items {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.3vw, 24px);
}

.site-nav__items > a {
  position: relative;
  padding: 28px 0;
  color: #d8d6d0;
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  font-weight: 750;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__items > a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 1px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav__items > a:hover,
.site-nav__items > a[aria-current="page"] {
  color: var(--brand-soft);
}

.site-nav__items > a:hover::after,
.site-nav__items > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 44px;
  padding: 13px 17px;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle__bars {
  position: relative;
}

.menu-toggle__bars::before {
  position: absolute;
  top: -7px;
}

.menu-toggle__bars::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* home hero */
.hero {
  position: relative;
  display: grid;
  min-height: min(900px, calc(100svh - 34px));
  place-items: stretch;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.8) contrast(1.12);
  transform: scale(1.02);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 47%, rgba(0, 0, 0, 0.25) 78%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.88) 0%, transparent 42%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -18vw;
  bottom: -42vw;
  z-index: -1;
  width: 72vw;
  height: 72vw;
  border: 1px solid rgba(195, 170, 99, 0.2);
  border-radius: 50%;
  content: "";
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  padding-block: clamp(96px, 12vh, 150px) clamp(70px, 9vh, 105px);
}

.hero__copy {
  max-width: 970px;
}

.hero__kicker {
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 930px;
  color: #fff;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 730px;
  margin: 30px 0 0;
  color: #dad8d1;
  font-size: clamp(1.07rem, 1.65vw, 1.38rem);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__rail {
  display: grid;
  align-content: end;
  gap: 0;
  padding: 24px 0 10px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__rail-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

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

.hero__rail-num {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.2;
}

.hero__rail-text {
  color: #eeeae0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__scroll {
  position: absolute;
  right: 36px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #aaa69d;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll::before {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--brand), transparent);
  content: "";
}

/* intro and metrics */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.intro-copy h2 {
  max-width: 800px;
}

.intro-copy .section-lead {
  max-width: 680px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.metric {
  min-height: 190px;
  padding: 30px;
  background: var(--paper);
}

.metric__value {
  display: block;
  margin-bottom: 18px;
  color: var(--brand-strong);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.9;
}

.metric__label {
  display: block;
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-3);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.service-card:nth-of-type(1),
.service-card:nth-of-type(4) {
  grid-column: span 6;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(195, 170, 99, 0.55);
}

.service-card__media {
  position: absolute;
  inset: 0;
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.67) 48%, rgba(5, 5, 5, 0.16) 100%);
  content: "";
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.service-card:hover .service-card__media img {
  filter: saturate(0.95);
  transform: scale(1.055);
}

.service-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3.2vw, 46px);
}

.service-card__index {
  position: absolute;
  top: 30px;
  left: 32px;
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.08rem;
}

.service-card h3 {
  max-width: 540px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.service-card p {
  max-width: 560px;
  margin-bottom: 24px;
  color: #d1cec7;
}

/* process */
.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.35fr);
  gap: clamp(50px, 8vw, 110px);
}

.process-intro {
  position: sticky;
  top: calc(var(--header-h) + 38px);
  align-self: start;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.step__number {
  color: var(--brand);
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.step h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.step p {
  max-width: 660px;
  margin-bottom: 0;
}

/* brand banner */
.brand-feature {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.brand-feature img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.brand-feature::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12));
  content: "";
}

/* area */
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: stretch;
}

.area-card {
  display: grid;
  align-content: center;
  min-height: 380px;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line-dark);
  background: #e8e1d1;
}

.area-card h3 {
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.contact-lines {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-dark);
  text-decoration: none;
}

.contact-line strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.3;
}

.contact-line small {
  display: block;
  margin-top: 3px;
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.area-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #111;
}

.area-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35);
}

.area-visual__note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--brand);
  background: rgba(7, 7, 7, 0.92);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

/* faq */
.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 30px;
  gap: 18px;
  align-items: center;
  padding: 28px 0;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.15;
  cursor: pointer;
  list-style: none;
}

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

.faq-item__number {
  color: var(--brand-strong);
  font-size: 0.9rem;
}

.faq-item__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  top: 11px;
  left: 2px;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  content: "";
  transition: transform 0.25s ease;
}

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

.faq-item[open] .faq-item__icon::after {
  transform: rotate(0);
}

.faq-item__answer {
  max-width: 850px;
  padding: 0 0 30px 72px;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* call to action */
.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 36px;
  align-items: end;
  padding: clamp(42px, 7vw, 88px);
  overflow: hidden;
  border: 1px solid rgba(195, 170, 99, 0.42);
  background:
    linear-gradient(135deg, rgba(195, 170, 99, 0.14), transparent 48%),
    var(--ink-2);
}

.cta-panel::after {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(195, 170, 99, 0.25);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
}

.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 730px;
  margin: 24px 0 0;
  font-size: 1.1rem;
}

.cta-panel .button {
  position: relative;
  z-index: 1;
}

/* subpage heroes */
.page-hero {
  position: relative;
  display: grid;
  min-height: 600px;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
  isolation: isolate;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) saturate(0.8);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.68) 58%, rgba(0,0,0,0.28) 100%);
  content: "";
}

.page-hero__inner {
  padding-block: 110px 78px;
}

.page-hero__copy {
  max-width: 1000px;
}

.page-hero h1 {
  max-width: 1020px;
  margin-top: 26px;
  color: #fff;
  text-transform: uppercase;
}

.page-hero__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #dad6cd;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.page-hero--gallery {
  min-height: 660px;
  text-align: center;
  align-items: center;
}

.page-hero--gallery::before {
  background: rgba(0, 0, 0, 0.72);
}

.page-hero--gallery .page-hero__copy {
  margin-inline: auto;
}

.page-hero--gallery .section-kicker {
  justify-content: center;
}

.page-hero--gallery .page-hero__lead {
  margin-inline: auto;
}

.page-hero--reviews {
  min-height: 560px;
  background:
    radial-gradient(circle at 78% 38%, rgba(195,170,99,0.2), transparent 26%),
    #080808;
}

.page-hero--reviews::before {
  display: none;
}

.page-hero__starfield {
  position: absolute;
  right: 6vw;
  bottom: -4vw;
  z-index: -1;
  color: rgba(195, 170, 99, 0.17);
  font-family: var(--font-heading);
  font-size: clamp(10rem, 28vw, 29rem);
  line-height: 0.7;
  letter-spacing: -0.12em;
  white-space: nowrap;
}

/* offer */
.offer-services {
  display: grid;
  gap: 34px;
}

.offer-service {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  min-height: 520px;
  border: 1px solid var(--line-dark);
  background: #e9e2d2;
}

.offer-service:nth-of-type(even) .offer-service__media {
  order: 2;
}

.offer-service__media {
  min-height: 440px;
  overflow: hidden;
}

.offer-service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-service__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 78px);
}

.offer-service__number {
  margin-bottom: 28px;
  color: var(--brand-strong);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.offer-service h2 {
  margin-bottom: 22px;
  color: var(--text-dark);
  font-size: clamp(2.15rem, 4.5vw, 4.5rem);
}

.offer-service p {
  margin-bottom: 24px;
}

.offer-service__details {
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #3f3c35;
  white-space: pre-line;
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.factor {
  min-height: 240px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factor__number {
  display: block;
  margin-bottom: 56px;
  color: var(--brand);
  font-family: var(--font-heading);
}

.factor h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.factor p {
  margin: 0;
  font-size: 0.94rem;
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-auto-rows: 150px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
  cursor: zoom-in;
}

.gallery-card:nth-of-type(1),
.gallery-card:nth-of-type(5) {
  grid-column: span 7;
  grid-row: span 4;
}

.gallery-card:nth-of-type(2),
.gallery-card:nth-of-type(6) {
  grid-column: span 5;
  grid-row: span 4;
}

.gallery-card__button {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.gallery-card:hover img {
  filter: brightness(0.78);
  transform: scale(1.04);
}

.gallery-card__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 54px 25px 23px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  text-align: left;
  pointer-events: none;
}

.gallery-card__caption strong {
  font-size: 1rem;
  line-height: 1.25;
}

.gallery-card__caption span {
  color: var(--brand-soft);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(0, 0, 0, 0.94);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__figure {
  width: min(1180px, 94vw);
  margin: 0;
}

.lightbox__image {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox__caption {
  margin-top: 16px;
  color: #e6e2d8;
  text-align: center;
}

.lightbox__close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.35);
  background: #111;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* realizations */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.scenario-card {
  display: grid;
  min-height: 420px;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #e7dfcf;
}

.scenario-card:nth-of-type(3n) {
  grid-column: 1 / -1;
  grid-template-columns: 1.2fr 0.8fr;
}

.scenario-card__media {
  min-height: 100%;
}

.scenario-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.6vw, 62px);
}

.scenario-card__type {
  margin-bottom: 22px;
  color: var(--brand-strong);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scenario-card h3 {
  margin-bottom: 18px;
  color: var(--text-dark);
  font-size: clamp(1.7rem, 3.1vw, 3.2rem);
}

.scenario-card p {
  margin: 0;
}

.standard-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.standard-item {
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.standard-item__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  place-items: center;
  border: 1px solid rgba(195,170,99,0.6);
  color: var(--brand);
}

.standard-item h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.standard-item p {
  margin: 0;
  font-size: 0.94rem;
}

/* reviews addon */
.reviews-shell {
  padding: clamp(32px, 5vw, 62px);
  border: 1px solid var(--line);
  background: var(--ink-2);
}

.reviews-shell [data-sos-reviews-widget] {
  min-height: 160px;
}

.sos-reviews-widget {
  gap: 34px !important;
}

.sos-reviews-widget > h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.sos-reviews-list {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.sos-review {
  min-height: 260px;
  padding: 28px !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: #151515 !important;
  box-shadow: none !important;
}

.sos-review header {
  align-items: flex-start !important;
}

.sos-review strong {
  color: #fff;
  font-size: 1.05rem;
}

.sos-review p {
  color: #c3c0b8;
}

.sos-review-stars {
  color: var(--brand) !important;
}

.sos-review-form {
  padding: clamp(26px, 4vw, 42px) !important;
  border: 1px solid rgba(195,170,99,0.35) !important;
  border-radius: 0 !important;
  background: #0a0a0a !important;
  box-shadow: none !important;
}

.sos-review-form label {
  color: #ece9df;
  font-size: 0.88rem;
  font-weight: 700;
}

.sos-review-form input,
.sos-review-form select,
.sos-review-form textarea {
  min-height: 48px;
  border: 1px solid #3c3a35 !important;
  border-radius: 6px !important;
  background: #151515 !important;
  color: #fff !important;
}

.sos-review-form button {
  justify-self: start;
  border-radius: 8px !important;
  background: var(--brand) !important;
  color: var(--ink) !important;
  font-weight: 850 !important;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.sos-review-status {
  color: var(--brand-soft);
}

/* contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.contact-primary {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.contact-primary__item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 140px;
  padding: 28px 32px;
  background: var(--paper);
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.25s ease;
}

.contact-primary__item:hover {
  background: #e5ddcb;
}

.contact-primary__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--brand-strong);
}

.contact-primary__item small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-dark);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-primary__item strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.quote-card {
  position: sticky;
  top: calc(var(--header-h) + 34px);
  padding: clamp(34px, 5vw, 58px);
  background: var(--ink);
  color: #fff;
}

.quote-card h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.quote-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 36px;
  padding: 0;
  list-style: none;
}

.quote-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  color: #cfcbc2;
}

.quote-list li::before {
  color: var(--brand);
  content: "✦";
}

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

.social-card {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  color: var(--brand-soft);
}

/* footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding-block: 74px;
}

.footer-brand img {
  width: 260px;
  max-height: 78px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 390px;
  margin: 26px 0 0;
  color: #aaa69e;
}

.footer-col h3 {
  margin-bottom: 22px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a,
.footer-links span {
  color: #b7b3aa;
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-soft);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #77746d;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: #b6b1a5;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand);
}

/* quick contact */
.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
}

.quick-contact__link {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(12,12,12,0.96);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0,0,0,0.38);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.quick-contact__link:hover {
  transform: translateX(-4px);
  border-color: var(--brand);
}

.quick-contact__link--wa {
  border-left: 3px solid #25d366;
}

.quick-contact__link--msg {
  border-left: 3px solid #168aff;
}

/* consent */
.privacy-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 900;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(980px, calc(100% - 36px));
  margin-inline: auto;
  padding: 22px 24px;
  border: 1px solid rgba(195,170,99,0.45);
  background: #0b0b0b;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}

.privacy-consent p {
  margin: 0;
  color: #c9c5bc;
  font-size: 0.9rem;
}

.privacy-consent p strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1rem;
}

.privacy-consent a {
  color: var(--brand-soft);
}

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

.privacy-consent__actions button {
  min-height: 44px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #171717;
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}

.privacy-consent__actions button[data-consent="all"] {
  border-color: var(--brand);
  background: var(--brand);
  color: #080808;
}

/* simple privacy document */
.policy-page {
  min-height: 100vh;
  background: #fff;
  color: #171715;
  color-scheme: light;
}

.policy-document {
  width: min(850px, calc(100% - 44px));
  margin-inline: auto;
  padding: 76px 0 110px;
}

.policy-document h1 {
  margin-bottom: 44px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
}

.policy-document h2 {
  margin: 42px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.policy-document p,
.policy-document li {
  color: #2f2f2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.8;
}

.policy-document a {
  color: #6d571e;
}

.policy-document__back {
  display: block;
  margin-bottom: 38px;
  color: #5a4a22;
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

/* custom builder sections */
.sos-custom-section {
  padding: var(--section-y) 0;
}

.sos-custom-section__inner {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.sos-custom-section--narrow .sos-custom-section__inner {
  max-width: 900px;
}

.sos-custom-section--cards .sos-custom-section__inner {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.sos-custom-section--media-left .sos-custom-section__inner,
.sos-custom-section--media-right .sos-custom-section__inner {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
}

.sos-custom-section--media-left figure {
  order: -1;
}

.sos-custom-section img {
  width: 100%;
  border-radius: var(--radius);
}

.sos-custom-button {
  justify-self: start;
  display: inline-flex;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--brand);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.sos-custom-link {
  color: var(--brand);
  font-weight: 800;
}

.sos-custom-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.sos-custom-color-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sos-custom-color-chip span {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.sos-custom-json {
  padding: 16px;
  overflow: auto;
  border: 1px solid var(--line);
  background: #111;
  white-space: pre-wrap;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.22,.7,.18,1);
}

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

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (max-width: 1120px) {
  .brand {
    width: 205px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav__items {
    gap: 13px;
  }

  .header-cta {
    padding-inline: 13px;
  }

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

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

  .footer-col:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 980px) {
  :root {
    --section-y: 82px;
    --header-h: 72px;
  }

  .shell,
  .shell--narrow,
  .sos-custom-section__inner {
    width: min(100% - 36px, var(--shell));
  }

  .top-strip__inner span:last-child {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .brand {
    width: 205px;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    z-index: 99;
    display: none;
    width: 100vw;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 28px 22px 32px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #080808;
    box-shadow: 0 24px 50px rgba(0,0,0,0.55);
  }

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

  .site-nav__items {
    display: grid;
    width: 100%;
    gap: 0;
  }

  .site-nav__items > a {
    width: 100%;
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.98rem;
  }

  .site-nav__items > a::after {
    display: none;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 760px;
    padding-block: 94px 68px;
  }

  .hero__rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.22);
    border-left: 0;
  }

  .hero__rail-item {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 20px 14px 0 0;
    border-right: 1px solid rgba(255,255,255,0.13);
    border-bottom: 0;
  }

  .hero__scroll {
    display: none;
  }

  .section-head,
  .intro-grid,
  .process-layout,
  .area-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .quote-card {
    position: static;
  }

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

  .service-card,
  .service-card:nth-of-type(1),
  .service-card:nth-of-type(4) {
    grid-column: auto;
  }

  .service-card:last-of-type {
    grid-column: 1 / -1;
  }

  .brand-feature,
  .brand-feature img {
    min-height: 400px;
  }

  .offer-service,
  .offer-service:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .offer-service:nth-of-type(even) .offer-service__media {
    order: 0;
  }

  .offer-service__media {
    min-height: 390px;
  }

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

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

  .gallery-card,
  .gallery-card:nth-of-type(1),
  .gallery-card:nth-of-type(2),
  .gallery-card:nth-of-type(5),
  .gallery-card:nth-of-type(6) {
    grid-column: span 6;
    grid-row: span 3;
  }

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

  .scenario-card,
  .scenario-card:nth-of-type(3n) {
    grid-column: auto;
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .sos-reviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

  .footer-col:last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --section-y: 68px;
    --radius: 18px;
    --font-size-base: 16px;
    --font-size-h1: 58px;
    --font-size-h2: 42px;
  }

  .shell,
  .shell--narrow,
  .sos-custom-section__inner {
    width: min(100% - 28px, var(--shell));
  }

  .top-strip {
    font-size: 0.68rem;
  }

  .brand {
    width: 180px;
  }

  .hero__media img {
    content: url("/assets/img/service-detailing.webp");
    object-position: 55% center;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.72) 68%, rgba(0,0,0,0.44) 100%);
  }

  .hero__inner {
    min-height: 700px;
    padding-block: 82px 46px;
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 1.02rem;
  }

  .hero__actions {
    display: grid;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__rail {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .hero__rail-item {
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }

  .section-head {
    display: block;
    margin-bottom: 40px;
  }

  .section-head .section-kicker {
    margin-bottom: 22px;
  }

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

  .metric {
    min-height: 155px;
    padding: 23px;
  }

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

  .service-card,
  .service-card:last-of-type {
    grid-column: auto;
    min-height: 460px;
  }

  .service-card__body {
    min-height: 460px;
    padding: 28px;
  }

  .process-layout {
    gap: 34px;
  }

  .step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
  }

  .brand-feature,
  .brand-feature img {
    min-height: 260px;
  }

  .brand-feature img {
    object-fit: cover;
    object-position: center;
  }

  .area-card,
  .area-visual {
    min-height: 330px;
  }

  .faq-item summary {
    grid-template-columns: 36px minmax(0, 1fr) 26px;
    gap: 10px;
  }

  .faq-item__answer {
    padding-left: 46px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero__inner {
    padding-block: 84px 56px;
  }

  .page-hero--gallery {
    min-height: 560px;
  }

  .offer-service__media {
    min-height: 300px;
  }

  .offer-service__body {
    padding: 32px 25px;
  }

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

  .factor {
    min-height: auto;
  }

  .factor__number {
    margin-bottom: 30px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card:nth-of-type(1),
  .gallery-card:nth-of-type(2),
  .gallery-card:nth-of-type(5),
  .gallery-card:nth-of-type(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .scenario-card,
  .scenario-card:nth-of-type(3n) {
    grid-template-columns: 1fr;
  }

  .scenario-card__media {
    min-height: 280px;
  }

  .standard-list {
    grid-template-columns: 1fr;
  }

  .sos-reviews-list {
    grid-template-columns: 1fr !important;
  }

  .reviews-shell {
    padding: 24px 16px;
  }

  .contact-primary__item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 20px;
  }

  .contact-primary__icon {
    width: 48px;
    height: 48px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 58px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 22px;
  }

  .quick-contact {
    right: 12px;
    bottom: 12px;
  }

  .quick-contact__link {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }

  .quick-contact__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .privacy-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 18px;
  }

  .privacy-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .privacy-consent__actions button {
    width: 100%;
  }

  .sos-custom-section--media-left .sos-custom-section__inner,
  .sos-custom-section--media-right .sos-custom-section__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .top-strip__inner {
    justify-content: center;
  }

  .top-strip__inner a:first-of-type {
    display: none;
  }

  .brand {
    width: 155px;
  }

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

  .metric {
    min-height: 130px;
  }

  .privacy-consent__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.not-found {
  min-height: calc(100vh - 170px);
  display: grid;
  place-items: center;
  padding: clamp(90px, 12vw, 170px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(195, 170, 99, 0.16), transparent 34%),
    var(--ink);
}

.not-found .shell {
  max-width: 880px;
}

.not-found h1 {
  max-width: 850px;
  margin: 0 auto 24px;
}

.not-found p:not(.section-kicker) {
  max-width: 680px;
  margin: 0 auto 34px;
}

.not-found .button {
  margin-inline: auto;
}

/* 2026-08-11 scale and image correction */
:root {
  --section-y: 84px;
  --font-size-base: 16px;
  --font-size-h1: 62px;
  --font-size-h2: 40px;
  --shell: 1240px;
}

body {
  line-height: 1.6;
}

p {
  font-size: var(--font-size-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  max-width: 100%;
  line-height: 1.06;
  letter-spacing: -0.038em;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.875rem);
}

h2 {
  font-size: clamp(1.85rem, 3.1vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

.section-head {
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(34px, 4vw, 52px);
}

.section-head--stack {
  max-width: 760px;
}

.section-kicker {
  font-size: 0.72rem;
}

.section-lead,
.hero__lead,
.page-hero__lead {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.58;
}

.section-lead {
  margin-top: 18px;
}

.hero__media img {
  transform: none;
}

.hero__copy,
.page-hero__copy,
.intro-grid > *,
.section-head > *,
.service-card__body,
.offer-service__body,
.scenario-card__body,
.area-card,
.cta-panel > *,
.contact-layout > * {
  min-width: 0;
}

.hero {
  min-height: clamp(620px, 78svh, 760px);
}

.hero__inner {
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(34px, 5vw, 68px);
  padding-block: clamp(72px, 9vh, 96px) clamp(48px, 7vh, 66px);
}

.hero__copy {
  max-width: 830px;
}

.hero h1 {
  max-width: 820px;
}

.hero__kicker {
  margin-bottom: 20px;
}

.hero__lead {
  max-width: 650px;
  margin-top: 22px;
}

.hero__actions {
  margin-top: 28px;
}

.hero__rail {
  padding-left: 20px;
}

.hero__rail-item {
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding-block: 15px;
}

.hero__rail-text {
  font-size: 0.78rem;
}

.metric {
  min-height: 154px;
  padding: 25px;
}

.metric__value {
  margin-bottom: 13px;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1;
}

.services-grid {
  gap: 18px;
}

.service-card,
.service-card__body {
  min-height: 410px;
}

.service-card__body {
  padding: clamp(25px, 2.6vw, 34px);
}

.service-card__index {
  top: 24px;
  left: 26px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.service-card p {
  margin-bottom: 18px;
}

.step {
  padding-block: 28px;
}

.step h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.brand-feature {
  max-width: 1100px;
  min-height: 0;
  margin-inline: auto;
}

.brand-feature img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.area-card,
.area-visual {
  min-height: 320px;
}

.area-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.faq-item summary {
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
}

.faq-item__answer {
  font-size: 1rem;
}

.cta-panel {
  padding: clamp(34px, 5vw, 58px);
}

.cta-panel h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
}

.cta-panel p {
  margin-top: 18px;
  font-size: 1rem;
}

.page-hero {
  min-height: 500px;
}

.page-hero__inner {
  padding-block: 84px 58px;
}

.page-hero__copy {
  max-width: 850px;
}

.page-hero h1 {
  max-width: 880px;
  margin-top: 20px;
  font-size: clamp(2.65rem, 5.1vw, 4.1rem);
}

.page-hero__lead {
  max-width: 680px;
  margin-top: 20px;
}

.page-hero--gallery {
  min-height: 520px;
}

.page-hero--reviews {
  min-height: 470px;
}

.page-hero__starfield {
  font-size: clamp(8rem, 20vw, 19rem);
}

.offer-services {
  gap: 26px;
}

.offer-service {
  min-height: 420px;
}

.offer-service__media {
  min-height: 350px;
}

.offer-service__media img,
.scenario-card__media img,
.area-visual img,
.service-card__media img,
.gallery-card img,
.page-hero__media img {
  object-fit: cover;
  object-position: center;
}

.offer-service__media img[src*="service-facade"],
.service-card__media img[src*="service-facade"],
.gallery-card img[src*="service-facade"] {
  object-position: center 38%;
}

.offer-service__media img[src*="service-lawn"],
.service-card__media img[src*="service-lawn"],
.gallery-card img[src*="service-lawn"] {
  object-position: center 42%;
}

.offer-service__media img[src*="service-pavers"],
.service-card__media img[src*="service-pavers"],
.gallery-card img[src*="service-pavers"] {
  object-position: center 46%;
}

.offer-service__body {
  padding: clamp(30px, 4.5vw, 52px);
}

.offer-service__number {
  margin-bottom: 20px;
}

.offer-service h2 {
  margin-bottom: 17px;
  font-size: clamp(1.8rem, 3.25vw, 3rem);
}

.offer-service p {
  margin-bottom: 18px;
}

.factor {
  min-height: 190px;
  padding: 25px;
}

.factor__number {
  margin-bottom: 34px;
}

.gallery-grid {
  grid-auto-rows: 95px;
  gap: 14px;
}

.gallery-card__caption {
  padding: 42px 20px 18px;
}

.scenario-grid {
  gap: 18px;
}

.scenario-card {
  min-height: 340px;
}

.scenario-card__body {
  padding: clamp(26px, 3.6vw, 44px);
}

.scenario-card h3 {
  font-size: clamp(1.45rem, 2.35vw, 2.3rem);
}

.sos-reviews-widget > h2 {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1.06;
}

.sos-review {
  min-height: 220px;
  padding: 24px !important;
}

.quote-card h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.social-card {
  min-height: 104px;
}

.sos-custom-section img {
  max-height: 460px;
  object-fit: cover;
}

@media (max-width: 980px) {
  :root {
    --section-y: 68px;
  }

  h1 {
    font-size: clamp(2.45rem, 6.8vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 4.7vw, 2.6rem);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 650px;
    padding-block: 72px 50px;
  }

  .service-card,
  .service-card__body {
    min-height: 380px;
  }

  .brand-feature,
  .brand-feature img {
    min-height: 0;
  }

  .page-hero,
  .page-hero--gallery,
  .page-hero--reviews {
    min-height: 450px;
  }

  .offer-service__media {
    min-height: 300px;
  }

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

  .scenario-card {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  :root {
    --section-y: 56px;
    --font-size-base: 15.5px;
    --font-size-h1: 41px;
    --font-size-h2: 34px;
  }

  .shell,
  .shell--narrow,
  .sos-custom-section__inner {
    width: min(100% - 32px, var(--shell));
  }

  h1 {
    font-size: clamp(2.05rem, 9.6vw, 2.55rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: clamp(1.72rem, 7.5vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  h3 {
    font-size: clamp(1.18rem, 5.3vw, 1.5rem);
  }

  .section-head {
    margin-bottom: 32px;
  }

  .section-kicker {
    gap: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .section-kicker::before {
    width: 34px;
  }

  .section-lead,
  .hero__lead,
  .page-hero__lead {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero {
    min-height: 610px;
  }

  .hero__inner {
    min-height: 610px;
    padding-block: 58px 38px;
  }

  .hero__media img {
    content: url("/assets/img/hero-car-mobile.webp");
    object-position: center 46%;
    transform: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.6vw, 2.55rem);
  }

  .hero__kicker {
    margin-bottom: 16px;
  }

  .hero__lead {
    margin-top: 18px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__actions .button {
    min-height: 48px;
    padding: 13px 18px;
  }

  .hero__rail {
    display: none;
  }

  .metric {
    min-height: 118px;
    padding: 20px;
  }

  .metric__value {
    font-size: 1.75rem;
  }

  .metric__label {
    font-size: 0.78rem;
  }

  .service-card,
  .service-card:last-of-type,
  .service-card__body {
    min-height: 360px;
  }

  .service-card__body {
    padding: 24px;
  }

  .service-card__index {
    top: 21px;
    left: 23px;
  }

  .service-card h3 {
    font-size: 1.55rem;
  }

  .step {
    padding-block: 23px;
  }

  .brand-feature {
    max-width: 100%;
  }

  .brand-feature,
  .brand-feature img {
    min-height: 0;
  }

  .area-card {
    min-height: 270px;
    padding: 26px;
  }

  .area-visual {
    min-height: 240px;
  }

  .faq-item summary {
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    padding-block: 22px;
    font-size: 1.08rem;
  }

  .faq-item__answer {
    padding: 0 0 24px 40px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .cta-panel {
    padding: 28px 22px;
  }

  .cta-panel h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .page-hero,
  .page-hero--gallery,
  .page-hero--reviews {
    min-height: 405px;
  }

  .page-hero__inner {
    padding-block: 62px 40px;
  }

  .page-hero h1 {
    margin-top: 16px;
    font-size: clamp(2rem, 9.2vw, 2.45rem);
  }

  .page-hero__lead {
    margin-top: 16px;
  }

  .offer-service {
    min-height: 0;
  }

  .offer-service__media {
    min-height: 220px;
    max-height: 250px;
  }

  .offer-service__body {
    padding: 25px 22px;
  }

  .offer-service h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .factor {
    min-height: 0;
    padding: 23px;
  }

  .factor__number {
    margin-bottom: 24px;
  }

  .gallery-grid {
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .scenario-card,
  .scenario-card:nth-of-type(3n) {
    min-height: 0;
  }

  .scenario-card__media {
    min-height: 210px;
    max-height: 240px;
  }

  .scenario-card__body {
    padding: 24px 22px;
  }

  .social-card {
    min-height: 82px;
  }

  .privacy-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    gap: 12px;
    width: auto;
    padding: 14px;
  }

  .privacy-consent p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .privacy-consent p strong {
    margin-bottom: 2px;
    font-size: 0.9rem;
  }

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

  .privacy-consent__actions button {
    min-height: 40px;
    padding: 8px 7px;
    font-size: 0.74rem;
    line-height: 1.2;
  }
}

@media (max-width: 440px) {
  .privacy-consent__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

/* Final layout constraints for media cards */
.offer-service__media,
.scenario-card__media {
  position: relative;
  overflow: hidden;
}

.offer-service__media img,
.scenario-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offer-service {
  min-height: 400px;
}

.scenario-card {
  min-height: 330px;
}

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

@media (min-width: 981px) {
  .service-card,
  .service-card:nth-of-type(1),
  .service-card:nth-of-type(4) {
    grid-column: span 4;
  }

  .service-card:nth-of-type(1),
  .service-card:nth-of-type(2) {
    grid-column: span 6;
  }
}

@media (max-width: 980px) {
  .offer-service__media {
    min-height: 280px;
  }

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

@media (max-width: 720px) {
  .offer-service__media {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }

  .scenario-card__media {
    height: 210px;
    min-height: 210px;
    max-height: 210px;
  }

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

@media (max-width: 720px) {
  .privacy-consent {
    gap: 8px;
    padding: 12px;
  }

  .privacy-consent p {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .privacy-consent p strong {
    font-size: 0.86rem;
  }

  .privacy-consent__actions button {
    min-height: 38px;
    padding: 7px 6px;
    font-size: 0.7rem;
  }
}

/* 2026-08-11 final compact layout correction */
:root {
  --font-size-h1: 62px;
  --font-size-h2: 40px;
}

h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.875rem);
}

h2 {
  font-size: clamp(1.85rem, 3.1vw, 2.5rem);
}

.hero {
  min-height: clamp(600px, 72svh, 700px);
}

.hero__inner {
  padding-block: clamp(64px, 8vh, 84px) clamp(42px, 6vh, 58px);
}

.hero h1 {
  max-width: 760px;
}

.page-hero,
.page-hero--gallery,
.page-hero--reviews {
  min-height: 440px;
}

.page-hero__inner {
  padding-block: 72px 48px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.35rem, 4.45vw, 3.75rem);
}

.cta-panel h2 {
  font-size: clamp(1.85rem, 3.55vw, 3rem);
}

.service-card,
.service-card__body {
  min-height: 360px;
}

.service-card h3 {
  font-size: clamp(1.38rem, 1.9vw, 1.9rem);
}

.brand-feature {
  max-width: 980px;
}

.area-card,
.area-visual {
  min-height: 290px;
}

.offer-service {
  min-height: 380px;
}

.offer-service__media {
  min-height: 290px;
}

.offer-service h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
}

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

.scenario-card {
  min-height: 310px;
}

.scenario-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.sos-custom-section img {
  max-height: 380px;
  width: 100%;
  height: auto;
}

.service-card__media img,
.offer-service__media img,
.scenario-card__media img,
.gallery-card img,
.area-visual img,
.page-hero__media img,
.hero__media img {
  max-width: none;
  object-fit: cover;
}

.quick-contact__link {
  position: relative;
  width: 52px;
  min-height: 52px;
  justify-content: center;
  gap: 0;
  padding: 0;
}

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

.quick-contact__label {
  position: absolute;
  right: calc(100% + 10px);
  width: max-content;
  height: auto;
  padding: 8px 10px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 0.7rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.quick-contact__link:hover .quick-contact__label,
.quick-contact__link:focus-visible .quick-contact__label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(2.25rem, 6.2vw, 3.1rem);
  }

  h2 {
    font-size: clamp(1.78rem, 4.2vw, 2.35rem);
  }

  .hero__inner {
    min-height: 610px;
  }

  .page-hero,
  .page-hero--gallery,
  .page-hero--reviews {
    min-height: 420px;
  }

  .service-card,
  .service-card__body {
    min-height: 340px;
  }

  .offer-service__media {
    min-height: 260px;
  }

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

  .scenario-card {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  body:not(.policy-page) {
    padding-bottom: 70px;
  }

  :root {
    --font-size-h1: 38px;
    --font-size-h2: 31px;
  }

  h1,
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.375rem);
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 1.95rem);
  }

  .hero,
  .hero__inner {
    min-height: 580px;
  }

  .hero__inner {
    padding-block: 50px 34px;
  }

  .page-hero,
  .page-hero--gallery,
  .page-hero--reviews {
    min-height: 370px;
  }

  .page-hero__inner {
    padding-block: 54px 34px;
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 8.7vw, 2.3rem);
  }

  .service-card,
  .service-card:last-of-type,
  .service-card__body {
    min-height: 315px;
  }

  .service-card h3 {
    font-size: 1.42rem;
  }

  .offer-service__media {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
  }

  .offer-service h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.82rem);
  }

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

  .scenario-card__media {
    height: 190px;
    min-height: 190px;
    max-height: 190px;
  }

  .area-visual {
    min-height: 215px;
  }

  .quick-contact {
    right: 12px;
    bottom: 10px;
    left: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .quick-contact__link {
    width: 100%;
    height: 48px;
    min-height: 48px;
    gap: 8px;
    padding: 0 10px;
  }

  .quick-contact__label {
    position: static;
    right: auto;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    clip: auto;
    clip-path: none;
    border: 0;
    background: transparent;
    font-size: 0.66rem;
    opacity: 1;
    transform: none;
    white-space: nowrap;
  }

  .quick-contact__link:hover .quick-contact__label,
  .quick-contact__link:focus-visible .quick-contact__label {
    transform: none;
  }
}

@media (max-width: 360px) {
  h1,
  .hero h1 {
    font-size: clamp(1.82rem, 8.7vw, 2rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6.8vw, 1.78rem);
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 8.2vw, 2rem);
  }

  .quick-contact__label {
    font-size: 0.61rem;
  }
}


/* Compact transition between realization cards and cooperation standard */
[data-sos-section="realizations-scenarios"] {
  padding-bottom: clamp(34px, 3.5vw, 48px);
}

[data-sos-section="realizations-standard"] {
  padding-top: clamp(48px, 4.5vw, 64px);
}

@media (max-width: 720px) {
  [data-sos-section="realizations-scenarios"] {
    padding-bottom: 28px;
  }

  [data-sos-section="realizations-standard"] {
    padding-top: 44px;
  }
}
