:root {
  --ink: #161a18;
  --muted: #626965;
  --forest: #173f2d;
  --forest-dark: #102c20;
  --paper: #ffffff;
  --soft: #f3f5f3;
  --line: #d9dedb;
  --danger: #7a342b;
  --page-max: 1320px;
  --z-editor-canvas: 100;
  --z-side-panel: 500;
  --z-header: 1000;
  --z-dropdown: 2000;
  --z-modal: 3000;
  --z-tooltip: 4000;
  --z-local-underlay: -1;
  --z-local-base: 0;
  --z-local-content: 1;
  --z-local-control: 2;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #246f4d;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  min-height: 72px;
  padding: 0 max(24px, calc((100% - var(--page-max)) / 2));
  border-bottom: 1px solid rgba(217, 222, 219, 0.9);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 126px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  min-width: 0;
}

.desktop-nav a,
.bag-link,
.mobile-nav a,
.site-footer a {
  text-decoration: none;
}

.desktop-nav a {
  padding: 24px 0;
  color: #373d39;
  font-size: 14px;
  font-weight: 600;
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-control select {
  min-width: 64px;
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.bag-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.bag-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

.bag-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

.mobile-nav {
  position: fixed;
  inset: 64px 0 auto 0;
  z-index: var(--z-dropdown);
  display: none;
  padding: 12px 20px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(18, 28, 22, 0.14);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 560px;
  height: min(68svh, 650px);
  overflow: hidden;
  background: #1c211e;
  color: #fff;
}

.hero-carousel,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-carousel {
  z-index: var(--z-local-base);
  overflow: hidden;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms step-end;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 700ms ease, visibility 0ms step-start;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(1.06) contrast(1.04) brightness(1.08);
}

.hero-slide:nth-child(2) .hero-image {
  object-position: center 54%;
}

.hero-shade {
  z-index: var(--z-local-content);
  background: linear-gradient(90deg, rgba(8, 14, 10, 0.72) 0%, rgba(8, 14, 10, 0.58) 42%, rgba(8, 14, 10, 0.24) 76%, rgba(8, 14, 10, 0.32) 100%);
  pointer-events: none;
}

.hero.photo-missing .hero-carousel {
  visibility: hidden;
}

.hero-inner {
  position: relative;
  z-index: var(--z-local-control);
  align-items: center;
  width: min(calc(100% - 48px), var(--page-max));
  height: 100%;
  margin: 0 auto;
}

.hero-copy {
  grid-column: 1 / span 7;
  max-width: 720px;
}

.eyebrow,
.status-label {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1,
.section h2,
.design-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.96;
}

.hero-lede {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.hold-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--forest-dark);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(10, 16, 12, 0.32);
  color: #fff;
}

.button-primary {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

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

.photo-caption {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.photo-caption a {
  color: inherit;
  text-underline-offset: 3px;
}

.hero-carousel-controls {
  position: absolute;
  right: max(24px, calc((100vw - var(--page-max)) / 2 + 24px));
  bottom: 28px;
  z-index: var(--z-local-control);
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: rgba(8, 14, 10, 0.48);
  backdrop-filter: blur(8px);
}

.hero-carousel-controls[hidden],
.hero-carousel-controls.is-single {
  display: none;
}

.hero-carousel-button,
.hero-carousel-dots button {
  display: inline-grid;
  place-items: center;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hero-carousel-button {
  width: 44px;
  min-width: 44px;
}

.hero-carousel-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
}

.hero-carousel-dots button {
  position: relative;
  width: 36px;
  min-width: 36px;
}

.hero-carousel-dots button::after {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: transparent;
  content: "";
}

.hero-carousel-dots button[aria-current="true"]::after {
  background: #fff;
}

.hero-carousel-button:hover,
.hero-carousel-button:focus-visible,
.hero-carousel-dots button:hover,
.hero-carousel-dots button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active {
    transition: none;
  }
}

.section {
  padding: 88px 24px;
}

.section-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

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

.section-heading {
  align-items: end;
  margin-bottom: 40px;
}

.section-title {
  grid-column: 1 / span 7;
}

.section-intro {
  grid-column: 9 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section .eyebrow {
  color: var(--forest);
}

.section h2,
.design-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

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

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.product-card-copy {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.product-card-copy h3,
.product-card-copy p {
  margin: 0;
}

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

.collection-hold {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(240px, 4fr);
  gap: 40px;
  align-items: end;
  padding: 48px 0;
  border-top: 1px solid #cbd2ce;
  border-bottom: 1px solid #cbd2ce;
}

.collection-hold[hidden] {
  display: none;
}

.status-label {
  color: var(--forest);
}

.collection-hold h3 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.collection-hold p:not(.status-label) {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
}

.hold-actions {
  justify-content: flex-end;
  margin: 0;
}

.text-link,
.social-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--forest);
  font-weight: 750;
  text-underline-offset: 4px;
}

.emotion-grid {
  row-gap: 22px;
}

.emotion-card {
  grid-column: span 4;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: end;
  gap: 22px;
  min-width: 0;
  min-height: 188px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--forest);
  border-radius: 6px;
  background: var(--paper);
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.emotion-card:nth-child(2) {
  border-top-color: #62607d;
}

.emotion-card:nth-child(3) {
  border-top-color: #313a36;
}

.emotion-card:nth-child(4) {
  border-top-color: #aa7a27;
}

.emotion-card:nth-child(5) {
  border-top-color: #46745e;
}

.emotion-card:nth-child(6) {
  border-top-color: #7b3a42;
}

.emotion-card:hover,
.emotion-card:focus-visible {
  border-color: var(--forest);
  background: #f7f9f7;
}

.emotion-number {
  align-self: start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.emotion-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.emotion-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.emotion-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.material-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.design-cta {
  padding: 76px 24px;
  background: var(--forest-dark);
  color: #fff;
}

.design-cta-inner {
  align-items: center;
  width: min(100%, var(--page-max));
  margin: 0 auto;
}

.design-cta-inner > div {
  grid-column: 1 / span 9;
}

.design-cta-inner > .button {
  grid-column: 10 / -1;
  align-self: center;
  justify-self: end;
}

.design-cta .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.design-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.section-proof {
  background: var(--paper);
}

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

.proof-item {
  grid-column: span 4;
  padding: 30px 22px 34px 0;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item > span {
  display: block;
  margin-bottom: 26px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.proof-item h3,
.proof-item p {
  margin: 0;
}

.proof-item h3 {
  font-size: 19px;
}

.proof-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.social-link {
  margin-top: 24px;
}

.site-footer {
  padding: 44px 24px;
  border-top: 1px solid var(--line);
  background: #111512;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  align-items: start;
  width: min(100%, var(--page-max));
  margin: 0 auto;
}

.footer-brand {
  grid-column: 1 / span 4;
}

.footer-brand img {
  width: 130px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 16px 0 0;
  font-size: 13px;
}

.site-footer nav {
  grid-column: 6 / span 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  font-size: 13px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.copyright {
  grid-column: 11 / -1;
  justify-self: end;
  margin: 0;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
  }

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

  .desktop-nav {
    gap: 18px;
  }

  .hero-copy {
    grid-column: 1 / span 6;
  }

  .section-title {
    grid-column: 1 / span 5;
  }

  .section-intro {
    grid-column: 6 / -1;
  }

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

  .emotion-card {
    grid-column: span 4;
  }

  .design-cta-inner > div {
    grid-column: 1 / span 6;
  }

  .design-cta-inner > .button {
    grid-column: 7 / -1;
  }

  .proof-item {
    grid-column: span 8;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .footer-brand {
    grid-column: 1 / span 3;
  }

  .site-footer nav {
    grid-column: 4 / span 4;
  }

  .copyright {
    grid-column: 8 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    grid-column: 3;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: 440px;
    height: min(62svh, 540px);
  }

  .hero-inner {
    width: min(calc(100% - 32px), var(--page-max));
  }

  .hero-copy {
    grid-column: 1 / span 7;
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .section {
    padding: 72px 20px;
  }

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

  .hold-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .brand img {
    width: 108px;
  }

  .language-control select {
    min-width: 56px;
    padding-inline: 4px;
  }

  .bag-link > [data-i18n="bag"] {
    display: none;
  }

  .hero {
    min-height: 430px;
    height: min(60svh, 500px);
  }

  .hero-image {
    object-position: center 42%;
    filter: saturate(1.04) contrast(1.03) brightness(1.04);
  }

  .hero-slide:nth-child(2) .hero-image {
    object-position: center center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(8, 14, 10, 0.38) 0%, rgba(8, 14, 10, 0.52) 38%, rgba(8, 14, 10, 0.68) 100%);
  }

  .hero-carousel-controls {
    top: 12px;
    right: 12px;
    bottom: auto;
  }

  .hero-copy,
  .section-title,
  .section-intro,
  .design-cta-inner > div,
  .design-cta-inner > .button,
  .footer-brand,
  .site-footer nav,
  .copyright {
    grid-column: 1 / -1;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 13px;
  }

  .photo-caption {
    margin-top: 14px;
    font-size: 10px;
  }

  .section {
    padding: 64px 16px;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 28px;
  }

  .section h2,
  .design-cta h2 {
    font-size: 34px;
  }

  .section-intro {
    font-size: 14px;
  }

  .collection-hold {
    gap: 26px;
    padding: 34px 0;
  }

  .collection-hold h3 {
    font-size: 24px;
  }

  .hold-actions {
    display: grid;
    align-items: stretch;
  }

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

  .emotion-grid {
    gap: 10px;
  }

  .emotion-card {
    grid-column: span 2;
    gap: 12px;
    min-height: 160px;
    padding: 16px;
  }

  .emotion-card strong {
    font-size: 19px;
  }

  .emotion-card small {
    font-size: 11px;
  }

  .design-cta {
    padding: 64px 16px;
  }

  .design-cta-inner > .button {
    width: 100%;
    margin-top: 20px;
  }

  .proof-item {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding: 40px 16px;
  }

  .site-footer nav {
    margin-top: 22px;
  }

  .copyright {
    justify-self: start;
    margin-top: 24px;
  }
}

@media (max-width: 360px) {
  .header-actions {
    gap: 6px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .emotion-card {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* 2026-08-14 brand rhythm recovery. Product photography remains provenance
   locked; these rules only improve crop, hierarchy, and responsive pacing. */
.hero-image {
  filter: saturate(1.04) contrast(1.03) brightness(1.12);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(8, 14, 10, 0.66) 0%, rgba(8, 14, 10, 0.5) 42%, rgba(8, 14, 10, 0.16) 76%, rgba(8, 14, 10, 0.24) 100%);
}

.collection-hold {
  background: transparent;
}

@media (max-width: 640px) {
  .hero {
    min-height: 420px;
    height: min(56svh, 480px);
  }

  .hero-image {
    object-position: center 55%;
    filter: saturate(1.03) contrast(1.02) brightness(1.1);
  }

  .hero-slide:nth-child(2) .hero-image {
    object-position: center 52%;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(8, 14, 10, 0.28) 0%, rgba(8, 14, 10, 0.44) 42%, rgba(8, 14, 10, 0.64) 100%);
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .photo-caption {
    margin-top: 12px;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section h2,
  .design-cta h2 {
    font-size: 32px;
    line-height: 1.12;
  }

  .collection-hold {
    gap: 22px;
    padding: 30px 0;
  }

  .emotion-card {
    min-height: 146px;
    padding: 15px;
  }

  .design-cta {
    padding-block: 64px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 44px;
  }
}
