:root {
  --ink: #07111e;
  --ink-soft: #102234;
  --paper: #f6f1e7;
  --paper-deep: #e9e0d2;
  --white: #ffffff;
  --muted: #726b61;
  --line: rgba(7, 17, 30, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --red: #8f6020;
  --red-bright: #c79a4b;
  --header-height: 78px;
  --page-padding: clamp(24px, 5vw, 82px);
  --display: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
  font-weight: 400;
}

em {
  font-weight: 400;
}

.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: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 400;
  height: var(--header-height);
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 17, 30, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: background 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 30, 0.86);
  backdrop-filter: blur(16px);
}

.wordmark,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
  line-height: 1;
}

.wordmark span,
.footer-brand span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.wordmark small,
.footer-brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.35em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 48px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:not(.nav-enquire)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--red-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .nav-enquire {
  padding: 12px 20px;
  background: var(--red);
  color: var(--white);
  transition: background 180ms ease;
}

.desktop-nav .nav-enquire:hover {
  background: var(--red-bright);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  padding: 8px 0 8px 16px;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.menu-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-icon {
  display: grid;
  width: 28px;
  height: 18px;
  align-content: center;
  gap: 6px;
}

.menu-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 240ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 350;
  display: none;
  height: 100vh;
  height: 100dvh;
  padding: calc(var(--header-height) + 56px) var(--page-padding) 36px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--ink);
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: visibility 300ms, opacity 300ms ease, transform 300ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(38px, 10vw, 64px);
  line-height: 1;
}

.mobile-menu nav span {
  width: 22px;
  color: var(--red-bright);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  overflow: hidden;
  background: var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: clamp(78px, 9vh, 132px) clamp(32px, 5.4vw, 92px) 90px var(--page-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker,
.section-index,
.panel-label {
  margin-bottom: 25px;
  color: var(--red);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.collection-intro h2,
.contact-main h2 {
  margin-bottom: 34px;
  font-family: var(--display);
  font-size: clamp(60px, 7.2vw, 126px);
  letter-spacing: -0.045em;
  line-height: 0.83;
}

.hero h1 em,
.section-heading h2 em,
.collection-intro h2 em,
.contact-main h2 em,
.manifesto-line em {
  color: var(--red);
}

.hero-intro {
  max-width: 540px;
  margin-bottom: 38px;
  color: #3e4650;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button span {
  font-size: 17px;
  font-weight: 300;
}

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

.button-dark:hover {
  background: var(--red);
}

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

.button-light:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.text-link {
  position: relative;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(9, 9, 11, 0.42);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  border-color: var(--red);
  color: var(--red);
}

.text-link-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero-notes {
  position: absolute;
  right: clamp(32px, 5.4vw, 92px);
  bottom: 25px;
  left: var(--page-padding);
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-notes span:not(:last-child)::after {
  margin-left: 18px;
  color: var(--red);
  content: "/";
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: calc(100svh - var(--header-height));
  margin: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.5));
  content: "";
  pointer-events: none;
}

.hero-visual picture,
.brand-visual picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  transition: transform 1.2s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hero-visual:hover img {
  transform: scale(1.018);
}

.hero-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.64);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: calc(46% - 10px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.scroll-cue i {
  position: relative;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.manifesto {
  min-height: 78vh;
  padding: clamp(110px, 14vw, 220px) var(--page-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.manifesto-line {
  max-width: 1280px;
  margin-bottom: 35px;
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 118px);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.manifesto-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marquee {
  width: 100%;
  padding: 19px 0;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.marquee-track i {
  width: 4px;
  height: 4px;
  margin: 0 42px;
  background: var(--white);
  border-radius: 50%;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.brand-section,
.philosophy-section {
  padding: clamp(100px, 11vw, 180px) var(--page-padding);
}

.brand-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  margin-bottom: clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) minmax(0, 1.5fr);
  gap: 30px;
  align-items: start;
}

.section-heading .section-index {
  margin-top: 11px;
}

.section-heading .eyebrow {
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 1050px;
  margin-bottom: 0;
  font-size: clamp(64px, 9vw, 150px);
}

.section-heading-light .section-index {
  color: rgba(255, 255, 255, 0.42);
}

.brand-visual {
  position: relative;
  height: min(70vw, 880px);
  min-height: 460px;
  margin: 0 calc(var(--page-padding) * -1);
  overflow: hidden;
}

.brand-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 30, 0.45), transparent 44%, rgba(7, 17, 30, 0.1));
  content: "";
}

.brand-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-visual figcaption {
  position: absolute;
  bottom: 34px;
  left: var(--page-padding);
  z-index: 2;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.brand-story {
  padding: clamp(70px, 8vw, 125px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(50px, 10vw, 170px);
  border-bottom: 1px solid var(--line-light);
}

.brand-lead {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 70px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.brand-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  color: rgba(255, 255, 255, 0.62);
}

.brand-detail p {
  margin-bottom: 0;
}

.brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-pillars article {
  min-height: 330px;
  padding: 48px clamp(28px, 3vw, 52px) 40px 0;
}

.brand-pillars article:not(:last-child) {
  margin-right: clamp(28px, 3vw, 52px);
  border-right: 1px solid var(--line-light);
}

.brand-pillars span,
.value-number {
  display: block;
  margin-bottom: 100px;
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.brand-pillars h3,
.values-grid h3,
.product-card h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-pillars p {
  max-width: 330px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

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

.philosophy-layout {
  padding-bottom: clamp(80px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}

.philosophy-lead {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 78px);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.philosophy-copy {
  padding-top: 8px;
  color: #545d66;
  font-size: 16px;
}

.philosophy-copy p:last-child {
  margin-bottom: 0;
}

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

.values-grid article {
  min-height: 310px;
  padding: 42px clamp(25px, 3vw, 48px) 40px 0;
}

.values-grid article:not(:last-child) {
  margin-right: clamp(25px, 3vw, 48px);
  border-right: 1px solid var(--line);
}

.values-grid .value-number {
  margin-bottom: 86px;
}

.values-grid p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.collection-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.collection-intro {
  position: sticky;
  top: var(--header-height);
  min-height: calc(100svh - var(--header-height));
  padding: clamp(82px, 8vw, 138px) var(--page-padding) clamp(65px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--red);
}

.collection-intro .section-index,
.collection-intro .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.collection-intro h2 {
  max-width: 760px;
  margin-top: auto;
  color: var(--white);
  font-size: clamp(58px, 6.8vw, 112px);
}

.collection-intro h2 em {
  color: var(--ink);
}

.collection-intro > p:not(.section-index, .eyebrow) {
  max-width: 540px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.collection-counts {
  margin-bottom: 34px;
  display: flex;
  gap: 17px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collection-counts span:not(:last-child)::after {
  margin-left: 17px;
  color: var(--ink);
  content: "/";
}

.product-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  background: var(--ink);
}

.product-card {
  min-width: 0;
  padding: clamp(24px, 2.6vw, 44px);
  border-bottom: 1px solid var(--line-light);
  background: #0c0c0e;
  transition: background 300ms ease;
}

.product-card:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.product-card:hover {
  background: #121215;
}

.product-image {
  aspect-ratio: 4 / 5;
  margin: 0 0 30px;
  overflow: hidden;
  background: #f7f6f2;
}

.product-image-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.product-image-link:focus-visible {
  outline-offset: -4px;
}

.product-shop-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(9, 9, 11, 0.88);
  color: var(--white);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.product-shop-label > span {
  font-size: 14px;
  line-height: 1;
}

.product-image-link:hover .product-shop-label,
.product-image-link:focus-visible .product-shop-label {
  background: var(--red);
  transform: translateY(-2px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.product-copy {
  padding: 2px 2px 12px;
}

.product-meta {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-meta span:first-child {
  color: var(--red-bright);
}

.product-card h3 {
  max-width: 430px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(28px, 2.35vw, 42px);
  line-height: 0.98;
}

.product-card p {
  max-width: 450px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.contact-section {
  min-height: 82vh;
  padding: clamp(100px, 11vw, 180px) var(--page-padding) 55px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
}

.contact-main {
  margin: auto 0;
}

.contact-main h2 {
  margin-bottom: clamp(55px, 7vw, 110px);
  font-size: clamp(76px, 12vw, 190px);
}

.contact-email {
  max-width: 1020px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(22px, 3.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.2;
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-email:hover {
  border-color: var(--red);
  color: var(--red);
}

.contact-email span {
  font-size: 0.7em;
}

.contact-meta {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-meta span:not(:last-child)::after {
  margin-left: 30px;
  color: var(--red);
  content: "/";
}

.site-footer {
  padding: 60px var(--page-padding) 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px 40px;
  background: var(--ink);
  color: var(--white);
}

.footer-brand span {
  font-size: clamp(22px, 2.2vw, 36px);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  transition: color 180ms ease;
}

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

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  letter-spacing: 0.03em;
}

.footer-legal p {
  margin-bottom: 0;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js [data-delay="1"] { transition-delay: 90ms; }
.js [data-delay="2"] { transition-delay: 180ms; }
.js [data-delay="3"] { transition-delay: 270ms; }
.js [data-delay="4"] { transition-delay: 360ms; }

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
  }

  .hero h1 {
    font-size: clamp(56px, 7.4vw, 88px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .scroll-cue {
    display: none;
  }

  .brand-pillars span,
  .values-grid .value-number {
    margin-bottom: 60px;
  }

  .collection-intro {
    padding-right: clamp(35px, 5vw, 70px);
    padding-left: clamp(35px, 5vw, 70px);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    flex-direction: column;
  }

  .hero {
    min-height: 100svh;
    display: block;
    background: var(--ink);
    color: var(--white);
  }

  .hero-copy {
    min-height: calc(100svh - var(--header-height));
    padding: 130px var(--page-padding) 58px;
    justify-content: flex-end;
  }

  .hero-copy::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(7, 17, 30, 0.08) 10%, rgba(7, 17, 30, 0.34) 48%, rgba(7, 17, 30, 0.97) 92%);
    content: "";
  }

  .hero h1 {
    max-width: 700px;
    color: var(--white);
    font-size: clamp(66px, 14vw, 110px);
  }

  .hero h1 em {
    color: #e3bc74;
  }

  .hero-intro {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.78);
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
  }

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

  .hero .text-link {
    border-color: rgba(255, 255, 255, 0.55);
  }

  .hero-notes {
    display: none;
  }

  .hero-visual {
    position: absolute;
    inset: var(--header-height) 0 0;
    height: auto;
    opacity: 0.82;
  }

  .hero-visual figcaption,
  .hero-visual::after {
    display: none;
  }

  .hero-visual img {
    object-position: center 20%;
  }

  .section-heading,
  .brand-story,
  .philosophy-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading .section-index {
    margin-bottom: 45px;
  }

  .brand-story,
  .philosophy-layout {
    gap: 45px;
  }

  .brand-detail {
    max-width: 520px;
  }

  .brand-pillars,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .brand-pillars article,
  .values-grid article {
    min-height: auto;
    padding: 38px 0;
  }

  .brand-pillars article:not(:last-child),
  .values-grid article:not(:last-child) {
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .values-grid article:not(:last-child) {
    border-bottom-color: var(--line);
  }

  .brand-pillars span,
  .values-grid .value-number {
    margin-bottom: 38px;
  }

  .collection-section {
    grid-template-columns: 1fr;
  }

  .collection-intro {
    position: relative;
    top: auto;
    min-height: 720px;
  }

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

@media (max-width: 900px) and (max-height: 650px) {
  .mobile-menu {
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 22px;
  }

  .mobile-menu nav a {
    padding: 10px 0;
    font-size: clamp(32px, 8vw, 46px);
  }

  .mobile-menu-footer {
    margin-top: 30px;
  }
}

@media (max-width: 640px) {
  .wordmark small {
    display: none;
  }

  .hero-copy {
    padding-top: 115px;
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(60px, 18vw, 90px);
  }

  .hero-intro {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    min-height: 52px;
  }

  .manifesto {
    min-height: 68vh;
  }

  .manifesto-line {
    font-size: clamp(44px, 13.2vw, 70px);
  }

  .manifesto-copy {
    max-width: 280px;
    font-size: 9px;
  }

  .section-heading h2 {
    font-size: clamp(58px, 17vw, 92px);
  }

  .brand-visual {
    min-height: 520px;
  }

  .brand-visual img {
    object-position: 67% center;
  }

  .brand-lead,
  .philosophy-lead {
    font-size: 38px;
  }

  .collection-intro {
    min-height: 660px;
  }

  .collection-intro h2 {
    font-size: clamp(56px, 16.5vw, 88px);
  }

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

  .product-card:nth-child(odd) {
    border-right: 0;
  }

  .product-card {
    padding: 24px;
  }

  .product-card h3 {
    font-size: 34px;
  }

  .contact-section {
    min-height: 75vh;
  }

  .contact-main h2 {
    font-size: clamp(68px, 21vw, 110px);
  }

  .contact-email {
    font-size: clamp(19px, 5.4vw, 28px);
  }

  .contact-meta {
    gap: 10px 16px;
  }

  .contact-meta span:not(:last-child)::after {
    margin-left: 16px;
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-legal {
    display: block;
  }

  .mobile-menu-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
