:root {
  --ink: #1f1e1b;
  --muted: #686158;
  --paper: #f7f4ef;
  --ivory: #efe8dc;
  --stone: #b8b1a7;
  --moss: #5d6f58;
  --bronze: #9a7a4f;
  --white: #fffdf9;
  --line: rgba(31, 30, 27, 0.14);
  --shadow: 0 28px 80px rgba(31, 30, 27, 0.14);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 9px 42px;
  color: var(--white);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 8px;
  background: rgba(247, 244, 239, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 240ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 4px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 10px 16px;
  font-size: 14px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(31, 30, 27, 0.16);
  transform: translateY(-2px);
}

.site-header.is-scrolled .header-cta:hover,
.site-header.is-scrolled .header-cta:focus-visible,
.site-header.is-open .header-cta:hover,
.site-header.is-open .header-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: flex;
  align-items: flex-end;
  padding: clamp(154px, 16svh, 190px) 42px clamp(70px, 7svh, 90px);
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #1b1a17;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 21, 18, 0.74), rgba(22, 21, 18, 0.24) 52%, rgba(22, 21, 18, 0.38)),
    linear-gradient(0deg, rgba(22, 21, 18, 0.52), rgba(22, 21, 18, 0.05) 48%);
  content: "";
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--bronze);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e5d3b3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(54px, 7.2vw, 100px);
}

h2 {
  font-size: clamp(42px, 5vw, 76px);
}

h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 12px 22px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  border-color: rgba(255, 253, 249, 0.72);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--ink);
}

.hero-note {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: flex;
  max-width: 420px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.hero-note span {
  border: 1px solid rgba(255, 253, 249, 0.36);
  padding: 6px 10px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 12px;
}

.section {
  padding: 112px 42px;
}

.intro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--ivory) 100%);
}

.intro .section-kicker {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 26px;
  text-align: left;
}

.intro .section-kicker::after {
  width: 54px;
  height: 1px;
  background: rgba(154, 122, 79, 0.42);
  content: "";
}

.intro-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  gap: 74px;
  align-items: center;
}

.intro h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.1vw, 66px);
  line-height: 1.08;
}

.intro-copy {
  max-width: 660px;
}

.intro-text {
  display: grid;
  margin-top: 36px;
  gap: 22px;
  border-top: 1px solid rgba(31, 30, 27, 0.16);
  padding-top: 30px;
  color: var(--muted);
  font-size: 18px;
  text-align: left;
}

.intro-text p {
  margin-bottom: 0;
}

.intro-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.9fr);
  gap: 30px;
  align-items: center;
  padding: 36px 42px;
  background: var(--ink);
  color: var(--white);
}

.feature-carousel {
  position: relative;
  width: 100%;
}

.feature-carousel figure {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.06);
}

.feature-carousel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 1;
  transition: opacity 260ms ease, transform 700ms ease;
}

.feature-carousel img.is-changing {
  opacity: 0;
  transform: scale(1.015);
}

.feature-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.feature-carousel-controls button {
  border: 1px solid rgba(255, 253, 249, 0.42);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.feature-carousel-controls button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.feature-carousel-dots {
  display: flex;
  gap: 8px;
}

.feature-carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 253, 249, 0.36);
}

.feature-carousel-dots button.is-active {
  background: var(--white);
}

.feature-image {
  min-height: 0;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 58px;
}

.feature-text h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 4.4vw, 64px);
}

.feature-text p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 253, 249, 0.78);
  font-size: 16px;
}

.text-link {
  width: max-content;
  margin-top: 16px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  color: #e5d3b3;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 820px);
  gap: 42px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.collections {
  padding-top: 72px;
  padding-bottom: 64px;
}

.collections .section-heading {
  grid-template-columns: 160px minmax(0, 1fr);
  margin-bottom: 34px;
}

.collections .section-heading h2 {
  max-width: none;
  font-size: clamp(42px, 4.4vw, 66px);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collection-card {
  position: relative;
  min-height: min(500px, 58vh);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #d7d1c7;
  color: var(--white);
}

.collection-card.product-primary,
.collection-card.product-secondary,
.collection-card.product-wide {
  grid-column: auto;
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.collection-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 19, 17, 0.76), rgba(20, 19, 17, 0.12) 58%);
  content: "";
}

.collection-card:hover img {
  transform: scale(1.045);
}

.collection-card div {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 34px;
}

.collection-card span,
.capability-grid span {
  color: #e5d3b3;
  font-size: 12px;
  font-weight: 700;
}

.collection-card h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 2.7vw, 42px);
}

.collection-card p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.82);
}

.collection-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: rgba(255, 253, 249, 0.84);
  font-size: 15px;
  line-height: 1.55;
  list-style: none;
}

.collection-card li {
  position: relative;
  padding-left: 16px;
}

.collection-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #e5d3b3;
  content: "";
}

.custom {
  background: var(--ivory);
}

.custom-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.8fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 44px;
}

.custom-panel p {
  color: var(--muted);
  font-size: 18px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-grid article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.32);
}

.capability-grid h3 {
  margin: 34px 0 16px;
  font-size: 28px;
}

.capability-grid p {
  color: var(--muted);
}

.pavilion {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
}

.pavilion-copy {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.pavilion-copy p:not(.eyebrow) {
  color: rgba(255, 253, 249, 0.78);
}

.pavilion-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
}

.pavilion-gallery img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.pavilion-gallery img:last-child {
  padding-top: 86px;
}

.material-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.material-row article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  border-right: 1px solid var(--line);
  padding: 22px 24px 24px;
  background: transparent;
}

.material-row article:last-child {
  border-right: 0;
}

.material-row h3 {
  margin-bottom: 0;
  font-size: 26px;
}

.material-row p {
  max-width: 260px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
  padding: 90px 42px;
  background: var(--moss);
  color: var(--white);
}

.quote-intro {
  max-width: 520px;
}

.quote-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4.6vw, 72px);
}

.quote-intro p:not(.section-kicker) {
  color: rgba(255, 253, 249, 0.74);
  font-size: 17px;
}

.testimonial {
  border-left: 1px solid rgba(255, 253, 249, 0.28);
  padding-left: 54px;
}

.testimonial blockquote {
  min-height: 220px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.14;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 253, 249, 0.22);
  padding-top: 18px;
}

.testimonial-meta p {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.74);
  text-transform: none;
}

.testimonial-meta span {
  color: #e5d3b3;
  font-size: 13px;
  font-weight: 700;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.testimonial-controls button {
  border: 1px solid rgba(255, 253, 249, 0.44);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.testimonial-controls button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--moss);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  gap: 70px;
  padding: 112px 42px;
  background: var(--paper);
}

.contact-copy p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 32px;
}

.contact-direct a {
  width: max-content;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  outline: 0;
  padding: 13px 14px;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--moss);
}

.contact-page {
  background: var(--paper);
}

.contact-hero {
  display: grid;
  min-height: 86vh;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.74fr);
  gap: 70px;
  align-items: center;
  padding: 142px 42px 76px;
  background: var(--ivory);
}

.contact-hero-copy {
  max-width: 820px;
}

.contact-hero-copy h1 {
  max-width: 800px;
  font-size: clamp(58px, 7vw, 108px);
}

.contact-hero-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.contact-method-grid a {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 22px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-method-grid a:hover {
  border-color: rgba(31, 67, 26, 0.48);
  box-shadow: 0 18px 36px rgba(30, 42, 32, 0.08);
  transform: translateY(-3px);
}

.contact-method-grid span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-hero-image {
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  background: var(--moss);
}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 0.92fr);
  gap: 80px;
  align-items: start;
  padding: 142px 42px 104px;
  background: var(--paper);
}

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

.contact-inquiry-copy h2 {
  max-width: 760px;
  font-size: clamp(48px, 5vw, 82px);
}

.contact-inquiry-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.contact-inquiry-copy ul {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-inquiry-copy li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-size: 16px;
}

.contact-inquiry-copy li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--moss);
  content: "";
}

.contact-form {
  box-shadow: 0 28px 70px rgba(30, 42, 32, 0.1);
}

.contact-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.contact-routes article {
  display: grid;
  min-height: 310px;
  align-content: space-between;
  border-right: 1px solid var(--line);
  padding: 34px;
}

.contact-routes article:last-child {
  border-right: 0;
}

.contact-routes span {
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
}

.contact-routes h2 {
  max-width: 340px;
  margin-bottom: 0;
  font-size: clamp(30px, 3vw, 48px);
}

.contact-routes p {
  color: var(--muted);
}

.about-page {
  padding-top: 0;
}

.about-hero {
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: 42px;
  align-items: stretch;
  padding: 118px 42px 54px;
  background: var(--ink);
  color: var(--white);
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 0;
}

.about-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(54px, 6.2vw, 92px);
}

.about-hero-copy > p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 18px;
}

.about-hero-image {
  max-width: 560px;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
  justify-self: end;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-manifesto {
  padding: 96px 42px;
  background: var(--ivory);
}

.about-manifesto h2 {
  max-width: 980px;
  margin-bottom: 58px;
  font-size: clamp(54px, 6.4vw, 108px);
}

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

.about-principles article {
  min-height: 220px;
  border-right: 1px solid var(--line);
  padding: 26px;
}

.about-principles article:last-child {
  border-right: 0;
}

.about-principles span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
}

.about-principles p {
  max-width: 360px;
  margin: 42px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.12;
}

.about-pavilion {
  padding: 92px 42px;
  background: var(--ink);
  color: var(--white);
}

.about-pavilion-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 920px);
  gap: 42px;
  margin-bottom: 44px;
}

.about-pavilion-heading h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.3vw, 84px);
}

.about-pavilion-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.58fr) minmax(0, 1fr);
  gap: 54px;
  align-items: stretch;
}

.about-pavilion-photos {
  display: grid;
  height: 460px;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.62fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-pavilion-photos figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.06);
}

.about-pavilion-photos figure:first-child {
  grid-row: 1 / -1;
}

.about-pavilion-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-pavilion-note {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(255, 253, 249, 0.22);
  border-bottom: 1px solid rgba(255, 253, 249, 0.22);
  padding: 38px 0;
  color: rgba(255, 253, 249, 0.76);
  font-size: 17px;
}

.about-pavilion-note p {
  margin-bottom: 0;
}

.about-pavilion-note p + p {
  margin-top: 22px;
}

.about-system {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  gap: 74px;
  align-items: start;
  padding: 104px 42px;
  background: var(--paper);
}

.about-system h2 {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
  font-size: clamp(48px, 5.4vw, 82px);
}

.about-system-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.about-system-list article {
  display: grid;
  grid-template-columns: 62px minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.about-system-list span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
}

.about-system-list h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.about-system-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-cta {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 90px 42px;
  background: var(--moss);
  color: var(--white);
  text-align: center;
}

.about-cta h2 {
  max-width: 920px;
}

.about-page-v2 {
  background: var(--paper);
}

.about-brand-intro {
  display: grid;
  min-height: calc(100svh - 86px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: var(--ink);
  color: var(--white);
}

.about-brand-image {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.06);
}

.about-brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-brand-copy {
  display: flex;
  max-width: none;
  flex-direction: column;
  justify-content: center;
  padding: 58px 72px 66px;
}

.about-brand-copy h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(54px, 5.4vw, 88px);
}

.about-brand-copy p {
  max-width: 680px;
  color: rgba(255, 253, 249, 0.74);
  font-size: 18px;
}

.about-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-brand-tags span {
  border: 1px solid rgba(255, 253, 249, 0.28);
  padding: 11px 14px;
  color: rgba(255, 253, 249, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-team {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  padding: 104px 42px;
  background: var(--ivory);
}

.about-team-copy h2 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(46px, 5vw, 78px);
}

.about-team-copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.about-map {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(30, 42, 32, 0.14);
  background:
    linear-gradient(rgba(30, 42, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 42, 32, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 68% 52%, rgba(31, 67, 26, 0.2), transparent 26%),
    var(--paper);
  background-size: 44px 44px, 44px 44px, auto, auto;
  overflow: hidden;
}

.about-map::before {
  position: absolute;
  inset: 58px 46px;
  border: 1px solid rgba(31, 67, 26, 0.12);
  content: "";
}

.map-line {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(23deg, transparent 22%, rgba(157, 120, 75, 0.32) 22.3%, rgba(157, 120, 75, 0.32) 22.7%, transparent 23%),
    linear-gradient(150deg, transparent 36%, rgba(157, 120, 75, 0.24) 36.3%, rgba(157, 120, 75, 0.24) 36.7%, transparent 37%);
}

.map-point {
  position: absolute;
  top: var(--y);
  left: var(--x);
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translate(-12px, -12px);
}

.map-point span {
  display: block;
  width: 14px;
  height: 14px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 1px rgba(30, 42, 32, 0.22), 0 10px 30px rgba(30, 42, 32, 0.2);
}

.map-point-primary span {
  width: 18px;
  height: 18px;
  background: var(--moss);
}

.map-point p {
  margin: 0;
  background: rgba(255, 253, 249, 0.86);
  color: var(--ink);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.about-belief-screen {
  display: grid;
  min-height: clamp(600px, calc(100svh - 110px), 720px);
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
  align-items: center;
  background: var(--paper);
}

.about-belief-screen figure {
  height: 100%;
  min-height: clamp(540px, calc(100svh - 170px), 650px);
  margin: 0;
  overflow: hidden;
}

.about-belief-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-belief-copy {
  max-width: 650px;
  padding: 68px 42px 68px 72px;
}

.about-belief-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(54px, 5.9vw, 90px);
}

.about-belief-copy p:last-child {
  max-width: 470px;
  color: var(--muted);
  font-size: 19px;
}

.about-pavilion-v2 {
  display: grid;
  grid-template-columns: minmax(360px, 0.55fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding: 70px 42px;
  background: var(--ink);
  color: var(--white);
}

.about-pavilion-intro {
  position: sticky;
  top: 126px;
  max-width: 620px;
  padding-top: 10px;
}

.about-pavilion-intro h2 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(46px, 5vw, 78px);
}

.about-pavilion-intro p {
  color: rgba(255, 253, 249, 0.74);
  font-size: 17px;
}

.about-pavilion-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.54fr);
  gap: 14px;
}

.about-pavilion-gallery figure {
  min-height: clamp(245px, calc((100svh - 250px) / 2), 300px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.06);
}

.about-pavilion-gallery .about-pavilion-large {
  grid-row: span 2;
  min-height: clamp(505px, calc(100svh - 190px), 620px);
}

.about-pavilion-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-factory {
  padding: 62px 42px 68px;
  background: var(--ivory);
}

.about-factory-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 26px;
}

.about-factory-heading h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(40px, 4.2vw, 64px);
}

.about-factory-heading p {
  max-width: 500px;
  margin-bottom: 8px;
  color: var(--muted);
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.factory-grid article {
  display: block;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.factory-grid figure {
  display: block;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  background: rgba(30, 42, 32, 0.06);
}

.factory-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-page {
  padding-top: 0;
  background: var(--paper);
}

.products-hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(430px, 0.78fr) minmax(0, 1fr);
  gap: 58px;
  align-items: end;
  padding: 138px 42px 58px;
  background: var(--ivory);
}

.products-hero-copy {
  max-width: 760px;
}

.products-hero-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(56px, 6vw, 96px);
}

.products-hero-copy p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.products-hero-visual {
  display: grid;
  height: 520px;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.products-hero-visual figure {
  display: grid;
  margin: 0;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.products-hero-visual figure:first-child {
  grid-row: 1 / -1;
}

.products-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
}

.product-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.product-directory a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  padding: 28px 30px;
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}

.product-directory a:last-child {
  border-right: 0;
}

.product-directory a:hover {
  background: var(--moss);
  color: var(--white);
}

.product-directory span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
}

.product-directory strong {
  display: block;
  max-width: 320px;
  font-family: var(--serif);
  font-size: clamp(30px, 2.6vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.product-directory small {
  max-width: 330px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.product-directory a:hover small {
  color: rgba(255, 253, 249, 0.76);
}

.product-series {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(380px, 0.62fr) minmax(0, 1fr);
  gap: 54px;
  align-items: stretch;
  padding: 72px 42px;
}

.product-series-light {
  background: var(--paper);
}

.product-series-dark {
  background: var(--ink);
  color: var(--white);
}

.product-series-copy {
  display: flex;
  max-width: 660px;
  flex-direction: column;
  justify-content: center;
}

.product-series-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(46px, 5vw, 78px);
}

.product-series-dark h2 {
  color: var(--white);
}

.product-series-copy p {
  color: var(--muted);
  font-size: 17px;
}

.product-series-dark .product-series-copy p {
  color: rgba(255, 253, 249, 0.74);
}

.product-series-image {
  display: grid;
  min-height: 540px;
  margin: 0;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--ivory);
  overflow: hidden;
}

.product-series-dark .product-series-image {
  border-color: rgba(255, 253, 249, 0.14);
  background: rgba(255, 253, 249, 0.08);
}

.product-series-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 46px;
}

.product-subcategory-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-series-dark .product-subcategory-list {
  border-color: rgba(255, 253, 249, 0.2);
}

.product-subcategory-list li {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  color: var(--ink);
  font-size: 17px;
}

.product-series-dark .product-subcategory-list li {
  border-color: rgba(255, 253, 249, 0.2);
  color: var(--white);
}

.product-partners {
  padding: 96px 42px;
  background: var(--ivory);
}

.product-partners-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 44px;
}

.product-partners-heading h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(46px, 5vw, 82px);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-grid article {
  min-height: 280px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px;
  background: rgba(255, 253, 249, 0.42);
}

.partner-grid span,
.process-row span {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
}

.partner-grid h3,
.process-row h3 {
  margin: 34px 0 16px;
  font-size: 28px;
}

.partner-grid p,
.process-row p {
  color: var(--muted);
}

.product-process {
  padding: 96px 42px;
  background: var(--paper);
}

.product-process h2 {
  max-width: 900px;
  margin-bottom: 46px;
  font-size: clamp(48px, 5.4vw, 86px);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-row article {
  min-height: 260px;
  border-top: 1px solid var(--line);
  padding: 26px 0 0;
}

.product-cta {
  background: var(--moss);
}

.products-page .products-hero {
  min-height: 560px;
  padding-bottom: 44px;
}

.products-page .products-hero-copy h1 {
  font-size: clamp(46px, 5vw, 78px);
}

.product-catalog {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 132px 42px 96px;
  background: var(--paper);
}

.product-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  max-height: calc(100vh - 132px);
  gap: 26px;
  align-self: start;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 67, 26, 0.34) transparent;
}

.product-sidebar::-webkit-scrollbar {
  width: 6px;
}

.product-sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(31, 67, 26, 0.32);
}

.product-category-group {
  display: grid;
  gap: 10px;
}

.product-category-group h2,
.product-category-group .category-main {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 12px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.product-category-group h2::after,
.product-category-group .category-main::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--bronze);
  content: "";
}

.category-branch {
  display: grid;
  gap: 2px;
  border-left: 1px solid rgba(31, 67, 26, 0.16);
  margin-left: 8px;
  padding-left: 14px;
}

.product-category-group button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px 0 8px 24px;
  font: inherit;
  font-size: 17px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.product-category-group button::before {
  position: absolute;
  top: 1.04em;
  left: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d5deec;
  content: "";
  transition: background 160ms ease, transform 160ms ease;
}

.product-category-group .category-main {
  margin-bottom: 4px;
  padding: 0 0 12px;
  color: var(--ink);
}

.product-category-group .category-main::before {
  display: none;
}

.product-category-group .category-secondary {
  padding: 9px 0 8px 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.product-category-group .category-secondary::before {
  left: 0;
  width: 9px;
  height: 1px;
  border-radius: 0;
  background: var(--bronze);
}

.product-category-group .category-leaf {
  padding: 6px 0 6px 28px;
  color: var(--muted);
  font-size: 13px;
}

.product-category-group .category-leaf::before {
  left: 12px;
  background: #d5deec;
}

.product-category-group button:hover,
.product-category-group button.is-active {
  color: var(--moss);
  transform: translateX(3px);
}

.product-category-group button:hover::before,
.product-category-group button.is-active::before {
  background: var(--bronze);
  transform: scale(1.25);
}

.product-listing {
  min-width: 0;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.catalog-toolbar h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.4vw, 56px);
}

.catalog-reset {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.catalog-reset:hover,
.catalog-reset.is-active {
  background: var(--ink);
  color: var(--white);
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(30, 42, 32, 0.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(30, 42, 32, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card:hover {
  box-shadow: 0 18px 38px rgba(30, 42, 32, 0.13);
  transform: translateY(-4px);
}

.product-card a {
  display: block;
  color: var(--ink);
}

.product-card figure {
  display: grid;
  aspect-ratio: 4 / 5;
  margin: 0;
  place-items: center;
  background: var(--ivory);
  overflow: hidden;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  transition: transform 420ms ease;
}

.product-card:hover img {
  transform: scale(1.035);
}

.product-card div {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 16px 18px 18px;
  text-align: center;
}

.product-card h3 {
  max-width: 240px;
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.product-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.product-detail-page {
  background: var(--paper);
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(460px, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100svh - 8px);
  padding: 116px 42px 34px;
  background: var(--ivory);
  color: var(--ink);
}

.product-detail-gallery {
  display: grid;
  gap: 12px;
  align-content: start;
  justify-self: center;
  width: min(100%, 520px);
}

.product-detail-main {
  display: grid;
  position: relative;
  aspect-ratio: 4 / 5;
  height: auto;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.product-detail-main img {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  padding: 0;
  transition: opacity 180ms ease, transform 420ms ease;
}

.product-detail-main img.is-changing {
  opacity: 0.35;
  transform: scale(0.985);
}

.product-detail-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.product-detail-thumbs button {
  width: 104px;
  min-width: 104px;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  padding: 0;
  background: var(--white);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-detail-thumbs button:hover,
.product-detail-thumbs button.is-active {
  border-color: var(--bronze);
  transform: translateY(-2px);
}

.product-detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.product-detail-copy {
  display: grid;
  align-content: center;
  max-width: 720px;
}

.product-detail-copy h1 {
  margin: 10px 0 16px;
  font-family: var(--serif);
  font-size: clamp(40px, 3.35vw, 58px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

.product-detail-copy p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.56;
}

.product-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 16px 0;
  background: var(--line);
}

.product-detail-specs div {
  padding: 11px 16px;
  background: rgba(255, 253, 249, 0.56);
}

.product-detail-specs dt {
  color: var(--bronze);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-specs dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.variant-options button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(31, 30, 27, 0.22);
  padding: 8px 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.variant-options button::before {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(31, 30, 27, 0.2);
  background: var(--swatch);
  content: "";
}

.variant-options button:hover,
.variant-options button.is-active {
  border-color: var(--bronze);
  background: rgba(154, 122, 79, 0.1);
  transform: translateY(-2px);
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.product-detail-actions .button-dark {
  border-color: var(--moss);
  background: var(--moss);
  color: var(--white);
}

.product-detail-actions .button-dark:hover {
  border-color: var(--ink);
  background: var(--ink);
}

.product-detail-actions .text-link {
  color: var(--bronze);
}

.news-page {
  background: var(--paper);
}

.news-page-v2 {
  background: var(--paper);
}

.recent-news {
  padding: 132px 42px 76px;
  background: var(--ivory);
}

.recent-news-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.recent-news-heading h1 {
  margin-bottom: 0;
  font-size: clamp(54px, 6vw, 92px);
}

.recent-news-controls {
  display: flex;
  gap: 10px;
}

.recent-news-controls.is-hidden {
  display: none;
}

.recent-news-controls button {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 13px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.recent-news-controls button:hover {
  background: var(--ink);
  color: var(--white);
}

.recent-news-track {
  display: grid;
  grid-auto-columns: minmax(300px, calc((100% - 44px) / 3));
  grid-auto-flow: column;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 67, 26, 0.32) transparent;
}

.recent-news-track::-webkit-scrollbar {
  height: 6px;
}

.recent-news-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(31, 67, 26, 0.32);
}

.recent-news-card {
  display: grid;
  min-height: 420px;
  grid-template-rows: 250px 1fr;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  scroll-snap-align: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.recent-news-card:hover {
  box-shadow: 0 18px 38px rgba(30, 42, 32, 0.12);
  transform: translateY(-4px);
}

.recent-news-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
}

.recent-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.recent-news-card:hover img {
  transform: scale(1.04);
}

.recent-news-card div {
  padding: 24px;
}

.recent-news-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.recent-news-card h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.2vw, 34px);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1fr);
  gap: 56px;
  align-items: stretch;
  padding: 56px 42px 72px;
  background: var(--paper);
}

.faq-image {
  min-height: 430px;
  max-height: 520px;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4px;
}

.faq-panel h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: var(--sans);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
}

.faq-list {
  border-top: 1px solid rgba(30, 42, 32, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(30, 42, 32, 0.16);
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: var(--moss);
}

.faq-list summary {
  position: relative;
  padding: 18px 34px 18px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--ink);
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 740px;
  margin: 0;
  padding: 0 48px 18px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.article-page {
  padding-top: 118px;
  background: var(--paper);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  padding: 70px 42px 58px;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(52px, 5.8vw, 86px);
}

.article-meta {
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero p:not(.section-kicker):not(.article-meta) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.article-image {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 70px 42px 84px;
}

.article-body p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.article-body p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.article-back {
  display: inline-flex;
  margin-top: 30px;
  border-bottom: 1px solid currentColor;
  color: var(--bronze);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-hero {
  padding: 138px 42px 64px;
  background: var(--ivory);
}

.news-hero > * {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.news-hero h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(50px, 5vw, 82px);
}

.news-hero p:not(.section-kicker) {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.featured-news {
  padding: 42px;
  background: var(--paper);
}

.featured-news-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.78fr);
  min-height: 360px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.featured-news-card figure {
  margin: 0;
  overflow: hidden;
}

.featured-news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.featured-news-card:hover img {
  transform: scale(1.035);
}

.featured-news-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 44px;
}

.news-tag {
  margin-bottom: 18px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-news-card h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(34px, 3.4vw, 52px);
}

.featured-news-card p:not(.news-tag) {
  color: rgba(255, 253, 249, 0.72);
}

.featured-news-card span,
.news-card span {
  display: inline-block;
  width: max-content;
  margin-top: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-index {
  padding: 72px 42px 96px;
  background: var(--ivory);
}

.news-index-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
  margin-bottom: 42px;
}

.news-index-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(48px, 5.2vw, 82px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 460px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.news-card:hover {
  box-shadow: 0 18px 38px rgba(30, 42, 32, 0.12);
  transform: translateY(-4px);
}

.news-card figure {
  aspect-ratio: 1 / 0.62;
  margin: 0;
  overflow: hidden;
  background: var(--ivory);
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.news-card:hover img {
  transform: scale(1.04);
}

.news-card > div {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.news-card h3 {
  margin-bottom: auto;
  font-size: clamp(28px, 2.6vw, 38px);
}

.news-card span {
  color: var(--muted);
}

.news-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 78px 42px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.news-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(42px, 4.6vw, 72px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 253, 249, 0.74);
  padding: 36px 42px 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(120px, 0.8fr) minmax(230px, 1.2fr) minmax(250px, 1.2fr) minmax(150px, 0.8fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 34px;
}

.footer-slogan {
  max-width: 300px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.02;
}

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

.footer-column h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
}

.footer-column a {
  position: relative;
  width: max-content;
  color: rgba(255, 253, 249, 0.72);
  font-size: 14px;
}

.footer-column a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-column a:hover::after {
  transform: scaleX(1);
}

.footer-brand {
  justify-self: end;
  text-align: center;
}

.footer-brand img {
  width: 126px;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.footer-socials a:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.18);
  padding-top: 16px;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.58);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 150px 1fr auto;
    padding-inline: 24px;
  }

  .site-nav {
    gap: 18px;
    font-size: 13px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    justify-self: start;
  }

  .hero,
  .section,
  .quote-section,
  .contact-section {
    padding-inline: 24px;
  }

  .intro-grid,
  .feature-band,
  .about-hero,
  .about-pavilion-heading,
  .about-pavilion-layout,
  .about-system,
  .custom-panel,
  .pavilion,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .feature-band {
    height: auto;
    min-height: auto;
  }

  .feature-carousel {
    max-width: 860px;
  }

  .collection-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-card.product-primary,
  .collection-card.product-secondary,
  .collection-card.product-wide {
    grid-column: auto;
    min-height: 480px;
  }

  .material-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-text,
  .pavilion-copy {
    padding: 44px;
  }

  .about-hero {
    min-height: auto;
  }

  .about-hero-image {
    min-height: 420px;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-principles article:last-child {
    border-bottom: 0;
  }

  .about-pavilion-photos,
  .about-pavilion-note {
    height: auto;
    min-height: 440px;
  }

  .about-system h2 {
    position: static;
  }

  .pavilion-copy,
  .pavilion-gallery img {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  [id] {
    scroll-margin-top: 76px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 8px 16px;
  }

  .brand img {
    width: 104px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 58px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 118px 18px 46px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 70px);
  }

  h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-note {
    position: static;
    justify-content: flex-start;
    margin-top: 34px;
  }

  .section,
  .quote-section,
  .contact-section,
  .contact-hero,
  .contact-inquiry {
    padding: 76px 18px;
  }

  .about-page {
    padding-top: 0;
  }

  .about-hero,
  .about-manifesto,
  .about-system,
  .about-pavilion,
  .about-cta {
    padding: 76px 18px;
  }

  .about-hero {
    padding-top: 118px;
  }

  .about-hero-copy {
    padding: 0;
  }

  .about-hero h1 {
    font-size: clamp(50px, 14vw, 78px);
  }

  .about-system-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-hero-image,
  .about-pavilion-photos,
  .about-pavilion-note {
    height: auto;
    min-height: 320px;
  }

  .section-heading {
    display: block;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro .section-kicker::after {
    width: 32px;
  }

  .intro-copy {
    max-width: none;
  }

  .intro-text {
    margin-top: 28px;
    padding-top: 24px;
  }

  .intro-image {
    aspect-ratio: 1 / 1;
  }

  .feature-band {
    min-height: auto;
    padding: 30px 18px;
  }

  .feature-carousel-controls {
    gap: 12px;
  }

  .feature-text,
  .pavilion-copy {
    padding: 34px 18px;
  }

  .collection-grid,
  .capability-grid,
  .material-row,
  .quote-section,
  .inquiry-form,
  .pavilion-gallery {
    grid-template-columns: 1fr;
  }

  .quote-section {
    gap: 38px;
  }

  .testimonial {
    border-top: 1px solid rgba(255, 253, 249, 0.24);
    border-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }

  .testimonial blockquote {
    min-height: auto;
  }

  .collection-card.product-primary,
  .collection-card.product-secondary,
  .collection-card.product-wide {
    grid-column: auto;
  }

  .collection-card {
    min-height: 430px;
  }

  .capability-grid article {
    min-height: auto;
  }

  .pavilion {
    padding: 0;
  }

  .pavilion-gallery {
    gap: 0;
  }

  .pavilion-gallery img,
  .pavilion-gallery img:last-child {
    min-height: 340px;
    padding-top: 0;
  }

  .material-row article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

  .material-row article:last-child {
    border-bottom: 0;
  }

  .contact-section {
    gap: 34px;
  }

  .contact-hero {
    padding-top: 112px;
    gap: 34px;
  }

  .contact-hero-copy h1,
  .contact-inquiry-copy h2 {
    font-size: clamp(44px, 12vw, 64px);
  }

  .contact-hero-image {
    min-height: 340px;
  }

  .contact-method-grid,
  .contact-inquiry,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .contact-routes article {
    min-height: 220px;
    padding: 26px 18px;
  }

  .inquiry-form {
    padding: 18px;
  }

  .site-footer {
    padding: 30px 18px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 30px;
  }

  .footer-brand {
    justify-self: start;
    text-align: left;
  }

  .footer-brand img {
    margin-inline: 0;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 1100px) {
  .about-brand-intro,
  .about-team,
  .about-belief-screen,
  .about-pavilion-v2,
  .about-factory-heading,
  .products-hero,
  .product-series,
  .product-partners-heading,
  .featured-news-card,
  .news-index-heading,
  .news-cta,
  .article-hero,
  .contact-hero,
  .contact-inquiry,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .about-brand-intro {
    min-height: auto;
  }

  .about-brand-copy {
    max-width: none;
    padding: 58px 42px 70px;
  }

  .about-brand-image {
    height: 520px;
    min-height: 0;
  }

  .about-map {
    min-height: 420px;
  }

  .about-belief-screen figure {
    min-height: 430px;
  }

  .about-belief-copy {
    max-width: none;
    padding: 56px 42px 70px;
  }

  .about-pavilion-intro {
    position: static;
    max-width: 820px;
  }

  .about-pavilion-gallery .about-pavilion-large {
    min-height: 480px;
  }

  .factory-grid {
    grid-template-columns: 1fr;
  }

  .products-hero {
    min-height: auto;
  }

  .products-hero-visual {
    height: 460px;
  }

  .product-directory,
  .partner-grid,
  .process-row,
  .product-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-catalog {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recent-news-track {
    grid-auto-columns: minmax(280px, calc((100% - 22px) / 2));
  }

  .faq-image {
    min-height: 360px;
    max-height: none;
  }

  .contact-hero {
    min-height: auto;
    gap: 46px;
  }

  .contact-hero-copy {
    max-width: none;
  }

  .contact-hero-image {
    min-height: 440px;
  }

  .contact-inquiry-copy {
    position: static;
  }

  .contact-routes {
    grid-template-columns: 1fr;
  }

  .contact-routes article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-routes article:last-child {
    border-bottom: 0;
  }

  .product-sidebar {
    position: static;
    max-height: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 20px;
    overflow: visible;
    border: 1px solid var(--line);
    background: var(--ivory);
  }

  .product-series {
    min-height: auto;
  }

  .product-series-dark .product-series-image {
    order: 2;
  }

  .product-series-dark .product-series-copy {
    order: 1;
  }
}

@media (max-width: 760px) {
  .about-brand-intro,
  .about-team,
  .about-pavilion-v2,
  .about-factory,
  .products-hero,
  .product-series,
  .product-partners,
  .product-process,
  .news-hero,
  .featured-news,
  .news-index,
  .news-cta,
  .recent-news,
  .article-hero,
  .article-body,
  .faq-section {
    padding: 82px 18px;
  }

  .article-page {
    padding-top: 90px;
  }

  .article-hero h1 {
    font-size: clamp(42px, 11vw, 62px);
  }

  .about-brand-intro {
    padding-top: 82px;
    gap: 34px;
  }

  .about-brand-image {
    height: 380px;
  }

  .about-belief-screen figure {
    min-height: 360px;
  }

  .about-brand-copy h1,
  .about-belief-copy h2,
  .about-pavilion-intro h2,
  .about-factory-heading h2,
  .about-team-copy h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .about-brand-tags span {
    width: 100%;
    text-align: center;
  }

  .about-map {
    display: grid;
    min-height: auto;
    gap: 12px;
    padding: 18px;
    background: var(--paper);
  }

  .about-map::before,
  .map-line {
    display: none;
  }

  .map-point {
    position: static;
    transform: none;
  }

  .map-point p {
    white-space: normal;
  }

  .about-belief-screen {
    min-height: auto;
  }

  .about-belief-copy {
    padding: 52px 18px 70px;
  }

  .about-pavilion-gallery {
    grid-template-columns: 1fr;
  }

  .about-pavilion-gallery .about-pavilion-large,
  .about-pavilion-gallery figure {
    grid-row: auto;
    min-height: 330px;
  }

  .about-factory-heading {
    gap: 24px;
    margin-bottom: 30px;
  }

  .factory-grid {
    grid-template-columns: 1fr;
  }

  .products-hero {
    padding-top: 112px;
    gap: 34px;
  }

  .products-hero-copy h1,
  .product-series-copy h2,
  .product-partners-heading h2,
  .product-process h2,
  .news-hero h1,
  .featured-news-card h2,
  .news-index-heading h2,
  .news-cta h2,
  .recent-news-heading h1,
  .faq-panel h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .products-hero-visual {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .products-hero-visual figure:first-child {
    grid-row: auto;
  }

  .products-hero-visual figure {
    min-height: 260px;
  }

  .product-directory,
  .partner-grid,
  .process-row,
  .product-card-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding: 112px 18px 58px;
  }

  .product-detail-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .product-detail-specs {
    grid-template-columns: 1fr;
  }

  .product-detail-thumbs {
    grid-template-columns: repeat(5, minmax(48px, 1fr));
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .recent-news {
    padding-top: 108px;
  }

  .recent-news-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .recent-news-track {
    grid-auto-columns: minmax(260px, 84vw);
  }

  .recent-news-card {
    min-height: 360px;
    grid-template-rows: 210px 1fr;
  }

  .faq-section {
    gap: 30px;
  }

  .faq-image {
    min-height: 260px;
  }

  .faq-list summary {
    padding-block: 16px;
    font-size: 16px;
  }

  .faq-list p {
    padding-right: 24px;
  }

  .featured-news-card {
    min-height: auto;
  }

  .featured-news-card figure {
    min-height: 320px;
  }

  .featured-news-card > div,
  .news-card > div {
    padding: 24px 20px;
  }

  .product-catalog {
    gap: 30px;
    padding: 98px 18px 76px;
  }

  .product-sidebar {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-toolbar h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .catalog-reset {
    width: max-content;
  }

  .product-card figure {
    aspect-ratio: 4 / 5;
  }

  .product-directory a {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 18px;
  }

  .product-directory a:last-child {
    border-bottom: 0;
  }

  .product-series {
    gap: 34px;
  }

  .product-series-image {
    min-height: 330px;
  }

  .product-series-image img {
    padding: 26px;
  }

  .partner-grid article,
  .process-row article {
    min-height: auto;
  }
}
