:root {
  --ink: #202124;
  --muted: #6f7477;
  --line: #eadfd9;
  --paper: #fffaf7;
  --white: #ffffff;
  --leaf: #477b69;
  --coral: #d8725d;
  --denim: #355f82;
  --gold: #b98b52;
  --blush: #f6ddd4;
  --shadow: 0 22px 70px rgba(77, 55, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.topbar {
  background: linear-gradient(90deg, #25201d, #3b2e29);
  color: #fff5ef;
  font-size: 12px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.topbar-inner {
  width: 100%;
  min-height: 36px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 247, 0.88);
  border-bottom: 1px solid rgba(234, 223, 217, 0.78);
  box-shadow: 0 12px 36px rgba(77, 55, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  width: 100%;
  min-height: 82px;
  padding: 0 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 166px;
  padding: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.logo:hover {
  transform: translateY(-1px);
  opacity: 0.86;
}

.logo img {
  width: 164px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(234, 223, 217, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(77, 55, 42, 0.08);
}

.nav-actions {
  order: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-select {
  appearance: none;
  height: 44px;
  min-width: 92px;
  padding: 0 38px 0 18px;
  border: 1px solid rgba(216, 114, 93, 0.22);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.9);
  background-image:
    linear-gradient(45deg, transparent 50%, #d8725d 50%),
    linear-gradient(135deg, #d8725d 50%, transparent 50%),
    linear-gradient(135deg, rgba(216, 114, 93, 0.12), rgba(71, 123, 105, 0.08));
  background-position:
    calc(100% - 20px) 19px,
    calc(100% - 14px) 19px,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  color: #3b332f;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.075em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(77, 55, 42, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.language-select:hover {
  border-color: rgba(216, 114, 93, 0.48);
  background-color: #ffffff;
  box-shadow: 0 14px 30px rgba(77, 55, 42, 0.12);
  transform: translateY(-1px);
}

.language-select:focus {
  outline: none;
  border-color: rgba(71, 123, 105, 0.62);
  box-shadow: 0 0 0 4px rgba(71, 123, 105, 0.12), 0 14px 30px rgba(77, 55, 42, 0.12);
}

.language-select option {
  color: #2b2522;
  background: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(234, 223, 217, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #3b332f;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  color: #3b332f;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--leaf);
  background: rgba(238, 245, 241, 0.92);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 248px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(234, 223, 217, 0.92);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(14px);
}

.dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 28px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid rgba(234, 223, 217, 0.92);
  border-top: 1px solid rgba(234, 223, 217, 0.92);
  transform: rotate(45deg);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px 9px 28px;
  border-radius: 10px;
  font-size: 14px;
  color: #5d5651;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.dropdown a::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.72;
}

.dropdown a:hover {
  color: var(--ink);
  background: #f6efeb;
  transform: translateX(2px);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fbfcfa;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 250, 247, 0.74) 0%, rgba(255, 250, 247, 0.44) 34%, rgba(255, 250, 247, 0.04) 66%);
  pointer-events: none;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.015);
  transition: opacity 900ms ease, transform 7000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.promo-carousel-section {
  padding: 10px;
  background: #fff;
}

.promo-carousel {
  width: 100%;
  aspect-ratio: 2.44 / 1;
  position: relative;
  overflow: hidden;
  background: #f4efed;
}

.promo-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.promo-slide.is-active {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: 100%;
  padding: 0 56px;
  margin: 0;
}

.hero-copy {
  max-width: 610px;
  padding: 82px 0 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  margin-bottom: 30px;
  color: #445057;
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 800;
}

.button.secondary {
  background: var(--white);
  color: var(--leaf);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: #f6efeb;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}

.section-heading p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.category-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(88, 65, 49, 0.08);
}

.category-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.category-panel-content {
  padding: 24px;
}

.category-panel h3 {
  margin-bottom: 8px;
  font-size: 26px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list a,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #ccd9d4;
  border-radius: 999px;
  color: #40515a;
  font-size: 13px;
  font-weight: 700;
  background: #fbfdfb;
}

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

.value-item,
.product-card,
.post-card,
.contact-panel,
.service-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-item,
.product-card,
.post-card,
.service-item {
  padding: 22px;
}

.post-card.with-image {
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card.with-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-card.with-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #f8f3ef;
}

.post-card-body {
  padding: 22px;
}

.product-card.with-image {
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card.with-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card.with-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f5f7f6;
}

.product-card.with-image.clothing-card img {
  aspect-ratio: 9 / 11;
}

.product-card-body {
  padding: 18px;
}

.value-item strong,
.product-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 18px;
}

.value-item p,
.product-card p,
.post-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #f5eee9 0%, #ffffff 48%, #f7ded5 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.page-hero.image-bags {
  background: #f4efed;
}

.page-hero.image-clothing {
  background: #f4efed;
}

.category-hero {
  min-height: 250px;
}

.category-hero .page-hero-inner {
  display: block;
}

.category-hero .page-hero-copy {
  max-width: 820px;
  margin: 0 auto;
  padding: 54px 0 48px;
  text-align: center;
}

.category-hero .page-hero-copy h1 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.category-hero .page-hero-copy > p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #4f575b;
  font-size: 16px;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.category-filter-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-filter-inner {
  min-height: 58px;
  display: flex;
  align-items: stretch;
  padding: 0 0 0 26px;
}

.category-filter-inner strong {
  min-width: 188px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.category-filter-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  padding: 12px 26px;
}

.category-filter-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: #343536;
  font-size: 13px;
  text-transform: uppercase;
}

.category-filter-links a:hover {
  color: var(--leaf);
}

.category-product-section {
  padding-top: 10px;
}

.category-product-section .section-inner {
  padding-left: 10px;
  padding-right: 10px;
}

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

.category-product-section .product-card.with-image {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.category-product-section .product-card.with-image:hover {
  box-shadow: none;
}

.category-product-section .product-card.with-image img {
  aspect-ratio: 4 / 5;
  transition: transform 360ms ease;
}

.category-product-section .product-card.with-image:hover img {
  transform: scale(1.025);
}

.category-product-section .product-card-body {
  padding: 14px 2px 24px;
}

.category-product-section .product-card strong {
  color: var(--ink);
  font-size: 15px;
  text-transform: uppercase;
}

.category-product-section .product-card p {
  font-size: 14px;
}

.editorial-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.editorial-main,
.editorial-stack img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.editorial-main {
  min-height: 420px;
  height: 100%;
}

.editorial-stack {
  display: grid;
  gap: 18px;
}

.editorial-stack img {
  aspect-ratio: 2.44 / 1;
}

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

.product-tile {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f8f3ef;
}

.product-tile-content {
  padding: 16px;
}

.product-tile-content strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-banner img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.feature-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.service-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.email-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.email-address {
  display: inline-flex;
  align-items: center;
  margin: 12px 0 18px;
  color: var(--coral);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 850;
  word-break: break-word;
}

.page-hero-copy {
  max-width: 620px;
  padding: 70px 0;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.subnav a {
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #304149;
  font-weight: 700;
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.content-block {
  max-width: 760px;
}

.content-block p {
  color: #40515a;
  font-size: 18px;
}

.contact-panel {
  padding: 26px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd9d9;
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: #ffffff;
}

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

.site-footer {
  padding: 34px 0;
  background: #172026;
  color: #dbe4e4;
}

.footer-inner {
  width: 100%;
  padding: 0 56px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #b9c7c7;
  font-size: 14px;
}

.policy-content,
.article-body {
  max-width: 960px;
  color: #40515a;
}

.policy-content h2,
.article-body h2 {
  margin-top: 34px;
  color: var(--ink);
}

.policy-frame {
  width: 100%;
  min-height: 78vh;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-hero-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  margin-bottom: 34px;
}

/* Field Notes use a focused editorial reading layout. */
.article-page {
  background: #ffffff;
}

.article-page .article-masthead {
  min-height: 0;
  background: #f2f0ec;
  border-bottom: 0;
}

.article-page .article-masthead .page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.article-page .article-masthead .page-hero-copy {
  max-width: 1020px;
  margin: 0 auto;
  padding: 78px 0 72px;
  text-align: center;
}

.article-page .article-masthead .eyebrow {
  margin-bottom: 20px;
  color: #4f5f58;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.article-page .article-masthead h1 {
  max-width: 1000px;
  margin: 0 auto 24px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
}

.article-page .article-masthead .page-hero-copy > p:not(.eyebrow):not(.article-meta) {
  max-width: 680px;
  margin: 0 auto;
  color: #4e5552;
  font-size: 18px;
  line-height: 1.65;
}

.article-page .article-meta {
  display: flex;
  justify-content: center;
  gap: 12px 28px;
  margin: 34px 0 0;
  color: #686d69;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-page .article-meta span + span {
  position: relative;
}

.article-page .article-meta span + span::before {
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: -16px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.article-page .article-section {
  padding: 0 0 110px;
  background: #ffffff;
}

.article-page .article-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.article-page .article-hero-image {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 7;
  margin: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.article-page .article-body {
  max-width: 760px;
  margin: 70px auto 0;
  color: #39423f;
  font-size: 17px;
  line-height: 1.85;
  counter-reset: article-section;
}

.article-page .article-body > p:first-child {
  margin-bottom: 58px;
  color: #1d2421;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.6;
}

.article-page .article-body h2 {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: baseline;
  gap: 8px;
  margin: 0;
  padding: 34px 0 14px;
  border-top: 1px solid #d9dcd8;
  color: #171c19;
  font-size: 32px;
  line-height: 1.15;
  counter-increment: article-section;
}

.article-page .article-body h2::before {
  content: "0" counter(article-section);
  color: #67756e;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.article-page .article-body h2 + p {
  margin: 0 0 46px 52px;
}

.article-page .article-body > p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .article-page .article-masthead .page-hero-inner,
  .article-page .article-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .article-page .article-masthead .page-hero-copy {
    padding: 52px 0 48px;
  }

  .article-page .article-masthead h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 1;
  }

  .article-page .article-masthead .page-hero-copy > p:not(.eyebrow):not(.article-meta) {
    font-size: 16px;
  }

  .article-page .article-meta {
    margin-top: 26px;
  }

  .article-page .article-section {
    padding-bottom: 72px;
  }

  .article-page .article-hero-image {
    aspect-ratio: 4 / 3;
  }

  .article-page .article-body {
    margin-top: 46px;
    font-size: 16px;
    line-height: 1.8;
  }

  .article-page .article-body > p:first-child {
    margin-bottom: 42px;
    font-size: 21px;
  }

  .article-page .article-body h2 {
    grid-template-columns: 34px minmax(0, 1fr);
    padding-top: 26px;
    font-size: 27px;
  }

  .article-page .article-body h2 + p {
    margin: 0 0 38px 42px;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 24px;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
  }

  .logo {
    min-width: 0;
    width: max-content;
    max-width: 210px;
  }

  .logo img {
    width: 128px;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px;
    border-radius: 18px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
  }

  .dropdown {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 8px;
    box-shadow: none;
    border-radius: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown::before {
    display: none;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(251, 252, 250, 0.82) 0%, rgba(251, 252, 250, 0.5) 48%, rgba(251, 252, 250, 0.1) 100%);
  }

  .hero-slide {
    object-position: center bottom;
  }

  .hero-copy {
    max-width: 680px;
    padding: 48px 0 260px;
  }


  .section-heading,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-grid,
  .value-grid,
  .product-grid,
  .post-grid,
  .service-grid,
  .split,
  .editorial-strip,
  .product-showcase,
  .feature-banner {
    grid-template-columns: 1fr;
  }

  .editorial-main {
    min-height: auto;
    aspect-ratio: 2.44 / 1;
  }

  .feature-banner img {
    min-height: 260px;
  }

  .product-card.with-image.clothing-card img {
    aspect-ratio: 4 / 5;
  }

  .article-hero-image {
    max-height: 420px;
  }

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

  .category-hero .page-hero-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .category-hero .page-hero-copy {
    padding: 42px 0 38px;
  }

  .category-hero .page-hero-copy > p {
    font-size: 15px;
  }

  .category-filter-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
  }

  .category-filter-inner strong {
    width: 100%;
    min-height: 50px;
    padding: 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-filter-links {
    width: 100%;
    gap: 10px 18px;
    padding: 12px 24px;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero-inner,
  .section-inner,
  .page-hero-inner,
  .footer-inner {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-link {
    padding: 0 14px;
    font-size: 13px;
  }

  .language-select {
    min-width: 82px;
    height: 42px;
    padding-left: 14px;
    padding-right: 34px;
    font-size: 11px;
  }

  .hero-copy {
    padding-top: 42px;
    padding-bottom: 210px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .page-hero {
    min-height: 280px;
  }

  .page-hero-copy {
    padding: 46px 0;
  }

  .category-hero .page-hero-copy {
    padding: 38px 0 34px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .category-hero .page-hero-copy h1 {
    font-size: clamp(44px, 14vw, 58px);
  }

  .category-filter-inner strong {
    padding-left: 18px;
    padding-right: 18px;
  }

  .category-filter-links {
    padding-left: 18px;
    padding-right: 18px;
  }

  .category-product-section {
    padding-top: 8px;
  }

  .section {
    padding: 46px 0;
  }

  .category-panel-content,
  .value-item,
  .product-card,
  .post-card,
  .contact-panel {
    padding: 18px;
  }

  .product-showcase,
  .product-grid,
  .post-grid,
  .category-grid,
  .service-grid {
    gap: 14px;
  }

  .product-tile-content,
  .product-card-body,
  .post-card-body {
    padding: 16px;
  }

  .editorial-stack {
    gap: 12px;
  }

  .email-address {
    font-size: 22px;
  }

  .policy-content,
  .article-body {
    max-width: 100%;
  }
}

/* Editorial luxury direction inspired by modern fashion ecommerce layouts. */
:root {
  --ink: #101010;
  --muted: #77706b;
  --line: #e8e2df;
  --paper: #ffffff;
  --white: #ffffff;
  --leaf: #111111;
  --coral: #a98572;
  --denim: #111111;
  --gold: #a98572;
  --blush: #f4efed;
  --shadow: none;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #111;
}

.topbar {
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.topbar-inner {
  min-height: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 20px;
  text-align: center;
}

.topbar-inner span:first-child {
  text-align: left;
}

.topbar-inner span:last-child {
  text-align: right;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid #f0ecea;
  box-shadow: none;
  backdrop-filter: none;
}

.nav {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 72px 60px;
  gap: 0;
  padding: 0 20px;
}

.logo {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  min-width: 0;
}

.logo img {
  width: 172px;
  max-height: 46px;
}

.nav-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  order: initial;
}

.language-select {
  height: 34px;
  min-width: 74px;
  padding: 0 26px 0 8px;
  border: 1px solid #111;
  border-radius: 0;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #111 50%),
    linear-gradient(135deg, #111 50%, transparent 50%);
  background-position: calc(100% - 15px) 14px, calc(100% - 10px) 14px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: none;
}

.language-select:hover,
.language-select:focus {
  border-color: #111;
  box-shadow: none;
  transform: none;
}

.nav-toggle {
  border-radius: 0;
  border-color: #111;
  background: #fff;
}

.nav-links {
  grid-column: 1 / -1;
  grid-row: 2;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nav-link {
  min-height: 48px;
  padding: 0;
  border-radius: 0;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-link::after {
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: #111;
}

.nav-link:hover,
.nav-link.active {
  color: #111;
  background: transparent;
}

.dropdown {
  top: calc(100% + 2px);
  min-width: 230px;
  padding: 10px 0;
  border: 1px solid #eee7e2;
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: none;
}

.dropdown::before,
.dropdown a::before {
  display: none;
}

.dropdown a {
  min-height: 36px;
  padding: 8px 18px;
  border-radius: 0;
  color: #222;
  font-size: 13px;
}

.dropdown a:hover {
  background: #f4efed;
  transform: none;
}

h1,
h2,
h3,
.feature-copy h2,
.section-heading h2,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.eyebrow {
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero {
  min-height: 700px;
  align-items: center;
}

.hero::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0.1));
}

.hero-copy {
  max-width: 780px;
  margin: 0 auto;
  padding: 110px 0;
  text-align: center;
}

.hero-copy h1,
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
}

.hero-copy p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: #272727;
  font-size: 17px;
}

.actions {
  justify-content: center;
}

.button {
  min-height: 42px;
  padding: 0 26px;
  border-color: #111;
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button.secondary {
  background: #fff;
  color: #111;
}

.section {
  padding: 76px 0;
}

.section.alt,
.page-hero,
.page-hero.image-bags,
.page-hero.image-clothing {
  background: #f4efed;
}

.section-inner,
.page-hero-inner,
.footer-inner {
  padding-left: 10px;
  padding-right: 10px;
}

.section-heading {
  display: block;
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4.5vw, 58px);
}

.section-heading p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  color: #6f6863;
}

.product-showcase,
.product-grid,
.post-grid,
.category-grid,
.value-grid,
.service-grid {
  gap: 10px;
}

.product-showcase {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-tile,
.product-card,
.product-card.with-image,
.post-card,
.post-card.with-image,
.category-panel,
.value-item,
.service-item,
.contact-panel,
.email-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.product-tile:hover,
.product-card.with-image:hover,
.post-card.with-image:hover {
  transform: none;
  box-shadow: none;
}

.product-tile img,
.product-card.with-image img,
.post-card.with-image img,
.category-panel img {
  background: #f4efed;
  transition: transform 360ms ease;
}

.product-tile:hover img,
.product-card.with-image:hover img,
.post-card.with-image:hover img,
.category-panel:hover img {
  transform: scale(1.025);
}

.product-tile-content,
.product-card-body,
.post-card-body,
.category-panel-content {
  padding: 14px 2px 24px;
}

.product-tile-content strong,
.product-card strong,
.value-item strong {
  color: #111;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-card p,
.post-card p,
.value-item p,
.category-panel p {
  color: #6f6863;
  font-size: 14px;
}

.feature-banner {
  min-height: 520px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.feature-copy {
  background: #f4efed;
  text-align: center;
}

.editorial-strip {
  gap: 10px;
}

.editorial-main,
.editorial-stack img,
.article-hero-image {
  border: 0;
  border-radius: 0;
}

.tag-list a,
.tag-list span,
.subnav a {
  border-color: #111;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-weight: 500;
}

.category-hero {
  min-height: 250px;
}

.category-hero .page-hero-copy {
  padding: 58px 0 52px;
}

.category-filter-inner {
  padding-left: 20px;
}

.category-product-section .section-inner {
  padding-left: 10px;
  padding-right: 10px;
}

.page-hero-copy {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-hero-copy p {
  color: #5d5752;
}

.site-footer {
  background: #050505;
  color: #fff;
}

.footer-links {
  color: #d8d8d8;
}

@media (max-width: 900px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 7px 18px;
  }

  .topbar-inner span,
  .topbar-inner span:first-child,
  .topbar-inner span:last-child {
    text-align: center;
  }

  .nav {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    padding: 16px 18px;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .logo img {
    width: 142px;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 16px 0 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    min-height: 42px;
  }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
  }

  .nav-item:hover .dropdown,
  .nav-item:focus-within .dropdown {
    display: block;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    padding: 86px 0 180px;
  }

  .product-showcase,
  .product-grid,
  .post-grid,
  .category-grid,
  .value-grid,
  .service-grid,
  .feature-banner,
  .editorial-strip {
    grid-template-columns: 1fr 1fr;
  }

  .category-filter-inner {
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .hero-inner,
  .section-inner,
  .page-hero-inner,
  .footer-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-copy h1,
  h1 {
    font-size: clamp(46px, 16vw, 70px);
  }

  .hero-copy {
    padding-top: 74px;
    padding-bottom: 150px;
  }

  .product-showcase,
  .product-grid,
  .post-grid,
  .category-grid,
  .value-grid,
  .service-grid,
  .feature-banner,
  .editorial-strip {
    grid-template-columns: 1fr;
  }

  .category-filter-links {
    gap: 8px 14px;
  }
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 28px;
  background: transparent;
  border-bottom: 0;
  color: #fff;
}

.home-page .logo svg,
.home-page .logo img {
  filter: brightness(0) invert(1);
}

.home-page .nav-link,
.home-page .nav-link:hover,
.home-page .nav-link.active {
  color: #fff;
}

.home-page .nav-link::after {
  background: #fff;
}

.home-page .language-select,
.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.82);
  background-color: transparent;
  color: #fff;
}

.home-page .language-select {
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
}

.home-page .nav-toggle span {
  background: #fff;
}

.home-page .hero {
  min-height: 900px;
}

.home-page .hero::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 28%, rgba(0, 0, 0, 0.12) 100%);
}

.home-page .hero-copy {
  align-self: end;
  max-width: 760px;
  padding-top: 290px;
  padding-bottom: 82px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.home-page .hero-copy .eyebrow,
.home-page .hero-copy p {
  color: #fff;
}

.home-page .button {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.home-page .button.secondary {
  background: transparent;
  color: #fff;
}

@media (max-width: 900px) {
  .home-page .site-header {
    top: 49px;
  }

  .home-page .nav-links.is-open {
    background: rgba(0, 0, 0, 0.72);
    padding: 14px;
  }

  .home-page .hero {
    min-height: 760px;
  }

  .home-page .hero-copy {
    padding-top: 240px;
    padding-bottom: 70px;
  }
}

@media (max-width: 560px) {
  .promo-carousel-section {
    padding: 8px;
  }

  .promo-carousel {
    aspect-ratio: 1.35 / 1;
  }

  .home-page .hero {
    min-height: 680px;
  }

  .home-page .hero-copy {
    padding-top: 210px;
    padding-bottom: 58px;
  }
}

/* Club-style navigation refinement with centered wordmark and image mega menus. */
.nav {
  min-height: 138px;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  grid-template-rows: 72px 66px;
  padding: 0 20px;
}

.nav-tools-left {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
}

.nav-actions {
  gap: 14px;
}

.header-icons {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #111;
}

.header-icons a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: opacity 180ms ease, transform 180ms ease;
}

.header-icons a:hover {
  opacity: 0.62;
  transform: translateY(-1px);
}

.header-icons svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-links {
  position: static;
  gap: clamp(22px, 3.2vw, 44px);
}

.nav-item {
  position: static;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
}

.dropdown.mega-menu {
  width: 100vw;
  min-width: 0;
  min-height: 350px;
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 25;
  display: grid;
  grid-template-columns: minmax(320px, 490px) minmax(220px, 360px);
  justify-content: center;
  gap: 38px;
  padding: 48px 20px 34px;
  border: 0;
  border-top: 1px solid #f0ecea;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -10px);
  pointer-events: none;
}

.nav-item:hover .dropdown.mega-menu,
.nav-item:focus-within .dropdown.mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mega-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mega-links {
  display: grid;
  align-content: start;
  gap: 0;
  padding-top: 2px;
}

.mega-links a,
.dropdown.mega-menu .mega-links a {
  min-height: 37px;
  display: flex;
  align-items: center;
  padding: 0;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mega-links a:hover,
.dropdown.mega-menu .mega-links a:hover {
  color: #8d6b5d;
  background: transparent;
}

.home-page .site-header {
  top: 28px;
  background: transparent;
}

.home-page .header-icons {
  color: #fff;
}

.home-page .dropdown.mega-menu {
  color: #111;
}

.home-page .dropdown.mega-menu .mega-links a {
  color: #222;
}

.home-page .dropdown.mega-menu .mega-links a:hover {
  color: #8d6b5d;
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    padding: 16px 18px;
  }

  .nav-tools-left {
    display: none;
  }

  .header-icons {
    display: none;
  }

  .dropdown.mega-menu {
    width: 100%;
    min-height: 0;
    position: static;
    display: none;
    grid-template-columns: 1fr;
    padding: 10px 0 12px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-item:hover .dropdown.mega-menu,
  .nav-item:focus-within .dropdown.mega-menu {
    display: block;
    transform: none;
  }

  .mega-media {
    display: none;
  }

  .mega-links a,
  .dropdown.mega-menu .mega-links a {
    min-height: 34px;
    font-size: 13px;
  }

  .home-page .site-header {
    top: 49px;
  }
}

/* Final mobile pass: keep the fashion layout clean and usable on phones. */
@media (max-width: 768px) {
  .topbar-inner {
    min-height: 34px;
    gap: 2px;
    padding: 6px 10px;
    font-size: 10px;
    line-height: 1.25;
  }

  .topbar-inner span:nth-child(2) {
    display: none;
  }

  .site-header,
  .home-page .site-header {
    position: sticky;
    top: 0;
    background: #fff;
    color: #111;
    border-bottom: 1px solid #eee;
  }

  .home-page .logo img,
  .home-page .logo svg {
    filter: none;
  }

  .nav {
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    padding: 12px 14px;
  }

  .logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .logo img {
    width: 132px;
    max-height: 36px;
  }

  .nav-tools-left,
  .header-icons {
    display: none;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    gap: 0;
    justify-self: end;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    display: inline-flex;
    border: 0;
    background: transparent;
  }

  .nav-toggle span,
  .home-page .nav-toggle span {
    width: 22px;
    height: 1px;
    background: #111;
  }

  .language-select,
  .home-page .language-select {
    display: block;
    width: 64px;
    min-width: 64px;
    height: 36px;
    padding: 0 24px 0 8px;
    border: 1px solid #d8d8d8;
    background-color: #fff;
    background-image:
      linear-gradient(45deg, transparent 50%, #111 50%),
      linear-gradient(135deg, #111 50%, transparent 50%);
    background-position: calc(100% - 14px) 15px, calc(100% - 9px) 15px;
    color: #111;
    font-size: 12px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: calc(100% + 28px);
    display: none;
    margin: 12px -14px -12px;
    padding: 8px 14px 16px;
    gap: 0;
    background: #fff;
    border-top: 1px solid #eee;
  }

  .nav-links.is-open {
    display: flex;
  }

  .home-page .nav-links.is-open {
    background: #fff;
    padding: 8px 14px 16px;
  }

  .nav-link,
  .home-page .nav-link,
  .home-page .nav-link:hover,
  .home-page .nav-link.active {
    min-height: 42px;
    color: #111;
    font-size: 13px;
  }

  .nav-link::after,
  .home-page .nav-link::after {
    background: #111;
    bottom: 5px;
  }

  .dropdown.mega-menu {
    width: 100%;
    padding: 4px 0 12px 14px;
    background: #fff;
  }

  .mega-links a,
  .dropdown.mega-menu .mega-links a {
    min-height: 32px;
    font-size: 12px;
  }

  .home-page .hero,
  .hero {
    min-height: calc(100svh - 34px);
  }

  .home-page .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04) 42%, rgba(0, 0, 0, 0.32));
  }

  .hero-slide {
    object-position: center top;
  }

  .home-page .hero-copy,
  .hero-copy {
    max-width: 100%;
    padding: 44vh 10px 36px;
    text-align: center;
  }

  .hero-copy h1,
  h1 {
    font-size: clamp(42px, 15vw, 62px);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 44px;
  }

  .section {
    padding: 42px 0;
  }

  .section-heading {
    margin-bottom: 22px;
    padding: 0 8px;
  }

  .section-heading h2,
  .feature-copy h2,
  .page-hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .product-showcase,
  .product-grid,
  .post-grid,
  .category-grid,
  .value-grid,
  .service-grid,
  .feature-banner,
  .editorial-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-tile img,
  .product-card.with-image img {
    aspect-ratio: 4 / 5;
  }

  .product-tile-content,
  .product-card-body,
  .post-card-body,
  .category-panel-content,
  .value-item,
  .service-item,
  .contact-panel {
    padding: 14px 10px 22px;
  }

  .promo-carousel-section {
    padding: 10px;
  }

  .promo-carousel {
    aspect-ratio: 1.18 / 1;
  }

  .promo-slide {
    object-fit: cover;
  }

  .feature-banner {
    min-height: 0;
  }

  .feature-banner img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .feature-copy {
    padding: 28px 18px;
  }

  .editorial-main,
  .editorial-stack img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-links {
    gap: 10px 14px;
  }
}

@media (max-width: 480px) {
  .home-page .hero-copy,
  .hero-copy {
    padding-top: 42vh;
    padding-bottom: 28px;
  }

  .hero-copy p {
    margin-bottom: 18px;
  }

  .category-hero .page-hero-copy,
  .page-hero-copy {
    padding: 34px 0 30px;
  }

  .category-filter-inner strong {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
  }

  .category-filter-links {
    gap: 4px 12px;
    padding: 10px 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .category-filter-links a {
    flex: 0 0 auto;
    font-size: 12px;
    white-space: nowrap;
  }
}

/* Contact page editorial layout. */
.contact-hero {
  min-height: 300px;
}

.contact-hero .page-hero-copy {
  max-width: 820px;
  padding: 52px 0 46px;
}

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

.contact-section {
  padding-top: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: 10px;
  align-items: stretch;
}

.contact-image {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #f4efed;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  background: #f4efed;
}

.contact-card h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.contact-card .email-address {
  margin: 0 0 24px;
  color: #111;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contact-intro {
  max-width: 520px;
  margin-bottom: 30px;
  color: #5d5752;
  font-size: 16px;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  padding-top: 26px;
  border-top: 1px solid #ded7d2;
}

.contact-details div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
}

.contact-details strong {
  color: #111;
  font-size: 12px;
  text-transform: uppercase;
}

.contact-details span {
  color: #4a4643;
  font-size: 15px;
  line-height: 1.55;
}

.contact-button {
  width: max-content;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 420px;
  }

  .contact-card {
    padding: 34px 18px 42px;
  }
}

@media (max-width: 560px) {
  .contact-hero {
    min-height: auto;
  }

  .contact-hero .page-hero-copy {
    padding: 38px 0 34px;
  }

  .contact-image {
    min-height: 320px;
  }

  .contact-card .email-address {
    font-size: clamp(24px, 8vw, 34px);
  }

  .contact-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-button {
    width: 100%;
  }
}

/* Contact page: full-width editorial composition. */
.contact-page {
  background: #fff;
}

.contact-page main {
  overflow: hidden;
}

.contact-stage {
  position: relative;
  min-height: clamp(580px, 68vw, 780px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #2a2724;
  color: #fff;
}

.contact-stage-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.001);
}

.contact-stage-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.78) 0%, rgba(12, 11, 10, 0.52) 30%, rgba(12, 11, 10, 0.08) 62%, rgba(12, 11, 10, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 11, 10, 0.42) 0%, transparent 45%);
}

.contact-stage-content {
  width: min(680px, 56vw);
  padding: 0 5vw clamp(64px, 8vw, 112px);
}

.contact-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-stage h1 {
  max-width: 620px;
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.4vw, 112px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.contact-stage-intro {
  max-width: 500px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
}

.contact-primary-link {
  width: min(440px, 100%);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.contact-primary-link svg,
.contact-email svg {
  width: 32px;
  flex: 0 0 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 180ms ease;
}

.contact-primary-link:hover,
.contact-email:hover {
  opacity: 0.72;
}

.contact-primary-link:hover svg,
.contact-email:hover svg {
  transform: translateX(6px);
}

.contact-stage-note {
  position: absolute;
  right: 34px;
  bottom: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.contact-connect {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(60px, 10vw, 180px);
  padding: clamp(84px, 10vw, 150px) 7vw;
  background: #fff;
}

.contact-connect-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.contact-connect-copy h2 span {
  font: inherit;
}

.contact-connect-details {
  align-self: end;
  max-width: 740px;
}

.contact-connect-details > p {
  max-width: 620px;
  margin: 0 0 clamp(38px, 5vw, 66px);
  color: #55514d;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.8;
}

.contact-email {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 2px 0 0;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 3.2vw, 48px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8d6d3;
  background: #f3f1ee;
}

.contact-topics article {
  min-height: 330px;
  padding: clamp(34px, 4vw, 64px);
  border-right: 1px solid #d8d6d3;
}

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

.contact-topic-number {
  display: block;
  margin-bottom: clamp(58px, 7vw, 100px);
  color: #77716b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-topics h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-topics p {
  max-width: 410px;
  margin: 0;
  color: #625d58;
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .contact-stage {
    min-height: 650px;
  }

  .contact-stage-content {
    width: min(620px, 78vw);
    padding-left: 32px;
    padding-bottom: 62px;
  }

  .contact-connect {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-left: 32px;
    padding-right: 32px;
  }

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

  .contact-topics article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #d8d6d3;
  }

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

  .contact-topic-number {
    margin-bottom: 48px;
  }
}

@media (max-width: 560px) {
  .contact-stage {
    min-height: calc(100svh - 64px);
    align-items: flex-end;
  }

  .contact-stage-image {
    object-position: 66% center;
  }

  .contact-stage-shade {
    background:
      linear-gradient(0deg, rgba(10, 9, 8, 0.88) 0%, rgba(10, 9, 8, 0.48) 47%, rgba(10, 9, 8, 0.05) 78%),
      linear-gradient(90deg, rgba(10, 9, 8, 0.28), transparent 70%);
  }

  .contact-stage-content {
    width: 100%;
    padding: 0 20px 40px;
  }

  .contact-stage h1 {
    max-width: 390px;
    margin-bottom: 18px;
    font-size: clamp(52px, 17vw, 76px);
  }

  .contact-stage-intro {
    max-width: 370px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-primary-link {
    min-height: 52px;
  }

  .contact-stage-note {
    display: none;
  }

  .contact-connect {
    gap: 38px;
    padding: 72px 20px 78px;
  }

  .contact-connect-copy h2 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .contact-connect-details > p {
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.7;
  }

  .contact-email {
    min-height: 64px;
    gap: 12px;
    font-size: clamp(20px, 6vw, 29px);
  }

  .contact-email svg {
    width: 26px;
    flex-basis: 26px;
  }

  .contact-topics article {
    padding: 36px 20px 42px;
  }

  .contact-topic-number {
    margin-bottom: 34px;
  }
}

/* About page: immersive brand editorial. */
.about-page {
  background: #fff;
}

.about-page main {
  overflow: hidden;
}

.editorial-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-stage {
  position: relative;
  min-height: clamp(620px, 68vw, 820px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #e8e1d9;
  color: #111;
}

.about-stage-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.about-stage-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 28%, rgba(255, 255, 255, 0.05) 59%, transparent 100%);
}

.about-stage-content {
  width: min(760px, 56vw);
  padding: 0 5vw clamp(66px, 8vw, 112px);
}

.about-stage h1 {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.8vw, 108px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.about-stage-content > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #38332f;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
}

.about-stage-note {
  position: absolute;
  right: 34px;
  bottom: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-manifesto {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(60px, 10vw, 180px);
  padding: clamp(90px, 11vw, 170px) 7vw;
}

.about-manifesto-title h2,
.about-story-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.7vw, 84px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
}

.about-manifesto-copy {
  align-self: end;
  max-width: 720px;
}

.about-manifesto-copy p {
  color: #5b5651;
  font-size: 16px;
  line-height: 1.85;
}

.about-manifesto-copy .about-lead {
  margin-bottom: 28px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.7vw, 40px);
  line-height: 1.25;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #d8d6d3;
  border-bottom: 1px solid #d8d6d3;
  background: #f3f1ee;
}

.about-values article {
  min-height: 360px;
  padding: clamp(34px, 4vw, 60px);
  border-right: 1px solid #d8d6d3;
}

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

.about-values article > span {
  display: block;
  margin-bottom: clamp(70px, 8vw, 118px);
  color: #77716b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-values h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.about-values p {
  max-width: 340px;
  margin: 0;
  color: #625d58;
  font-size: 14px;
  line-height: 1.75;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(420px, 0.82fr);
  min-height: 720px;
  background: #0b0b0b;
  color: #fff;
}

.about-story figure {
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.about-story figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 48% center;
}

.about-story-copy {
  align-self: center;
  padding: clamp(54px, 7vw, 110px);
}

.about-story-copy h2 {
  margin-bottom: 38px;
}

.about-story-copy > p:not(.editorial-kicker) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

.editorial-text-link {
  width: min(410px, 100%);
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.editorial-text-link svg,
.policy-contact-band svg {
  width: 32px;
  flex: 0 0 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 180ms ease;
}

.editorial-text-link:hover {
  opacity: 0.7;
}

.editorial-text-link:hover svg,
.policy-contact-band a:hover svg {
  transform: translateX(6px);
}

/* Policy pages: high-contrast editorial documents. */
.policy-page {
  background: #fff;
}

.policy-page main {
  overflow: clip;
}

.policy-stage {
  position: relative;
  min-height: clamp(360px, 31vw, 450px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  padding: 34px 5vw clamp(42px, 4.8vw, 68px);
  background: #090909;
  color: #fff;
}

.policy-stage-meta {
  position: absolute;
  top: 28px;
  left: 5vw;
  right: 5vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-stage-title {
  position: relative;
  z-index: 2;
  width: min(850px, 68vw);
}

.policy-stage-title h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(62px, 6.8vw, 104px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.policy-stage-title > p:last-child {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.7;
}

.policy-stage-number {
  position: absolute;
  right: 2vw;
  bottom: -0.15em;
  z-index: 1;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(210px, 27vw, 410px);
  font-weight: 400;
  line-height: 0.75;
  user-select: none;
}

.policy-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid #d8d6d3;
  background: #fff;
}

.policy-switcher a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #d8d6d3;
  color: #69635e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.policy-switcher a:last-child {
  border-right: 0;
}

.policy-switcher a:hover,
.policy-switcher a.active {
  background: #f3f1ee;
  color: #111;
}

.policy-switcher a.active {
  box-shadow: inset 0 -2px #111;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(78px, 9vw, 138px) 7vw clamp(100px, 12vw, 180px);
}

.policy-aside {
  position: sticky;
  top: 160px;
  align-self: start;
  display: grid;
}

.policy-aside .editorial-kicker {
  margin-bottom: 28px;
}

.policy-aside a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd9d5;
  color: #6a645f;
  font-size: 12px;
  line-height: 1.35;
  transition: color 180ms ease, padding 180ms ease;
}

.policy-aside a:hover {
  padding-left: 6px;
  color: #111;
}

.editorial-policy {
  width: min(100%, 850px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.policy-document-intro {
  padding-bottom: clamp(70px, 8vw, 110px);
}

.policy-document-intro > p:last-child {
  margin: 0;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.25;
}

.editorial-policy > section {
  scroll-margin-top: 160px;
  padding: clamp(54px, 6vw, 82px) 0;
  border-top: 1px solid #cfcac5;
}

.policy-section-number {
  display: block;
  margin-bottom: 32px;
  color: #77716b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.editorial-policy h2 {
  margin: 0 0 34px;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.editorial-policy p,
.editorial-policy li {
  color: #514c48;
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.editorial-policy p {
  margin-bottom: 22px;
}

.editorial-policy ul {
  margin: 8px 0 30px;
  padding-left: 22px;
}

.editorial-policy li {
  padding: 5px 0 5px 8px;
}

.policy-contact-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: center;
  padding: clamp(62px, 7vw, 96px) 7vw;
  border-top: 1px solid #d8d6d3;
  background: #f3f1ee;
}

.policy-contact-band > p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-contact-band a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.4vw, 50px);
  line-height: 1.15;
  overflow-wrap: anywhere;
  transition: opacity 180ms ease;
}

.policy-contact-band a:hover {
  opacity: 0.68;
}

@media (max-width: 980px) {
  .about-manifesto {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .about-values article:nth-child(2) {
    border-right: 0;
  }

  .about-values article:nth-child(-n + 2) {
    border-bottom: 1px solid #d8d6d3;
  }

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

  .about-story figure {
    min-height: 560px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .policy-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

  .policy-aside .editorial-kicker {
    grid-column: 1 / -1;
  }

  .editorial-policy {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .about-stage {
    min-height: calc(100svh - 104px);
    color: #fff;
  }

  .about-stage-image {
    object-position: 64% center;
  }

  .about-stage-shade {
    background:
      linear-gradient(0deg, rgba(10, 9, 8, 0.88) 0%, rgba(10, 9, 8, 0.44) 45%, rgba(10, 9, 8, 0.04) 76%),
      linear-gradient(90deg, rgba(10, 9, 8, 0.24), transparent 70%);
  }

  .about-stage-content {
    width: 100%;
    padding: 0 20px 40px;
  }

  .about-stage h1 {
    margin-bottom: 20px;
    font-size: clamp(48px, 15.5vw, 68px);
    line-height: 0.92;
  }

  .about-stage-content > p:last-child {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.6;
  }

  .about-stage-note {
    display: none;
  }

  .about-manifesto {
    gap: 42px;
    padding: 74px 20px 80px;
  }

  .about-manifesto-title h2,
  .about-story-copy h2 {
    font-size: clamp(44px, 13.5vw, 62px);
  }

  .about-manifesto-copy .about-lead {
    font-size: 26px;
  }

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

  .about-values article {
    min-height: auto;
    padding: 36px 20px 42px;
    border-right: 0;
    border-bottom: 1px solid #d8d6d3;
  }

  .about-values article:nth-child(3) {
    border-bottom: 1px solid #d8d6d3;
  }

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

  .about-values article > span {
    margin-bottom: 36px;
  }

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

  .about-story figure {
    aspect-ratio: 4 / 5;
  }

  .about-story figure img {
    object-position: 40% center;
  }

  .about-story-copy {
    padding: 62px 20px 72px;
  }

  .editorial-text-link {
    min-height: 56px;
    margin-top: 34px;
  }

  .policy-stage {
    min-height: 390px;
    padding: 28px 20px 36px;
  }

  .policy-stage-meta {
    top: 26px;
    left: 20px;
    right: 20px;
  }

  .policy-stage-title {
    width: 100%;
  }

  .policy-stage-title h1 {
    margin-bottom: 16px;
    font-size: clamp(54px, 17vw, 72px);
  }

  .policy-stage-title > p:last-child {
    max-width: 350px;
    font-size: 14px;
    line-height: 1.6;
  }

  .policy-stage-number {
    right: -30px;
    bottom: 0;
    font-size: 220px;
  }

  .policy-switcher {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .policy-switcher a {
    min-width: 0;
    padding: 0 8px;
    font-size: 9px;
    white-space: nowrap;
  }

  .policy-layout {
    gap: 58px;
    padding: 66px 20px 92px;
  }

  .policy-aside {
    grid-template-columns: 1fr;
  }

  .policy-aside a {
    min-height: 44px;
  }

  .policy-document-intro {
    padding-bottom: 72px;
  }

  .policy-document-intro > p:last-child {
    font-size: 27px;
    line-height: 1.3;
  }

  .editorial-policy > section {
    padding: 54px 0;
    scroll-margin-top: 90px;
  }

  .editorial-policy h2 {
    margin-bottom: 28px;
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .editorial-policy p,
  .editorial-policy li {
    font-size: 15px;
    line-height: 1.82;
  }

  .policy-contact-band {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 54px 20px 64px;
  }

  .policy-contact-band a {
    min-height: 64px;
    gap: 12px;
    font-size: clamp(20px, 6vw, 28px);
  }

  .policy-contact-band svg {
    width: 26px;
    flex-basis: 26px;
  }
}
