@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.5e077c15f6e1.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.bdb7ba651b7b.ttf") format("truetype");
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
}

:root {
  --ink: #201c1b;
  --muted: #706865;
  --paper: #f5f1eb;
  --paper-2: #ebe4da;
  --white: #fffdf9;
  --wine: #6e2638;
  --wine-dark: #4b1826;
  --line: rgba(32, 28, 27, .14);
  --radius: 22px;
  --shadow: 0 22px 70px rgba(32, 28, 27, .13);
  --container: 1240px;
  --font-sans: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-sans); line-height: 1.55; }
body, button, input, select { font-size: 16px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 820px; }
.section { padding: 104px 0; }
h1, h2, h3 { margin: 0; font-family: var(--font-sans); font-weight: 700; letter-spacing: -.045em; line-height: 1.02; }
h1 { font-size: clamp(3.2rem, 7.4vw, 7.4rem); }
h2 { font-size: clamp(2.35rem, 4.8vw, 4.8rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1em; }
.eyebrow { margin: 0 0 18px; color: rgba(255,255,255,.74); font-size: .78rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow.dark { color: var(--wine); }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid var(--wine); border-radius: 999px; background: var(--wine); color: white; font-weight: 700; text-decoration: none; cursor: pointer; transition: .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--wine-dark); }
.button:disabled { cursor: not-allowed; filter: grayscale(1); opacity: .55; transform: none; }
.button-ghost { border-color: rgba(255,255,255,.6); background: transparent; }
.button.small { min-height: 40px; padding: 0 17px; font-size: .88rem; }
.button.full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.skip-link { position: fixed; z-index: 999; top: 8px; left: 8px; padding: 10px 16px; background: white; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }

.site-header { position: absolute; z-index: 20; top: 0; right: 0; left: 0; color: white; }
.header-inner { display: flex; min-height: 88px; align-items: center; gap: 42px; border-bottom: 1px solid rgba(255,255,255,.22); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { display: block; width: 176px; height: auto; filter: invert(1); }
.main-nav { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-left: auto; }
.main-nav a, .header-phone, .brand { flex-shrink: 0; }
.main-nav a, .header-phone { text-decoration: none; }
.header-phone { font-weight: 750; }
.is-inner-page .site-header { background: rgba(245, 241, 235, .92); color: var(--ink); backdrop-filter: blur(18px); }
.is-inner-page .header-inner { border-bottom-color: var(--line); }
.is-inner-page .site-header .brand-logo { filter: none; }

.hero { position: relative; min-height: min(920px, 100svh); overflow: hidden; background: #332624; color: white; }
.hero-bg, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(25,17,17,.82) 0%, rgba(25,17,17,.49) 53%, rgba(25,17,17,.2) 100%), linear-gradient(0deg, rgba(25,17,17,.52), transparent 44%); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: min(920px, 100svh); flex-direction: column; justify-content: flex-end; padding-top: 150px; padding-bottom: 48px; }
.hero h1 { max-width: 1040px; }
.origin-flag { display: inline-block; width: 28px; height: 14px; margin-right: 7px; vertical-align: -2px; object-fit: contain; }
.hero-copy { max-width: 630px; margin: 28px 0 34px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 2vw, 1.35rem); }
.hero-facts { display: grid; margin: 58px 0 0; padding: 26px 0 0; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.25); list-style: none; }
.hero-facts li { display: grid; gap: 3px; padding-right: 28px; }
.hero-facts strong { font-family: var(--font-sans); font-size: 1.65rem; font-weight: 700; }
.hero-facts span { color: rgba(255,255,255,.68); font-size: .92rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.section-heading h2 { max-width: 820px; }
.text-link { flex: 0 0 auto; color: var(--wine); font-weight: 700; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.js .product-initial-extra, .product-card[hidden] { display: none; }
.catalog-more { display: flex; justify-content: center; margin-top: 32px; }
.catalog-more button[hidden] { display: none; }
.product-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 1px 0 rgba(32,28,27,.04); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image { display: block; aspect-ratio: 1.22; overflow: hidden; background: var(--paper-2); text-decoration: none; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-image picture { display: block; width: 100%; height: 100%; }
.product-card:hover .product-image img { transform: scale(1.03); }
.image-placeholder { display: grid; height: 100%; place-items: center; color: var(--muted); }
.product-body { padding: 22px; }
.product-category { margin: 0 0 7px; color: var(--wine); font-size: .76rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.product-body h2, .product-body h3 { margin-bottom: 10px; }
.product-body h2 { font-size: 1.55rem; }
.product-body h3 a, .product-body h2 a { text-decoration: none; }
.product-body > p:not(.product-category) { min-height: 3.1em; color: var(--muted); font-size: .93rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-meta a { color: var(--wine); font-weight: 700; }
.empty-state { grid-column: 1 / -1; padding: 40px; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }

.offer { background: var(--wine-dark); color: white; }
.offer-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 500px); align-items: center; gap: clamp(50px, 9vw, 140px); }
.offer-copy > p:not(.eyebrow) { max-width: 640px; margin: 40px 0 28px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.offer-steps { display: grid; margin: 42px 0 0; padding: 0; gap: 16px; list-style: none; }
.offer-steps li { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,.82); }
.offer-steps span { color: #d8b39e; font: 700 1rem var(--font-sans); }
.lead-form { padding: clamp(28px, 4vw, 48px); border-radius: 28px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.lead-form h3 { margin-bottom: 26px; font-size: 2rem; }
.form-kicker { color: var(--wine); font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.lead-form label { display: grid; margin-bottom: 19px; gap: 8px; font-size: .9rem; font-weight: 720; }
.lead-form label span { color: var(--muted); font-weight: 400; }
.lead-form input, .lead-form select { width: 100%; min-height: 54px; padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--ink); }
.phone-input-wrap { position: relative; display: block; }
.lead-form label .phone-prefix { position: absolute; z-index: 1; top: 50%; left: 15px; transform: translateY(-50%); color: var(--ink); font-size: 1rem; font-weight: 500; pointer-events: none; }
.lead-form .phone-input-wrap input[type="tel"] { padding-left: 43px; }
.lead-form .phone-input-wrap input[type="tel"]::placeholder { color: var(--muted); opacity: .5; }
.lead-form input[type=file] { padding: 13px; }
.lead-form input:focus, .lead-form select:focus { outline: 3px solid rgba(110,38,56,.18); border-color: var(--wine); }
.fine-print { margin: 14px 0 0; color: var(--muted); font-size: .78rem; }
.fine-print a { color: var(--wine); }
.js .form-step[data-step="2"] { display: none; }
.lead-form.is-step-2 .form-step[data-step="1"] { display: none; }
.lead-form.is-step-2 .form-step[data-step="2"] { display: block; }
.split-actions { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.back-button { padding: 0 16px; border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.honeypot { position: absolute; left: -10000px; }

.factory { background: var(--paper-2); }
.factory-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px 100px; }
.rich-copy { color: #4f4845; font-size: 1.08rem; }
.rich-copy > :first-child { margin-top: 0; }
.rich-copy h2, .rich-copy h3 { margin-top: 1.4em; }
.factory-facts { display: grid; grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); padding-top: 45px; border-top: 1px solid var(--line); }
.factory-facts div { display: grid; gap: 4px; }
.factory-facts strong { color: var(--wine); font: 700 clamp(2.4rem, 4.5vw, 4.5rem)/1 var(--font-sans); letter-spacing: -.06em; }
.factory-facts span { color: var(--muted); }

.projects { background: var(--white); }
.projects-more { display: none; }
.projects-more button[hidden] { display: none; }
.discount { position: relative; isolation: isolate; overflow: hidden; background: #263e36; color: var(--white); }
.discount > .container { position: relative; z-index: 1; }
.discount-pattern { position: absolute; inset: 0; pointer-events: none; user-select: none; }
.discount-pattern span { position: absolute; color: rgba(218, 231, 202, .055); font-size: clamp(100px, 13vw, 200px); font-weight: 500; line-height: 1; }
.discount-pattern span:nth-child(1) { top: -35px; left: 3%; transform: rotate(-22deg); }
.discount-pattern span:nth-child(2) { top: 12%; left: 45%; font-size: 90px; transform: rotate(18deg); }
.discount-pattern span:nth-child(3) { top: -45px; right: -1%; font-size: 240px; transform: rotate(28deg); }
.discount-pattern span:nth-child(4) { bottom: -55px; left: 17%; font-size: 220px; transform: rotate(15deg); }
.discount-pattern span:nth-child(5) { bottom: 8%; left: 52%; font-size: 125px; transform: rotate(-30deg); }
.discount-pattern span:nth-child(6) { top: 48%; left: -30px; font-size: 110px; transform: rotate(-12deg); }
@media (max-width: 760px) {
  .discount-pattern span:nth-child(2), .discount-pattern span:nth-child(5) { display: none; }
  .discount-pattern span:nth-child(3) { font-size: 160px; right: -40px; }
}
.discount-copy .eyebrow { color: #c9d8c7; }
.discount-copy > p:not(.eyebrow) { margin-top: 40px; max-width: 620px; color: rgba(255,255,255,.82); font-size: 1.12rem; }
.discount-copy .discount-note { font-size: .9rem; }
.contact-preference-note { color: var(--muted); font-size: .9rem; }
.project-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.project-grid article { padding-bottom: 20px; }
.project-image-button { position: relative; display: block; overflow: hidden; width: 100%; padding: 0; border: 0; border-radius: var(--radius); background: var(--paper-2); cursor: zoom-in; }
.project-image-button img { width: 100%; height: auto; aspect-ratio: 9 / 16; object-fit: cover; object-position: center; transition: transform .35s ease; }
.project-image-button span { position: absolute; right: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(20,18,18,.78); color: white; font-size: .78rem; font-weight: 700; opacity: 0; transform: translateY(5px); transition: .2s ease; }
.project-image-button:hover img { transform: scale(1.015); }
.project-image-button:hover span, .project-image-button:focus-visible span { opacity: 1; transform: none; }
.project-grid h3 { margin: 18px 0 8px; }
.project-grid p { color: var(--muted); }
.image-lightbox { width: min(92vw, 1100px); height: min(92vh, 1100px); padding: 0; border: 0; background: transparent; overflow: visible; }
.image-lightbox::backdrop { background: rgba(10, 9, 9, .9); backdrop-filter: blur(8px); }
.image-lightbox img { width: 100%; height: 100%; object-fit: contain; }
.image-lightbox > button { position: fixed; z-index: 2; top: 18px; right: 22px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(20,18,18,.7); color: white; font: 300 2rem/1 var(--font-sans); cursor: pointer; }
body.has-lightbox { overflow: hidden; }

.salon-gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.salon-gallery figure { margin: 0; }
.salon-gallery img { width: 100%; height: 100%; min-height: 260px; border-radius: var(--radius); object-fit: cover; }
.salon-gallery figcaption { padding: 8px; color: var(--muted); font-size: .85rem; }
.contact-card { display: flex; align-items: end; justify-content: space-between; gap: 35px; padding: clamp(28px, 5vw, 58px); border-radius: var(--radius); background: var(--ink); color: white; }
.contact-card h2 { max-width: 720px; font-size: clamp(2rem, 4vw, 4rem); }
.contact-card p:not(.eyebrow) { margin: 18px 0; color: rgba(255,255,255,.65); }
.contact-card > div > a:not(.button) { font-size: 1.25rem; font-weight: 750; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.map-embed { overflow: hidden; margin-top: 24px; border-radius: var(--radius); background: var(--paper-2); }
.map-embed iframe { display: block; width: 100%; height: 520px; border: 0; }

.reviews { background: var(--white); }
.reviews-widget { display: block; width: 100%; max-width: 760px; height: 720px; margin-inline: auto; border: 0; border-radius: var(--radius); background: var(--white); }

.events { background: var(--paper-2); }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.event-grid article { padding: 28px; border-radius: var(--radius); background: var(--white); }
.event-grid time { color: var(--wine); font-weight: 750; }
.event-grid h3 { margin: 16px 0 10px; }
.event-grid p { color: var(--muted); }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { padding: 24px 0; cursor: pointer; font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; letter-spacing: -.025em; }
.faq details p { padding-bottom: 24px; color: var(--muted); }

.page-hero { padding: 160px 0 90px; background: var(--paper-2); }
.page-hero h1 { max-width: 1000px; font-size: clamp(3rem, 6vw, 6rem); }
.catalog-hero h1 { font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: 1.12; letter-spacing: -.03em; }
.page-hero > .container > p { max-width: 720px; margin-top: 24px; color: var(--muted); font-size: 1.1rem; }
.category-nav { display: flex; overflow-x: auto; gap: 10px; margin-bottom: 36px; padding-bottom: 5px; }
.category-nav a { flex: 0 0 auto; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; color: var(--muted); font-size: .86rem; }
.product-detail { padding-top: 140px; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); align-items: start; gap: clamp(40px, 7vw, 100px); }
.mobile-product-category { display: none; }
.detail-gallery { position: relative; min-width: 0; }
.detail-gallery-stage { position: relative; }
.detail-gallery-track { overflow: hidden; border-radius: var(--radius); }
.detail-gallery-slide { position: relative; display: grid; overflow: hidden; height: auto; margin: 0; place-items: center; background: var(--white); }
.detail-gallery-slide:not(.is-active) { display: none; }
.detail-gallery-slide picture { position: relative; z-index: 1; display: block; width: 100%; }
.detail-gallery-slide img { display: block; width: 100%; height: auto; border-radius: var(--radius); opacity: 1; transition: opacity .2s ease; }
.detail-gallery-slide::before { position: absolute; z-index: 0; inset: 0; content: ""; background: linear-gradient(105deg, var(--paper-2) 25%, #faf7f1 42%, var(--paper-2) 60%); background-size: 220% 100%; opacity: 0; pointer-events: none; }
.detail-gallery-slide.is-loading::before { opacity: 1; animation: gallery-skeleton 1.25s ease-in-out infinite; }
.detail-gallery-slide.is-loading img { opacity: 0; }
@keyframes gallery-skeleton { to { background-position-x: -220%; } }
.detail-gallery-arrow { position: absolute; z-index: 2; top: 50%; display: grid; width: 46px; height: 46px; padding: 0 0 4px; border: 1px solid #ffffff55; border-radius: 50%; place-items: center; transform: translateY(-50%); background: #171313b8; color: white; box-shadow: 0 8px 24px #00000024; cursor: pointer; font: 400 2.2rem/1 var(--font-sans); transition: background .18s ease, opacity .18s ease, transform .18s ease; }
.detail-gallery-arrow:hover { transform: translateY(-50%) scale(1.05); background: #171313e8; }
.detail-gallery-arrow:disabled { opacity: .3; cursor: default; transform: translateY(-50%); }
.detail-gallery-arrow.previous { left: 14px; }
.detail-gallery-arrow.next { right: 14px; }
.detail-gallery-count { margin: 9px 2px 10px; color: var(--muted); text-align: right; font-size: .78rem; font-variant-numeric: tabular-nums; }
.detail-gallery-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 9px; }
.detail-gallery-thumbnail { overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 12px; background: var(--white); cursor: pointer; opacity: .68; transition: border-color .18s ease, opacity .18s ease; }
.detail-gallery-thumbnail:hover { opacity: 1; }
.detail-gallery-thumbnail.is-active { border-color: var(--wine); opacity: 1; }
.detail-gallery-thumbnail img { width: 100%; aspect-ratio: 1.38; object-fit: cover; }
.detail-copy { position: sticky; top: 30px; }
.detail-copy h1 { font-size: clamp(1.75rem, 2.6vw, 2.25rem); line-height: 1.18; letter-spacing: -.025em; overflow-wrap: anywhere; }
.detail-copy .lead { margin: 24px 0; color: var(--muted); font-size: 1.12rem; }
.detail-price { color: var(--wine); font: 700 2rem var(--font-sans); letter-spacing: -.04em; }
.product-customization { margin: 20px 0; padding: 24px; border-radius: 24px; background: #571d2d; color: #fffaf3; }
.customization-kicker { margin: 0 0 10px; color: #e9c4a4; font-size: .7rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.product-customization h2 { font-size: clamp(1.55rem, 2vw, 1.9rem); line-height: 1.08; letter-spacing: -.03em; }
.customization-intro { margin: 13px 0; font-size: .9rem; line-height: 1.45; color: #f2dfe3; }
.customization-shapes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 0; margin: 14px 0 12px; list-style: none; }
.customization-shapes li { padding: 6px 4px; border: 1px solid #ffffff26; border-radius: 12px; text-align: center; background: #ffffff08; transition: background .18s ease; }
.customization-shapes li:has(input:checked) { background: #ffffff20; }
.customization-shapes li:has(input:focus-visible) { outline: 2px solid #fff7ed; outline-offset: 2px; }
.customization-shapes label { display: block; cursor: pointer; }
.customization-shapes svg { display: block; width: 100%; max-width: 82px; height: auto; margin: 0 auto 2px; color: #e9c4a4; }
.customization-shapes span { font-size: .75rem; white-space: nowrap; }
.customization-note { margin: 0 0 14px; font-size: .76rem; line-height: 1.4; color: #e4c8d0; }
.customization-contact > summary { list-style: none; background: #fff7ed; color: #571d2d; padding-inline: 12px; font-size: .9rem; }
.customization-contact > summary::-webkit-details-marker { display: none; }
.customization-contact > summary:focus-visible { outline: 3px solid #e9c4a4; outline-offset: 4px; }
.customization-contact .lead-form { padding: 15px; margin-top: 12px; border-radius: 16px; box-shadow: none; }
.customization-contact .lead-form label { margin-bottom: 11px; gap: 5px; }
.customization-contact .lead-form input, .customization-contact .lead-form select { min-height: 46px; }
.customization-contact .contact-preference-note { margin: 8px 0 10px; }
.customization-contact .fine-print { margin-top: 9px; font-size: .7rem; line-height: 1.35; }
.customization-selected { margin: 0 0 10px; font-size: .86rem; }
.lead-modal { width: min(520px, calc(100% - 28px)); max-height: min(820px, calc(100dvh - 28px)); padding: 26px; overflow-y: auto; border: 0; border-radius: 24px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.lead-modal::backdrop { background: rgba(23,20,20,.68); backdrop-filter: blur(5px); }
.lead-modal-heading { padding: 4px 42px 18px 4px; }
.lead-modal-heading h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.lead-modal-close { position: absolute; top: 17px; right: 17px; display: grid; width: 38px; height: 38px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); cursor: pointer; place-items: center; font-size: 1.5rem; line-height: 1; }
.lead-modal .lead-form { margin: 0; padding: 22px; border-radius: 18px; box-shadow: none; }
.lead-modal .lead-form label { margin-bottom: 13px; }
.lead-modal .contact-preference-note { margin-bottom: 12px; }
.detail-copy dl { margin: 26px 0; border-top: 1px solid var(--line); }
.detail-copy dl div { display: grid; grid-template-columns: 110px 1fr; padding: 14px 0; border-bottom: 1px solid var(--line); }
.detail-copy dt { color: var(--muted); }
.product-specs { margin: 24px 0; }
.product-specs summary { cursor: pointer; color: var(--wine); font-weight: 700; }
.detail-copy .product-specs dl div { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; overflow-wrap: anywhere; }
.detail-copy dd { margin: 0; }
.legal-copy { margin-top: 50px; }

.site-footer { padding: 70px 0 110px; background: #171414; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 50px; }
.brand-footer { width: fit-content; margin-bottom: 20px; }
.site-footer p, .site-footer address { color: rgba(255,255,255,.58); font-style: normal; }
.site-footer h2 { margin-bottom: 15px; font: 750 1.2rem var(--font-sans); }
.footer-links { display: grid; align-content: start; gap: 12px; font-size: .85rem; }

@media (max-width: 1050px) {
  .header-inner { gap: 20px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-grid, .detail-grid { grid-template-columns: 1fr; }
  .detail-copy { position: static; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .header-inner { min-height: 72px; }
  .main-nav { display: none; }
  .header-phone { margin-left: auto; font-size: .88rem; }
  .brand-logo { width: 142px; }
  .hero { min-height: 820px; }
  .hero-content { min-height: 820px; padding-bottom: 30px; }
  .hero h1 { font-size: clamp(3.05rem, 15vw, 5.2rem); }
  .hero-facts { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-facts li:last-child { grid-column: 1 / -1; }
  .section-heading { display: grid; margin-bottom: 32px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { display: grid; grid-template-columns: 42% 58%; }
  .product-image { position: relative; height: 100%; aspect-ratio: auto; }
  .product-image picture { position: absolute; inset: 0; }
  .product-image img { object-fit: cover; object-position: center; }
  .product-card:hover .product-image img { transform: none; }
  .product-body { padding: 18px; }
  .product-body > p:not(.product-category) { display: none; }
  .product-meta { display: grid; }
  .product-meta a { font-size: .85rem; }
  .offer-grid { gap: 42px; }
  .product-detail .breadcrumbs { margin-bottom: 22px; }
  .detail-grid { gap: 14px; }
  .mobile-product-category { display: block; margin: 0; }
  .detail-copy > .eyebrow:first-child { display: none; }
  .detail-copy h1 { margin-top: 0; }
  .detail-gallery-arrow { display: none; }
  .detail-gallery-track { display: flex; overflow-x: auto; gap: 12px; border-radius: 0; scroll-padding-inline: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .detail-gallery-track::-webkit-scrollbar { display: none; }
  .detail-gallery-slide, .detail-gallery-slide:not(.is-active) { display: grid; flex: 0 0 86%; height: auto; aspect-ratio: 4 / 5; border-radius: var(--radius); scroll-snap-align: start; scroll-snap-stop: always; }
  .detail-gallery-slide picture { height: 100%; }
  .detail-gallery-slide img { width: 100%; height: 100%; object-fit: contain; }
  .detail-gallery-thumbnails { display: none; }
  .detail-gallery-count { position: absolute; z-index: 2; right: 10px; bottom: 10px; margin: 0; padding: 5px 9px; border-radius: 999px; background: #171313b8; color: white; line-height: 1; }
  .lead-modal { padding: 20px 16px; }
  .lead-modal-heading { padding-left: 4px; }
  .lead-modal .lead-form { margin: 0; padding: 18px 16px; }
  .lead-form { margin-inline: -4px; padding: 26px 20px; }
  .factory-grid { grid-template-columns: 1fr; gap: 30px; }
  .factory-facts { grid-column: auto; grid-template-columns: 1fr; gap: 28px; }
  .project-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .project-grid article { min-width: 76vw; scroll-snap-align: start; }
  .salon-gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .salon-gallery figure { min-width: 82vw; scroll-snap-align: start; }
  .contact-card { display: grid; }
  .map-embed iframe { height: 420px; }
  .reviews-widget { height: 680px; }
  .contact-actions { justify-content: stretch; }
  .contact-actions .button { width: 100%; }
  .event-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1051px) {
  .project-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .project-grid.is-collapsed > article:nth-child(n+5) { display: none; }
  .projects-more { display: flex; justify-content: center; margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .detail-gallery-slide.is-loading::before { animation: none; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
