
:root {
  --bg: #f7f3eb;
  --bg-soft: #efe9dd;
  --paper: #fffdf8;
  --paper-2: #faf6ee;
  --ink: #172027;
  --muted: #697278;
  --line: rgba(23,32,39,.12);
  --line-strong: rgba(23,32,39,.2);
  --accent: #c7a15a;
  --accent-2: #7b8b84;
  --dark: #1b2228;
  --dark-2: #263039;
  --white: #ffffff;
  --danger: #a53b3b;
  --success: #2c7a53;
  --shadow: 0 22px 80px rgba(31, 41, 49, .10);
  --shadow-soft: 0 14px 40px rgba(31, 41, 49, .08);
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: 1180px;
  --container-wide: 1480px;
  --header-h: 78px;
  --font-body: Inter, Manrope, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: Manrope, Inter, Segoe UI, Roboto, Arial, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(circle at 0 0, rgba(199,161,90,.16), transparent 28rem), var(--bg);
  min-width: 320px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  animation: page-enter .42s var(--ease) both;
  transition: background .36s var(--ease), color .36s var(--ease);
}
@keyframes page-enter { from { opacity: 0; transform: translate3d(0,8px,0); } to { opacity:1; transform: translate3d(0,0,0); } }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 10px; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 10000; background: var(--dark); color: var(--white); padding: 12px 16px; border-radius: 999px; transition: top .2s ease; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 32px), var(--container-wide)); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 128px) 0; position: relative; }
.section-tight { padding: clamp(44px, 6vw, 86px) 0; }
[data-animate] { opacity: 0; transform: translate3d(0, 24px, 0); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: var(--delay, 0ms); }
[data-animate].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.eyebrow { margin: 0 0 16px; color: var(--accent); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.h1, .h2, .h3 { font-family: var(--font-head); margin: 0; letter-spacing: -.055em; line-height: .98; }
.h1 { font-size: clamp(42px, 8vw, 102px); max-width: 980px; }
.h2 { font-size: clamp(34px, 5.2vw, 72px); max-width: 860px; }
.h3 { font-size: clamp(24px, 3vw, 40px); letter-spacing: -.04em; }
.lead { color: var(--muted); font-size: clamp(16px, 2vw, 20px); line-height: 1.65; max-width: 720px; }
.text { color: var(--muted); line-height: 1.7; }
.header { position: sticky; top: 0; z-index: 1000; transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease); padding: 14px 0; }
.header::before { content: ''; position: absolute; inset: 0; background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid rgba(23,32,39,.08); z-index: -1; }
.header.is-compact { padding: 8px 0; box-shadow: 0 18px 48px rgba(23,32,39,.08); }
.header__bar { min-height: 54px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; }
.logo { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; }
.logo__mark { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--dark), #39434b); color: var(--accent); font-weight: 900; letter-spacing: -.08em; box-shadow: var(--shadow-soft); }
.logo__text { display: grid; gap: 2px; }
.logo__name { font-weight: 900; letter-spacing: .12em; font-size: 17px; }
.logo__desc { color: var(--muted); font-size: 11px; white-space: nowrap; }
.nav { display: none; justify-content: center; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link { min-height: 44px; display: inline-flex; align-items: center; padding: 0 13px; border-radius: 999px; color: rgba(23,32,39,.78); font-size: 14px; font-weight: 650; transition: background .25s var(--ease), color .25s var(--ease); }
.nav__link:hover, .nav__link[aria-current="page"] { background: rgba(199,161,90,.13); color: var(--ink); }
.header__actions { display: flex; align-items: center; justify-content: end; gap: 10px; }

.theme-switcher { position: relative; display: none; }
.theme-toggle { min-height: 44px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--paper) 72%, transparent); color: var(--ink); padding: 0 14px; font-weight: 850; }
.theme-menu { position: absolute; right: 0; top: calc(100% + 12px); width: min(270px, calc(100vw - 32px)); padding: 10px; border: 1px solid var(--line); border-radius: 20px; background: color-mix(in srgb, var(--paper) 94%, transparent); backdrop-filter: blur(18px); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .24s var(--ease), transform .24s var(--ease); }
.theme-switcher.is-open .theme-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.theme-option { width: 100%; min-height: 44px; border: 0; background: transparent; color: var(--ink); display: flex; align-items: center; gap: 10px; border-radius: 14px; padding: 0 10px; text-align: left; font-weight: 800; }
.theme-option span { width: 18px; height: 18px; border-radius: 999px; background: var(--accent); box-shadow: inset 0 0 0 4px color-mix(in srgb, var(--paper) 78%, transparent); }
.theme-option:hover, .theme-option.is-active { background: color-mix(in srgb, var(--accent) 14%, transparent); }
.mobile-theme { display: grid; gap: 6px; margin: 18px 0 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; }
.stat__value { font-variant-numeric: tabular-nums; }
.form.is-sent { animation: form-sent .75s var(--ease); }
@keyframes form-sent { 0% { transform: scale(1); } 45% { transform: scale(1.012); } 100% { transform: scale(1); } }

.phone { min-height: 44px; display: none; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; font-weight: 800; font-size: 14px; background: rgba(255,255,255,.45); }
.burger { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.6); display: grid; place-items: center; }
.burger span, .burger span::before, .burger span::after { width: 18px; height: 2px; background: var(--ink); display: block; border-radius: 9px; content: ''; transition: transform .25s var(--ease); }
.burger span::before { transform: translateY(-6px); }
.burger span::after { transform: translateY(4px); }
.mega { display: none; position: absolute; left: 50%; top: 100%; padding-top: 14px; transform: translateX(-50%) translateY(12px); width: min(1120px, calc(100vw - 32px)); opacity: 0; pointer-events: none; transition: opacity .28s var(--ease), transform .28s var(--ease); }
.nav__item:hover .mega, .nav__item:focus-within .mega { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mega__panel { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,253,248,.94); backdrop-filter: blur(18px); box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 18px; }
.mega__col { padding: 16px; border-radius: 20px; background: rgba(247,243,235,.58); border: 1px solid transparent; }
.mega__col:hover { border-color: rgba(199,161,90,.32); background: rgba(255,255,255,.72); }
.mega__title { font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.mega__desc { font-size: 12px; color: var(--muted); line-height: 1.45; margin-bottom: 14px; }
.mega__list { display: grid; gap: 9px; }
.mega__link { display: grid; gap: 3px; padding: 9px 0; border-top: 1px solid rgba(23,32,39,.08); }
.mega__link strong { font-size: 14px; }
.mega__link span { color: var(--muted); font-size: 12px; line-height: 1.35; }
.mega__promo { min-height: 100%; background: linear-gradient(145deg, var(--dark), #303b43); color: var(--white); border-radius: 22px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.mega__promo p { color: rgba(255,255,255,.72); line-height: 1.55; font-size: 13px; }
.mobile-overlay { position: fixed; inset: 0; background: rgba(16,21,25,.34); opacity: 0; pointer-events: none; z-index: 1200; transition: opacity .3s ease; }
.mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu { position: fixed; top: 0; right: 0; height: 100dvh; width: min(420px, 92vw); background: var(--paper); z-index: 1300; transform: translateX(105%); transition: transform .45s var(--ease); padding: 18px; overflow-y: auto; box-shadow: -20px 0 80px rgba(0,0,0,.18); }
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.icon-btn { width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line); background: transparent; display: grid; place-items: center; }
.mobile-link { display: flex; align-items: center; justify-content: space-between; min-height: 52px; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 800; }
.accordion { border-bottom: 1px solid var(--line); }
.accordion__btn { width: 100%; min-height: 56px; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; text-align: left; font-size: 18px; font-weight: 800; color: var(--ink); padding: 0; }
.accordion__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.accordion.is-open .accordion__body { grid-template-rows: 1fr; }
.accordion__inner { overflow: hidden; display: grid; gap: 16px; padding-bottom: 0; }
.accordion.is-open .accordion__inner { padding-bottom: 18px; }
.mobile-mega-col { padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper-2); }
.mobile-mega-col strong { display: block; margin-bottom: 8px; }
.mobile-mega-col a { display: block; min-height: 36px; color: var(--muted); font-weight: 700; }
.hero { padding: clamp(58px, 8vw, 110px) 0 clamp(44px, 7vw, 90px); }
.hero--home { padding-top: clamp(42px, 7vw, 92px); }
.hero__grid { display: grid; gap: 34px; align-items: center; }
.hero__copy { display: grid; gap: 22px; }
.hero__actions, .cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 850; transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--dark); color: var(--white); box-shadow: 0 14px 32px rgba(23,32,39,.18); }
.btn--primary:hover { box-shadow: 0 20px 44px rgba(23,32,39,.22); }
.btn--ghost { background: rgba(255,255,255,.48); border-color: var(--line); color: var(--ink); }
.btn--accent { background: var(--accent); color: var(--dark); }
.hero-visual { position: relative; isolation: isolate; }
.hero-visual::before { content: ''; position: absolute; inset: 14% -3% -6% 12%; background: rgba(199,161,90,.2); border-radius: 45%; filter: blur(40px); z-index: -1; }
.hero-visual img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: translate3d(0, var(--parallax, 0px), 0); transition: transform .2s linear; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 8px; }
.stat { padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.46); }
.stat strong { display: block; font-size: clamp(22px, 4vw, 34px); letter-spacing: -.04em; }
.stat span { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; margin-top: 4px; }
.category-strip { display: grid; gap: 14px; margin-top: clamp(28px, 4vw, 54px); }
.category-card { position: relative; min-height: 260px; overflow: hidden; border-radius: var(--radius-md); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft); display: grid; align-content: end; padding: 18px; }
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.category-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,253,248,.88) 66%, rgba(255,253,248,.98)); }
.category-card:hover img { transform: scale(1.06); }
.category-card__content { position: relative; z-index: 2; display: grid; gap: 8px; }
.category-card h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
.category-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.section-head { display: grid; gap: 14px; margin-bottom: clamp(28px, 5vw, 58px); }
.section-head--row { align-items: end; }
.mosaic { display: grid; gap: 14px; }
.tile { position: relative; padding: clamp(20px, 3vw, 32px); border-radius: var(--radius-md); background: rgba(255,253,248,.68); border: 1px solid var(--line); box-shadow: var(--shadow-soft); overflow: hidden; }
.tile::before { content: ''; width: 72px; height: 72px; border-radius: 999px; position: absolute; right: -18px; top: -18px; background: rgba(199,161,90,.14); transition: transform .32s var(--ease); }
.tile:hover::before { transform: scale(1.35); }
.tile--accent { background: linear-gradient(145deg, #d2b36f, var(--accent)); color: #1e1b15; }
.tile--dark { background: linear-gradient(145deg, var(--dark), var(--dark-2)); color: var(--white); }
.tile--dark .text, .tile--dark p, .tile--dark span { color: rgba(255,255,255,.72); }
.tile h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.03em; }
.tile p { margin: 0; color: var(--muted); line-height: 1.62; }
.marquee { overflow: hidden; border-block: 1px solid var(--line); background: rgba(255,253,248,.42); padding: 18px 0; }
.marquee__track { display: flex; gap: 28px; width: max-content; animation: marquee 28s linear infinite; }
.marquee span { color: transparent; -webkit-text-stroke: 1px rgba(23,32,39,.2); font-size: clamp(42px, 9vw, 110px); font-weight: 900; letter-spacing: -.06em; line-height: 1; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.split { display: grid; gap: 24px; align-items: center; }
.split__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--paper); }
.split__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.split__image:hover img { transform: scale(1.045); }
.tile-grid { display: grid; gap: 14px; }
.equipment-grid { display: grid; gap: 14px; }
.cta-panel { border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 58px); background: linear-gradient(145deg, var(--dark), #303b43); color: var(--white); display: grid; gap: 24px; overflow: hidden; position: relative; }
.cta-panel::after { content: ''; position: absolute; width: 360px; height: 360px; right: -120px; top: -130px; border-radius: 50%; background: rgba(199,161,90,.22); filter: blur(10px); }
.cta-panel > * { position: relative; z-index: 2; }
.cta-panel p { color: rgba(255,255,255,.72); }
.products-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 34px; }
.pill { min-height: 44px; display: inline-flex; align-items: center; border-radius: 999px; border: 1px solid var(--line); padding: 0 14px; background: rgba(255,255,255,.46); font-weight: 800; color: var(--muted); }
.pill:hover { color: var(--ink); border-color: rgba(199,161,90,.4); background: rgba(199,161,90,.12); }
.catalog-section { scroll-margin-top: calc(var(--header-h) + 24px); padding: clamp(44px, 6vw, 84px) 0; border-top: 1px solid var(--line); }
.catalog-section:first-child { border-top: 0; }
.product-grid { display: grid; gap: 16px; }
.product-card { position: relative; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--line); background: rgba(255,253,248,.76); box-shadow: var(--shadow-soft); min-height: 100%; display: grid; }
.product-card__image { aspect-ratio: 1.33; overflow: hidden; background: var(--paper-2); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .product-card__image img { transform: scale(1.055); }
.product-card__body { padding: 20px; display: grid; gap: 10px; }
.product-card__meta { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; font-weight: 850; }
.product-card h3 { margin: 0; font-size: 23px; letter-spacing: -.035em; }
.product-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.product-hero { display: grid; gap: 30px; align-items: center; }
.product-hero__media { border-radius: var(--radius-lg); overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
.product-hero__copy { display: grid; gap: 18px; }
.bullet-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.bullet-list li { display: grid; grid-template-columns: 20px 1fr; gap: 8px; color: var(--muted); line-height: 1.5; }
.bullet-list li::before { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-top: 8px; }
.tabbar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.tabbar a { min-height: 44px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; font-weight: 850; background: rgba(255,255,255,.5); }
.tabbar a:hover { border-color: rgba(199,161,90,.42); background: rgba(199,161,90,.14); }
.icon-row { display: grid; gap: 14px; }
.flip-card { min-height: 154px; perspective: 900px; }
.flip-card__inner { position: relative; min-height: 154px; transition: transform .6s var(--ease); transform-style: preserve-3d; }
.flip-card:hover .flip-card__inner { transform: rotateY(180deg); }
.flip-face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: var(--radius-md); border: 1px solid var(--line); background: rgba(255,253,248,.75); padding: 22px; display: grid; align-content: center; gap: 8px; box-shadow: var(--shadow-soft); }
.flip-face--back { transform: rotateY(180deg); background: var(--dark); color: var(--white); }
.flip-face--back p { color: rgba(255,255,255,.72); }
.page-block { scroll-margin-top: calc(var(--header-h) + 30px); }
.spec-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); background: rgba(255,253,248,.8); }
.spec-table th, .spec-table td { text-align: left; padding: 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 38%; color: var(--muted); font-weight: 750; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.color-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 18px; }
.swatch { min-height: 76px; border-radius: 18px; border: 1px solid rgba(0,0,0,.1); box-shadow: inset 0 0 0 5px rgba(255,255,255,.38); }
.gallery-grid { display: grid; gap: 14px; }
.gallery-card { border: 0; padding: 0; background: transparent; text-align: left; cursor: zoom-in; border-radius: var(--radius-md); overflow: hidden; position: relative; min-height: 230px; box-shadow: var(--shadow-soft); }
.gallery-card img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-card:hover img { transform: scale(1.055); }
.gallery-card__caption { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; border-radius: 18px; background: rgba(255,253,248,.86); backdrop-filter: blur(10px); display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.gallery-card__caption strong { font-size: 14px; }
.gallery-card__caption span { color: var(--accent); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; background: rgba(15,20,24,.82); padding: 20px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .26s var(--ease), visibility .26s var(--ease); }
.lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox__dialog {  width: min(980px, 100%); background: var(--paper); border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 30px 120px rgba(0,0,0,.36);  transform: scale(.96); transition: transform .28s var(--ease); }
.lightbox.is-open .lightbox__dialog { transform: scale(1); }
.lightbox__image { width: 100%; max-height: 72vh; object-fit: cover; background: var(--bg-soft); }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; }
.lightbox__title { font-weight: 900; }
.lightbox__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 999px; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.12); color: #fff; font-size: 24px; display: grid; place-items: center; transition: background .2s var(--ease), transform .2s var(--ease); }
.lightbox__arrow:hover { background: rgba(255,255,255,.22); transform: translateY(-50%) scale(1.05); }
.lightbox__arrow--prev { left: max(16px, 4vw); }
.lightbox__arrow--next { right: max(16px, 4vw); }
.form-section { background: linear-gradient(180deg, rgba(255,253,248,.2), rgba(255,253,248,.66)); }
.form-card { display: grid; gap: 24px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: rgba(255,253,248,.82); box-shadow: var(--shadow); padding: clamp(22px, 4vw, 42px); }
.form { display: grid; gap: 12px; }
.form__row { display: grid; gap: 12px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 13px; font-weight: 850; color: var(--muted); }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); background: rgba(255,255,255,.75); border-radius: 16px; min-height: 48px; padding: 12px 14px; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 116px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: rgba(199,161,90,.7); box-shadow: 0 0 0 4px rgba(199,161,90,.14); }
.check { display: flex; align-items: start; gap: 10px; color: var(--muted); line-height: 1.45; font-size: 14px; }
.check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.form__message { min-height: 22px; font-weight: 750; }
.form__message.is-error { color: var(--danger); }
.form__message.is-success { color: var(--success); }
.footer { background: var(--dark); color: var(--white); padding: 54px 0 24px; }
.footer__grid { display: grid; gap: 26px; }
.footer a { color: rgba(255,255,255,.82); }
.footer p { color: rgba(255,255,255,.62); line-height: 1.6; }
.footer__links { display: grid; gap: 10px; }
.footer__bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.5); font-size: 12px; }
.cookie { position: fixed; z-index: 1900; left: 16px; bottom: 16px; width: min(420px, calc(100vw - 32px)); background: rgba(255,253,248,.94); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: 16px; display: none; gap: 12px; align-items: center; }
.cookie.is-visible { display: grid; }
.cookie p { margin: 0; color: var(--muted); line-height: 1.45; font-size: 14px; }
.contact-grid { display: grid; gap: 18px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,253,248,.76); padding: 22px; box-shadow: var(--shadow-soft); }
.contact-list { display: grid; gap: 12px; }
.contact-item { display: grid; gap: 3px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item span { color: var(--muted); font-size: 13px; font-weight: 850; }
.contact-item strong { font-size: 18px; }
.map-card { min-height: 280px; border-radius: var(--radius-md); background: linear-gradient(145deg, #d9dedf, #f6f2ea); position: relative; overflow: hidden; border: 1px solid var(--line); display: grid; place-items: center; text-align: center; padding: 30px; }
.map-card::before { content: ''; position: absolute; inset: 26px; border: 1px dashed rgba(23,32,39,.2); border-radius: 28px; }
.map-card p { position: relative; max-width: 480px; color: var(--muted); line-height: 1.6; }
.service-block { display: grid; gap: 22px; align-items: center; padding: clamp(18px, 3vw, 30px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,253,248,.6); box-shadow: var(--shadow-soft); }
.service-block + .service-block { margin-top: 18px; }
.service-block__image { border-radius: var(--radius-md); overflow: hidden; background: var(--paper); }
.service-block__image img { width: 100%; height: 100%; object-fit: cover; }
.timeline { display: grid; gap: 12px; counter-reset: step; }
.timeline__item { counter-increment: step; display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; padding: 16px; border-radius: 20px; background: rgba(255,253,248,.65); border: 1px solid var(--line); }
.timeline__item::before { content: counter(step); width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--dark); display: grid; place-items: center; font-weight: 900; }
@media (min-width: 480px) {
  .category-strip, .mosaic, .equipment-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .form__row { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 768px) {
  .hero__grid, .split, .product-hero, .contact-grid, .form-card { grid-template-columns: 1.05fr .95fr; }
  .category-strip { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .mosaic { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .mosaic .tile:nth-child(1) { grid-column: span 2; }
  .tile-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .equipment-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .icon-row { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer__grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .section-head--row { grid-template-columns: 1.1fr .9fr; }
  .service-block { grid-template-columns: .92fr 1.08fr; }
  .service-block:nth-child(even) .service-block__image { order: 2; }
  .timeline { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .timeline__item { grid-template-columns: 1fr; align-items: start; }
}
@media (min-width: 1024px) {
  .nav { display: flex; }
  .theme-switcher { display: block; }
  .mega { display: block; }
  .burger { display: none; }
  .phone { display: inline-flex; }
  .product-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
}
@media (min-width: 1280px) {
  .container { width: min(calc(100% - 64px), var(--container)); }
  .container-wide { width: min(calc(100% - 64px), var(--container-wide)); }
  .category-card { min-height: 320px; }
  .gallery-card, .gallery-card img { min-height: 260px; }
}
@media (min-width: 1600px) {
  :root { --container: 1280px; --container-wide: 1540px; }
  .hero { padding-top: 120px; }
}

/* ===== Brand wordmark logo (chosen VORTA) ===== */
.logo__mark { width: 140px; height: 38px; min-width: 0; padding: 0; border: 0; border-radius: 0; background: var(--logo-on-light, url('../img/logo-dark.png')) left center / contain no-repeat; color: transparent; font-size: 0; box-shadow: none; }
.logo__text { display: none; }
/* footer is always dark -> use light (cream) wordmark */
.footer .logo__mark { width: 132px; background-image: var(--logo-on-dark, url('../img/logo-light.png')); }
/* dark theme: every logo on dark surfaces uses the light wordmark */
[data-theme="graphite-dark"] .logo__mark { background-image: var(--logo-on-dark, url('../img/logo-light.png')); }
@media (max-width: 760px) { .logo__mark { width: 116px; height: 32px; } }

/* ===== Floating call button (mobile) — visible pill, always pinned ===== */
.call-fab { position: fixed; right: 16px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 1500; height: 56px; padding: 0 20px 0 18px; border-radius: 999px; display: none; align-items: center; gap: 10px; background: var(--accent); color: #1b1407; font-weight: 850; font-size: 15px; box-shadow: 0 16px 40px color-mix(in srgb, var(--accent) 40%, rgba(0,0,0,.35)); transition: transform .2s var(--ease), box-shadow .2s var(--ease); -webkit-tap-highlight-color: transparent; }
.call-fab svg { flex: none; }
.call-fab__label { white-space: nowrap; }
.call-fab::after { content: ''; position: absolute; inset: -5px; border-radius: 999px; border: 2px solid var(--accent); opacity: .4; animation: call-pulse 2.4s ease-out infinite; pointer-events: none; }
.call-fab:active { transform: scale(.97); }
@keyframes call-pulse { 0% { transform: scale(.92); opacity: .5; } 70% { transform: scale(1.18); opacity: 0; } 100% { opacity: 0; } }
@media (max-width: 1023px) { .call-fab { display: inline-flex; } }
@media (prefers-reduced-motion: reduce) { .call-fab::after { animation: none; } }

/* ===== Dark theme: convert hardcoded light surfaces to theme surfaces (fix light-text-on-light) ===== */
[data-theme="graphite-dark"] :is(.tile:not(.tile--accent):not(.tile--dark), .product-card, .mega__panel, .flip-face, .spec-table, .form-card, .contact-card, .service-block, .cookie, .map-card) { background: color-mix(in srgb, var(--paper) 90%, transparent); }
[data-theme="graphite-dark"] :is(.mega__col, .stat, .pill, .tabbar a, .btn--ghost, .timeline__item, .field input, .field textarea, .phone, .burger, .gallery-card__caption) { background: color-mix(in srgb, var(--paper) 68%, transparent); }
[data-theme="graphite-dark"] .mega__col:hover { background: color-mix(in srgb, var(--paper) 96%, transparent); }
[data-theme="graphite-dark"] .marquee { background: color-mix(in srgb, var(--paper) 38%, transparent); }
[data-theme="graphite-dark"] .category-card::after { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--paper) 72%, transparent) 60%, var(--paper)); }
[data-theme="graphite-dark"] .form-section { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg-soft) 60%, transparent)); }
[data-theme="graphite-dark"] .tile::before { background: color-mix(in srgb, var(--accent) 16%, transparent); }
[data-theme="graphite-dark"] .pill, [data-theme="graphite-dark"] .tabbar a { color: var(--ink); }
/* readable paragraph on the gold accent tile (all themes) */
.tile--accent p, .tile--accent .text, .tile--accent span { color: rgba(30,27,21,.82); }
/* anti-spam honeypot (hidden from users) */
.hp { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
/* legal / privacy page */
.legal h2 { margin: 28px 0 8px; }
.legal p { margin: 0 0 12px; }
.consent-link { color: var(--accent); text-decoration: underline; white-space: nowrap; }

/* ===== Contacts: form card single-column inside the grid (fix squeezed form) ===== */
.contact-grid .form-card { grid-template-columns: 1fr; }
.contact-grid .form-card .form__row { grid-template-columns: 1fr 1fr; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-animate] { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 767px) { .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display:block; width:100%; } .spec-table th { padding-bottom:4px; border-bottom:0; } .spec-table td { padding-top:4px; } .lightbox__arrow { width:44px; height:44px; top:auto; bottom:84px; } .lightbox__arrow--prev { left:24px; } .lightbox__arrow--next { right:24px; } .tabbar { flex-wrap:wrap; } .tabbar a { white-space:nowrap; flex:1 1 auto; justify-content:center; } }
