:root {
  --bone: #f7f2ea;
  --paper: #ffffff;
  --mist: #f3f0ea;
  --ink: #171817;
  --charcoal: #292b28;
  --soft-ink: #565b55;
  --aluminate: #536a72;
  --meadow: #6f7c64;
  --russet: #925f43;
  --shadow: #171817;
  --line: rgba(23, 24, 23, 0.13);
  --fine-line: rgba(23, 24, 23, 0.075);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf8f2 0%, var(--bone) 72%, #f2ece2 100%);
  font-family: "Manrope", "Avenir Next", sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: 400 15px/1.65 "Manrope", "Avenir Next", sans-serif;
}

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

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

picture {
  display: block;
}

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

figure,
p,
h1,
h2,
h3 {
  margin: 0;
}

button {
  border: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  padding: 18px 34px 16px;
  background: rgba(251, 248, 242, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--fine-line);
  background: rgba(251, 248, 242, 0.98);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: contrast(1.08);
}

.brand-mark span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.6vw, 30px);
  text-align: center;
}

.site-nav a {
  position: relative;
  padding: 4px 0;
  color: rgba(23, 24, 23, 0.65);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink);
}

.nav-toggle span + span {
  margin-top: 6px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100svh - 109px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) clamp(28px, 6vw, 82px) 0;
  overflow: hidden;
  color: #fffdf8;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-right: 0;
}

.hero-media picture,
.lp-hero-media picture {
  width: 100%;
  height: 100%;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(23, 24, 23, 0.56) 0%, rgba(23, 24, 23, 0.24) 44%, rgba(23, 24, 23, 0.05) 100%),
    linear-gradient(180deg, rgba(23, 24, 23, 0.08) 0%, rgba(23, 24, 23, 0.2) 64%, rgba(23, 24, 23, 0.62) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  align-self: end;
  padding: 0 0 clamp(120px, 13vh, 170px);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow,
.section-kicker,
.category-list span,
.swatch span,
.timeline span,
.privacy-note {
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  margin-top: 22px;
  font-size: clamp(50px, 6.3vw, 86px);
  line-height: 0.92;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1;
}

.hero-lede,
.section-copy > p,
.section-heading > p,
.material-copy > p,
.application-copy > p,
.company-band p {
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.8;
}

.hero-lede {
  max-width: 430px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
}

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

.hero .button {
  border-color: rgba(255, 255, 255, 0.78);
}

.hero .button-primary {
  background: #fffdf8;
  color: var(--ink);
}

.hero .button-secondary {
  color: #fffdf8;
}

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

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--aluminate);
  border-color: var(--aluminate);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.hero-index {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 0;
  background: rgba(23, 24, 23, 0.42);
  backdrop-filter: blur(14px);
}

.hero-index div {
  min-height: 96px;
  display: grid;
  place-content: center;
  gap: 4px;
  padding: 16px 12px;
  text-align: center;
}

.hero-index div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-index strong {
  color: #fffdf8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.hero-index span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-page main > .section,
.home-page .site-footer,
.detail-page .hero {
  display: none;
}

.section {
  padding: clamp(80px, 9.5vw, 138px) 0;
  border-top: 1px solid var(--fine-line);
  scroll-margin-top: 110px;
}

.section-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section-story,
.section-categories,
.section-wholesale {
  background: #fffdf9;
}

.section-company {
  background: #f2ece2;
  border-top: 0;
}

.section-grounded {
  background: var(--bone);
}

.section-materials {
  background: var(--mist);
}

.section-roadmap {
  background: #020202;
  color: rgba(255, 255, 255, 0.82);
}

.section-roadmap .section-kicker,
.section-roadmap .section-copy > p,
.section-roadmap .timeline span,
.section-roadmap .timeline p {
  color: rgba(255, 255, 255, 0.62);
}

.section-roadmap h2,
.section-roadmap .timeline strong {
  color: #fffdf8;
}

.story-layout,
.roadmap-layout,
.material-layout,
.wholesale-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(48px, 7vw, 98px);
  align-items: start;
}

.wholesale-layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.58fr);
}

.section-copy,
.section-heading,
.material-copy,
.application-copy {
  display: grid;
  gap: 22px;
}

.logistics-service-layout {
  grid-template-columns: minmax(0, 1fr);
}

.logistics-service-layout .material-copy > p,
.logistics-service-layout .material-points,
.qsdp-architecture-figure {
  max-width: 960px;
}

.section-copy > p,
.material-copy > p,
.application-copy > p {
  max-width: 520px;
}

.portrait-frame,
.material-media {
  border-left: 1px solid var(--fine-line);
  padding-left: clamp(20px, 4vw, 42px);
}

.portrait-frame picture,
.material-media picture {
  width: 100%;
  height: min(64vh, 620px);
  min-height: 430px;
  overflow: hidden;
}

.portrait-frame img,
.material-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-media figcaption {
  margin-top: 12px;
  color: var(--soft-ink);
  font-size: 12px;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 82px);
  background: var(--fine-line);
}

.expertise-list article,
.category-list article,
.material-points article,
.access-flow div {
  background: #fffdf9;
}

.expertise-list article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
}

.expertise-list h3,
.category-list h3,
.material-points h3,
.access-flow strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.expertise-list p,
.category-list p,
.material-points p,
.access-flow p {
  margin-top: 14px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.75;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(42px, 6vw, 70px);
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.swatch {
  min-height: 245px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
}

.swatch:first-child {
  border-left: 0;
}

.swatch strong {
  align-self: end;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.swatch small {
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.72;
}

.swatch-bone {
  background: #f8f5ef;
}

.swatch-aluminate {
  background: var(--aluminate);
  color: var(--paper);
}

.swatch-aluminate span {
  color: rgba(255, 255, 255, 0.7);
}

.swatch-meadow {
  background: var(--meadow);
  color: var(--paper);
}

.swatch-meadow span {
  color: rgba(255, 255, 255, 0.72);
}

.swatch-russet {
  background: var(--russet);
  color: var(--paper);
}

.swatch-russet span {
  color: rgba(255, 255, 255, 0.72);
}

.swatch-shadow {
  background: var(--shadow);
  color: var(--paper);
}

.swatch-shadow span {
  color: rgba(255, 255, 255, 0.72);
}

.editorial-strip {
  display: grid;
  grid-template-columns: 1fr 1.22fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(42px, 6vw, 72px);
  align-items: stretch;
}

.editorial-strip figure {
  min-width: 0;
}

.editorial-strip img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.editorial-strip figcaption {
  margin-top: 12px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--fine-line);
}

.category-list article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 3vw, 34px);
}

.category-list p {
  margin-top: 0;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline details {
  padding: 22px 0;
}

.timeline summary {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 22px;
  gap: 18px;
  align-items: start;
  cursor: pointer;
  list-style: none;
}

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

.timeline summary::after {
  content: "+";
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  text-align: right;
}

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

.timeline strong {
  max-width: 340px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.timeline p {
  max-width: 420px;
  margin: 14px 0 0 104px;
  font-size: 14px;
  line-height: 1.72;
}

.roadmap-visual {
  grid-column: 1 / -1;
  margin: clamp(38px, 5vw, 72px) 0 0;
  background: #020202;
}

.roadmap-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 867;
  object-fit: contain;
}

.quality-loop-figure {
  width: min(100%, 560px);
  margin: 0;
  background: var(--quality-loop-bg);
  justify-self: end;
}

.quality-loop-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1402;
  object-fit: contain;
}

.material-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
}

.material-points article {
  min-height: 190px;
  padding: clamp(22px, 3vw, 30px);
}

.material-points p {
  margin-top: 12px;
}

.access-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  background: var(--fine-line);
}

.access-flow div {
  min-height: 188px;
  padding: 22px;
}

.access-flow span {
  display: block;
  margin-bottom: 28px;
  color: var(--soft-ink);
  font-size: 11px;
  font-weight: 700;
}

.access-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  background: var(--bone);
}

.access-form label,
.access-form legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.access-form input,
.access-form select,
.access-form textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.24);
  color: var(--ink);
  outline: none;
}

.access-form input,
.access-form select {
  padding: 0 10px;
}

.access-form textarea {
  resize: vertical;
  padding: 12px 10px;
}

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

.form-wide {
  grid-column: 1 / -1;
}

.product-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  border: 0;
}

.product-checks legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.product-checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
}

.product-checks input {
  width: 15px;
  min-height: 15px;
  accent-color: var(--ink);
}

.privacy-note,
.form-status {
  color: var(--soft-ink);
  font-size: 12px;
  line-height: 1.55;
}

.form-status {
  min-height: 20px;
  text-transform: none;
}

.form-status a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
}

.company-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) auto;
  gap: 32px;
  align-items: end;
  padding: clamp(34px, 6vw, 62px) 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.company-band div {
  display: grid;
  gap: 18px;
}

.company-band p {
  max-width: 650px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  justify-items: stretch;
  padding: 36px clamp(22px, 5vw, 70px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer-brand {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}

.footer-brand img {
  width: 40px;
  height: 45px;
  object-fit: contain;
}

.footer-brand div,
.footer-company {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.footer-brand strong,
.footer-company strong {
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-brand span,
.footer-company span {
  font-size: 12px;
  line-height: 1.55;
}

.footer-social {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  gap: 14px;
}

.footer-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px clamp(16px, 2.6vw, 30px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--paper);
}

.social-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
}

.social-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon:nth-child(n + 2) svg {
  fill: currentColor;
  stroke: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1120px) {
  .site-header {
    padding: 14px 22px;
  }

  .site-nav {
    justify-content: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: clamp(42px, 7vw, 72px);
  }

  .hero-copy {
    padding: 0 0 clamp(118px, 13vh, 156px);
  }

  .hero-media img {
    min-height: 100%;
  }

  .story-layout,
  .roadmap-layout,
  .material-layout,
  .wholesale-layout,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .quality-loop-figure {
    justify-self: start;
  }

  .portrait-frame,
  .material-media {
    border-left: 0;
    padding-left: 0;
  }

  .palette-grid,
  .category-list,
  .access-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
    padding: 12px 16px;
  }

  .brand-mark {
    grid-column: 2;
    max-width: 100%;
    gap: 8px;
  }

  .brand-mark span {
    font-size: 10px;
    line-height: 1.15;
  }

  .nav-toggle {
    grid-column: 3;
    display: grid;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    justify-items: center;
    padding: 10px 0 8px;
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 16px;
  }

  .site-header.is-open .site-nav a {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.1;
  }

  .hero {
    position: relative;
    display: block;
    min-height: calc(100svh - 74px);
    padding: 0;
    overflow: hidden;
    color: #fffdf8;
  }

  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 24, 23, 0.08) 0%, rgba(23, 24, 23, 0.4) 52%, rgba(23, 24, 23, 0.72) 100%);
    pointer-events: none;
  }

  .hero-media {
    border-right: 0;
  }

  .hero-media img {
    height: 100%;
    min-height: 100%;
  }

  .hero-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 128px;
    z-index: 2;
    padding: 0;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: 44px;
  }

  .hero-lede,
  .hero .eyebrow {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .hero .button {
    min-height: 44px;
    padding: 0 16px;
    border-color: rgba(255, 255, 255, 0.74);
  }

  .hero .button-primary {
    background: #fffdf8;
    color: var(--ink);
  }

  .hero .button-secondary {
    color: #fffdf8;
  }

  .hero-index {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(23, 24, 23, 0.62);
  }

  .hero-index div {
    min-height: 96px;
    padding: 13px 7px;
  }

  .hero-index div + div {
    border-left-color: rgba(255, 255, 255, 0.18);
  }

  .hero-index strong {
    color: #fffdf8;
    font-size: 20px;
  }

  .hero-index span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
  }

  .section {
    padding: 72px 0;
  }

  .section-inner {
    width: calc(100% - 34px);
  }

  .section h2 {
    font-size: 38px;
  }

  .expertise-list,
  .palette-grid,
  .editorial-strip,
  .category-list,
  .material-points,
  .access-form,
  .company-band {
    grid-template-columns: 1fr;
  }

  .editorial-strip img {
    height: 340px;
  }

  .timeline summary {
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 12px;
  }

  .timeline summary span {
    grid-column: 1 / -1;
  }

  .timeline p {
    margin: 12px 0 0;
  }

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

  .access-form .button {
    width: 100%;
  }

  .hero-actions .button {
    width: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-social,
  .footer-nav {
    grid-column: 1;
  }

  .footer-social {
    justify-self: end;
    justify-content: flex-end;
  }
}

.content-page {
  --quality-loop-bg: #020202;
  background: var(--bone);
}

.content-page .section-roadmap {
  background: var(--quality-loop-bg);
}

.content-hero {
  padding: clamp(82px, 11vw, 150px) 0 clamp(56px, 7vw, 88px);
  background: #fffdf9;
  border-bottom: 1px solid var(--fine-line);
}

.content-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.55fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
}

.content-hero h1,
.content-grid h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 500;
  line-height: 0.95;
}

.content-hero p:not(.section-kicker),
.content-grid p {
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.8;
}

.logistics-hero-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.logistics-hero-copy p {
  margin: 0;
}

.logistics-download-button {
  text-align: center;
}

.estate-engine-figure {
  margin-top: clamp(34px, 5vw, 64px);
}

.estate-engine-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 890;
  object-fit: contain;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.logistics-blueprint-figure {
  margin-top: clamp(34px, 5vw, 64px);
}

.logistics-blueprint-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 866;
  object-fit: contain;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.qsdp-architecture-figure {
  margin: clamp(4px, 1vw, 12px) 0 0;
}

.qsdp-architecture-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 885;
  object-fit: contain;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.warehouse-velocity-figure {
  margin-top: clamp(34px, 5vw, 64px);
}

.warehouse-velocity-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 867;
  object-fit: contain;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.estate-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
}

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

.estate-gallery picture {
  width: 100%;
  aspect-ratio: 0.92;
  overflow: hidden;
}

.estate-gallery figcaption {
  margin-top: 12px;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.estate-product-figure {
  margin-top: clamp(34px, 5vw, 64px);
}

.estate-product-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
  background: #fffdf9;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 76px);
}

.content-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
}

.content-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--soft-ink);
}

.content-list li {
  padding-top: 10px;
  border-top: 1px solid var(--fine-line);
}

.content-page .timeline li {
  padding: 22px 0;
}

.content-page .timeline strong {
  display: block;
  max-width: none;
}

.content-page .timeline p {
  margin: 10px 0 0;
}

@media (max-width: 900px) {
  .content-hero-grid,
  .estate-gallery,
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* Loro Piana-inspired homepage treatment. Kept scoped so brand.html retains its existing page system. */
.luxury-home {
  --lp-ivory: #f8f5ef;
  --lp-stone: #e8e0d4;
  --lp-clay: #9c6d52;
  --lp-sage: #6b735f;
  --lp-steel: #536a72;
  --lp-ink: #151613;
  --lp-muted: #65665d;
  background: var(--lp-ivory);
  color: var(--lp-ink);
}

.luxury-home .site-footer {
  display: grid;
}

.luxury-home .lp-header {
  display: block;
  padding: 0;
  background: rgba(248, 245, 239, 0.96);
  border-bottom: 1px solid rgba(21, 22, 19, 0.1);
}

.luxury-home .lp-brand-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(21, 22, 19, 0.08);
}

.luxury-home .lp-nav-frame {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 58px);
}

.luxury-home .lp-brand {
  flex-direction: row;
  gap: 12px;
  justify-content: flex-start;
  min-height: auto;
}

.luxury-home .lp-brand img {
  width: 38px;
  height: 38px;
}

.luxury-home .lp-brand span {
  min-height: auto;
  color: var(--lp-ink);
  font-size: 12px;
  font-weight: 700;
}

.luxury-home .lp-nav {
  justify-content: center;
  gap: clamp(16px, 2.1vw, 28px);
}

.luxury-home .lp-nav a {
  color: rgba(23, 24, 23, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.luxury-home .lp-utilities a,
.luxury-home .lp-utilities button {
  color: rgba(23, 24, 23, 0.65);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.luxury-home .lp-utilities {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.luxury-home .lp-utilities button,
.lp-side-panel button,
.lp-product-card button,
.lp-dialog-close {
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.lp-hero {
  position: relative;
  min-height: calc(100svh - 118px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--lp-ink);
}

.lp-hero-media {
  position: absolute;
  inset: 0;
}

.lp-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 13, 10, 0.02) 0%, rgba(12, 13, 10, 0.18) 44%, rgba(12, 13, 10, 0.72) 100%);
}

.lp-hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(120px, 21vh, 220px) 0 clamp(56px, 7vw, 92px);
  color: #fffdf8;
  text-align: center;
}

.lp-kicker {
  color: currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: 0.68;
}

.lp-hero h1,
.lp-section-heading h2,
.lp-editorial-copy h2,
.lp-story-copy h2,
.lp-service-row h2,
.lp-closing h2,
.lp-product-dialog h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.lp-hero h1 {
  margin-top: 14px;
  font-size: clamp(54px, 8.4vw, 122px);
  line-height: 0.9;
}

.lp-hero p:not(.lp-kicker) {
  width: min(570px, 100%);
  margin: 22px auto 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.lp-hero .button {
  border-color: rgba(255, 253, 248, 0.78);
}

.lp-hero .button-primary {
  background: #fffdf8;
  color: var(--lp-ink);
}

.lp-hero .button-secondary {
  color: #fffdf8;
}

.lp-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) 0;
  border-bottom: 1px solid rgba(21, 22, 19, 0.1);
}

.lp-intro p {
  max-width: 760px;
  color: var(--lp-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.04;
}

.lp-intro-links {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.lp-intro-links a,
.lp-text-link {
  width: max-content;
  border-bottom: 1px solid currentColor;
  color: var(--lp-ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.lp-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 128px) 0;
}

.lp-section-heading,
.lp-editorial-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.lp-section-heading h2,
.lp-editorial-copy h2,
.lp-story-copy h2,
.lp-closing h2,
.lp-product-dialog h2 {
  color: var(--lp-ink);
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 0.98;
}

.lp-editorial-copy p:not(.lp-kicker),
.lp-story-copy p:not(.lp-kicker),
.lp-service-row p,
.lp-closing p {
  max-width: 540px;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.82;
}

.lp-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.lp-category-card a {
  display: grid;
  gap: 14px;
}

.lp-category-card picture,
.lp-product-card picture {
  width: 100%;
  overflow: hidden;
  background: var(--lp-stone);
}

.lp-category-card picture {
  aspect-ratio: 0.76;
}

.lp-product-card picture {
  aspect-ratio: 0.84;
}

.lp-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--lp-stone);
}

.lp-category-card span,
.lp-product-card span {
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.lp-category-card h3,
.lp-product-card strong {
  color: var(--lp-ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.lp-category-card img,
.lp-product-card img,
.lp-story-panel img {
  transition: transform 420ms ease, filter 420ms ease;
}

.lp-category-card a:hover img,
.lp-category-card a:focus-visible img,
.lp-product-card button:hover img,
.lp-product-card button:focus-visible img {
  transform: scale(1.018);
  filter: contrast(1.03);
}

.lp-product-edit {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid rgba(21, 22, 19, 0.1);
}

.lp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

.lp-product-card button {
  width: 100%;
  display: grid;
  gap: 10px;
  color: inherit;
  text-align: left;
}

.lp-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--lp-stone);
}

.lp-product-card small {
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.lp-story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  min-height: 720px;
  background: var(--lp-ink);
  color: #fffdf8;
}

.lp-story-panel figure {
  height: 100%;
  min-height: 720px;
}

.lp-story-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-story-copy {
  display: grid;
  gap: 22px;
  padding: clamp(42px, 7vw, 96px);
}

.lp-story-copy h2,
.lp-story-copy .lp-text-link {
  color: #fffdf8;
}

.lp-story-copy p:not(.lp-kicker) {
  color: rgba(255, 253, 248, 0.7);
}

.lp-service-section {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(68px, 8vw, 114px) 0;
}

.lp-public-categories {
  margin-bottom: clamp(54px, 7vw, 92px);
}

.lp-public-categories .lp-section-heading {
  max-width: 820px;
}

.lp-public-categories .category-list {
  margin-top: clamp(34px, 5vw, 62px);
}

.lp-public-categories .category-list article {
  min-height: 0;
  gap: 12px;
  padding: clamp(18px, 2.3vw, 26px);
}

.lp-category-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.lp-public-categories .category-list picture {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.lp-service-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 0.7fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid rgba(21, 22, 19, 0.12);
}

.lp-service-row:last-child {
  border-bottom: 1px solid rgba(21, 22, 19, 0.12);
}

.lp-service-row h2 {
  color: var(--lp-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.lp-service-action {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 0.45fr) auto;
  align-items: center;
}

.lp-closing {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 24px;
  text-align: center;
  padding: clamp(58px, 8vw, 104px) clamp(22px, 5vw, 72px);
  background: var(--lp-sage);
  color: #fffdf8;
}

.lp-closing div {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.lp-closing h2,
.lp-closing .lp-kicker {
  color: #fffdf8;
}

.lp-closing h2 {
  max-width: 820px;
  font-size: clamp(32px, 4vw, 56px);
}

.lp-closing .button-primary {
  background: #fffdf8;
  border-color: #fffdf8;
  color: var(--lp-ink);
}

.lp-side-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(420px, 100%);
  height: 100svh;
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 26px;
  background: #fffdf8;
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.18);
}

.lp-side-panel[hidden],
.lp-panel-scrim[hidden] {
  display: none;
}

.lp-panel-scrim {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(21, 22, 19, 0.28);
}

.lp-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(21, 22, 19, 0.12);
  padding-bottom: 18px;
}

.lp-panel-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.lp-side-panel label,
.lp-panel-head button {
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lp-side-panel input {
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid rgba(21, 22, 19, 0.24);
  background: transparent;
  color: var(--lp-ink);
  outline: none;
}

.lp-panel-results {
  display: grid;
  gap: 12px;
}

.lp-panel-results a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 22, 19, 0.1);
  font-size: 14px;
}

.lp-product-dialog {
  position: relative;
  width: min(860px, calc(100% - 32px));
  border: 0;
  padding: 0;
  background: #fffdf8;
  color: var(--lp-ink);
}

.lp-product-dialog::backdrop {
  background: rgba(21, 22, 19, 0.5);
}

.lp-product-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.9fr);
}

.lp-product-dialog img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.lp-product-dialog > div {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(28px, 5vw, 58px);
}

.lp-product-dialog p:not(.lp-kicker) {
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.8;
}

.lp-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  color: var(--lp-ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.lp-access-dialog {
  position: relative;
  width: min(620px, calc(100% - 32px));
  border: 0;
  padding: 0;
  background: #fffdf8;
  color: var(--lp-ink);
}

.lp-access-dialog::backdrop {
  background: rgba(21, 22, 19, 0.5);
}

.compact-access-form {
  border: 0;
  background: #fffdf8;
}

.compact-access-form h2 {
  margin-top: 8px;
  color: var(--lp-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  line-height: 0.98;
}

.compact-access-form p:not(.lp-kicker) {
  margin-top: 12px;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.7;
  text-transform: none;
}

.luxury-home .lp-footer {
  background: var(--lp-ink);
}

.luxury-home .lp-footer .footer-nav {
  grid-column: 1 / -1;
  justify-content: center;
  text-align: center;
}

.luxury-home .lp-footer .footer-social {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: start;
  justify-self: end;
  justify-content: flex-end;
  padding-top: 0;
  border-top: 0;
}

@media (max-width: 980px) {
  .luxury-home .lp-brand-row {
    min-height: 58px;
    padding: 0 18px;
  }

  .luxury-home .lp-nav-frame {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    min-height: 56px;
  }

  .luxury-home .lp-brand {
    grid-column: auto;
    justify-self: start;
  }

  .luxury-home .nav-toggle {
    display: grid;
    grid-column: 1;
  }

  .luxury-home .lp-nav {
    grid-column: 1 / -1;
    display: none;
    justify-content: center;
    padding: 10px 0 18px;
  }

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

  .luxury-home .site-header.is-open .lp-nav a {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.1;
  }

  .luxury-home .lp-utilities {
    grid-column: 3;
  }

  .luxury-home .lp-utilities a {
    display: none;
  }

  .lp-hero {
    min-height: calc(100svh - 114px);
  }

  .lp-intro,
  .lp-product-edit,
  .lp-story-panel,
  .lp-closing {
    grid-template-columns: 1fr;
  }

  .lp-intro-links {
    justify-items: start;
  }

  .lp-story-panel,
  .lp-story-panel figure {
    min-height: 0;
  }

  .lp-story-panel figure {
    height: auto;
  }

  .lp-story-panel img {
    aspect-ratio: 1.25;
  }

  .lp-service-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .lp-service-action {
    align-items: start;
  }

  .lp-service-row p {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .luxury-home .lp-brand-row {
    min-height: 58px;
    padding: 0 14px;
  }

  .luxury-home .lp-nav-frame {
    min-height: 52px;
    padding: 0 14px;
  }

  .luxury-home .lp-brand {
    flex-direction: row;
  }

  .luxury-home .lp-brand span {
    max-width: 145px;
    font-size: 10px;
    line-height: 1.15;
  }

  .luxury-home .lp-utilities {
    gap: 12px;
  }

  .luxury-home .lp-utilities button {
    font-size: 10px;
  }

  .lp-hero {
    min-height: calc(100svh - 110px);
  }

  .lp-hero-media img {
    object-position: center;
  }

  .lp-hero-copy {
    width: calc(100% - 34px);
    padding-bottom: 38px;
  }

  .lp-hero h1 {
    font-size: 52px;
  }

  .lp-hero p:not(.lp-kicker) {
    font-size: 15px;
  }

  .lp-actions,
  .lp-actions .button {
    width: 100%;
  }

  .lp-intro,
  .lp-section,
  .lp-service-section {
    width: calc(100% - 34px);
  }

  .lp-intro {
    padding: 42px 0;
  }

  .lp-category-grid,
  .lp-product-grid {
    grid-template-columns: 1fr;
  }

  .lp-category-card picture,
  .lp-product-card picture {
    aspect-ratio: 0.92;
  }

  .lp-story-copy {
    padding: 38px 22px 46px;
  }

  .lp-service-row {
    gap: 12px;
  }

  .lp-closing {
    padding: 48px 22px;
  }

  .lp-closing .button {
    width: 100%;
  }

  .lp-product-dialog[open] {
    grid-template-columns: 1fr;
  }

  .lp-product-dialog img {
    min-height: 0;
    aspect-ratio: 1;
  }

  .luxury-home .lp-footer .footer-nav,
  .luxury-home .lp-footer .footer-social {
    grid-column: 1;
  }

  .luxury-home .lp-footer .footer-social {
    grid-row: 3;
    justify-self: end;
    justify-content: flex-end;
    padding-top: 0;
    border-top: 0;
  }
}

/* Thank-you confirmation */
.thank-you-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    linear-gradient(rgba(247, 242, 234, 0.92), rgba(247, 242, 234, 0.97)),
    url("assets/optimized/material-details-1100.webp") center / cover fixed;
}

.thank-you-header {
  display: flex;
  justify-content: center;
  padding: 24px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.82);
  backdrop-filter: blur(18px);
}

.thank-you-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.thank-you-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.thank-you-main {
  display: grid;
  place-items: center;
  width: min(100% - 40px, 880px);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 130px) 0;
}

.thank-you-content {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

.thank-you-mark {
  width: 68px;
  height: 68px;
  margin: 0 auto 28px;
  color: var(--meadow);
}

.thank-you-mark svg {
  width: 100%;
  height: 100%;
  fill: rgba(111, 124, 100, 0.08);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.thank-you-label {
  margin-bottom: 14px;
  color: var(--meadow);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.thank-you-content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(64px, 10vw, 112px);
  font-weight: 500;
  line-height: 0.9;
}

.thank-you-message {
  max-width: 640px;
  margin: 30px auto 0;
  color: var(--soft-ink);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.thank-you-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .thank-you-main {
    width: min(100% - 34px, 880px);
    padding: 64px 0;
  }

  .thank-you-brand {
    font-size: 10px;
  }

  .thank-you-actions,
  .thank-you-actions .button {
    width: 100%;
  }

  .thank-you-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
