:root {
  --ink: #1c211d;
  --muted: #6e736c;
  --paper: #f2efe8;
  --paper-2: #e8e3d8;
  --white: #fffdf8;
  --sage: #73806d;
  --sage-dark: #435043;
  --line: rgba(28, 33, 29, .14);
  --shadow: 0 24px 80px rgba(32, 30, 24, .12);
  --radius: 2px;
  --container: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid #c8a97e; outline-offset: 3px; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.7rem, 7vw, 7rem); }
h2 { margin-bottom: 30px; font-size: clamp(2.7rem, 4.5vw, 5rem); }
h3 { margin-bottom: 12px; font-size: 1.2rem; font-weight: 550; }
.eyebrow {
  margin-bottom: 26px;
  color: var(--sage-dark);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow--light { color: rgba(255, 255, 255, .74); }
.lead-text { max-width: 610px; color: var(--muted); font-size: 1.08rem; }

.site-header {
  position: absolute;
  z-index: 50;
  inset: 0 0 auto;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}
.site-header--light {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-bottom-color: var(--line);
}
.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}
.brand {
  justify-self: center;
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: .32em;
}
.brand i { margin-right: 8px; font-family: var(--serif); font-size: 1.75rem; font-style: normal; font-weight: 400; }
.nav__links, .nav__actions { display: flex; align-items: center; gap: 30px; }
.nav__links a, .nav__actions a { font-size: .86rem; }
.nav__actions { justify-self: end; }
.nav__phone { white-space: nowrap; }
.nav__brief {
  padding-bottom: 3px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
}
.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav__toggle span, .nav__toggle::before, .nav__toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: .3s;
}
.nav-open .nav__toggle span { opacity: 0; }
.nav-open .nav__toggle::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav__toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: min(900px, 100svh); color: #fff; overflow: hidden; }
.hero__image, .hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; animation: heroZoom 16s ease-out both; }
.hero__shade { background: linear-gradient(90deg, rgba(18, 22, 18, .76) 0%, rgba(18, 22, 18, .34) 54%, rgba(18, 22, 18, .09) 100%); }
.hero__content { position: relative; z-index: 1; padding-top: clamp(190px, 25vh, 270px); }
.hero h1 { max-width: 900px; margin-bottom: 35px; }
.hero__lead { max-width: 570px; margin-bottom: 36px; color: rgba(255, 255, 255, .82); font-size: 1.1rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__note {
  position: absolute;
  z-index: 1;
  right: 44px;
  bottom: 36px;
  color: rgba(255,255,255,.74);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1); } }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.button span { margin-left: 28px; }
.button:hover { transform: translateY(-2px); background: var(--sage-dark); border-color: var(--sage-dark); }
.button--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.button--light:hover { background: var(--paper-2); color: var(--ink); border-color: var(--paper-2); }
.button--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.button--ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.button--outline { background: transparent; color: var(--ink); }
.button--outline:hover { color: #fff; }

.stats { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__grid div { display: flex; flex-direction: column; padding: 34px 28px; border-left: 1px solid var(--line); }
.stats__grid div:last-child { border-right: 1px solid var(--line); }
.stats strong { margin-bottom: 4px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.stats span { color: var(--muted); font-size: .78rem; }

.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; margin-bottom: 62px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 420px; margin: 0 0 5px; color: var(--muted); }
.section-heading--compact { margin-bottom: 58px; }
.catalog__controls { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: 38px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { padding: 8px 14px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; transition: .2s; }
.filter-chip:hover, .filter-chip.is-active { color: #fff; background: var(--sage-dark); border-color: var(--sage-dark); }
.search-box { display: flex; align-items: center; min-width: 225px; gap: 9px; border-bottom: 1px solid var(--line); }
.search-box input { width: 100%; padding: 9px 0; border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-box input::placeholder { color: #8b8e88; }
.catalog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px 22px; }
.catalog-card { display: block; }
.catalog-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-2); }
.catalog-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,24,20,.18), transparent 45%); opacity: 0; transition: .35s; }
.catalog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.catalog-card:hover img { transform: scale(1.035); }
.catalog-card:hover .catalog-card__media::after { opacity: 1; }
.catalog-card__body { display: flex; justify-content: space-between; gap: 18px; padding: 17px 0 0; }
.catalog-card h3 { margin: 0; font-family: var(--serif); font-size: 1.42rem; font-weight: 400; }
.catalog-card__description { margin: 8px 45px 0 0; color: var(--muted); font-size: .86rem; }
.catalog-card__arrow { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid var(--line); transition: .25s; }
.catalog-card:hover .catalog-card__arrow { color: #fff; background: var(--sage-dark); border-color: var(--sage-dark); transform: rotate(45deg); }
.catalog-card[hidden] { display: none; }
.catalog__empty { padding: 50px 0; text-align: center; color: var(--muted); }

.craft { color: #f9f6ef; background: var(--ink); }
.craft__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(60px, 9vw, 130px); }
.craft__visual { position: relative; }
.craft__visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.craft__badge { position: absolute; right: -45px; bottom: 42px; width: 120px; height: 120px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); color: var(--ink); text-align: center; font-family: var(--serif); line-height: 1.2; }
.craft__content .eyebrow { color: #aebca6; }
.craft__content .lead-text { color: rgba(255,255,255,.65); }
.feature-list { margin: 44px 0 38px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.feature-list li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.feature-list li > span { color: #aebca6; font-size: .75rem; }
.feature-list strong { font-weight: 550; }
.feature-list p { margin: 3px 0 0; color: rgba(255,255,255,.56); font-size: .9rem; }
.text-link { padding: 0 0 5px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; }
.text-link span { margin-left: 20px; }

.process { background: var(--white); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process__grid article { min-height: 250px; padding: 30px 28px; border-left: 1px solid var(--line); }
.process__grid article:last-child { border-right: 1px solid var(--line); }
.process__grid span { display: block; margin-bottom: 70px; color: var(--sage); font-size: .75rem; }
.process__grid h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.process__grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.stories { background: #c9c3b5; }
.stories__top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; }
.stories__top h2 { margin-bottom: 0; }
.quote-nav { display: flex; gap: 8px; }
.quote-nav button { width: 48px; height: 48px; border: 1px solid rgba(28,33,29,.3); background: transparent; cursor: pointer; transition: .2s; }
.quote-nav button:hover { color: #fff; background: var(--ink); }
.quote-card { display: grid; grid-template-columns: .65fr 1.35fr; min-height: 360px; background: var(--paper); box-shadow: var(--shadow); }
.quote-card__meta { padding: 48px; border-right: 1px solid var(--line); }
.quote-card__meta strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.quote-card__meta span { color: var(--muted); font-size: .84rem; }
.quote-card__text { display: flex; align-items: center; padding: 60px; }
.quote-card blockquote { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.5vw, 2.55rem); line-height: 1.3; letter-spacing: -.02em; }
.quote-track { display: grid; gap: 24px; }

.faq-section { background: var(--paper); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px, 10vw, 150px); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-family: var(--sans); font-size: 1rem; }
.faq-item button { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-item button { font-size: 1rem; font-weight: 550; }
.faq-item button span { font-size: 1.4rem; transition: transform .25s; }
.faq-item.is-open button span { transform: rotate(45deg); }
.faq-item__answer { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .3s ease; }
.faq-item__answer > div { overflow: hidden; }
.faq-item__answer p { max-width: 650px; margin: -4px 40px 25px 0; color: var(--muted); }
.js-enabled .faq-item__answer { grid-template-rows: 0fr; }
.js-enabled .faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }

.cta-section { padding: 120px 0; background: var(--sage-dark); color: #fff; }
.cta-section h2 { max-width: 620px; }
.cta-section p:not(.eyebrow) { margin-bottom: 30px; color: rgba(255,255,255,.7); }
.order-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.order-form { padding: 38px; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.order-form .button { width: 100%; margin-top: 25px; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { min-height: 24px; margin-top: 14px; font-size: .82rem; text-align: center; }
.form-status.is-pending { color: var(--muted); }
.form-status.is-success { color: #2e6a3e; }
.form-status.is-error { color: #a13d32; }
.order-form button:disabled { opacity: .6; cursor: wait; }

.site-footer { color: #e8e6df; background: #161a17; }
.footer__top { display: grid; grid-template-columns: 1.15fr .65fr .65fr .75fr; gap: 60px; padding: 76px 0 65px; }
.footer__brand { display: inline-block; margin-bottom: 22px; font-size: 1.25rem; font-weight: 750; letter-spacing: .28em; }
.footer__brand i { margin-right: 8px; font-family: var(--serif); font-size: 1.7rem; font-style: normal; font-weight: 400; }
.footer__intro { max-width: 310px; color: rgba(255,255,255,.5); font-size: .88rem; }
.footer__col h3 { margin-bottom: 22px; color: rgba(255,255,255,.45); font-family: var(--sans); font-size: .7rem; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; }
.footer__col a, .footer__col span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.75); font-size: .88rem; }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: .75rem; }

/* Product pages */
.product-hero { padding: 42px 0 95px; }
.breadcrumbs { display: flex; align-items: center; gap: 9px; margin-bottom: 42px; color: var(--muted); font-size: .78rem; }
.breadcrumbs--home { position: absolute; z-index: 2; top: 110px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.65); }
.breadcrumbs a:hover { color: var(--ink); }
.product-hero__head { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; margin-bottom: 48px; }
.product-hero h1 { max-width: 950px; margin-bottom: 0; font-size: clamp(3.6rem, 6.8vw, 7.5rem); }
.product-hero__intro { margin: 0 0 10px; color: var(--muted); font-size: 1.05rem; }
.product-hero__visual { position: relative; height: clamp(420px, 58vw, 720px); margin: 0; overflow: hidden; }
.product-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.product-hero__caption { position: absolute; right: 18px; bottom: 18px; padding: 10px 14px; background: rgba(255,253,248,.9); color: var(--muted); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.product-benefits { padding: 90px 0; background: var(--white); }
.product-benefits__intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 70px; }
.product-benefits__intro h2 { margin-bottom: 0; }
.product-benefits__intro p { max-width: 520px; color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.benefit-card { padding: 30px; border-left: 1px solid var(--line); }
.benefit-card:last-child { border-right: 1px solid var(--line); }
.benefit-card__number { display: block; margin-bottom: 75px; color: var(--sage); font-size: .75rem; }
.benefit-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.benefit-card p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.product-details { padding: 110px 0; background: var(--paper-2); }
.product-details__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); }
.product-details__list { margin: 0; padding: 0; list-style: none; }
.product-details__list li { display: grid; grid-template-columns: 150px 1fr; gap: 28px; padding: 24px 0; border-top: 1px solid var(--line); }
.product-details__list li:last-child { border-bottom: 1px solid var(--line); }
.product-details__list span { color: var(--muted); font-size: .8rem; }
.product-details__list strong { font-weight: 500; }
.related { padding: 110px 0; }
.related__top { display: flex; justify-content: space-between; align-items: end; margin-bottom: 40px; }
.related__top h2 { margin-bottom: 0; }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field--wide { grid-column: 1 / -1; }
.form-field span { color: var(--muted); font-size: .76rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); outline: none; background: transparent; }
.form-field textarea { min-height: 75px; resize: vertical; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-bottom-color: var(--sage-dark); }
.back-to-top { position: fixed; z-index: 40; right: 22px; bottom: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); background: var(--ink); color: #fff; cursor: pointer; box-shadow: var(--shadow); }
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js-enabled .reveal { opacity: 0; transform: translateY(20px); }
.js-enabled .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .nav { grid-template-columns: 1fr auto; }
  .brand { justify-self: start; }
  .js-enabled .nav__toggle { display: block; justify-self: end; }
  .js-enabled .nav__links, .js-enabled .nav__actions { display: none; }
  .js-enabled .nav-open .nav__links { position: absolute; top: 84px; left: -24px; right: -24px; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 12px 24px 24px; background: var(--paper); color: var(--ink); box-shadow: 0 20px 40px rgba(0,0,0,.12); }
  .nav-open .nav__links a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); }
  body:not(.js-enabled) .nav { height: auto; grid-template-columns: 1fr; gap: 14px; padding: 18px 0; }
  body:not(.js-enabled) .brand { grid-row: 1; }
  body:not(.js-enabled) .nav__links, body:not(.js-enabled) .nav__actions { display: flex; flex-wrap: wrap; gap: 14px 22px; }
  body:not(.js-enabled) .nav__actions { justify-self: start; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid div:nth-child(3) { border-top: 1px solid var(--line); }
  .stats__grid div:nth-child(4) { border-top: 1px solid var(--line); }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .craft__grid { gap: 65px; }
  .craft__badge { right: -30px; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid article:nth-child(3), .process__grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .faq-layout { grid-template-columns: 1fr; gap: 35px; }
  .order-layout { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer__top > div:first-child { grid-column: 1 / -1; }
  .product-hero__head, .product-benefits__intro { grid-template-columns: 1fr; gap: 25px; }
  .product-details__grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 72px 0; }
  .nav { height: 70px; }
  .js-enabled .nav-open .nav__links { top: 70px; left: -16px; right: -16px; }
  .brand { font-size: 1rem; }
  .brand i { font-size: 1.4rem; }
  .hero { min-height: 760px; }
  .hero__content { padding-top: 175px; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero__shade { background: linear-gradient(90deg, rgba(18,22,18,.78), rgba(18,22,18,.25)); }
  .hero__actions { flex-direction: column; align-items: stretch; max-width: 360px; }
  .hero__note { right: 16px; bottom: 22px; left: 16px; }
  .stats__grid { margin-inline: -16px; }
  .stats__grid div { padding: 25px 16px; }
  .stats strong { font-size: 1.45rem; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .catalog__controls { align-items: stretch; flex-direction: column; }
  .search-box { width: 100%; }
  .catalog__grid { grid-template-columns: 1fr; gap: 35px; }
  .catalog-card h3 { font-size: 1.32rem; }
  .craft__grid { grid-template-columns: 1fr; }
  .craft__visual { margin-right: 14px; }
  .craft__badge { right: -15px; width: 96px; height: 96px; font-size: .86rem; }
  .process__grid { grid-template-columns: 1fr; }
  .process__grid article { min-height: auto; padding: 28px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .process__grid span { margin-bottom: 42px; }
  .stories__top { align-items: flex-start; gap: 24px; }
  .quote-card { grid-template-columns: 1fr; }
  .quote-card__meta { padding: 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quote-card__text { padding: 32px 30px 42px; }
  .quote-card blockquote { font-size: 1.45rem; }
  .cta-section { padding: 85px 0; }
  .order-form { padding: 28px 20px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer__top > div:first-child, .footer__top > div:last-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 7px; }
  .product-hero { padding: 28px 0 65px; }
  .breadcrumbs { margin-bottom: 32px; }
  .product-hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .product-hero__visual { height: 470px; }
  .product-benefits, .product-details, .related { padding: 72px 0; }
  .benefit-grid, .related__grid { grid-template-columns: 1fr; }
  .benefit-card { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .benefit-card__number { margin-bottom: 45px; }
  .product-details__list li { grid-template-columns: 105px 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--wide { grid-column: auto; }
}

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

.result-page { min-height: 100svh; display: grid; place-items: center; padding: 24px; }
.result-card { width: min(680px, 100%); padding: clamp(32px, 8vw, 72px); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.result-card h1 { font-size: clamp(2.8rem, 8vw, 5rem); }
.result-card p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }

/* Дополнения для формы, уникальных блоков категорий и правовой страницы */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
  cursor: pointer;
}
.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--sage-dark);
}
.form-consent a,
.form-note a,
.footer__bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-consent a:focus-visible,
.form-note a:focus-visible,
.footer__bottom a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.product-insights {
  padding: 110px 0;
  background: var(--white);
}
.product-insights__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}
.product-insights__grid h2 {
  margin-bottom: 25px;
}
.product-insights__grid > div > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}
.product-insights__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.product-insights__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.product-insights__list strong {
  font-size: .82rem;
  font-weight: 650;
}
.product-insights__list span {
  color: var(--muted);
}
.legal-page {
  padding: 150px 0 110px;
  background: var(--paper);
}
.legal-page__content {
  max-width: 900px;
}
.legal-page h1 {
  max-width: 850px;
  margin-bottom: 35px;
  font-size: clamp(3rem, 7vw, 6rem);
}
.legal-page h2 {
  margin-top: 55px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}
.legal-page p {
  max-width: 780px;
  color: var(--muted);
}
.legal-page .button {
  margin-top: 30px;
}
.footer__bottom a {
  color: rgba(255,255,255,.72);
}

@media (max-width: 980px) {
  .product-insights__grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 700px) {
  .product-insights { padding: 72px 0; }
  .product-insights__list li { grid-template-columns: 92px 1fr; gap: 16px; }
  .legal-page { padding: 110px 0 72px; }
  .legal-page h1 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
}


/* Cloudflare Turnstile */
.turnstile-widget {
  width: 100%;
  min-height: 65px;
  margin: 18px 0 4px;
  overflow: hidden;
}
.turnstile-widget > div,
.turnstile-widget iframe {
  max-width: 100% !important;
}
.turnstile-widget iframe {
  width: 100% !important;
}
.form-noscript {
  margin: 18px 0;
  color: #a13d32;
  font-size: .78rem;
  line-height: 1.45;
}


/* Form contrast and Turnstile fixes — 2026-07-18 v4 */
.cta-section .order-form .form-consent,
.cta-section .order-form .form-note {
  color: #3c443f;
}
.cta-section .order-form .form-consent a,
.cta-section .order-form .form-note a {
  color: #174f3a;
  font-weight: 650;
  text-decoration-thickness: 1px;
}
.cta-section .order-form .form-consent a:hover,
.cta-section .order-form .form-note a:hover {
  color: #0f3828;
}
.turnstile-widget {
  display: block;
  width: 100%;
  min-height: 98px;
  margin: 20px 0 8px;
  padding: 12px;
  overflow: visible;
  border: 1px solid #cfd5ce;
  background: #fff;
  box-sizing: border-box;
}
.turnstile-widget__title {
  margin-bottom: 8px;
  color: #3c443f;
  font-size: .74rem;
  font-weight: 650;
  letter-spacing: .02em;
}
.turnstile-widget__mount {
  width: 100%;
  min-height: 65px;
}
.turnstile-widget__mount > div,
.turnstile-widget__mount iframe {
  max-width: 100% !important;
}
.turnstile-widget.is-verified {
  border-color: #7ca488;
  background: #f7fbf8;
}
.order-form button:disabled {
  opacity: .62;
  cursor: not-allowed;
}

/* Улучшенная читаемость и крупное сообщение формы — 2026-07-18 v5 */
:root {
  --muted: #535a53;
  --line: rgba(28, 33, 29, .2);
}

body {
  font-size: 17px;
  line-height: 1.62;
}

.eyebrow {
  color: #344337;
  font-size: .84rem;
  line-height: 1.4;
  letter-spacing: .14em;
}
.eyebrow--light { color: rgba(255, 255, 255, .9); }
.nav__links a,
.nav__actions a { font-size: .96rem; }
.hero__lead { color: rgba(255,255,255,.92); font-size: 1.14rem; }
.hero__note { color: rgba(255,255,255,.92); font-size: .9rem; }
.stats span { color: #505850; font-size: .9rem; }
.section-heading > p { color: #505850; font-size: 1rem; }
.filter-chip { font-size: .96rem; font-weight: 550; }
.search-box input { font-size: 1rem; }
.search-box input::placeholder { color: #626961; opacity: 1; }
.catalog-card__description { color: #505850; font-size: .98rem; line-height: 1.55; }
.craft__content .lead-text { color: rgba(255,255,255,.82); }
.feature-list li > span { color: #c2d0bc; font-size: .86rem; }
.feature-list p { color: rgba(255,255,255,.82); font-size: 1rem; }
.process__grid span { color: #667660; font-size: .86rem; font-weight: 650; }
.process__grid p { color: #505850; font-size: 1rem; }
.quote-card__meta span { color: #505850; font-size: .96rem; }
.faq-item h3,
.faq-item button { font-size: 1.08rem; }
.faq-item__answer p { color: #505850; font-size: 1rem; }

.form-field span {
  color: #394139;
  font-size: .94rem;
  font-weight: 650;
}
.form-field input,
.form-field select,
.form-field textarea {
  color: var(--ink);
  font-size: 1rem;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #687068;
  opacity: 1;
}
.form-consent {
  color: #303830;
  font-size: .94rem;
  line-height: 1.55;
}
.form-note,
.cta-section .order-form .form-note {
  color: #303830;
  font-size: .92rem;
  line-height: 1.55;
}
.form-noscript { font-size: .94rem; font-weight: 600; }
.turnstile-widget__title { color: #303830; font-size: .92rem; font-weight: 700; }

.form-status {
  min-height: 28px;
  margin-top: 18px;
  color: #394139;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}
.form-status.is-pending {
  color: #394139;
}
.form-status.is-error {
  padding: 13px 15px;
  border: 1px solid #c9796f;
  background: #fff2f0;
  color: #812b23;
  font-size: 1.02rem;
}
.form-status.is-success {
  min-height: auto;
  margin-top: 24px;
  padding: clamp(20px, 4vw, 30px);
  border: 2px solid #4d805b;
  background: #edf8ef;
  color: #174d2b;
  font-size: clamp(1.4rem, 2.7vw, 1.9rem);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -.01em;
  text-align: center;
  box-shadow: 0 12px 32px rgba(23, 77, 43, .12);
}

.footer__intro { color: rgba(255,255,255,.76); font-size: .98rem; }
.footer__col h3 { color: rgba(255,255,255,.76); font-size: .84rem; }
.footer__col a,
.footer__col span { color: rgba(255,255,255,.9); font-size: .98rem; }
.footer__bottom { color: rgba(255,255,255,.7); font-size: .88rem; }
.footer__bottom a { color: rgba(255,255,255,.9); }
.breadcrumbs { color: #505850; font-size: .9rem; }
.breadcrumbs--home { color: rgba(255,255,255,.9); }
.product-hero__intro { color: #505850; font-size: 1.1rem; }
.product-hero__caption { color: #414841; font-size: .82rem; font-weight: 650; }
.benefit-card__number { color: #596956; font-size: .86rem; font-weight: 650; }
.benefit-card p { color: #505850; font-size: 1rem; }
.product-details__list span { color: #505850; font-size: .94rem; }
.product-insights__list strong { font-size: .96rem; }
.product-insights__list span,
.legal-page p,
.product-insights__grid > div > p:not(.eyebrow),
.product-benefits__intro p { color: #505850; }

@media (max-width: 700px) {
  body { font-size: 16.5px; }
  .nav-open .nav__links a { font-size: 1rem; }
  .form-status.is-success {
    padding: 20px 16px;
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }
  .footer__bottom { font-size: .92rem; }
}

/* Основной текст: увеличенный размер и контраст — 2026-07-18 v6 */
:root {
  --ink: #171c18;
  --muted: #343c35;
}

/* Основные абзацы сайта */
main p:not(.eyebrow):not(.hero__note):not(.product-hero__caption):not(.form-note):not(.form-noscript):not(.form-status) {
  font-size: 1.12rem;
  line-height: 1.72;
}

.lead-text,
.section-heading > p,
.catalog-card__description,
.process__grid p,
.faq-item__answer p,
.product-hero__intro,
.product-benefits__intro p,
.benefit-card p,
.product-insights__grid > div > p:not(.eyebrow),
.product-insights__list span,
.legal-page p,
.quote-card__text {
  color: #303831;
}

.lead-text {
  font-size: 1.16rem;
  line-height: 1.72;
}

.section-heading > p,
.product-benefits__intro p,
.product-insights__grid > div > p:not(.eyebrow),
.legal-page p {
  font-size: 1.12rem;
  line-height: 1.75;
}

.product-hero__intro {
  font-size: clamp(1.18rem, 1.55vw, 1.34rem);
  line-height: 1.72;
}

.catalog-card__description,
.process__grid p,
.benefit-card p,
.faq-item__answer p {
  font-size: 1.06rem;
  line-height: 1.68;
}

.product-insights__list span,
.product-details__list strong {
  font-size: 1.06rem;
  line-height: 1.65;
}

.product-details__list strong {
  color: #252c26;
  font-weight: 600;
}

.quote-card__text {
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.62;
}

/* Текст на тёмных секциях */
.hero__lead,
.craft .lead-text,
.craft .feature-list p,
.cta-section > .container > p:not(.eyebrow),
.cta-section .order-layout > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .94);
}

.craft .feature-list p {
  font-size: 1.08rem;
  line-height: 1.68;
}

@media (max-width: 700px) {
  main p:not(.eyebrow):not(.hero__note):not(.product-hero__caption):not(.form-note):not(.form-noscript):not(.form-status) {
    font-size: 1.07rem;
    line-height: 1.68;
  }

  .lead-text,
  .section-heading > p,
  .product-benefits__intro p,
  .product-insights__grid > div > p:not(.eyebrow),
  .legal-page p {
    font-size: 1.07rem;
  }

  .product-hero__intro {
    font-size: 1.13rem;
  }
}


/* Сообщения формы в верхней части — 2026-07-18 v8 */
.order-form > .form-status {
  margin: 0 0 20px;
}
.order-form > .form-status:empty {
  display: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.order-form > .form-status.is-pending {
  margin-bottom: 18px;
}
.order-form > .form-status.is-error {
  margin: 0 0 22px;
}
.order-form > .form-status.is-success {
  margin: 0 0 30px;
}
