:root {
  --paper: #f4f0e7;
  --paper-light: #fbf8f1;
  --pine: #173d31;
  --pine-deep: #0d2e25;
  --clay: #b75635;
  --clay-dark: #914027;
  --ink: #1b211e;
  --muted: #646b66;
  --line: rgba(23, 61, 49, 0.2);
  --white: #fffefb;
  --shadow: 0 24px 70px rgba(28, 42, 35, 0.13);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1400px, calc(100vw - 80px));
  --header-height: 92px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.5), transparent 28rem),
    linear-gradient(rgba(244, 240, 231, 0.93), rgba(244, 240, 231, 0.93)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(183, 86, 53, 0.48);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--pine);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  height: var(--header-height);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  height: 74px;
  background: rgba(244, 240, 231, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  animation: header-in 280ms var(--ease) both;
}

@keyframes header-in {
  from { transform: translateY(-100%); }
}

.nav-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  color: var(--pine);
  line-height: 1;
}

.brand__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.55rem);
  letter-spacing: 0.2em;
}

.brand__descriptor {
  margin-top: 8px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.main-nav a,
.footer-nav a {
  position: relative;
  font-size: 0.91rem;
  font-weight: 550;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  color: var(--pine);
  border: 1px solid var(--pine);
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 220ms ease, background 220ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--pine);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--pine);
  background: transparent;
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button span::before { transform: translateY(-6px); }
.menu-button span::after { transform: translateY(4.5px); }
.menu-button[aria-expanded="true"] span { background: transparent; }
.menu-button[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); background: var(--pine); }
.menu-button[aria-expanded="true"] span::after { transform: translateY(-1.5px) rotate(-45deg); background: var(--pine); }

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 110px);
  display: grid;
  grid-template-columns: minmax(560px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 3vw, 52px);
  padding-block: 38px 58px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(0px, 3vw, 64px);
}

.hero h1,
.page-hero h1,
.section-title,
.story h2,
.legal-title,
.contact-intro h1 {
  margin: 0;
  color: var(--pine);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7.1vw, 7.65rem);
}

.hero__lead {
  max-width: 650px;
  margin: 36px 0 0;
  color: #313733;
  font-size: clamp(1.05rem, 1.3vw, 1.3rem);
  line-height: 1.55;
}

.hero__actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.section-actions--center {
  justify-content: center;
}

.section-title--light {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 650;
  cursor: pointer;
  transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--pine);
  border-color: var(--pine);
}

.button--primary:hover {
  background: var(--pine-deep);
}

.button--outline {
  color: var(--clay-dark);
  border-color: var(--clay);
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--clay);
}

.button--light {
  color: var(--white);
  border-color: var(--clay);
  background: transparent;
}

.button--light:hover {
  background: var(--clay);
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: transform 220ms var(--ease);
}

a:hover .arrow-icon,
button:hover .arrow-icon {
  transform: translateX(4px);
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 650px;
  overflow: hidden;
  border-radius: 44% 8% 8% 44% / 50% 8% 8% 50%;
  box-shadow: var(--shadow);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  animation: hero-scale 1.4s var(--ease) both;
}

@keyframes hero-scale {
  from { opacity: 0; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1); }
}

.botanical {
  position: absolute;
  z-index: 1;
  width: 190px;
  height: 250px;
  color: var(--pine);
  opacity: 0.48;
  pointer-events: none;
}

.hero .botanical {
  bottom: 12px;
  left: -32px;
  animation: botanical-sway 7s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

@keyframes botanical-sway {
  to { transform: rotate(2deg) translateY(-6px); }
}

.scroll-note {
  position: absolute;
  bottom: 20px;
  left: clamp(0px, 3vw, 64px);
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-note::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--clay);
}

.section {
  padding-block: clamp(86px, 10vw, 150px);
}

.hero + .section {
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
}

.story__copy {
  padding-left: clamp(0px, 3vw, 64px);
}

.story h2,
.section-title {
  font-size: clamp(3.2rem, 5.4vw, 6.2rem);
}

.story__text,
.section-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.accent-rule {
  width: 72px;
  height: 2px;
  margin: 28px 0;
  background: var(--clay);
}

.story__media {
  height: 470px;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.principle {
  position: relative;
  padding: 34px 36px 18px 0;
}

.principle + .principle {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.principle__number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.principle h3 {
  margin: 22px 0 8px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  font-weight: 400;
}

.principle p {
  margin: 0;
  color: var(--muted);
}

.products-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.products-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}

.products-heading .section-actions {
  justify-content: flex-end;
  margin: 0;
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.product-card {
  position: relative;
  min-width: 0;
  background: rgba(255,255,255,0.18);
}

.product-card + .product-card {
  border-left: 1px solid var(--line);
}

.product-card__image {
  height: 310px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 650ms var(--ease), filter 400ms ease;
}

.product-card:nth-child(1) img { object-position: left center; }
.product-card:nth-child(2) img { object-position: center; }
.product-card:nth-child(3) img { object-position: right center; }

.product-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.04);
}

.product-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 25px;
}

.product-card h3 {
  margin: 0;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.9rem);
  font-weight: 400;
}

.product-card__body svg {
  flex: 0 0 auto;
  color: var(--clay);
}

.cooperation-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--pine);
}

.cooperation-band__inner {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding-block: 72px;
}

.cooperation-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 400;
  line-height: 1;
}

.cooperation-band p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.72);
}

.cooperation-band .botanical {
  right: -30px;
  bottom: -90px;
  width: 320px;
  height: 360px;
  color: #d5bd8a;
  opacity: 0.35;
  transform: rotate(68deg);
}

.site-footer {
  padding: 58px 0 28px;
  background: var(--paper-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.25fr 0.65fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-block {
  min-height: 70px;
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.footer-block p,
.footer-block address {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  font-style: normal;
}

.footer-block strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a {
  color: var(--muted);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer-nav a:hover { color: var(--clay-dark); text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 48px;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.page-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(480px, 1.16fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding-block: 70px 110px;
}

.page-hero--compact {
  min-height: 440px;
  grid-template-columns: 1fr;
  padding-block: 75px 90px;
}

.page-hero h1,
.contact-intro h1 {
  font-size: clamp(4rem, 7vw, 7.5rem);
}

.page-hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-hero__image {
  height: 520px;
  overflow: hidden;
  border-radius: 42% 10% 46% 12% / 25% 12% 35% 18%;
  box-shadow: var(--shadow);
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% center;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(54px, 10vw, 150px);
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 120px;
}

.sticky-heading h2 {
  margin: 0;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(3rem, 4.7vw, 5.3rem);
  font-weight: 400;
  line-height: 1;
}

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

.editorial-item {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.editorial-item__number {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.editorial-item h3 {
  margin: 0 0 12px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 400;
  line-height: 1.08;
}

.editorial-item p { margin: 0; color: var(--muted); }

.quote-band {
  padding-block: 95px;
  color: var(--white);
  background: var(--pine);
}

.quote-band blockquote {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
}

.catalog-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

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

.catalog-item {
  display: grid;
  grid-template-columns: 80px 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 74px);
  align-items: center;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.catalog-item__index {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.catalog-item__media {
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
}

.catalog-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-item:nth-child(1) img { object-position: left; }
.catalog-item:nth-child(2) img { object-position: center; }
.catalog-item:nth-child(3) img { object-position: right; }

.catalog-item h2 {
  margin: 0 0 12px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.catalog-item p { max-width: 550px; margin: 0; color: var(--muted); }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.process__item {
  padding: 35px 30px 0 0;
}

.process__item + .process__item {
  padding-left: 30px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.process__item span { color: #d6b689; font-family: var(--serif); }
.process__item h3 { margin: 18px 0 8px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.process__item p { margin: 0; color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 11vw, 170px);
  align-items: start;
  padding-block: 90px 130px;
}

.contact-intro {
  position: sticky;
  top: 120px;
}

.contact-intro p {
  max-width: 500px;
  color: var(--muted);
}

.contact-facts {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-fact {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-fact svg { color: var(--clay); }
.contact-fact strong { display: block; margin-bottom: 4px; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-fact p, .contact-fact address { margin: 0; color: var(--muted); font-style: normal; }

.contact-form {
  padding-top: 12px;
}

.field {
  margin-bottom: 28px;
}

.field label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color 180ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--clay);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #a12c24;
}

.field-error {
  min-height: 22px;
  margin: 7px 0 0;
  color: #8c2822;
  font-size: 0.78rem;
}

.form-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--pine);
  border-left: 3px solid var(--clay);
  background: rgba(255,255,255,0.38);
}

.form-status.is-visible { display: block; }

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 800px);
  justify-content: center;
  gap: clamp(60px, 9vw, 130px);
  padding-block: 30px 130px;
}

.legal-toc {
  align-self: start;
  position: sticky;
  top: 120px;
  display: grid;
  gap: 12px;
  padding-top: 10px;
}

.legal-toc a {
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-toc a:hover { color: var(--clay-dark); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 0.83rem;
}

.breadcrumb a { color: var(--clay-dark); text-decoration: underline; text-underline-offset: 4px; }

.legal-title {
  max-width: 1000px;
  font-size: clamp(3.5rem, 6.5vw, 7rem);
}

.legal-meta {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-content section {
  padding: 30px 0 36px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.legal-content section:first-child { padding-top: 0; }

.legal-content h2 {
  margin: 0 0 18px;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.legal-content h3 { margin: 25px 0 8px; color: var(--pine); font-size: 1rem; }
.legal-content p, .legal-content li { color: #454b47; }
.legal-content ul { padding-left: 1.3rem; }
.legal-content a { color: var(--clay-dark); text-decoration: underline; text-underline-offset: 4px; }

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: none;
  max-width: 1180px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 22px 24px;
  color: var(--white);
  background: var(--pine-deep);
  border: 1px solid rgba(255,255,255,0.17);
  box-shadow: 0 20px 60px rgba(0,0,0,0.23);
}

.cookie-banner.is-visible { display: flex; animation: cookie-in 350ms var(--ease) both; }

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(20px); }
}

.cookie-banner p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.86rem; }
.cookie-banner a { color: white; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-actions button { min-height: 42px; padding: 9px 15px; border: 1px solid rgba(255,255,255,0.45); color: white; background: transparent; cursor: pointer; font-size: 0.8rem; font-weight: 700; }
.cookie-actions button:first-child { color: var(--pine); background: var(--white); }

.error-page {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding-block: 80px;
  text-align: center;
}

.error-page__code {
  color: rgba(23,61,49,0.09);
  font-family: var(--serif);
  font-size: clamp(10rem, 28vw, 26rem);
  line-height: 0.65;
}

.error-page h1 { margin: -20px 0 14px; color: var(--pine); font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5.5rem); font-weight: 400; }
.error-page p { max-width: 560px; margin: 0 auto; color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }

@media (max-width: 1120px) {
  :root { --container: min(calc(100% - 48px), 1040px); }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .main-nav, .nav-cta { display: none; }
  .menu-button { display: inline-flex; justify-self: end; }
  .main-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 110px 10vw 50px;
    color: var(--pine);
    background: var(--paper);
  }
  .main-nav.is-open a { font-family: var(--serif); font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 400; line-height: 1; }
  .hero { grid-template-columns: 0.9fr 1.1fr; gap: 34px; }
  .hero h1 { font-size: clamp(3.8rem, 7.9vw, 6.4rem); }
  .hero__media { min-height: 560px; }
  .page-hero { grid-template-columns: 0.9fr 1.1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-block:nth-child(3) { border-left: 0; padding-left: 0; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__item:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 820px) {
  :root { --container: min(calc(100% - 36px), 720px); --header-height: 76px; }
  .brand__descriptor { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 30px 0 65px; }
  .hero__copy { padding: 0; }
  .hero h1 { font-size: clamp(3.8rem, 16vw, 6.8rem); }
  .hero__lead { margin-top: 24px; }
  .hero__media { min-height: 520px; border-radius: 44% 7% 7% 7% / 27% 7% 7% 7%; }
  .scroll-note { display: none; }
  .hero .botanical { display: none; }
  .story, .products-heading, .page-hero, .editorial-grid, .catalog-intro, .contact-layout { grid-template-columns: 1fr; }
  .story__copy { padding: 0; }
  .story__media { height: 370px; }
  .products-heading .section-actions { justify-content: flex-start; margin-top: 12px; }
  .product-rail { grid-template-columns: 1fr; }
  .product-card + .product-card { border-top: 1px solid var(--line); border-left: 0; }
  .cooperation-band__inner { grid-template-columns: 1fr; gap: 20px; }
  .page-hero { min-height: auto; padding-block: 45px 85px; }
  .page-hero__image { height: 440px; order: -1; }
  .sticky-heading, .contact-intro { position: static; }
  .catalog-item { grid-template-columns: 54px 1fr; }
  .catalog-item__media { grid-row: span 2; height: 260px; }
  .legal-layout { grid-template-columns: 1fr; padding-top: 0; }
  .legal-toc { position: static; grid-template-columns: repeat(2, 1fr); padding: 20px; border: 1px solid var(--line); }
  .cookie-banner { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 28px); }
  body { font-size: 15px; }
  .hero h1, .page-hero h1, .contact-intro h1 { font-size: clamp(3.2rem, 17vw, 5.1rem); }
  .hero__actions, .section-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero__media { min-height: 390px; }
  .section { padding-block: 76px; }
  .story h2, .section-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .principles { grid-template-columns: 1fr; }
  .principle { padding: 28px 0; }
  .principle + .principle { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .product-card__image { height: 240px; }
  .cooperation-band__inner { padding-block: 65px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-block, .footer-block:nth-child(3) { min-height: 0; padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .footer-bottom { flex-direction: column; }
  .page-hero__image { height: 320px; }
  .editorial-item { grid-template-columns: 45px 1fr; gap: 12px; }
  .catalog-item { grid-template-columns: 1fr; }
  .catalog-item__index { display: none; }
  .catalog-item__media { grid-row: auto; height: 230px; }
  .process { grid-template-columns: 1fr; }
  .process__item, .process__item:nth-child(3) { padding: 28px 0; border-left: 0; }
  .process__item + .process__item { border-top: 1px solid rgba(255,255,255,0.2); }
  .contact-layout { padding-top: 50px; }
  .legal-toc { grid-template-columns: 1fr; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
}

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