:root {
  --black: #120b08;
  --white: #ffffff;
  --paper: #f4f5f6;
  --ink: #111111;
  --muted: #4a4a4a;
  --font-sans: Helvetica, Arial, sans-serif;
  --nav-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

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

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  min-height: var(--nav-height);
  padding: 44px clamp(24px, 17vw, 260px) 0;
  color: var(--white);
  transition: background-color 180ms ease, color 180ms ease, padding 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header:has(.collections-menu[open]) {
  min-height: 68px;
  padding-top: 21px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.collections-menu,
.about-nav {
  align-self: start;
  justify-self: start;
}

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

.header-actions {
  align-self: start;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 18px);
  min-height: 22px;
  white-space: nowrap;
}

.header-actions .about-nav {
  align-self: center;
  justify-self: auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  height: 28px;
  padding: 2px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
}

.language-switcher button {
  display: inline-grid;
  place-items: center;
  min-width: 29px;
  height: 22px;
  padding: 0 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.language-switcher > span {
  opacity: 0.58;
  font-size: 0.58rem;
}

.language-switcher button[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.site-header.is-scrolled .language-switcher button[aria-pressed="true"],
.site-header:has(.collections-menu[open]) .language-switcher button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.language-switcher button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: -2px;
}

.collections-menu {
  position: relative;
}

.collections-menu summary,
.about-nav {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  list-style: none;
  cursor: pointer;
}

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

.collections-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: grid;
  min-width: 188px;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.15);
}

.collections-dropdown a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}

.collections-dropdown a:hover,
.collections-dropdown a:focus-visible {
  background: #eef0f1;
  outline: 0;
}

.wordmark,
.footer-wordmark {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: inherit;
  line-height: 1;
  text-align: center;
}

.wordmark {
  position: relative;
  width: clamp(170px, 16vw, 268px);
  aspect-ratio: 10 / 3;
  background: url("assets/atelier-wordmark-white.png") center / contain no-repeat;
}

.wordmark span,
.footer-wordmark span {
  font-size: clamp(2.02rem, 3.25vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.24em;
}

.wordmark span {
  font-family: Georgia, "Times New Roman", serif;
}

.wordmark small,
.footer-wordmark small {
  font-size: clamp(0.86rem, 1.28vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.32em;
}

.wordmark span,
.wordmark small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header.is-scrolled .wordmark,
.site-header:has(.collections-menu[open]) .wordmark {
  width: 172px;
  background-image: url("assets/atelier-wordmark-black.png");
}

.site-header.is-scrolled .wordmark span,
.site-header.is-scrolled .wordmark small,
.site-header:has(.collections-menu[open]) .wordmark span,
.site-header:has(.collections-menu[open]) .wordmark small {
  font-size: 0;
}

.site-header.is-scrolled .wordmark::before,
.site-header:has(.collections-menu[open]) .wordmark::before {
  content: none;
}

.image-panel {
  position: relative;
  overflow: hidden;
  background: #dedbd5;
}

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

.image-panel picture {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero {
  height: 100svh;
  min-height: 560px;
}

.home-hero img {
  object-position: 50% 50%;
}

.panel-cta,
.split-cta {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 8.2%;
  display: grid;
  justify-items: center;
  gap: 3px;
  color: var(--white);
  font-size: clamp(0.78rem, 0.9vw, 0.98rem);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.68), 0 0 18px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
}

.panel-cta,
.split-cta,
.about-nav,
.collections-menu summary,
.language-switcher button,
.province-nav a,
.about-actions a,
.empty-collection-copy a {
  touch-action: manipulation;
}

.panel-cta strong,
.split-cta strong {
  font-weight: 400;
}

.panel-cta span,
.split-cta span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.locator-cta {
  top: auto;
  width: max-content;
  bottom: 8.8%;
  font-size: clamp(0.84rem, 1.12vw, 1rem);
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  transform: translateX(-50%);
}

.home-split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 680px;
}

.split-tile {
  min-height: 680px;
}

.split-tile:first-child img {
  object-position: 50% 38%;
}

.split-tile:nth-child(2) img {
  object-position: 50% 28%;
}

.split-cta {
  bottom: 8.8%;
}

.locator-band {
  height: auto;
}

.locator-band img {
  height: auto;
  object-fit: contain;
  object-position: 50% 50%;
}

.brand-footer {
  display: grid;
  justify-items: center;
  grid-template-rows: auto auto 1fr auto;
  width: 100%;
  min-height: 402px;
  padding: 62px 24px 34px;
  background: #1a0f0b;
  color: var(--white);
  text-align: center;
}

.footer-wordmark {
  position: relative;
  width: clamp(240px, 18vw, 360px);
  aspect-ratio: 10 / 3;
  margin-bottom: 54px;
  background: url("assets/atelier-wordmark-white.png") center / contain no-repeat;
}

.footer-wordmark span,
.footer-wordmark small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.brand-footer address {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: 9px;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.1;
}

.brand-footer address a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.brand-footer address strong {
  margin-bottom: 10px;
  font-weight: 400;
}

.brand-footer p {
  align-self: end;
  margin: 0;
  font-size: 0.86rem;
  font-weight: 400;
}

.collection-anchor {
  scroll-margin-top: 68px;
}

.collection-cover {
  height: 360px;
  margin-top: 28px;
}

.collection-page .collection-cover {
  height: min(62svh, 620px);
  min-height: 360px;
  margin-top: 0;
}

.collection-cover img {
  object-position: 50% 34%;
}

.collection-copy {
  display: grid;
  justify-items: center;
  gap: 34px;
  padding: 76px 24px 142px;
  background: var(--white);
  text-align: center;
}

.collection-copy h1,
.collection-copy h2,
.about-copy h2 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.collection-copy p,
.about-copy p {
  max-width: 720px;
  margin: 0;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.23;
}

.collection-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 120px 28px;
  padding: 0 0 112px;
  background: var(--white);
}

.collection-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.collection-gallery img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.collection-gallery-wide {
  grid-column: span 2;
}

.collection-gallery-wide img {
  aspect-ratio: 2200 / 1251;
}

.empty-collection {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 136px 24px 86px;
  background: #efebe5;
  text-align: center;
}

.empty-collection-copy {
  display: grid;
  justify-items: center;
  gap: 24px;
  max-width: 620px;
}

.empty-collection-copy p,
.empty-collection-copy h1,
.empty-collection-copy span {
  margin: 0;
}

.empty-collection-copy > p {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.empty-collection-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.empty-collection-copy > span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  text-transform: none;
}

.empty-collection-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 500;
  transition: background-color 160ms ease, color 160ms ease;
}

.empty-collection-copy a:hover,
.empty-collection-copy a:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: 0;
}

.style-label {
  position: absolute;
  right: 50%;
  bottom: clamp(14px, 2vw, 24px);
  z-index: 1;
  width: max-content;
  max-width: calc(100% - 28px);
  padding: 8px 12px 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(18, 11, 8, 0.64);
  color: var(--white);
  font-size: clamp(0.62rem, 0.72vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
  transform: translateX(50%);
  backdrop-filter: blur(8px);
}

.f25-section {
  background: var(--white);
}

.compact-copy {
  padding-top: 80px;
  padding-bottom: 80px;
}

.f25-gallery {
  padding-bottom: 138px;
}

.about-section {
  scroll-margin-top: 68px;
  padding: 0 18px 36px;
}

.about-copy {
  display: grid;
  justify-items: center;
  gap: 26px;
  margin: 0 auto 24px;
  padding: 70px 24px 72px;
  background: var(--white);
  text-align: center;
}

.about-copy p {
  max-width: 480px;
}

.about-image {
  max-width: 100%;
  height: min(76svh, 720px);
  margin: 0 auto;
}

.about-image img {
  object-position: 50% 50%;
}

.locator-page {
  min-height: 100svh;
  background: var(--white);
  font-family: var(--font-sans);
}

.locator-header {
  position: sticky;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.locator-main {
  padding: 118px 18px 82px;
  background: var(--white);
}

.locator-intro {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 28px 68px;
  background: var(--white);
  text-align: center;
}

.locator-intro p,
.locator-intro h1,
.locator-intro span {
  margin: 0;
}

.locator-intro p,
.locator-intro span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.locator-intro h1 {
  max-width: 980px;
  font-size: clamp(1.65rem, 3.6vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}

.province-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 18px;
  background: var(--white);
}

.province-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #dfdfdf;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.province-nav a:hover,
.province-nav a:focus-visible {
  background: var(--black);
  color: var(--white);
  outline: 0;
}

.province-nav strong {
  color: var(--muted);
  font-size: 0.68rem;
}

.province-nav a:hover strong,
.province-nav a:focus-visible strong {
  color: inherit;
}

.store-directory {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.province-section {
  scroll-margin-top: 88px;
  background: var(--white);
}

.province-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 34px 26px;
  border-bottom: 1px solid #e8e8e8;
}

.province-heading h2 {
  margin: 0;
  font-size: clamp(1.1rem, 1.9vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.province-heading span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.province-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--white);
}

.store-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  background: var(--white);
  color: var(--ink);
}

.store-card span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.store-card strong {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.store-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.45;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-left: 34px;
    padding-right: 34px;
  }

  .home-split {
    min-height: 600px;
  }

  .split-tile {
    min-height: 600px;
  }

  .collection-gallery {
    gap: 76px 20px;
  }

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

@media (max-width: 720px) {
  :root {
    --nav-height: 116px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-rows: 48px 48px;
    align-items: center;
    gap: 2px 12px;
    min-height: var(--nav-height);
    padding: 10px 16px 8px;
  }

  .site-header.is-scrolled,
  .site-header:has(.collections-menu[open]) {
    min-height: var(--nav-height);
    padding: 10px 16px 8px;
  }

  .collections-menu {
    grid-column: 1;
    grid-row: 2;
  }

  .wordmark,
  .site-header.is-scrolled .wordmark,
  .site-header:has(.collections-menu[open]) .wordmark {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    width: 136px;
    min-height: 44px;
    aspect-ratio: auto;
    background-size: 124px auto;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 2;
    gap: 8px;
    min-height: 48px;
  }

  .collections-menu summary,
  .about-nav {
    justify-content: center;
    min-height: 44px;
    padding: 0 4px;
    font-size: 0.68rem;
    font-weight: 650;
  }

  .language-switcher {
    height: 48px;
    padding: 2px;
  }

  .language-switcher button {
    min-width: 44px;
    height: 42px;
    padding: 0 7px;
    font-size: 0.62rem;
  }

  .collections-dropdown {
    top: calc(100% + 4px);
    min-width: min(220px, calc(100vw - 32px));
  }

  .collections-dropdown a {
    min-height: 46px;
    padding: 10px 16px;
    font-size: 0.72rem;
  }

  .home-hero {
    height: 125vw;
    min-height: 400px;
    max-height: 620px;
  }

  .home-hero img {
    object-position: 50% 50%;
  }

  .home-split {
    grid-template-columns: 1fr;
  }

  .split-tile,
  .home-split {
    min-height: 0;
  }

  .split-tile {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .split-cta {
    bottom: calc(50% + 16px);
  }

  .panel-cta,
  .split-cta {
    min-height: 46px;
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .locator-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(18, 11, 8, 0.34);
    font-size: clamp(0.8rem, 3.8vw, 1.05rem);
    backdrop-filter: blur(8px);
  }

  .brand-footer {
    min-height: 380px;
    padding: 52px 20px 28px;
  }

  .footer-wordmark {
    width: min(240px, 76vw);
    margin-bottom: 34px;
  }

  .brand-footer address {
    gap: 2px;
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .brand-footer address strong {
    margin-bottom: 8px;
  }

  .brand-footer address a[href^="mailto:"] {
    font-size: clamp(0.68rem, 3.15vw, 0.8rem);
    text-transform: none;
  }

  .brand-footer p {
    font-size: 0.76rem;
  }

  .collection-cover {
    height: auto;
    aspect-ratio: 2200 / 1250;
  }

  .collection-page:not(.empty-collection-page) .site-header {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    backdrop-filter: blur(14px);
  }

  .collection-page:not(.empty-collection-page) .wordmark {
    background-image: url("assets/atelier-wordmark-black.png");
  }

  .collection-page:not(.empty-collection-page) .collection-cover {
    height: auto;
    min-height: 0;
    margin-top: var(--nav-height);
  }

  .collection-cover img {
    object-position: 50% 50%;
  }

  .collection-copy {
    gap: 26px;
    padding: 58px 22px 86px;
  }

  .collection-copy h1,
  .collection-copy h2 {
    font-size: 1.16rem;
  }

  .collection-copy p {
    max-width: 42rem;
    font-size: 0.82rem;
    line-height: 1.48;
    text-transform: none;
  }

  .collection-gallery {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-bottom: 86px;
  }

  .collection-gallery-wide {
    grid-column: auto;
  }

  .collection-gallery-wide img {
    aspect-ratio: 2200 / 1251;
  }

  .about-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-image {
    height: 62svh;
  }

  .locator-main {
    padding: 32px 10px 64px;
  }

  .locator-intro {
    padding: 48px 16px 44px;
  }

  .locator-intro h1 {
    font-size: clamp(1.65rem, 7.4vw, 2.35rem);
  }

  .province-heading {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px 22px;
  }

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

  .province-nav {
    gap: 8px;
    padding: 14px 8px;
  }

  .province-nav a {
    min-height: 48px;
    padding: 0 15px;
    font-size: 0.72rem;
  }

  .store-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .store-card address {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .empty-collection-copy a {
    min-height: 46px;
  }
}

@media (max-width: 460px) {
  .site-header {
    gap: 2px 8px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .site-header.is-scrolled,
  .site-header:has(.collections-menu[open]) {
    padding-right: 12px;
    padding-left: 12px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .about-nav {
    font-size: 0.65rem;
  }

  .language-switcher {
    height: 48px;
    padding: 1px;
  }

  .language-switcher button {
    min-width: 44px;
    height: 44px;
    padding: 0 5px;
    font-size: 0.6rem;
  }

  .language-switcher > span {
    font-size: 0.56rem;
  }

  .collections-dropdown {
    min-width: min(210px, calc(100vw - 24px));
  }

  .collections-dropdown a {
    font-size: 0.7rem;
  }

  .wordmark,
  .site-header.is-scrolled .wordmark,
  .site-header:has(.collections-menu[open]) .wordmark {
    width: 128px;
    min-height: 44px;
    background-size: 118px auto;
  }

  .panel-cta,
  .split-cta {
    width: min(260px, calc(100vw - 40px));
    font-size: 0.8rem;
  }
}

/* About page */
.about-page {
  background: var(--white);
}

.about-nav[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-hero {
  position: relative;
  isolation: isolate;
  height: min(92svh, 960px);
  min-height: 640px;
  overflow: hidden;
  background: #a49a90;
}

.about-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 8, 6, 0.08) 35%, rgba(12, 8, 6, 0.72) 100%);
  content: "";
}

.about-hero > img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.about-hero-copy {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 7vw, 110px);
  bottom: clamp(48px, 8vw, 104px);
  left: clamp(24px, 7vw, 110px);
  color: var(--white);
}

.about-hero-copy p,
.about-hero-copy h1 {
  margin: 0;
}

.about-hero-copy p,
.about-kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

.about-hero-copy h1 {
  max-width: 880px;
  font-size: clamp(2.35rem, 5.1vw, 4.8rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.025em;
  text-transform: none;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(36px, 7vw, 110px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(96px, 12vw, 168px) clamp(24px, 5vw, 72px);
}

.about-kicker {
  margin: 0;
}

.about-intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
  gap: clamp(40px, 6vw, 92px);
}

.about-intro-copy h2,
.about-editorial-note h2,
.about-principles-heading h2,
.about-principles-grid h3,
.about-closing-copy h2 {
  margin: 0;
  font-weight: 500;
  text-transform: none;
}

.about-intro-copy h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.about-intro-body {
  display: grid;
  gap: 22px;
}

.about-intro-body p,
.about-editorial-note > p:last-child,
.about-principles-grid p,
.about-closing-copy > p:not(.about-kicker) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  text-transform: none;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: minmax(430px, 1fr) minmax(390px, 0.88fr);
  gap: 18px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 18px 18px;
}

.about-editorial figure {
  margin: 0;
  overflow: hidden;
  background: #c8c0b7;
}

.about-editorial figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.about-editorial figure:hover img {
  transform: scale(1.015);
}

.about-editorial-primary {
  grid-row: 1 / span 2;
  min-height: 900px;
}

.about-editorial-primary img {
  object-position: 50% 42%;
}

.about-editorial-secondary img {
  object-position: 50% 30%;
}

.about-editorial-note {
  display: grid;
  align-content: center;
  gap: 30px;
  padding: clamp(42px, 6vw, 90px);
  background: var(--black);
  color: var(--white);
}

.about-editorial-note h2 {
  max-width: 610px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
}

.about-editorial-note > p:last-child {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.74);
}

.about-principles {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(110px, 13vw, 180px) clamp(24px, 5vw, 72px);
}

.about-principles-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(36px, 7vw, 110px);
  margin-bottom: clamp(64px, 8vw, 108px);
}

.about-principles-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
}

.about-principles-grid article {
  display: grid;
  align-content: start;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #c9c5c0;
}

.about-principles-grid span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.about-principles-grid h3 {
  font-size: 1.3rem;
}

.about-principles-grid p {
  max-width: 330px;
  color: var(--muted);
}

.about-closing {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  min-height: 720px;
  margin: 0 18px 18px;
}

.about-closing-image {
  min-height: 720px;
  overflow: hidden;
  background: #a8adb0;
}

.about-closing-image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.about-closing-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 30px;
  padding: clamp(54px, 8vw, 120px);
  background: #ece8e2;
  color: var(--ink);
}

.about-closing-copy h2 {
  max-width: 540px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1;
}

.about-closing-copy > p:not(.about-kicker) {
  max-width: 460px;
  color: var(--muted);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.about-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease;
}

.about-actions a:first-child,
.about-actions a:hover,
.about-actions a:focus-visible {
  background: var(--ink);
  color: var(--white);
  outline: 0;
}

.about-actions a:first-child:hover,
.about-actions a:first-child:focus-visible {
  background: transparent;
  color: var(--ink);
}

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

  .about-intro-body {
    max-width: 590px;
  }

  .about-editorial {
    grid-template-rows: minmax(380px, 1fr) minmax(360px, 0.9fr);
  }

  .about-editorial-primary {
    min-height: 780px;
  }

  .about-closing,
  .about-closing-image {
    min-height: 620px;
  }
}

@media (max-width: 720px) {
  .about-hero {
    height: 82svh;
    min-height: 560px;
  }

  .about-hero > img {
    object-position: 54% 50%;
  }

  .about-hero-copy {
    right: 20px;
    bottom: 48px;
    left: 20px;
  }

  .about-hero-copy h1 {
    max-width: 540px;
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

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

  .about-intro {
    gap: 42px;
    padding: 82px 20px 92px;
  }

  .about-intro-copy {
    gap: 38px;
  }

  .about-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    padding: 0 10px 10px;
  }

  .about-editorial-primary {
    grid-row: auto;
    min-height: 72svh;
  }

  .about-editorial-secondary {
    min-height: 62svh;
  }

  .about-editorial-note {
    min-height: 430px;
    padding: 48px 28px;
  }

  .about-principles {
    padding: 92px 20px 104px;
  }

  .about-principles-heading {
    gap: 38px;
    margin-bottom: 64px;
  }

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

  .about-principles-grid p {
    max-width: 470px;
  }

  .about-closing {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 0 10px 10px;
  }

  .about-closing-image {
    min-height: 68svh;
  }

  .about-closing-copy {
    min-height: 480px;
    padding: 58px 28px;
  }
}

@media (max-width: 460px) {
  .about-hero-copy h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .about-intro-copy h2,
  .about-principles-heading h2,
  .about-closing-copy h2 {
    font-size: 2rem;
  }

  .about-editorial-note h2 {
    font-size: 1.8rem;
  }

  .about-actions {
    width: 100%;
  }

  .about-actions a {
    width: 100%;
  }
}

/* Simplified About page */
.about-minimal {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 100svh;
  padding-top: 68px;
  background: #efebe5;
}

.about-minimal-visual {
  min-height: calc(100svh - 68px);
  margin: 0;
  overflow: hidden;
  background: #b7aaa0;
}

.about-minimal-visual img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.about-minimal-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: clamp(26px, 3vw, 40px);
  padding: clamp(58px, 8vw, 120px);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px 7px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-badge > span:first-child {
  font-size: 0.72rem;
  line-height: 1;
}

.about-minimal-copy h1 {
  max-width: 580px;
  margin: 0;
  font-size: clamp(2.15rem, 3.9vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
}

.about-minimal-text {
  display: grid;
  gap: 16px;
  max-width: 490px;
}

.about-minimal-text p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
  text-transform: none;
}

.about-location {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-location > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8d3028;
  box-shadow: 0 0 0 4px rgba(141, 48, 40, 0.1);
}

.about-minimal .about-actions {
  margin-top: 2px;
}

.about-page .brand-footer {
  min-height: 340px;
  padding-top: 48px;
  padding-bottom: 28px;
}

.about-page .footer-wordmark {
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .about-minimal {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  }

  .about-minimal-copy {
    padding: 52px 40px;
  }
}

@media (max-width: 720px) {
  .about-minimal {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: var(--nav-height);
  }

  .about-minimal-visual {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .about-minimal-visual img {
    object-position: 50% 50%;
  }

  .about-minimal-copy {
    gap: 28px;
    padding: 66px 24px 78px;
  }

  .about-minimal-copy h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .about-page .brand-footer {
    min-height: 320px;
  }
}

@media (max-width: 460px) {
  .about-minimal-copy h1 {
    font-size: 2rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .collections-menu summary,
  .about-nav {
    min-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .language-switcher {
    height: 48px;
    padding: 1px;
  }

  .language-switcher button {
    min-width: 44px;
    height: 44px;
  }

  .panel-cta,
  .split-cta,
  .locator-cta {
    min-height: 46px;
    padding: 8px 16px;
  }

  .province-nav a {
    min-height: 48px;
  }

  .empty-collection-copy a {
    min-height: 46px;
  }
}
