:root {
  --ink: #111111;
  --ink-soft: #282624;
  --paper: #fbfaf7;
  --cream: #f2eee7;
  --mist: #e7e3dc;
  --white: #ffffff;
  --olive: #626b4f;
  --oxblood: #6f2528;
  --gold: #b79a5b;
  --smoke: #69645c;
  --line: rgba(17, 17, 17, 0.11);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 24px 70px rgba(17, 17, 17, 0.11);
  --shadow-tight: 0 14px 36px rgba(17, 17, 17, 0.10);
  --radius: 8px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --hero-image: url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1600&q=85');
  --atelier-image: url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1400&q=85');
  --rack-image: url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?auto=format&fit=crop&w=1400&q=85');
  --details-image: url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?auto=format&fit=crop&w=1400&q=85');
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 8vw, 118px) 0;
}

.section-compact {
  padding: clamp(44px, 6vw, 82px) 0;
}

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

.section-muted {
  background: var(--cream);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-label,
.eyebrow,
.product-badge,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--oxblood);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-dark .section-label,
.section-dark .eyebrow,
.section-dark .mini-label {
  color: var(--gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  color: inherit;
  line-height: 1.05;
}

h1,
.hero-title {
  max-width: 900px;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 850;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  margin: 0;
}

.hero-text,
.section-header p,
.lead,
.page-copy,
.product-card p,
.collection-card p,
.feature-card p,
.policy-block p,
.accordion-text {
  color: var(--smoke);
  font-size: 1rem;
}

.section-dark .hero-text,
.section-dark .section-header p,
.section-dark .lead,
.section-dark .page-copy {
  color: rgba(255, 255, 255, 0.72);
}

.hero-text,
.lead {
  max-width: 650px;
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.92rem 1.35rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.16);
}

.btn-primary:hover {
  background: var(--oxblood);
}

.btn-secondary {
  color: var(--white);
  background: var(--oxblood);
}

.btn-secondary:hover {
  background: #541b1e;
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

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

.btn-accent {
  color: var(--ink);
  background: var(--gold);
}

.btn-xl {
  min-height: 54px;
  padding: 1.08rem 1.7rem;
}

.btn-lg {
  min-height: 50px;
  padding: 1rem 1.55rem;
}

.btn-sm {
  min-height: 38px;
  padding: 0.75rem 1.1rem;
  font-size: 0.9rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.navbar-main {
  padding: 14px 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo,
.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar-logo-mark,
.footer-brand-mark,
.preloader-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 750;
}

.cart-menu-item {
  display: none;
}

.cart-menu-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-open {
  position: relative;
}

.cart-count {
  display: inline-grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  padding: 0 6px;
  color: var(--white);
  background: var(--oxblood);
  font-size: 0.72rem;
  line-height: 1;
}

.cart-count[hidden] {
  display: none;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle-inner {
  display: grid;
  gap: 5px;
}

.hamburger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-toggle[aria-expanded='true'] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded='true'] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded='true'] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-overlay {
  position: fixed;
  inset: 73px 0 0;
  z-index: -1;
  background: rgba(17, 17, 17, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.navbar-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 73px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.landing-hero {
  padding: clamp(54px, 8vw, 100px) 0 clamp(42px, 7vw, 88px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
}

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

.hero-copy .hero-text {
  margin-top: 22px;
}

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

.hero-visual {
  position: relative;
}

.hero-panel {
  position: relative;
  min-height: clamp(460px, 62vh, 690px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--hero-image) center/cover no-repeat;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.42));
}

.hero-panel-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(17, 17, 17, 0.58);
  backdrop-filter: blur(18px);
}

.hero-panel-copy span {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-panel-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-content {
  max-width: 860px;
}

.hero-content p {
  max-width: 660px;
  margin-top: 20px;
  color: var(--smoke);
  font-size: 1.12rem;
}

.split-hero .hero-panel {
  background-image: var(--atelier-image);
}

.products-hero .hero-panel {
  background-image: var(--rack-image);
}

.contact-hero .hero-panel {
  background-image: var(--details-image);
}

.cards-grid,
.collections-grid,
.features-grid,
.products-grid,
.contact-grid,
.value-grid {
  display: grid;
  gap: 18px;
}

.cards-grid,
.collections-grid,
.features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.contact-grid,
.value-grid,
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.product-card,
.collection-card,
.feature-card,
.form-card,
.policy-block,
.accordion-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
}

.product-card,
.collection-card,
.feature-card,
.contact-card {
  padding: clamp(22px, 3vw, 34px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover,
.collection-card:hover,
.feature-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 37, 40, 0.26);
  box-shadow: var(--shadow-tight);
}

.product-card h3,
.collection-card h3,
.feature-card h3,
.contact-card h3 {
  margin-bottom: 12px;
}

.product-card.accent,
.collection-card.accent,
.feature-card.accent,
.contact-card.accent {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.product-card.accent p,
.collection-card.accent p,
.feature-card.accent p,
.contact-card.accent p {
  color: rgba(255, 255, 255, 0.72);
}

.collection-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.72)), var(--atelier-image) center/cover no-repeat;
}

.collection-card:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.68)), var(--rack-image);
}

.collection-card:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.68)), var(--details-image);
}

.collection-card p {
  color: rgba(255, 255, 255, 0.76);
}

.product-image,
.story-card {
  min-height: 260px;
  margin: -1px -1px 22px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--rack-image) center/cover no-repeat;
}

.products-grid .product-card {
  padding: 0 0 24px;
  overflow: hidden;
}

.products-grid .product-card h3,
.products-grid .product-card p,
.products-grid .product-card .product-badge {
  margin-right: 22px;
  margin-left: 22px;
}

.products-grid .product-card:nth-child(2) .product-image {
  background-image: url('https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?auto=format&fit=crop&w=1000&q=85');
}

.products-grid .product-card:nth-child(3) .product-image {
  background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1000&q=85');
}

.products-grid .product-card:nth-child(4) .product-image {
  background-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=1000&q=85');
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 380px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

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

.shop-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.shop-product:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 37, 40, 0.26);
  box-shadow: var(--shadow-tight);
}

.shop-product:nth-child(2) .shop-product-image {
  background-image: url('https://images.unsplash.com/photo-1503341455253-b2e723bb3dbb?auto=format&fit=crop&w=1000&q=85');
}

.shop-product:nth-child(3) .shop-product-image {
  background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1000&q=85');
}

.shop-product:nth-child(4) .shop-product-image {
  background-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=1000&q=85');
}

.shop-product:nth-child(5) .shop-product-image {
  background-image: url('https://images.unsplash.com/photo-1515372039744-b8f02a3ae446?auto=format&fit=crop&w=1000&q=85');
}

.shop-product:nth-child(6) .shop-product-image {
  background-image: url('https://images.unsplash.com/photo-1590874103328-eac38a683ce7?auto=format&fit=crop&w=1000&q=85');
}

.shop-product[hidden] {
  display: none;
}

.shop-product-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.shop-product-body .product-badge {
  margin-bottom: 0;
}

.shop-product-body p {
  color: var(--smoke);
}

.shop-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.shop-size {
  min-width: 86px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.68rem 0.82rem;
  color: var(--ink);
  background: var(--paper);
}

.shop-filter.active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.cart-panel {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 32px);
  background: var(--cream);
  box-shadow: var(--shadow-tight);
}

.cart-panel h2 {
  margin-bottom: 20px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-empty,
.cart-summary p {
  color: var(--smoke);
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.cart-item div:first-child {
  display: grid;
  gap: 3px;
}

.cart-item span {
  color: var(--smoke);
  font-size: 0.9rem;
}

.cart-stepper {
  display: inline-grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  text-align: center;
}

.cart-stepper button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.cart-summary {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cart-modal-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
}

.cart-modal-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(460px, calc(100% - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: translateX(24px);
  transition: transform 240ms ease;
}

.cart-modal-open .cart-modal-panel {
  transform: translateX(0);
}

.cart-modal-header,
.cart-modal-footer {
  padding: 24px;
}

.cart-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-modal-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cart-modal-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.cart-modal-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px 24px;
}

.cart-modal-footer {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.cart-modal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 4px;
}

.cart-modal-total span {
  color: var(--smoke);
}

.story-copy {
  position: sticky;
  top: 110px;
}

.story-copy p + p {
  margin-top: 18px;
}

.story-gallery {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 18px;
  align-items: end;
}

.story-card {
  min-height: 430px;
  margin: 0;
  border-radius: var(--radius);
  background-image: var(--atelier-image);
  box-shadow: var(--shadow-tight);
}

.story-card.accent {
  min-height: 520px;
  background-image: var(--details-image);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
}

.ticker span {
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-section {
  color: var(--white);
  background: var(--ink);
  padding: clamp(54px, 8vw, 92px) 0;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.cta-panel p,
.cta-section p {
  max-width: 640px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.form-card,
.policy-block {
  padding: clamp(24px, 4vw, 42px);
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-field label {
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--oxblood);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(111, 37, 40, 0.10);
}

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

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-card a,
.policy-block a {
  color: var(--oxblood);
  font-weight: 800;
}

.meta-text {
  margin-top: 12px;
  color: var(--smoke);
}

.policy-block {
  margin-bottom: 18px;
}

.policy-block h3 {
  margin-bottom: 14px;
}

.policy-block p + p,
.policy-block p + ul,
.policy-block ul + p {
  margin-top: 14px;
}

.policy-links,
.value-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--smoke);
}

.dpa-page {
  position: relative;
}

.dpa-sidebar {
  display: none;
}

.accordion {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.faq-column {
  display: grid;
  gap: 16px;
  align-content: start;
}

.faq-column h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.accordion-item {
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  border: 0;
  padding: 20px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}

.accordion-icon {
  display: inline-grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: var(--cream);
  transition: transform 220ms ease, background-color 220ms ease;
}

.accordion-icon::before {
  content: '+';
  font-size: 1.2rem;
  line-height: 1;
}

.accordion-icon i {
  display: none;
}

.accordion-item.open .accordion-icon {
  background: var(--ink);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.accordion-item.open .accordion-content {
  max-height: 340px;
}

.accordion-text {
  padding: 0 20px 20px;
}

.footer {
  padding: 64px 0 28px;
  color: var(--white);
  background: #0f0f0f;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-cta p,
.footer-column p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-brand-link {
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.animated-text {
  opacity: 0;
  transform: translateY(22px);
}

.animated-text.text-reveal {
  animation: textRise 850ms cubic-bezier(.2, .75, .2, 1) forwards;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms cubic-bezier(.2, .75, .2, 1), transform 780ms cubic-bezier(.2, .75, .2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.cards-grid > *,
.collections-grid > *,
.products-grid > *,
.features-grid > *,
.faq-column > * {
  transition-delay: calc(var(--stagger, 0) * 70ms);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 420ms cubic-bezier(.72, 0, .18, 1), opacity 420ms ease;
}

.page-transition-active {
  opacity: 1;
  transform: translateY(0);
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  transition: opacity 520ms ease, visibility 520ms ease, transform 520ms ease;
}

.site-preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px);
}

.preloader-brand {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.preloader-mark {
  width: 66px;
  height: 66px;
  color: var(--ink);
  background: var(--white);
  animation: preloaderMark 1.15s cubic-bezier(.2, .75, .2, 1) infinite alternate;
}

.preloader-text {
  position: relative;
  overflow: hidden;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.preloader-text::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent);
  animation: preloaderSweep 1.2s ease-in-out infinite;
}

@keyframes textRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes preloaderMark {
  from {
    transform: translateY(0) scale(0.96);
  }
  to {
    transform: translateY(-8px) scale(1);
  }
}

@keyframes preloaderSweep {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .story-grid,
  .contact-grid,
  .value-grid,
  .cta-panel,
  .footer-cta {
    grid-template-columns: 1fr;
  }

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

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .story-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  .navbar-menu {
    position: fixed;
    inset: 73px 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .navbar-menu-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .navbar-menu li {
    border-bottom: 1px solid var(--line);
  }

  .navbar-menu li:last-child {
    border-bottom: 0;
  }

  .cart-menu-item {
    display: block;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 15px 10px;
    text-align: left;
  }

  .nav-link::after {
    display: none;
  }

  .navbar-actions {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

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

  .cards-grid,
  .collections-grid,
  .features-grid,
  .faq-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .landing-hero {
    padding-top: 44px;
  }

  .hero {
    min-height: auto;
  }

  h1,
  .hero-title {
    font-size: clamp(2.65rem, 15vw, 4.6rem);
  }

  .hero-panel {
    min-height: 420px;
  }

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

  .shop-products {
    grid-template-columns: 1fr;
  }

  .shop-product-meta,
  .cart-item {
    grid-template-columns: 1fr;
  }

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

  .story-card,
  .story-card.accent {
    min-height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
