:root {
  --brand-900: #4a1b08;
  --brand-800: #5b240b;
  --brand-700: #743716;
  --oak-500: #b97a3c;
  --oak-200: #dfc397;
  --paper: #fcfbf7;
  --sand-50: #f4f0e8;
  --sand-100: #eae3d8;
  --line: #d5cec1;
  --ink: #202421;
  --text: #363c38;
  --muted: #626963;
  --forest: #2f5847;
  --white: #ffffff;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --shadow-card: 0 10px 30px rgba(32, 24, 18, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  min-width: 320px;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--oak-200);
  color: var(--brand-900);
}

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

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

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

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

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

h1,
h2 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: 0.99;
  margin-bottom: 28px;
  max-width: 760px;
}

h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.25rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

h3 {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.2;
}

:focus-visible {
  outline: 3px solid rgba(91, 36, 11, 0.28);
  outline-offset: 3px;
}

.container {
  margin: 0 auto;
  max-width: 1344px;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}

.section-pad {
  padding-bottom: 112px;
  padding-top: 112px;
}

.skip-link {
  background: var(--brand-800);
  color: var(--white);
  left: 12px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

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

.topline {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.topline-inner {
  align-items: center;
  display: flex;
  gap: 34px;
  height: 32px;
  justify-content: space-between;
}

.topline-products,
.topline-contacts {
  align-items: center;
  display: flex;
  gap: 34px;
}

.topline-products > span {
  align-items: center;
  display: inline-flex;
  gap: 34px;
}

.topline-products > span:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.25);
  content: "";
  height: 3px;
  width: 3px;
}

.topline-contacts {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.topline-contacts a {
  align-items: baseline;
  display: inline-flex;
  gap: 7px;
  transition: color 180ms ease;
  white-space: nowrap;
}

.topline-contacts a span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topline-contacts a strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.topline-contacts a:hover {
  color: var(--white);
}

.site-header {
  backdrop-filter: blur(16px);
  background: rgba(252, 251, 247, 0.93);
  border-bottom: 1px solid rgba(213, 206, 193, 0.75);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
}

.wordmark {
  align-items: center;
  color: var(--brand-900);
  display: inline-flex;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  gap: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.wordmark-oak {
  background: var(--brand-800);
  display: block;
  height: 32px;
  position: relative;
  width: 2px;
}

.wordmark-oak::before,
.wordmark-oak::after {
  background: var(--brand-800);
  border-radius: 50% 0 50% 50%;
  content: "";
  height: 11px;
  position: absolute;
  width: 7px;
}

.wordmark-oak::before {
  left: -6px;
  top: 6px;
  transform: rotate(25deg);
}

.wordmark-oak::after {
  right: -6px;
  top: 14px;
  transform: rotate(205deg);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 650;
  position: relative;
}

.desktop-nav a::after {
  background: var(--brand-800);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  align-items: center;
  background: var(--brand-800);
  border: 1px solid var(--brand-800);
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 12px 23px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #431805;
  border-color: #431805;
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
}

.button-ghost {
  background: transparent;
  color: var(--brand-800);
}

.button-ghost:hover {
  background: var(--brand-800);
  color: var(--white);
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--brand-900);
}

.button-light:hover {
  background: var(--oak-200);
  border-color: var(--oak-200);
  color: var(--brand-900);
}

.mobile-menu {
  display: none;
  position: relative;
}

.hero {
  background:
    radial-gradient(circle at 15% 25%, rgba(223, 195, 151, 0.28), transparent 28%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 52px 0 64px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  min-height: 620px;
}

.hero-copy {
  padding-bottom: 26px;
  padding-top: 26px;
}

.eyebrow {
  align-items: center;
  color: var(--brand-700);
  display: flex;
  font-size: 0.68rem;
  font-weight: 750;
  gap: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--oak-500);
  content: "";
  display: block;
  height: 1px;
  width: 34px;
}

.eyebrow-light {
  color: var(--oak-200);
}

.hero-lead {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
}

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

.microcopy {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 560px;
}

.hero-visual {
  aspect-ratio: 1.08 / 1;
  background: var(--sand-100);
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.hero-visual > picture {
  inset: 0;
  position: absolute;
}

.hero-visual > picture img {
  filter: saturate(0.55) sepia(0.18) contrast(1.04);
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.hero-visual:hover > picture img {
  transform: scale(1.015);
}

.hero-scrim {
  background: linear-gradient(180deg, transparent 35%, rgba(32, 24, 18, 0.55) 100%);
  inset: 0;
  position: absolute;
}

.spec-card {
  background: rgba(252, 251, 247, 0.96);
  bottom: 30px;
  box-shadow: var(--shadow-card);
  left: 30px;
  max-width: 360px;
  padding: 22px 24px;
  position: absolute;
  width: calc(100% - 60px);
}

.spec-kicker {
  color: var(--brand-700);
  display: block;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.spec-card dl {
  margin: 0;
}

.spec-card dl > div {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 8px 0;
}

.spec-card dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.spec-card dd {
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 650;
  margin: 0;
  text-align: right;
}

.visual-caption {
  bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.6rem;
  letter-spacing: 0.03em;
  position: absolute;
  right: 15px;
}

.section-heading {
  max-width: 720px;
}

.section-heading > p:not(.eyebrow),
.section-intro {
  color: var(--muted);
  line-height: 1.7;
}

.heading-row {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  margin-bottom: 52px;
  max-width: none;
}

.heading-row h2,
.heading-row p {
  margin-bottom: 0;
}

.directions {
  background: var(--sand-50);
}

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

.direction-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  min-height: 320px;
  overflow: hidden;
  padding: 34px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.direction-card::after {
  background: linear-gradient(90deg, var(--oak-200), var(--brand-700));
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 260ms ease;
  width: 100%;
}

.direction-card:hover {
  border-color: var(--oak-500);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.direction-card:hover::after {
  transform: scaleX(1);
}

.direction-number {
  color: var(--brand-700);
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.direction-card > div {
  align-self: end;
}

.direction-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.direction-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 14px 0 16px;
}

.direction-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  max-width: 440px;
}

.arrow {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-800);
  display: flex;
  font-size: 1.15rem;
  height: 46px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
  width: 46px;
}

.direction-card:hover .arrow {
  background: var(--brand-800);
  color: var(--white);
}

.catalog {
  background: var(--paper);
}

.catalog-heading {
  margin-bottom: 52px;
}

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

.catalog-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: 32px;
  transition: background 180ms ease;
}

.catalog-card:hover {
  background: var(--sand-50);
}

.catalog-card-top {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 50px;
}

.card-number {
  color: var(--brand-700);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.card-line {
  background: var(--line);
  height: 1px;
  width: 38px;
}

.catalog-card h3 {
  font-size: 1.16rem;
  margin-bottom: 15px;
}

.catalog-card > p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 30px;
}

.spec-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.66rem;
  padding: 5px 10px;
}

.text-link {
  align-items: center;
  color: var(--brand-800);
  display: inline-flex;
  font-size: 0.79rem;
  font-weight: 750;
  gap: 9px;
  margin-top: auto;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: gap 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
  gap: 13px;
  text-decoration-color: currentColor;
}

.catalog-note {
  color: var(--muted);
  font-size: 0.73rem;
  margin: 24px 0 0;
}

.calculator-section {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.78);
}

.calculator-layout {
  align-items: center;
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
}

.calculator-copy h2 {
  color: var(--white);
  max-width: 560px;
}

.calculator-copy > p:not(.eyebrow) {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
}

.check-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.79rem;
  padding: 13px 0 13px 28px;
  position: relative;
}

.check-list li::before {
  color: var(--oak-200);
  content: "✓";
  left: 0;
  position: absolute;
}

.calculator-card {
  background: var(--brand-800);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 36px;
}

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

.calculator-fields label {
  display: grid;
  gap: 8px;
}

.calculator-fields label > span:first-child {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 650;
}

.field-wrap {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  min-height: 54px;
  padding-right: 16px;
}

.field-wrap:focus-within {
  border-color: var(--oak-200);
  box-shadow: 0 0 0 3px rgba(223, 195, 151, 0.18);
}

.field-wrap input {
  background: transparent;
  border: 0;
  color: var(--white);
  height: 52px;
  min-width: 0;
  outline: 0;
  padding: 0 15px;
  width: 100%;
}

.field-wrap input::-webkit-inner-spin-button,
.field-wrap input::-webkit-outer-spin-button {
  appearance: none;
}

.field-wrap small {
  color: var(--oak-200);
  font-size: 0.7rem;
  white-space: nowrap;
}

.calculator-result {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  margin: 28px 0;
  padding: 24px 0;
}

.calculator-result > span {
  color: var(--oak-200);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.calculator-result strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 9px 0 13px;
}

.calculator-result small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.5;
}

.approach {
  background: var(--sand-50);
}

.approach-grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.approach-image {
  aspect-ratio: 0.92 / 1;
  margin: 0;
  min-height: 650px;
  overflow: hidden;
  position: sticky;
  top: 112px;
}

.approach-image picture {
  inset: 0;
  position: absolute;
}

.approach-image picture img {
  filter: saturate(0.76) contrast(1.02);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.approach-image figcaption {
  background: rgba(32, 36, 33, 0.8);
  bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  left: 0;
  padding: 8px 12px;
  position: absolute;
}

.approach-copy {
  padding-top: 25px;
}

.benefit-list {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

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

.benefit > span {
  color: var(--brand-700);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  padding-top: 4px;
}

.benefit h3 {
  font-size: 1rem;
  margin-bottom: 7px;
}

.benefit p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.order {
  background: var(--paper);
}

.steps-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps-grid li {
  border-left: 1px solid var(--line);
  min-height: 250px;
  padding: 0 26px 26px;
}

.steps-grid li:first-child {
  padding-left: 0;
}

.steps-grid li > span {
  color: var(--brand-700);
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 72px;
}

.steps-grid h3 {
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.steps-grid p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.faq {
  background: var(--sand-50);
}

.faq-grid {
  align-items: start;
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.faq-heading .text-link {
  margin-top: 20px;
}

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

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

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 0.94rem;
  font-weight: 650;
  gap: 24px;
  justify-content: space-between;
  list-style: none;
  min-height: 84px;
  padding: 22px 0;
}

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

.faq-plus {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-800);
  display: flex;
  flex: 0 0 34px;
  font-size: 1.1rem;
  height: 34px;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-list details[open] .faq-plus {
  background: var(--brand-800);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-list details > p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 720px;
  padding-right: 58px;
}

.contacts-section {
  background: var(--sand-50);
  border-top: 1px solid var(--line);
}

.contacts-grid {
  align-items: start;
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
}

.contacts-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px;
}

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

.contact-item {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  min-height: 150px;
  padding: 22px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-item:hover {
  border-color: var(--oak-500);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.contact-item > span,
.contact-item > small {
  font-size: 0.64rem;
}

.contact-item > span {
  color: var(--brand-700);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-item > strong {
  align-self: end;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.contact-item > small {
  color: var(--muted);
  margin-top: 4px;
}

.contact-item b,
.messenger-link b {
  color: var(--brand-700);
  font-weight: 700;
  margin-left: 4px;
}

.messenger-group {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 24px;
}

.messenger-group > p {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.messenger-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.messenger-link {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: grid;
  height: 78px;
  padding: 11px;
  place-items: center;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 78px;
}

.messenger-link:hover {
  box-shadow: 0 12px 28px rgba(32, 36, 33, 0.14);
  transform: translateY(-3px);
}

.messenger-link img {
  height: 54px;
  object-fit: contain;
  width: 54px;
}

.messenger-link--whatsapp {
  background: #effbf3;
  border-color: rgba(37, 211, 102, 0.32);
}

.messenger-link--telegram {
  background: #eef8fd;
  border-color: rgba(34, 158, 217, 0.3);
}

.messenger-link--max {
  background: #f4f0ff;
  border-color: rgba(110, 26, 255, 0.26);
}

.messenger-link::after {
  background: var(--ink);
  border-radius: 999px;
  bottom: -34px;
  color: var(--white);
  content: attr(data-label);
  font-size: 0.62rem;
  font-weight: 700;
  left: 50%;
  opacity: 0;
  padding: 5px 9px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -4px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
  z-index: 3;
}

.messenger-link:hover::after,
.messenger-link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.request-section {
  background: var(--paper);
}

.request-grid {
  align-items: start;
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(0, 0.76fr) minmax(560px, 1.24fr);
}

.request-copy {
  position: sticky;
  top: 120px;
}

.request-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.request-hint {
  align-items: flex-start;
  background: var(--sand-50);
  border-left: 3px solid var(--oak-500);
  display: flex;
  gap: 13px;
  margin-top: 32px;
  padding: 16px 18px;
}

.request-hint > span {
  align-items: center;
  border: 1px solid var(--brand-700);
  border-radius: 50%;
  color: var(--brand-700);
  display: flex;
  flex: 0 0 20px;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  height: 20px;
  justify-content: center;
}

.request-hint p {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
  margin: 0;
}

.request-form {
  background: var(--sand-50);
  border: 1px solid var(--line);
  padding: 36px;
  position: relative;
}

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

.request-form label > span {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 650;
}

.request-form label > span small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 400;
  margin-left: 4px;
}

.form-row {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0;
}

.full-field + .full-field {
  margin-top: 16px;
}

.honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.request-form input,
.request-form select,
.request-form textarea {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  padding: 13px 15px;
  width: 100%;
}

.request-form input,
.request-form select {
  min-height: 54px;
}

.request-form textarea {
  line-height: 1.55;
  resize: vertical;
}

.request-form input::placeholder,
.request-form textarea::placeholder {
  color: #8b8f8b;
  opacity: 1;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--brand-700);
  box-shadow: 0 0 0 3px rgba(91, 36, 11, 0.13);
}

.request-preview {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding-top: 24px;
}

.request-preview > span {
  color: var(--brand-700);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-preview textarea {
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-requirement {
  color: var(--muted);
  font-size: 0.65rem;
  margin: -7px 0 0;
}

.privacy-confirmation {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  margin-top: 22px;
  padding: 18px;
}

.request-form .privacy-checkbox {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 22px minmax(0, 1fr);
}

.request-form .privacy-checkbox input[type="checkbox"] {
  accent-color: var(--brand-800);
  appearance: auto;
  height: 20px;
  margin: 2px 0 0;
  min-height: 20px;
  padding: 0;
  width: 20px;
}

.request-form .privacy-checkbox > span {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.6;
}

.privacy-checkbox a,
.privacy-confirmation > p a {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-confirmation > p {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.55;
  margin: 12px 0 0 34px;
}

.request-form .button {
  margin-top: 20px;
  width: 100%;
}

.form-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.form-actions .button {
  margin-top: 0;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-disclaimer,
.form-status {
  font-size: 0.66rem;
  line-height: 1.5;
  margin: 10px 0 0;
  text-align: center;
}

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

.form-status {
  color: var(--forest);
  font-weight: 650;
  min-height: 1.5em;
}

.form-status[data-state="error"] {
  color: #8c2f1f;
}

.form-status[data-state="success"] {
  color: var(--forest);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 34px;
}

.footer-main {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 50px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 26px;
}

.footer-brand img {
  background: var(--white);
  height: 130px;
  object-fit: contain;
  padding: 8px;
  width: 92px;
}

.footer-wordmark {
  color: var(--white);
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.74rem;
  margin: 0;
  max-width: 350px;
}

.footer-main nav {
  display: grid;
  gap: 10px 40px;
  grid-template-columns: repeat(2, auto);
}

.footer-main nav a {
  font-size: 0.73rem;
}

.footer-main nav a:hover {
  color: var(--oak-200);
}

.footer-contacts {
  display: grid;
  gap: 13px;
  text-align: right;
}

.footer-contacts > div {
  display: grid;
  gap: 2px;
}

.footer-contacts span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contacts a {
  color: var(--white);
  font-size: 0.74rem;
}

.footer-contacts a:hover {
  color: var(--oak-200);
}

.footer-bottom {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  padding-top: 28px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.59rem;
  line-height: 1.55;
  margin: 0;
}

.footer-legal {
  display: grid;
  gap: 12px;
  max-width: 670px;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.59rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--oak-200);
}

.photo-credit {
  text-align: right;
}

.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  background: var(--sand-50);
}

.legal-header .header-inner {
  gap: 28px;
}

.legal-header-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.legal-header-links a:not(.button) {
  font-size: 0.76rem;
  font-weight: 650;
}

.legal-header-links a:not(.button):hover {
  color: var(--brand-700);
}

.legal-main {
  padding-bottom: 96px;
}

.legal-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 76px 0 68px;
}

.legal-hero .eyebrow {
  margin-bottom: 22px;
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 1050px;
}

.legal-hero > .container > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 820px;
}

.legal-layout {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(250px, 0.35fr) minmax(0, 1fr);
  padding-top: 48px;
}

.legal-summary {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.74);
  padding: 26px;
  position: sticky;
  top: 112px;
}

.legal-summary h2 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.legal-summary dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.legal-summary dl > div {
  display: grid;
  gap: 3px;
}

.legal-summary dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-summary dd {
  font-size: 0.71rem;
  line-height: 1.55;
  margin: 0;
  overflow-wrap: anywhere;
}

.legal-summary a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-document {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 64px);
}

.legal-document section + section {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 42px;
}

.legal-document h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.legal-document h3 {
  font-size: 0.94rem;
  line-height: 1.4;
  margin: 26px 0 12px;
}

.legal-document p,
.legal-document li {
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.78;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.legal-document ul,
.legal-document ol {
  display: grid;
  gap: 8px;
  margin: 14px 0 22px;
  padding-left: 24px;
}

.legal-document a {
  color: var(--brand-700);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  background: var(--sand-50);
  border-left: 3px solid var(--oak-500);
  margin: 24px 0;
  padding: 18px 20px;
}

.legal-note p {
  margin: 0;
}

.legal-revision {
  color: var(--brand-700);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.category-page {
  background: var(--sand-50);
  padding-bottom: 0;
}

.category-main {
  padding-bottom: 96px;
}

.breadcrumbs {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.68rem;
  gap: 8px;
  padding-bottom: 22px;
  padding-top: 22px;
}

.breadcrumbs a {
  color: var(--brand-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs span[aria-hidden="true"] {
  color: var(--line);
}

.category-hero {
  background:
    radial-gradient(circle at 86% 12%, rgba(223, 195, 151, 0.34), transparent 29%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 54px 0 82px;
}

.category-hero-grid {
  align-items: end;
  display: grid;
  gap: clamp(44px, 7vw, 104px);
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.38fr);
}

.category-hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.25rem);
  max-width: 920px;
}

.category-lead {
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.72;
  max-width: 810px;
}

.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.category-disclaimer {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.65;
  margin: 20px 0 0;
  max-width: 760px;
}

.category-summary {
  background: var(--brand-900);
  box-shadow: var(--shadow-card);
  color: rgba(255, 255, 255, 0.76);
  padding: clamp(24px, 3vw, 36px);
}

.category-summary > span {
  color: var(--oak-200);
  display: block;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.category-summary dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.category-summary dl > div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 4px;
  padding-top: 14px;
}

.category-summary dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-summary dd {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.category-content {
  display: grid;
  gap: 72px;
  padding-top: 72px;
}

.category-section {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(30px, 5vw, 64px);
}

.category-section-heading {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  margin-bottom: 38px;
}

.category-section-heading h2 {
  margin-bottom: 0;
}

.category-section-heading p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
  margin: 4px 0 0;
}

.category-card-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
}

.category-card {
  background: var(--paper);
  min-height: 218px;
  padding: 28px;
}

.category-card > span {
  color: var(--brand-700);
  display: block;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.category-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.category-card p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.category-checklist {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-checklist li {
  background: var(--sand-50);
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 20px 22px 20px 52px;
  position: relative;
}

.category-checklist li::before {
  color: var(--forest);
  content: "✓";
  font-weight: 800;
  left: 23px;
  position: absolute;
}

.category-steps {
  counter-reset: category-step;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-steps li {
  border-left: 2px solid var(--oak-500);
  counter-increment: category-step;
  padding: 4px 10px 4px 22px;
}

.category-steps li::before {
  color: var(--brand-700);
  content: "0" counter(category-step);
  display: block;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.category-steps h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.category-steps p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.68;
  margin: 0;
}

.category-faq {
  display: grid;
  gap: 10px;
}

.category-faq details {
  background: var(--sand-50);
  border: 1px solid var(--line);
  padding: 0 24px;
}

.category-faq summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 22px 38px 22px 0;
  position: relative;
}

.category-faq summary::after {
  color: var(--brand-700);
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  position: absolute;
  right: 0;
  top: 15px;
}

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

.category-faq p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.72;
  margin: 0;
  padding: 0 0 22px;
}

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

.related-categories a {
  background: var(--sand-50);
  border: 1px solid var(--line);
  color: var(--brand-800);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 12px 16px;
  transition: background 160ms ease, border-color 160ms ease;
}

.related-categories a:hover {
  background: var(--white);
  border-color: var(--oak-500);
}

.category-cta {
  align-items: center;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(30px, 5vw, 58px);
}

.category-cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.category-cta p {
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
  max-width: 760px;
}

.category-cta .button {
  background: var(--white);
  color: var(--brand-900);
  white-space: nowrap;
}

.category-footer-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62rem;
  line-height: 1.62;
  margin: 0;
}

.contact-item--wide {
  grid-column: 1 / -1;
  min-height: 132px;
}

.contact-item--wide strong {
  font-size: 1.08rem;
}

.footer-address {
  color: rgba(255, 255, 255, 0.86);
  display: block;
  font-size: 0.69rem;
  line-height: 1.5;
  max-width: 310px;
}

.production-hero {
  padding-bottom: 74px;
}

.production-hero .category-hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.83fr) minmax(420px, 1.17fr);
}

.production-hero-visual {
  aspect-ratio: 16 / 10;
  background: var(--sand-100);
  box-shadow: var(--shadow-card);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.production-hero-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.production-hero-visual figcaption {
  background: rgba(32, 36, 33, 0.84);
  bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.63rem;
  left: 0;
  padding: 9px 13px;
  position: absolute;
}

.production-overview {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--line);
  border: 1px solid var(--line);
}

.production-overview article {
  background: var(--paper);
  min-height: 210px;
  padding: 26px;
}

.production-overview span {
  color: var(--brand-700);
  display: block;
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  margin-bottom: 23px;
}

.production-overview h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.production-overview p {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.68;
  margin: 0;
}

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

.production-photo {
  align-self: start;
  background: var(--sand-50);
  border: 1px solid var(--line);
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
}

.production-photo--wide {
  grid-column: span 8;
}

.production-photo--full {
  grid-column: 1 / -1;
}

.production-photo a {
  background: var(--sand-100);
  display: block;
  overflow: hidden;
}

.production-photo img {
  height: auto;
  transition: transform 380ms ease;
  width: 100%;
}

.production-photo--wide img,
.production-photo--full img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.production-photo:not(.production-photo--wide):not(.production-photo--full) img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.production-photo a:hover img {
  transform: scale(1.012);
}

.production-photo figcaption {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
  padding: 13px 15px 15px;
}

.production-gallery-note {
  color: var(--muted);
  font-size: 0.7rem;
  margin: -18px 0 28px;
}

.production-location-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.production-address-card {
  align-content: start;
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  padding: clamp(28px, 4vw, 44px);
}

.production-address-card > span {
  color: var(--oak-200);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.production-address-card address {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-style: normal;
  line-height: 1.35;
  margin-bottom: 22px;
}

.production-address-card p {
  font-size: 0.76rem;
  line-height: 1.65;
  margin-bottom: 26px;
}

.location-actions {
  display: grid;
  gap: 10px;
}

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

.production-address-card .button-ghost {
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.production-address-card .button-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--brand-900);
}

.location-coordinates {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.64rem;
  margin-top: 18px;
}

.map-shell {
  background:
    radial-gradient(circle at 78% 22%, rgba(223, 195, 151, 0.55), transparent 32%),
    var(--sand-100);
  border: 1px solid var(--line);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

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

.map-placeholder {
  align-content: center;
  display: grid;
  justify-items: start;
  min-height: 430px;
  padding: clamp(28px, 5vw, 64px);
}

.map-placeholder > span {
  color: var(--brand-700);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.map-placeholder h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 400;
  margin-bottom: 14px;
}

.map-placeholder p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 580px;
}

.map-placeholder small {
  color: var(--muted);
  display: block;
  font-size: 0.61rem;
  line-height: 1.55;
  margin-top: 16px;
  max-width: 600px;
}

.map-placeholder small a {
  color: var(--brand-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.production-catalog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.production-catalog-links a {
  background: var(--sand-50);
  border: 1px solid var(--line);
  color: var(--brand-800);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 13px 17px;
}

.production-catalog-links a:hover {
  background: var(--white);
  border-color: var(--oak-500);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .topline-products {
    display: none;
  }

  .topline-inner {
    justify-content: flex-end;
  }

  .desktop-nav {
    gap: 20px;
  }

  .category-card-grid,
  .category-steps {
    grid-template-columns: 1fr;
  }

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

  .category-card {
    min-height: 0;
  }

  .header-inner > .button {
    display: none;
  }

  .hero-grid {
    gap: 34px;
  }

  .calculator-layout,
  .request-grid,
  .contacts-grid {
    gap: 54px;
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  }

  .catalog-card {
    padding: 26px;
  }

  .approach-grid {
    gap: 54px;
  }
}

@media (max-width: 900px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-pad {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 44px;
    justify-content: center;
    list-style: none;
    width: 44px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    background: var(--brand-800);
    display: block;
    height: 1.5px;
    width: 22px;
  }

  .mobile-menu nav {
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    display: grid;
    min-width: 270px;
    padding: 16px;
    position: absolute;
    right: 0;
    top: 52px;
  }

  .mobile-menu nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    font-size: 0.85rem;
    padding: 13px 4px;
  }

  .mobile-menu nav .button {
    margin-top: 14px;
  }

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

  .production-hero .category-hero-grid,
  .production-location-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    padding-bottom: 0;
  }

  .hero-visual {
    aspect-ratio: 1.5 / 1;
    min-height: 0;
  }

  .direction-card {
    min-height: 290px;
  }

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

  .calculator-layout,
  .request-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .calculator-copy {
    max-width: 720px;
  }

  .approach-image,
  .faq-heading,
  .request-copy {
    position: static;
  }

  .approach-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .approach-image {
    min-height: 560px;
  }

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

  .steps-grid li {
    border-bottom: 1px solid var(--line);
    min-height: 230px;
    padding: 28px;
  }

  .steps-grid li:first-child {
    padding-left: 28px;
  }

  .steps-grid li > span {
    margin-bottom: 45px;
  }

  .faq-grid {
    gap: 48px;
    grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  }

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

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

  .legal-summary {
    position: static;
  }

  .photo-credit {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 16px;
    padding-bottom: 58px;
  }

  .legal-page {
    padding-bottom: 0;
  }

  .category-page {
    padding-bottom: 0;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-pad {
    padding-bottom: 64px;
    padding-top: 64px;
  }

  .topline {
    display: none;
  }

  .header-inner {
    height: 64px;
  }

  .wordmark {
    font-size: 0.91rem;
    gap: 10px;
  }

  .wordmark-oak {
    height: 27px;
  }

  .hero {
    padding: 38px 0 16px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-copy {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 12.2vw, 3.1rem);
    line-height: 1;
    margin-bottom: 22px;
  }

  h2 {
    font-size: clamp(2rem, 9.6vw, 2.55rem);
  }

  .eyebrow {
    font-size: 0.62rem;
    margin-bottom: 18px;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 26px;
  }

  .hero-actions {
    display: grid;
  }

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

  .button {
    min-height: 52px;
  }

  .hero-visual {
    aspect-ratio: 4 / 3;
  }

  .spec-card {
    bottom: 28px;
    left: 12px;
    padding: 16px;
    width: calc(100% - 24px);
  }

  .spec-card dl > div {
    padding: 6px 0;
  }

  .visual-caption {
    bottom: 7px;
    right: 10px;
  }

  .heading-row {
    display: block;
    margin-bottom: 34px;
  }

  .heading-row > p {
    font-size: 0.88rem;
    margin-top: 18px;
  }

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

  .direction-card {
    gap: 18px;
    grid-template-columns: auto 1fr;
    min-height: 300px;
    padding: 24px;
  }

  .direction-card .arrow {
    bottom: 22px;
    position: absolute;
    right: 22px;
  }

  .direction-card h3 {
    font-size: 1.9rem;
  }

  .catalog-heading {
    margin-bottom: 34px;
  }

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

  .catalog-card {
    min-height: 320px;
    padding: 24px;
  }

  .catalog-card-top {
    margin-bottom: 34px;
  }

  .calculator-layout {
    gap: 38px;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .calculator-card {
    margin: 0 -16px;
    padding: 24px 16px;
  }

  .approach-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 38px;
  }

  .approach-copy {
    padding-top: 0;
  }

  .approach-image {
    aspect-ratio: 4 / 3;
    min-height: 0;
    width: 100%;
  }

  .benefit {
    gap: 12px;
    grid-template-columns: 30px 1fr;
  }

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

  .steps-grid li,
  .steps-grid li:first-child {
    border-left: 0;
    display: grid;
    gap: 8px 18px;
    grid-template-columns: 54px 1fr;
    min-height: 0;
    padding: 24px 0;
  }

  .steps-grid li > span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .steps-grid h3,
  .steps-grid p {
    margin: 0;
  }

  .faq-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 0.88rem;
    min-height: 76px;
  }

  .faq-list details > p {
    font-size: 0.8rem;
    padding-right: 0;
  }

  .request-grid {
    gap: 34px;
  }

  .contacts-grid {
    gap: 34px;
  }

  .contact-panel {
    margin: 0 -16px;
    padding: 16px;
  }

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

  .contact-item {
    min-height: 128px;
  }

  .contact-item--wide {
    grid-column: auto;
  }

  .request-form {
    margin: 0 -16px;
    padding: 24px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .privacy-confirmation {
    padding: 16px;
  }

  .messenger-links {
    gap: 10px;
  }

  .messenger-link {
    border-radius: 20px;
    height: 70px;
    width: 70px;
  }

  .messenger-link img {
    height: 48px;
    width: 48px;
  }

  .site-footer {
    padding: 52px 0 28px;
  }

  .footer-main {
    align-items: flex-start;
    display: grid;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    height: 108px;
    width: 77px;
  }

  .footer-main nav {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .footer-contacts {
    text-align: left;
  }

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

  .legal-header-links a:not(.button) {
    display: none;
  }

  .legal-header-links .button {
    min-height: 42px;
    padding: 10px 14px;
  }

  .legal-main {
    padding-bottom: 68px;
  }

  .legal-hero {
    padding: 52px 0 46px;
  }

  .legal-layout {
    gap: 22px;
    padding-top: 24px;
  }

  .legal-document {
    margin: 0 -16px;
    padding: 30px 16px;
  }

  .category-main {
    padding-bottom: 0;
  }

  .breadcrumbs {
    font-size: 0.62rem;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .category-hero {
    padding: 36px 0 52px;
  }

  .category-hero-grid,
  .category-section-heading,
  .category-cta {
    grid-template-columns: 1fr;
  }

  .category-hero-grid {
    gap: 34px;
  }

  .category-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
  }

  .category-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .category-actions .button {
    justify-content: center;
    width: 100%;
  }

  .category-content {
    gap: 24px;
    padding-top: 24px;
  }

  .category-section {
    margin: 0 -16px;
    padding: 32px 16px;
  }

  .category-section-heading {
    gap: 10px;
    margin-bottom: 26px;
  }

  .category-card-grid,
  .category-checklist,
  .category-steps {
    grid-template-columns: 1fr;
  }

  .category-card {
    padding: 24px;
  }

  .category-cta {
    margin: 0 -16px;
    padding: 34px 20px;
  }

  .category-cta .button {
    justify-content: center;
    width: 100%;
  }

  .production-hero {
    padding-bottom: 52px;
  }

  .production-hero-visual {
    aspect-ratio: 4 / 3;
  }

  .production-overview {
    grid-template-columns: 1fr;
  }

  .production-overview article {
    min-height: 0;
  }

  .production-gallery-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .production-photo,
  .production-photo--wide,
  .production-photo--full {
    grid-column: auto;
  }

  .production-photo--wide img,
  .production-photo--full img {
    aspect-ratio: 4 / 3;
  }

  .production-photo:not(.production-photo--wide):not(.production-photo--full) img {
    aspect-ratio: 4 / 5;
  }

  .production-location-grid {
    gap: 16px;
  }

  .production-page {
    padding-bottom: 0;
  }

  .production-address-card,
  .map-shell {
    margin-left: -16px;
    margin-right: -16px;
  }

  .map-shell,
  .map-placeholder {
    min-height: 390px;
  }

  .map-shell iframe {
    height: 390px;
  }

  .legal-document section + section {
    margin-top: 34px;
    padding-top: 34px;
  }

  .photo-credit {
    grid-column: auto;
  }

  .mobile-cta {
    background: var(--paper);
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: 3px;
    grid-template-columns: repeat(5, 1fr);
    height: calc(64px + env(safe-area-inset-bottom));
    left: 0;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 110;
  }

  .mobile-cta a {
    align-items: center;
    border-radius: 11px;
    color: var(--brand-800);
    display: flex;
    justify-content: center;
    min-width: 44px;
  }

  .mobile-cta-link--phone {
    background: var(--sand-50);
  }

  .mobile-cta-link--request {
    background: var(--brand-800);
    color: var(--white);
  }

  .mobile-cta-link--messenger img {
    height: 32px;
    object-fit: contain;
    width: 32px;
  }

  .mobile-cta-symbol {
    font-family: var(--font-sans);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
  }

  .has-mobile-cta {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

@media (hover: none) {
  .messenger-link::after {
    display: none;
  }
}

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