@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-400-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("../fonts/eb-garamond-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ifd-black: #0b0b0a;
  --ifd-ink: #1d1a18;
  --ifd-accent: #c15227;
  --ifd-accent-dark: #963817;
  --ifd-clay: #d7774d;
  --ifd-paper: #f7f5f1;
  --ifd-soft: #ebebeb;
  --ifd-white: #ffffff;
  --ifd-muted: #77716c;
  --ifd-line: rgba(11, 11, 10, 0.14);
  --ifd-radius: 2px;
  --ifd-shadow: 0 28px 70px rgba(25, 18, 13, 0.12);
  --ifd-container: 1440px;
  --ifd-header: 88px;
  --ifd-transition: 320ms cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ifd-header) + 28px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ifd-ink);
  background: var(--ifd-white);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-menu,
body.has-modal { overflow: hidden; }

img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

::selection { color: var(--ifd-white); background: var(--ifd-accent); }

.ifd-container {
  width: min(calc(100% - 64px), var(--ifd-container));
  margin-inline: auto;
}

.ifd-page { overflow: clip; }
.ifd-section { padding: clamp(84px, 9vw, 148px) 0; }
.ifd-section--soft { background: var(--ifd-paper); }
.ifd-section--dark { color: var(--ifd-white); background: var(--ifd-black); }

.ifd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--ifd-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ifd-eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.ifd-title,
.ifd-hero__title,
.ifd-page-hero h1,
.ifd-product-info h1,
.ifd-article-hero h1 {
  margin: 0;
  color: var(--ifd-black);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.ifd-title { max-width: 900px; font-size: clamp(36px, 3.4vw, 52px);margin-bottom: 20px;}
.ifd-home .ifd-title { font-size: clamp(44px, 5.8vw, 86px); }
.ifd-title--light { color: var(--ifd-white); }
.ifd-lead { max-width: 720px; margin: 26px 0 0; color: #969391; font-size: clamp(20px, 2vw, 27px); line-height: 1.4; }

.ifd-btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 26px;
  overflow: hidden;
  border: 1px solid var(--ifd-black);
  border-radius: var(--ifd-radius);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transition: color var(--ifd-transition), background var(--ifd-transition), border-color var(--ifd-transition), transform var(--ifd-transition);
}

.ifd-btn:hover { color: var(--ifd-white); border-color: var(--ifd-accent); background: var(--ifd-accent); transform: translateY(-2px); }
.ifd-btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--ifd-accent); outline-offset: 4px; }
.ifd-btn--accent { color: var(--ifd-white); border-color: var(--ifd-accent); background: var(--ifd-accent); }
.ifd-btn--accent:hover { border-color: var(--ifd-accent-dark); background: var(--ifd-accent-dark); }
.ifd-btn--light { color: var(--ifd-white); border-color: rgba(255,255,255,.52);margin-top: 30px;}
.ifd-btn--light:hover { color: var(--ifd-black); border-color: var(--ifd-white); background: var(--ifd-white); }
.ifd-btn--full { width: 100%; }

.ifd-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color var(--ifd-transition), gap var(--ifd-transition);
}
.ifd-link:hover { gap: 16px; color: #fff; }

.ifd-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--ifd-header);
  border-bottom: 1px solid var(--ifd-line);
  background: rgb(255 255 255);
  backdrop-filter: blur(16px);
  transition: box-shadow var(--ifd-transition), background var(--ifd-transition);
}

.ifd-site-header.is-scrolled { box-shadow: 0 8px 32px rgba(14, 11, 9, .07); }
.ifd-site-header__inner { display: flex; height: 100%; align-items: center; gap: 34px; }
.ifd-brand { display: flex; width: 150px; flex: 0 0 auto; align-items: center; }
.ifd-brand img { width: 100%; max-height: 58px; object-fit: contain; }
.ifd-home .ifd-brand { visibility: hidden; pointer-events: none; }
.ifd-site-nav { display: flex; margin: 0 0 0 auto; padding: 0; align-items: center; gap: clamp(24px, 3vw, 50px); list-style: none; }
.ifd-site-nav li { margin: 0; padding: 0; list-style: none; }
.ifd-site-nav a {
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ifd-site-nav a::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 1px; content: ""; background: var(--ifd-accent); transform: scaleX(0); transform-origin: right; transition: transform var(--ifd-transition); }
.ifd-site-nav a:hover::after,
.ifd-site-nav a.is-active::after,
.ifd-site-nav .current-menu-item > a::after,
.ifd-site-nav .current-menu-parent > a::after,
.ifd-site-nav .current-menu-ancestor > a::after,
.ifd-site-nav .current_page_item > a::after { transform: scaleX(1); transform-origin: left; }
.ifd-header-phone { display: inline-flex; margin-left: 18px; align-items: center; gap: 11px; white-space: nowrap; font-size: 17px; font-weight: 600; }
.ifd-header-phone svg { color: var(--ifd-accent); }
.ifd-menu-toggle { display: none; width: 48px; height: 48px; margin-left: auto; padding: 0; border: 1px solid var(--ifd-line); background: transparent; cursor: pointer; }
.ifd-menu-toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: currentColor; transition: transform var(--ifd-transition), opacity var(--ifd-transition); }

.ifd-hero {
  position: relative;
  min-height: calc(100svh - var(--ifd-header));
  overflow: hidden;
  background: linear-gradient(110deg, #fff 0%, #fff 57%, #f0efed 57%, #fafafa 100%);
}
.ifd-hero::before { position: absolute; top: 9%; left: 51%; width: 1px; height: 80%; content: ""; background: var(--ifd-line); }
.ifd-hero__inner { display: grid; min-height: calc(100svh - var(--ifd-header)); grid-template-columns: 1.05fr .95fr; align-items: center; }
.ifd-hero__content { position: relative; z-index: 2; padding: 72px 7vw 72px 0; }
.ifd-hero__logo { width: clamp(240px, 28vw, 430px); margin: 0 0 clamp(44px, 6vw, 82px); mix-blend-mode: multiply; }
.ifd-hero__title { max-width: 680px; font-size: clamp(48px, 6.2vw, 98px); }
.ifd-hero__subtitle { margin: 30px 0 40px; font-size: clamp(22px, 2.3vw, 30px); letter-spacing: .04em; }
.ifd-hero__visual { position: relative; align-self: stretch; min-height: 620px; }
.ifd-hero__frame { position: absolute; right: -7vw; bottom: -2%; width: min(56vw, 880px); filter: drop-shadow(-32px 24px 38px rgba(0,0,0,.08)); animation: ifdFloat 7s ease-in-out infinite; }
.ifd-hero__note { position: absolute; z-index: 2; top: 13%; right: 5%; display: flex; align-items: center; gap: 13px; writing-mode: vertical-rl; font-size: 13px; letter-spacing: .17em; text-transform: uppercase; }
.ifd-hero__note::before { width: 1px; height: 62px; content: ""; background: var(--ifd-accent); }
@keyframes ifdFloat { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-12px,0); } }

.ifd-story { display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr); align-items: center; gap: clamp(60px, 9vw, 150px); }
.ifd-story__media { position: relative; padding: clamp(28px, 4vw, 62px); background: var(--ifd-accent); }
.ifd-story__media::before { position: absolute; top: -24px; right: -24px; width: 120px; height: 120px; border-top: 1px solid var(--ifd-black); border-right: 1px solid var(--ifd-black); content: ""; }
.ifd-story__video { width: min(100%, 620px); max-height: 720px; margin: auto; aspect-ratio: 4 / 5; background: #111; object-fit: cover; }
.ifd-story__copy p { max-width: 660px; margin: 30px 0 0; font-size: clamp(20px, 1.8vw, 25px); line-height: 1.65; }
.ifd-story__copy .ifd-link { margin-top: 38px; }
.ifd-story__copy .ifd-link:hover{color: var(--ifd-accent);}

.ifd-section-head { display: flex; margin-bottom: clamp(42px, 6vw, 78px); align-items: end; justify-content: space-between; gap: 40px; }
.ifd-section-head__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.ifd-slider-btn { display: grid; width: 52px; height: 52px; border: 1px solid var(--ifd-line); border-radius: 50%; background: transparent; cursor: pointer; place-items: center; transition: color var(--ifd-transition), background var(--ifd-transition), border-color var(--ifd-transition); }
.ifd-slider-btn:hover { color: var(--ifd-white); border-color: var(--ifd-accent); background: var(--ifd-accent); }
.ifd-slider-btn[hidden] { display: none; }
.ifd-slider__viewport { min-width: 0; overflow: hidden; }
.ifd-slider__track { display: flex; gap: 24px; overflow-x: auto; overflow-y: hidden; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.ifd-slider__track::-webkit-scrollbar { display: none; }
.ifd-slider__track > * { flex: 0 0 calc((100% - 72px) / 4); scroll-snap-align: start; scroll-snap-stop: always; }

.ifd-product-card { position: relative; min-width: 0; }
.ifd-product-card__image { position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1.12; background: #f0efed; }
.ifd-product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(.22,1,.36,1), filter 600ms ease; }
.ifd-product-card:hover .ifd-product-card__image img { transform: scale(1.035); }
.ifd-product-card__tag { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 7px 11px; color: var(--ifd-white); background: var(--ifd-accent); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.ifd-product-card__body {padding: 20px 2px 0;}
.ifd-product-card .h3 { margin: 0; font-size: 20px; font-weight: 500; line-height: 1.15; }
.ifd-product-card__price {
    color: var(--ifd-accent);
    font-size: 20px;
    white-space: nowrap;
    display: block;
    margin-top: 8px;
    font-size: 18px;
}
.ifd-product-card__meta { color: var(--ifd-muted); font-size: 15px; }
.ifd-product-card__arrow { display: grid; width: 34px; height: 34px; border: 1px solid var(--ifd-line); border-radius: 50%; place-items: center; transition: color var(--ifd-transition), border-color var(--ifd-transition), transform var(--ifd-transition); }

.ifd-product-card__arrow span{
    position: relative;
    display: block;
    top: -3px;
}

.ifd-product-card:hover .ifd-product-card__arrow { color: var(--ifd-accent); border-color: var(--ifd-accent); transform: rotate(-45deg); }
.ifd-product-card__more { display: inline-flex; width: max-content; margin-top: 8px; padding-bottom: 2px; border-bottom: 1px solid currentColor; grid-column: 1 / -1; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: color var(--ifd-transition), gap var(--ifd-transition); }
.ifd-product-card__more:hover { color: var(--ifd-accent); gap: 13px; }
.ifd-center-action { margin-top: 58px; text-align: center; }

.ifd-contact-band { display: grid; grid-template-columns: .78fr 1.22fr; }

.ifd-page-actions{
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


.ifd-contact-band__content { display: flex; min-height: 610px; padding: clamp(56px, 7vw, 112px); color: var(--ifd-white); background: var(--ifd-accent); flex-direction: column; justify-content: center; }
.ifd-contact-band__content h2 { margin: 0 0 46px; font-size: clamp(50px, 6vw, 88px); font-weight: 400; line-height: 1; }
.ifd-contact-band__item { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.32); }
.ifd-contact-band__item span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.ifd-contact-band__item a, .ifd-contact-band__item p { margin: 0; font-size: clamp(19px, 2vw, 26px); }
.ifd-map { width: 100%; min-height: 630px; border: 0; filter: grayscale(1) contrast(.9); }

.ifd-contact-band .ifd-map{
    min-height: 100%;
}


.ifd-page-hero { padding: clamp(68px, 7vw, 112px) 0 clamp(54px, 6vw, 92px); border-bottom: 1px solid var(--ifd-line); background: var(--ifd-paper); }
.ifd-page-hero h1 { max-width: 1100px; font-size: clamp(42px, 4.2vw, 72px); line-height: 1.02; }
.ifd-page-hero p { max-width: 730px; margin: 26px 0 0; color: var(--ifd-muted); font-size: clamp(21px, 2.1vw, 29px); }
.ifd-page-hero .ifd-eyebrow { margin: 0 0 22px; color: var(--ifd-accent); font-size: 13px; line-height: 1.2; }
.ifd-breadcrumbs { display: flex; margin: 0 0 42px; padding: 0; color: var(--ifd-muted); list-style: none; gap: 10px; flex-wrap: wrap; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.ifd-breadcrumbs li:not(:last-child)::after { margin-left: 10px; color: #bbb4af; content: "/"; }
.ifd-breadcrumbs a:hover { color: var(--ifd-accent); }

.ifd-catalog { display: grid; grid-template-columns: 280px minmax(0,1fr); align-items: start; gap: clamp(42px, 6vw, 92px); }
.ifd-filter { position: sticky; top: calc(var(--ifd-header) + 28px); padding: 20px 15px; border: 1px solid var(--ifd-line); background: var(--ifd-white); }
.ifd-filter__mobile-toggle { display: none; width: 100%; border-color: var(--ifd-accent); color: var(--ifd-accent); justify-content: space-between; }
.ifd-filter__mobile-toggle::after { content: "+"; font-size: 22px; font-weight: 400; line-height: 1; }
.ifd-filter__mobile-toggle[aria-expanded="true"]::after { content: "−"; }
.ifd-filter__heading { display: flex; margin-bottom: 26px; align-items: center; justify-content: space-between; }
.ifd-filter__heading h2 { margin: 0; font-size: 28px; font-weight: 500; }
.ifd-filter__reset { padding: 2px 0; border: 0; border-bottom: 1px solid currentColor; color: var(--ifd-muted); background: transparent; cursor: pointer; font-size: 13px; transition: color var(--ifd-transition); }
.ifd-filter__reset:hover { color: var(--ifd-accent); }
.ifd-filter-group { min-width: 0; margin: 0; padding: 24px 0; border: 0; border-top: 1px solid var(--ifd-line); }
.ifd-filter-group legend { width: 100%; margin: 0; padding: 0; color: var(--ifd-ink); font-size: 18px; font-weight: 600; line-height: 1.2; }
.ifd-check { display: flex; margin: 0 0 12px; align-items: center; gap: 12px; color: #514b47; cursor: pointer; font-size: 16px; line-height: 1.3; }
.ifd-check input { position: relative; width: 18px; height: 18px; margin: 0; flex: 0 0 18px; appearance: none; border: 1px solid rgba(11,11,10,.28); border-radius: 0; background: var(--ifd-white); cursor: pointer; transition: border-color var(--ifd-transition), background var(--ifd-transition); }
.ifd-check input::after { position: absolute; top: 2px; left: 5px; width: 5px; height: 9px; border-right: 1.5px solid var(--ifd-white); border-bottom: 1.5px solid var(--ifd-white); content: ""; opacity: 0; transform: rotate(45deg) scale(.7); transition: opacity var(--ifd-transition), transform var(--ifd-transition); }
.ifd-check input:checked { border-color: var(--ifd-accent); background: var(--ifd-accent); }
.ifd-check input:checked::after { opacity: 1; transform: rotate(45deg) scale(1); }
.ifd-check:hover input { border-color: var(--ifd-accent); }
.ifd-range { width: 100%; accent-color: var(--ifd-accent); cursor: pointer; }
.ifd-range-value { display: flex; margin-top: 10px; color: var(--ifd-muted); justify-content: space-between; gap: 12px; font-size: 14px; }
.ifd-range-value strong { color: var(--ifd-ink); font-weight: 500; white-space: nowrap; }
.ifd-filter__submit { min-height: 56px; margin-top: 5px; }
.ifd-filter__submit span { font-size: 20px; font-weight: 400; line-height: 0; transition: transform var(--ifd-transition); }
.ifd-filter__submit:hover span { transform: translateX(4px); }
.ifd-catalog__toolbar { display: flex; margin-bottom: 34px; padding-bottom: 20px; border-bottom: 1px solid var(--ifd-line); align-items: center; justify-content: space-between; gap: 20px; }
.ifd-catalog__count { color: var(--ifd-muted); }
.ifd-select { min-width: 230px; height: 46px; padding: 0 42px 0 15px; border: 1px solid var(--ifd-line); border-radius: 0; color: var(--ifd-ink); background-color: var(--ifd-white); cursor: pointer; }
.ifd-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 54px 24px; }
.ifd-product-card[hidden] { display: none; }
.ifd-pagination { display: flex; margin-top: 70px; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.ifd-pagination > .page-numbers { display: grid; width: 46px; height: 46px; border: 1px solid var(--ifd-line); place-items: center; font-size: 15px; line-height: 1; transition: color var(--ifd-transition), border-color var(--ifd-transition), background var(--ifd-transition); }
.ifd-pagination > a.page-numbers:hover, .ifd-pagination > .page-numbers.current { color: var(--ifd-white); border-color: var(--ifd-accent); background: var(--ifd-accent); }
.ifd-pagination > .page-numbers.dots { border-color: transparent; color: var(--ifd-muted); }
.ifd-pagination > .prev, .ifd-pagination > .next { font-size: 19px; }

.ifd-product-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(390px,.8fr); align-items: start; gap: clamp(54px, 7vw, 110px); }
.ifd-product-gallery { display: grid; grid-template-columns: 108px minmax(0,1fr); gap: 18px; }
.ifd-product-gallery--single { grid-template-columns: minmax(0,1fr); }
.ifd-product-gallery--single .ifd-product-gallery__main { grid-column: 1 / -1; }
.ifd-product-gallery__thumbs { display: flex; flex-direction: column; gap: 14px; }
.ifd-product-gallery__thumb { display: block; overflow: hidden; border: 1px solid transparent; aspect-ratio: 1; background: var(--ifd-paper); cursor: zoom-in; transition: border-color var(--ifd-transition); }
.ifd-product-gallery__thumb:hover { border-color: var(--ifd-accent); }
.ifd-product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ifd-product-gallery__main { position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1.13; background: var(--ifd-paper); cursor: zoom-in; }
.ifd-product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.ifd-product-gallery__zoom { position: absolute; right: 18px; bottom: 18px; display: grid; width: 48px; height: 48px; border-radius: 50%; color: var(--ifd-white); background: var(--ifd-black); place-items: center; }
.ifd-product-info { position: sticky; top: calc(var(--ifd-header) + 30px); }
.ifd-product-info__label { margin: 0 0 18px; color: var(--ifd-accent); font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.ifd-product-info h1 { font-size: clamp(42px, 4vw, 64px); line-height: 1.02; }
.ifd-product-info__price { margin: 28px 0; color: var(--ifd-accent); font-size: 32px; }
.ifd-product-info__intro { margin: 0 0 30px; color: #4e4844; font-size: 20px; }
.ifd-product-info__facts { display: grid; margin: 30px 0; border-top: 1px solid var(--ifd-line); }
.ifd-product-info__fact { display: flex; padding: 15px 0; border-bottom: 1px solid var(--ifd-line); justify-content: space-between; gap: 24px; font-size: 16px; }
.ifd-product-info__fact span { color: var(--ifd-muted); }
.ifd-product-info__actions { display: grid; grid-template-columns: 1fr 56px 56px; gap: 10px; }
.ifd-social-btn { display: grid; border: 1px solid var(--ifd-line); background: transparent; place-items: center; transition: color var(--ifd-transition), border-color var(--ifd-transition), background var(--ifd-transition); }
.ifd-social-btn:hover { color: var(--ifd-white); border-color: var(--ifd-accent); background: var(--ifd-accent); }

.ifd-description { max-width: 1000px; }
.ifd-description__content { position: relative; max-height: none; overflow: visible; transition: max-height 700ms cubic-bezier(.22,1,.36,1); }
.ifd-description.is-collapsible:not(.is-open) .ifd-description__content { max-height: 240px; overflow: hidden; }
.ifd-description.is-collapsible:not(.is-open) .ifd-description__content::after { position: absolute; right: 0; bottom: 0; left: 0; height: 100px; content: ""; pointer-events: none; background: linear-gradient(transparent, var(--ifd-white)); }
.ifd-description.is-open .ifd-description__content { max-height: var(--ifd-description-height, 1400px); }
.ifd-description p { font-size: 20px; }
.ifd-description__toggle { margin-top: 24px; }
.ifd-description__toggle[hidden] { display: none; }

.ifd-about-intro { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(60px, 9vw, 150px); }
.ifd-about-intro__portrait { position: relative; padding: 0 0 56px 56px; }
.ifd-about-intro__portrait::before { position: absolute; z-index: -1; bottom: 0; left: 0; width: 80%; height: 82%; content: ""; background: var(--ifd-accent); }
.ifd-about-intro__portrait img { width: 100%; max-height: 760px; object-fit: cover; }
.ifd-about-intro__copy p { margin: 0 0 28px; font-size: clamp(20px, 1.7vw, 25px); line-height: 1.7;text-align: justify;}
.ifd-stats { display: grid; margin-top: 70px; padding-top: 45px; border-top: 1px solid var(--ifd-line); grid-template-columns: repeat(3,1fr); gap: 28px; }
.ifd-stat strong { display: block; color: var(--ifd-accent); font-size: clamp(44px, 5vw, 72px); font-weight: 400; line-height: 1; }
.ifd-stat span { color: var(--ifd-muted); }

.ifd-contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(48px, 7vw, 100px); }
.ifd-contact-list { display: grid; }
.ifd-contact-card { padding: 28px 0; border-top: 1px solid var(--ifd-line); }
.ifd-contact-card:last-child { border-bottom: 1px solid var(--ifd-line); }
.ifd-contact-card span { display: block; margin-bottom: 8px; color: var(--ifd-muted); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.ifd-contact-card p, .ifd-contact-card a { margin: 0; font-size: 24px; }
.ifd-requisites { margin-top: 58px; }
.ifd-requisites h2 { font-size: 32px; font-weight: 400; }
.ifd-requisites dl { display: grid; grid-template-columns: 180px 1fr; gap: 8px 22px; }
.ifd-requisites dt { color: var(--ifd-muted); }
.ifd-requisites dd { margin: 0; }

.ifd-form-panel { padding: clamp(34px, 5vw, 64px); color: var(--ifd-white); background: var(--ifd-black); }
.ifd-form-panel h2 { margin: 0 0 12px; font-size: clamp(32px, 3vw, 44px); font-weight: 400; line-height: 1.08; }
.ifd-form-panel > p { margin: 0 0 34px; color: rgba(255,255,255,.62); }
.ifd-form { display: grid; gap: 18px; }
.ifd-form__row { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.ifd-field { display: grid; gap: 7px; }
.ifd-field label { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.ifd-field input, .ifd-field textarea, .ifd-field select { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 0; color: var(--ifd-white); background: rgba(255,255,255,.04); outline: 0; transition: border-color var(--ifd-transition), background var(--ifd-transition); }
.ifd-field textarea { min-height: 130px; resize: vertical; }
.ifd-field input:focus, .ifd-field textarea:focus { border-color: var(--ifd-clay); background: rgba(255,255,255,.07); }
.ifd-consent { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.35; }
.ifd-consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--ifd-accent); }
.ifd-consent a { color: var(--ifd-white); border-bottom: 1px solid rgba(255,255,255,.5); }
.ifd-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.ifd-blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 60px 26px; }
.ifd-article-card { display: flex; min-width: 0; flex-direction: column; }
.ifd-article-card__image { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--ifd-soft); }
.ifd-article-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.22,1,.36,1); }
.ifd-article-card:hover .ifd-article-card__image img { transform: scale(1.04); }
.ifd-article-card__meta { margin: 20px 0 12px; color: var(--ifd-accent); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.ifd-article-card h2 { margin: 0 0 14px; font-size: 30px; font-weight: 500; line-height: 1.1; }
.ifd-article-card p { min-height: 3.1em; margin: 0 0 20px; color: var(--ifd-muted); font-size: 17px; }
.ifd-article-card .ifd-link { margin-top: auto; align-self: flex-start; }

.ifd-article-hero { padding: clamp(66px, 8vw, 120px) 0; background: var(--ifd-paper); }
.ifd-article-hero__meta { margin-bottom: 25px; color: var(--ifd-accent); font-size: 13px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.ifd-article-hero h1 { max-width: 1150px; font-size: clamp(42px, 4.1vw, 70px); line-height: 1.02; }
.ifd-article-hero__lead { max-width: 850px; margin: 30px 0 0; color: var(--ifd-muted); font-size: clamp(21px,2vw,28px); }
.ifd-article-layout { display: grid; grid-template-columns: minmax(0,1fr) 310px; align-items: start; gap: clamp(60px, 8vw, 120px); }
.ifd-prose { max-width: 870px; }
.ifd-prose h1, .ifd-prose h2, .ifd-prose h3, .ifd-prose h4 { color: var(--ifd-black); font-weight: 500; line-height: 1.05; scroll-margin-top: calc(var(--ifd-header) + 32px); }
.ifd-prose h1 { margin: 0 0 38px; font-size: clamp(38px,3.2vw,52px); }
.ifd-prose h2 { margin: 68px 0 22px; font-size: clamp(30px,2.5vw,40px); line-height: 1.12; }
.ifd-prose h3 { margin: 46px 0 18px; font-size: clamp(24px,2vw,31px); line-height: 1.16; }
.ifd-prose h4 { margin: 34px 0 15px; font-size: 22px; line-height: 1.2; }
.ifd-prose p, .ifd-prose li { font-size: 20px; line-height: 1.75; }
.ifd-prose p { margin: 0 0 24px; }
.ifd-prose a { color: var(--ifd-accent); border-bottom: 1px solid rgba(193,82,39,.45); }
.ifd-prose a:hover { color: var(--ifd-accent-dark); border-color: currentColor; }
.ifd-prose ul, .ifd-prose ol { margin: 26px 0; padding-left: 26px; }
.ifd-prose li { margin-bottom: 10px; }
.ifd-prose blockquote { margin: 44px 0; padding: 8px 0 8px 30px; border-left: 2px solid var(--ifd-accent); color: #4f4945; font-size: 28px; font-style: italic; line-height: 1.45; }
.ifd-toc { position: sticky; top: calc(var(--ifd-header) + 30px); max-height: calc(100vh - var(--ifd-header) - 60px); padding: 20px 15px; overflow-y: auto; overscroll-behavior: contain; border: 1px solid var(--ifd-line); scrollbar-width: thin; scrollbar-color: var(--ifd-accent) transparent; }
.ifd-toc h2 { margin: 0 0 18px; font-size: 24px; font-weight: 500; }
.ifd-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.ifd-toc li { position: relative; padding: 10px 0 10px 30px; border-top: 1px solid var(--ifd-line); counter-increment: toc; font-size: 16px; line-height: 1.25; }
.ifd-toc li::before { position: absolute; top: 10px; left: 0; color: var(--ifd-accent); content: counter(toc, decimal-leading-zero); font-size: 12px; }
.ifd-toc li.ifd-toc__item--level-3 { padding-left: 42px; color: var(--ifd-muted); font-size: 15px; }
.ifd-toc li.ifd-toc__item--level-3::before { left: 12px; color: var(--ifd-muted); }
.ifd-toc a:hover { color: var(--ifd-accent); }
.ifd-toc--mobile { display: none; position: static; margin-bottom: 54px; }

.ifd-site-footer { padding: 78px 0 28px; color: var(--ifd-white); background: var(--ifd-black); }
.ifd-footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .7fr 1fr; gap: clamp(36px, 6vw, 90px); }
.ifd-footer-brand img { width: 190px; padding: 10px; filter: invert(1); mix-blend-mode: screen; }
.ifd-footer-brand p { max-width: 370px; margin: 28px 0 0; color: rgba(255,255,255,.55); }
.ifd-footer-col .h3 { margin: 0 0 20px; color: rgba(255,255,255,.45); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.ifd-footer-links { display: grid; margin: 0; padding: 0; gap: 12px; list-style: none; }
.ifd-footer-links a:hover { color: var(--ifd-clay); }
.ifd-footer-contact a { display: block; margin-bottom: 8px; font-size: 21px; }
.ifd-footer-contact p { margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: 16px; }
.ifd-footer-note { margin-top: 62px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.5); font-size: 14px; }
.ifd-footer-bottom { display: flex; margin-top: 28px; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.5); font-size: 14px; }
.ifd-footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.ifd-footer-legal a:hover { color: var(--ifd-white); }

.ifd-mobile-bar { display: none; }

.ifd-chat {
  position: fixed;
  z-index: 125;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  font-family: "EB Garamond", Georgia, serif;
}
.ifd-chat[hidden], .ifd-chat__invite[hidden] { display: none; }
.ifd-chat__launcher {
  position: relative;
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid var(--ifd-accent);
  border-radius: 50%;
  color: var(--ifd-white);
  background: var(--ifd-accent);
  box-shadow: 0 16px 42px rgba(98,38,15,.28);
  cursor: pointer;
  place-items: center;
  transition: color var(--ifd-transition), background var(--ifd-transition), border-color var(--ifd-transition), transform var(--ifd-transition), box-shadow var(--ifd-transition);
}
.ifd-chat__launcher:hover { border-color: var(--ifd-black); background: var(--ifd-black); box-shadow: 0 18px 48px rgba(11,11,10,.24); transform: translateY(-3px); }
.ifd-chat__launcher-close { display: none; font-size: 38px; font-weight: 300; line-height: 1; transform: translateY(-2px); }
.ifd-chat.is-open .ifd-chat__launcher-open { display: none; }
.ifd-chat.is-open .ifd-chat__launcher-close { display: block; }
.ifd-chat__unread { position: absolute; top: 1px; right: 1px; display: none; width: 13px; height: 13px; border: 3px solid var(--ifd-white); border-radius: 50%; background: var(--ifd-black); }
.ifd-chat.has-invite .ifd-chat__unread { display: block; }

.ifd-chat__invite {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  width: min(330px, calc(100vw - 40px));
  padding: 5px 42px 5px 5px;
  border: 1px solid var(--ifd-line);
  background: var(--ifd-white);
  box-shadow: var(--ifd-shadow);
  grid-template-columns: minmax(0,1fr);
  transform-origin: right bottom;
  animation: ifdChatInvite 520ms cubic-bezier(.22,1,.36,1) both;
}
.ifd-chat__invite::after { position: absolute; right: 22px; bottom: -7px; width: 13px; height: 13px; border-right: 1px solid var(--ifd-line); border-bottom: 1px solid var(--ifd-line); content: ""; background: var(--ifd-white); transform: rotate(45deg); }
.ifd-chat__invite-text { padding: 16px 13px; border: 0; color: var(--ifd-ink); background: transparent; cursor: pointer; font-size: 17px; line-height: 1.35; text-align: left; }
.ifd-chat__invite-text::before { display: block; margin-bottom: 4px; color: var(--ifd-accent); content: "IFdecor"; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.ifd-chat__invite-close { position: absolute; z-index: 2; top: 9px; right: 9px; width: 30px; height: 30px; padding: 0; border: 0; color: var(--ifd-muted); background: transparent; cursor: pointer; font-size: 24px; line-height: 1; }
@keyframes ifdChatInvite { from { opacity: 0; transform: translateY(15px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.ifd-chat__panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  display: grid;
  width: min(404px, calc(100vw - 40px));
  height: min(640px, calc(100dvh - 126px));
  overflow: hidden;
  border: 1px solid var(--ifd-line);
  visibility: hidden;
  opacity: 0;
  background: var(--ifd-white);
  box-shadow: 0 30px 90px rgba(20,14,10,.22);
  grid-template-rows: auto auto minmax(0,1fr) auto;
  pointer-events: none;
  transform: translateY(18px) scale(.975);
  transform-origin: right bottom;
  transition: opacity var(--ifd-transition), visibility var(--ifd-transition), transform var(--ifd-transition);
}
.ifd-chat.is-open .ifd-chat__panel { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.ifd-chat__header { display: grid; min-height: 76px; padding: 14px 15px 14px 16px; color: var(--ifd-white); background: var(--ifd-black); grid-template-columns: 46px minmax(0,1fr) 38px; align-items: center; gap: 12px; }
.ifd-chat__avatar { display: grid; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--ifd-white); background: var(--ifd-accent); font-size: 15px; font-weight: 600; letter-spacing: .04em; place-items: center; }
.ifd-chat__identity { min-width: 0; line-height: 1.1; }
.ifd-chat__identity strong { display: block; overflow: hidden; font-size: 20px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.ifd-chat__identity small { display: flex; margin-top: 7px; align-items: center; gap: 7px; color: rgba(255,255,255,.62); font-family: Arial, sans-serif; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.ifd-chat__identity small i { width: 7px; height: 7px; border-radius: 50%; background: #78b879; box-shadow: 0 0 0 3px rgba(120,184,121,.14); }
.ifd-chat__close { display: grid; width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.18); color: var(--ifd-white); background: transparent; cursor: pointer; font-size: 27px; font-weight: 300; line-height: 1; place-items: center; transition: border-color var(--ifd-transition), background var(--ifd-transition); }

.ifd-chat__close span{
    position: relative;
    bottom: 2.5px;
}

.ifd-chat__close:hover { border-color: var(--ifd-accent); background: var(--ifd-accent); }
.ifd-chat__progress { padding: 10px 18px; border-bottom: 1px solid var(--ifd-line); color: var(--ifd-muted); background: var(--ifd-white); font-family: Arial, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .13em; line-height: 1.2; text-transform: uppercase; }
.ifd-chat__messages { min-height: 0; padding: 20px 18px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; background: var(--ifd-paper); scrollbar-color: rgba(11,11,10,.2) transparent; scrollbar-width: thin; }
.ifd-chat__message { display: flex; margin: 0 0 12px; }
.ifd-chat__message p { width: max-content; max-width: 86%; margin: 0; padding: 11px 14px; border: 1px solid var(--ifd-line); color: var(--ifd-ink); background: var(--ifd-white); font-size: 16px; line-height: 1.4; white-space: pre-line; }
.ifd-chat__message--user { justify-content: flex-end; }
.ifd-chat__message--user p { color: var(--ifd-white); border-color: var(--ifd-accent); background: var(--ifd-accent); }
.ifd-chat__typing p { display: flex; min-width: 60px; min-height: 40px; align-items: center; justify-content: center; gap: 5px; }
.ifd-chat__typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--ifd-muted); animation: ifdChatTyping 1s ease-in-out infinite; }
.ifd-chat__typing i:nth-child(2) { animation-delay: 140ms; }
.ifd-chat__typing i:nth-child(3) { animation-delay: 280ms; }
@keyframes ifdChatTyping { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.ifd-chat__summary { margin: 4px 0 14px; padding: 16px; border-left: 2px solid var(--ifd-accent); background: var(--ifd-white); }
.ifd-chat__summary > strong { display: block; margin-bottom: 11px; font-size: 18px; font-weight: 600; }
.ifd-chat__summary dl, .ifd-chat__summary dl > div { margin: 0; }
.ifd-chat__summary dl > div { display: grid; padding: 7px 0; border-top: 1px solid var(--ifd-line); grid-template-columns: 42% minmax(0,1fr); gap: 10px; font-size: 13px; line-height: 1.3; }
.ifd-chat__summary dt { color: var(--ifd-muted); }
.ifd-chat__summary dd { margin: 0; color: var(--ifd-ink); font-weight: 600; }

.ifd-chat__actions { display: grid; /*max-height: 48%;*/ padding: 14px 18px 18px; overflow-y: auto; border-top: 1px solid var(--ifd-line); background: var(--ifd-white); gap: 8px; }
.ifd-chat__choice { width: 100%; min-height: 42px; padding: 9px 13px; border: 1px solid var(--ifd-line); color: var(--ifd-ink); background: var(--ifd-white); cursor: pointer; font-size: 15px; line-height: 1.2; text-align: left; transition: color var(--ifd-transition), border-color var(--ifd-transition), background var(--ifd-transition), padding var(--ifd-transition); }
.ifd-chat__choice:hover { padding-left: 18px; color: var(--ifd-accent); border-color: var(--ifd-accent); }
.ifd-chat__choice--accent { color: var(--ifd-white); border-color: var(--ifd-accent); background: var(--ifd-accent); text-align: center; }
.ifd-chat__choice--accent:hover { padding-left: 13px; color: var(--ifd-white); border-color: var(--ifd-accent-dark); background: var(--ifd-accent-dark); }
.ifd-chat__answer-form { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 8px; }
.ifd-chat__answer-form input { min-width: 0; height: 44px; padding: 0 12px; border: 1px solid var(--ifd-line); border-radius: 0; color: var(--ifd-ink); background: var(--ifd-paper); }
.ifd-chat__answer-form button { min-height: 44px; padding: 9px 14px; border: 1px solid var(--ifd-accent); color: var(--ifd-white); background: var(--ifd-accent); cursor: pointer; font-size: 14px; }
.ifd-chat__answer-form .ifd-chat__answer-skip { color: var(--ifd-muted); border-color: transparent; background: transparent; grid-column: 1 / -1; }

.ifd-chat__form { display: grid; gap: 9px; }
.ifd-chat__form > label:not(.ifd-chat__consent) { display: grid; gap: 4px; }
.ifd-chat__form > label > span:first-child { color: var(--ifd-muted); font-family: Arial, sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.ifd-chat__form input[type="text"], .ifd-chat__form input[type="tel"], .ifd-chat__form textarea { width: 100%; min-height: 42px; padding: 9px 11px; border: 1px solid var(--ifd-line); border-radius: 0; color: var(--ifd-ink); background: var(--ifd-paper); font-size: 15px; line-height: 1.3; resize: vertical; }
.ifd-chat__consent { display: grid; margin: 2px 0; color: var(--ifd-muted); cursor: pointer; grid-template-columns: 18px minmax(0,1fr); align-items: start; gap: 9px; font-family: Arial, sans-serif; font-size: 10px; line-height: 1.4; }
.ifd-chat__consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ifd-accent); }
.ifd-chat__consent a { color: var(--ifd-ink); border-bottom: 1px solid currentColor; }
.ifd-chat__form-error { min-height: 0; margin: 0; color: #a23024; font-family: Arial, sans-serif; font-size: 11px; line-height: 1.3; }
.ifd-chat__form-error:empty { display: none; }
.ifd-chat__submit { width: 100%; min-height: 46px; padding: 11px 16px; border: 1px solid var(--ifd-accent); color: var(--ifd-white); background: var(--ifd-accent); cursor: pointer; font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: border-color var(--ifd-transition), background var(--ifd-transition); }
.ifd-chat__submit:hover { border-color: var(--ifd-accent-dark); background: var(--ifd-accent-dark); }
.ifd-chat__submit:disabled { cursor: wait; opacity: .65; }

.ifd-cookie { position: fixed; z-index: 130; right: 24px; bottom: 24px; display: grid; width: min(430px, calc(100% - 32px)); padding: 24px; border: 1px solid var(--ifd-line); background: var(--ifd-white); box-shadow: var(--ifd-shadow); grid-template-columns: 1fr auto; align-items: center; gap: 20px; transform: translateY(30px); opacity: 0; pointer-events: none; transition: transform var(--ifd-transition), opacity var(--ifd-transition); }
.ifd-cookie.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.ifd-cookie p { margin: 0; color: var(--ifd-muted); font-size: 15px; line-height: 1.4; }
.ifd-cookie a { color: var(--ifd-ink); border-bottom: 1px solid currentColor; }
.ifd-cookie button { width: 44px; height: 44px; padding: 0; border: 1px solid var(--ifd-black); color: var(--ifd-white); background: var(--ifd-black); cursor: pointer; }

.ifd-modal { position: fixed; z-index: 200; inset: 0; display: grid; padding: 24px; visibility: hidden; opacity: 0; background: rgba(11,11,10,.78); backdrop-filter: blur(8px); place-items: center; transition: opacity var(--ifd-transition), visibility var(--ifd-transition); }
.ifd-modal.is-open { visibility: visible; opacity: 1; }
.ifd-modal__dialog { position: relative; width: min(640px,100%); max-height: calc(100svh - 48px); padding: clamp(34px,5vw,60px); overflow-y: auto; background: var(--ifd-white); box-shadow: var(--ifd-shadow); transform: translateY(24px); transition: transform var(--ifd-transition); }
.ifd-modal.is-open .ifd-modal__dialog { transform: translateY(0); }
.ifd-modal__close { position: absolute; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; border: 1px solid var(--ifd-line); background: transparent; cursor: pointer; place-items: center; }
.ifd-modal__dialog .h2 { max-width: 100%; margin: 10px 0 12px; font-size: clamp(32px,4vw,44px); font-weight: 400; line-height: 1.08; }
.ifd-modal__dialog > p { margin: 0 0 30px; color: var(--ifd-muted); }
.ifd-modal .ifd-field input, .ifd-modal .ifd-field textarea { color: var(--ifd-black); border-color: var(--ifd-line); background: var(--ifd-paper); }
.ifd-modal .ifd-consent { color: var(--ifd-muted); }
.ifd-modal .ifd-consent a { color: var(--ifd-ink); border-color: var(--ifd-line); }
.ifd-toast { position: fixed; z-index: 300; right: 24px; bottom: 24px; width: min(420px,calc(100% - 32px)); padding: 22px 24px; color: var(--ifd-white); background: var(--ifd-black); box-shadow: var(--ifd-shadow); transform: translateY(30px); opacity: 0; pointer-events: none; transition: transform var(--ifd-transition), opacity var(--ifd-transition); }
.ifd-toast.is-visible { transform: translateY(0); opacity: 1; }
.ifd-toast strong { display: block; margin-bottom: 4px; color: var(--ifd-clay); font-size: 21px; }

[data-reveal] { transform: translateY(24px); opacity: 0; transition: transform 850ms cubic-bezier(.22,1,.36,1), opacity 700ms ease; }
[data-reveal].is-visible { transform: translateY(0); opacity: 1; }


/* Реквизиты на текстовых страницах IFdecor. */
.ifd-prose .ifd-details-list {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  width: 100%;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--ifd-line);
  font-variant-numeric: tabular-nums;
}

.ifd-prose .ifd-details-list dt,
.ifd-prose .ifd-details-list dd {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--ifd-line);
}

.ifd-prose .ifd-details-list dt {
  padding-right: 28px;
  color: var(--ifd-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ifd-prose .ifd-details-list dd {
  min-width: 0;
  color: var(--ifd-ink);
  font-size: 20px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ifd-prose .ifd-details-list dd a {
  color: var(--ifd-ink);
  border-bottom-color: var(--ifd-line);
  transition: color var(--ifd-transition), border-color var(--ifd-transition);
}

.ifd-prose .ifd-details-list dd a:hover {
  color: var(--ifd-accent);
  border-bottom-color: currentColor;
}

@media (max-width: 767.98px) {
  .ifd-prose .ifd-details-list {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 28px;
  }

  .ifd-prose .ifd-details-list dt {
    padding: 16px 0 4px;
    border-bottom: 0;
  }

  .ifd-prose .ifd-details-list dd {
    padding: 0 0 16px;
    font-size: 18px;
  }
}



@media (max-width: 1199.98px) {
  .ifd-slider__track > * { flex-basis: calc((100% - 48px) / 3); }
  .ifd-product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ifd-blog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ifd-footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .ifd-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 991.98px) {
  :root { --ifd-header: 74px; }
  body { padding-bottom: 66px; }
  .ifd-container { width: min(calc(100% - 36px), var(--ifd-container)); }
  .ifd-site-header__inner { gap: 14px; }
  .ifd-brand { width: 118px; }
  .ifd-home .ifd-brand { visibility: visible; pointer-events: auto; }
  .ifd-header-phone { width: 48px; height: 48px; margin-left: auto; border: 1px solid var(--ifd-line); justify-content: center; }
  .ifd-header-phone span { display: none; }
  .ifd-menu-toggle { display: block; margin-left: 0; }
  .ifd-site-nav { position: fixed; z-index: 95; top: var(--ifd-header); right: 0; bottom: 0; left: 0; display: flex; width: 100%; max-width: 100vw; min-height: calc(100dvh - var(--ifd-header)); margin: 0; padding: 26px max(18px, env(safe-area-inset-left)) calc(110px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-right)); overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; visibility: hidden; opacity: 0; background: var(--ifd-white); box-shadow: 0 28px 60px rgba(14,11,9,.12); box-sizing: border-box; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; transform: translateY(-14px); transition: opacity var(--ifd-transition), visibility var(--ifd-transition), transform var(--ifd-transition); }
  .has-menu .ifd-site-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .ifd-site-nav > li { width: 100%; flex: 0 0 auto; }
  .ifd-site-nav a { width: 100%; padding: 17px 4px; overflow-wrap: anywhere; border-bottom: 1px solid var(--ifd-line); font-size: 20px; font-weight: 400; letter-spacing: 0; line-height: 1.2; white-space: normal; text-transform: none; }
  .ifd-site-nav .current-menu-item > a, .ifd-site-nav .current_page_item > a, .ifd-site-nav a.is-active { color: var(--ifd-accent); }
  .ifd-site-nav a::after { display: none; }
  .has-menu .ifd-menu-toggle span:first-child { transform: translateY(6px) rotate(45deg); }
  .has-menu .ifd-menu-toggle span:nth-child(2) { opacity: 0; }
  .has-menu .ifd-menu-toggle span:last-child { transform: translateY(-6px) rotate(-45deg); }
  .ifd-hero, .ifd-hero__inner { min-height: auto; }
  .ifd-hero { background: linear-gradient(180deg,#fff 0 57%,#f2f1ef 57% 100%); }
  .ifd-hero::before { display: none; }
  .ifd-hero__inner { grid-template-columns: 1fr; }
  .ifd-hero__content { padding: 64px 0 30px; }
  .ifd-hero__logo { display: none; }
  .ifd-hero__title { max-width: 760px; }
  .ifd-hero__visual { min-height: 52vw; }
  .ifd-hero__frame {
        right: -12vw;
        bottom: -3%;
        width: 68vw;
        padding-bottom: 10px;
        background: #fff;
	}
  .ifd-hero__note { display: none; }
  .ifd-story { grid-template-columns: 1fr; gap: 58px; }
  .ifd-story__media { width: min(100%,720px); }
  .ifd-story__copy { max-width: 760px; }
  .ifd-slider__track > * { flex-basis: calc((100% - 24px) / 2); }
  .ifd-contact-band { grid-template-columns: 1fr; }
  .ifd-contact-band__content { min-height: auto; }
  .ifd-map { min-height: 470px; }
  .ifd-catalog { grid-template-columns: 1fr; gap: 30px; }
  .ifd-filter__mobile-toggle { margin-bottom: 28px; }
  .ifd-filter { position: static; display: none; }
  .ifd-filter.is-open { display: block; }
  .ifd-filter__mobile-toggle { display: flex; }
  .ifd-product-layout { grid-template-columns: 1fr; }
  .ifd-product-info { position: static; }
  .ifd-about-intro { grid-template-columns: 1fr; gap: 60px; }
  .ifd-about-intro__portrait { width: min(100%,670px); }
  .ifd-contact-grid { grid-template-columns: 1fr; }
  .ifd-article-layout { display: block; }
  .ifd-toc--desktop { display: none; }
  .ifd-toc--mobile { display: block; max-height: none; overflow: visible; }
  .ifd-mobile-bar { position: fixed; z-index: 120; right: 0; bottom: 0; left: 0; display: grid; height: 66px; padding: 7px 12px max(7px, env(safe-area-inset-bottom)); border-top: 1px solid rgba(255,255,255,.16); color: var(--ifd-white); background: rgba(11,11,10,.97); grid-template-columns: 1fr 1fr 1fr; gap: 8px; backdrop-filter: blur(12px); }
  .ifd-mobile-bar a { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.16); font-size: 13px; }
  .ifd-mobile-bar svg { display: block; width: 20px; height: 20px; flex: 0 0 auto; }
  .ifd-mobile-bar a:first-child { color: var(--ifd-white); border-color: var(--ifd-accent); background: var(--ifd-accent); }
  .ifd-chat { right: 18px; bottom: 82px; }
  .ifd-chat__panel { height: min(640px, calc(100dvh - 174px)); }
  .ifd-cookie { bottom: 82px; }
  .ifd-toast { bottom: 82px; }
	
.ifd-contact-band .ifd-map {
    min-height: 630px;
}
	.ifd-modal__dialog .h2{
    margin: 30px 0 12px;	
	}
	
	
}

@media (max-width: 767.98px) {
  .ifd-section { padding: 72px 0; }
  .ifd-title { font-size: 38px; }
  .ifd-home .ifd-title { font-size: clamp(42px,13vw,62px); }
  .ifd-section-head { align-items: start; flex-direction: column; }
  .ifd-section-head__actions { align-self: flex-end; }
  .ifd-story__media { padding: 22px; }
  .ifd-story__media::before { display: none; }
  .ifd-slider__track { overflow-x: auto; overflow-y: hidden; }
  .ifd-slider__track > * { flex-basis: 82vw; }
  .ifd-product-grid, .ifd-blog-grid { grid-template-columns: 1fr; }
  .ifd-catalog__toolbar { align-items: stretch; flex-direction: column; }
  .ifd-select { width: 100%; }
  .ifd-product-gallery { grid-template-columns: 1fr; }
  .ifd-product-gallery__thumbs { order: 2; overflow-x: auto; flex-direction: row; }
  .ifd-product-gallery__thumb { min-width: 88px; }
  .ifd-product-info__actions { grid-template-columns: 1fr 52px 52px; }
  .ifd-stats { grid-template-columns: 1fr; }
  .ifd-contact-band__content { padding-inline: 22px; }
  .ifd-contact-band__content h2 { margin-bottom: 28px; }
  .ifd-contact-band__item a, .ifd-contact-band__item p { font-size: 20px; }
  .ifd-form__row { grid-template-columns: 1fr; }
  .ifd-requisites dl { grid-template-columns: 1fr; gap: 3px; }
  .ifd-requisites dd { margin-bottom: 14px; }
  .ifd-footer-grid { grid-template-columns: 1fr 1fr; }
  .ifd-footer-brand, .ifd-footer-contact { grid-column: 1 / -1; }
  .ifd-footer-bottom { align-items: start; flex-direction: column; }
  .ifd-cookie { right: 16px; padding: 18px; }

.ifd-contact-band .ifd-map {
    min-height: 470px;
}
.ifd-hero__frame{bottom: -6%;padding-bottom: 20px;}
.ifd-section .ifd-story__media{order: 2;}
	
}



@media (max-width: 991.98px) {

    .ifd-site-nav {
        position: fixed;
        top: var(--ifd-menu-top, var(--ifd-header));
        max-height: calc(100dvh - var(--ifd-menu-top, var(--ifd-header)));
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 9998;
    }

}


@media (max-width: 479.98px) {
  .ifd-container { width: calc(100% - 28px); }
  .ifd-hero__content { padding-top: 48px; }
  .ifd-hero__title { font-size: 48px; }
  .ifd-hero__visual { min-height: 72vw; }
  .ifd-hero__frame { right: -20vw; width: 95vw; }
  .ifd-page-hero h1, .ifd-article-hero h1, .ifd-product-info h1 { font-size: 40px; }
  .ifd-slider__track > * { flex-basis: 86vw; }
  .ifd-footer-grid { grid-template-columns: 1fr; }
  .ifd-footer-brand, .ifd-footer-contact { grid-column: auto; }
  .ifd-mobile-bar a { font-size: 11px; }
  .ifd-mobile-bar svg { width: 22px; height: 22px; }
  .ifd-chat { right: 12px; width: 58px; height: 58px; }
  .ifd-chat__launcher { width: 58px; height: 58px; }
  .ifd-chat__panel { right: 0; bottom: 70px; width: calc(100vw - 24px); height: min(610px, calc(100dvh - 166px)); }
  .ifd-chat__invite { right: 0; bottom: 70px; width: min(326px, calc(100vw - 24px)); }
  .ifd-chat__header { min-height: 70px; padding: 11px 12px; grid-template-columns: 42px minmax(0,1fr) 36px; gap: 10px; }
  .ifd-chat__avatar { width: 42px; height: 42px; }
  .ifd-chat__identity strong { font-size: 18px; }
  .ifd-chat__messages { padding: 16px 14px; }
  .ifd-chat__actions { padding: 12px 14px 14px; }
  .ifd-modal { padding: 10px; }
  .ifd-modal__dialog { max-height: calc(100svh - 20px); padding: 34px 22px; }
  .ifd-pagination { gap: 6px; }
  .ifd-pagination > .page-numbers { width: 40px; height: 40px; }
}

@media (max-width: 400.98px) {
	.ifd-footer-legal{
    gap: 5px;
    flex-direction: column;		
	}

.ifd-footer-bottom{gap: 15px}
	.ifd-page-actions{flex-direction: column}
	
	
}



@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  [data-reveal] { transform: none; opacity: 1; }
}
