:root {
  --bg: #f1ede6;
  --surface: #fffdf9;
  --surface-alt: #ece3d7;
  --text: #101010;
  --heading: #0f0f0f;
  --muted: #5f5a55;
  --accent: #b59d87;
  --accent-soft: #e7ddd1;
  --border: #ddd3c7;
  --shadow: 0 24px 48px rgba(15, 15, 15, 0.1);
  --shadow-soft: 0 16px 34px rgba(15, 15, 15, 0.07);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1280px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(181, 157, 135, 0.14), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--heading);
  line-height: 1.1;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--space-8) 0;
}

.section-tight {
  padding: var(--space-7) 0;
}

.surface {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(250, 246, 241, 0.98) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
}

.section-heading {
  font-size: clamp(2rem, 3vw, 3.6rem);
  max-width: 12ch;
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 44rem;
  color: var(--muted);
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: var(--space-6);
}

.link-inline {
  color: var(--heading);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(241, 237, 230, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.08);
  background: rgba(255, 253, 249, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  justify-self: start;
  min-width: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111111 0%, #3b322b 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  box-shadow: 0 12px 20px rgba(15, 15, 15, 0.16);
}

.logo-type {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1;
}

.logo-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--heading);
}

.logo-sub {
  margin-top: 0.18rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a,
.mobile-panel a {
  position: relative;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.is-active,
.mobile-panel a.is-active {
  color: var(--heading);
}

.main-nav a.is-active::after,
.mobile-panel a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

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

.utility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 253, 249, 0.92);
  color: var(--heading);
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.utility-icon svg {
  width: 18px;
  height: 18px;
}

.utility-icon:hover {
  border-color: var(--heading);
  transform: translateY(-1px);
  background: #fff;
}

.utility-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--heading);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-actions,
.mobile-panel {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(85vh - var(--header-height));
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.86) 0%, rgba(15, 15, 15, 0.46) 42%, rgba(15, 15, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.05) 0%, rgba(15, 15, 15, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  width: min(100%, 44rem);
}

.hero .eyebrow,
.hero p,
.hero .trust-labels li {
  color: rgba(255, 255, 255, 0.84);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  letter-spacing: -0.05em;
  margin: 1rem 0 1.25rem;
}

.hero p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 40rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 6px;
  border: 1px solid var(--heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--heading);
  color: #fff;
  border-color: var(--heading);
}

.btn-primary:hover {
  background: #272727;
  border-color: #272727;
}

.btn-secondary {
  background: transparent;
  color: var(--heading);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
  border-color: #fff;
  color: #fff;
}

.trust-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust-labels li {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.category-band {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

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

.category-card,
.zone-card,
.collection-card,
.product-card,
.arrival-card,
.story-card,
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.category-card {
  min-height: 255px;
  position: relative;
  aspect-ratio: 4 / 5;
}

.category-card img,
.zone-card img,
.product-card img,
.arrival-card img,
.story-visual img,
.about-visuals img,
.contact-aside img,
.collection-hero img,
.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::before,
.zone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0.05) 20%, rgba(21, 21, 21, 0.72) 100%);
}

.category-content,
.zone-content {
  position: absolute;
  inset: auto 1.25rem 1.25rem;
  z-index: 1;
  color: #fff;
}

.category-content h3,
.zone-content h3 {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.story-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 55%, #2f2925 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
}

.story-visual {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.story-copy {
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-copy h2,
.story-copy p {
  color: #fff;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin: 1rem 0 2rem;
  max-width: 34rem;
}

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

.product-card,
.arrival-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-media,
.arrival-media {
  aspect-ratio: 4 / 4.7;
  overflow: hidden;
  background: #e8ded1;
}

.product-card img {
  transition: transform 0.35s ease;
}

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

.product-copy,
.arrival-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(248, 242, 234, 0.98) 100%);
}

.product-meta,
.arrival-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.price {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--heading);
}

.muted {
  color: var(--muted);
}

.product-card h3,
.arrival-card h3,
.preview-item h4 {
  font-size: 1.15rem;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.btn-card {
  min-height: 46px;
  flex: 1;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.zone-card {
  position: relative;
  min-height: 420px;
  aspect-ratio: 4 / 5;
}

.arrival-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.value-grid,
.review-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

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

.value-card,
.review-card,
.newsletter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem;
}

.value-card h3,
.review-card h3 {
  margin-bottom: 0.6rem;
}

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

.review-card p + p {
  margin-top: 1rem;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #26211d 100%);
}

.newsletter h2,
.newsletter .eyebrow {
  color: #fff;
}

.newsletter-form,
.contact-form .form-row,
.filter-actions {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input,
.contact-form input,
.contact-form textarea,
.toolbar input,
.toolbar select,
.filter-group select {
  width: 100%;
  min-height: 52px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0 1rem;
  color: var(--text);
}

.contact-form textarea {
  min-height: 160px;
  padding: 1rem;
  resize: vertical;
}

.contact-form .form-row > div,
.newsletter-form > * {
  flex: 1;
}

.site-footer {
  padding: var(--space-7) 0 var(--space-5);
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 1rem;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.page-hero {
  padding: var(--space-8) 0 var(--space-6);
}

.collection-banner {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: end;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.collection-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.82) 0%, rgba(15, 15, 15, 0.42) 48%, rgba(15, 15, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.04) 0%, rgba(15, 15, 15, 0.34) 100%);
}

.collection-banner-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
}

.collection-banner-copy .eyebrow,
.collection-banner-copy h1,
.collection-banner-copy p {
  color: #fff;
}

.collection-banner-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  letter-spacing: -0.06em;
  margin: 0.8rem 0 1rem;
}

.collection-banner-copy p {
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
}

.shop-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: stretch;
}

.shop-hero-copy {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.95) 0%, rgba(240, 232, 222, 0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-hero-copy h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.9rem);
  letter-spacing: -0.06em;
  margin: 0.85rem 0 1rem;
  max-width: 10ch;
}

.shop-hero-copy p {
  color: var(--muted);
  max-width: 34rem;
  font-size: 1.02rem;
}

.shop-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.shop-highlight-list span {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 1rem;
}

.shop-hero-main,
.shop-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}

.shop-hero-main {
  min-height: 540px;
}

.shop-hero-main img,
.shop-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.06) 18%, rgba(15, 15, 15, 0.7) 100%);
}

.shop-hero-overlay {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  color: #fff;
}

.shop-hero-overlay .eyebrow,
.shop-hero-overlay h2,
.shop-hero-overlay p {
  color: #fff;
}

.shop-hero-overlay h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  margin: 0.6rem 0 0.45rem;
}

.shop-hero-overlay p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 22rem;
}

.shop-hero-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.shop-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 18%, rgba(15, 15, 15, 0.76) 100%);
}

.shop-hero-card > div {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
}

.shop-hero-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.shop-hero-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

.page-hero-grid,
.about-grid,
.contact-grid,
.collection-section,
.shop-layout {
  display: grid;
  gap: 2rem;
}

.page-hero-grid,
.about-grid,
.contact-grid,
.collection-section {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.page-hero-copy h1,
.about-copy h1,
.contact-copy h1 {
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  letter-spacing: -0.05em;
  margin: 0.8rem 0 1rem;
}

.page-hero-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  max-width: 40rem;
}

.collection-hero,
.about-visuals,
.contact-aside,
.story-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 100%;
}

.collection-hero {
  min-height: 420px;
  aspect-ratio: 4 / 3;
}

.contact-aside {
  aspect-ratio: 4 / 3;
}

.shop-layout {
  grid-template-columns: 290px minmax(0, 1fr);
  align-items: start;
}

.filters,
.toolbar,
.contact-panel,
.info-stack,
.collection-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.toolbar,
.filters,
.contact-panel,
.info-stack,
.collection-card,
.value-card,
.review-card,
.newsletter {
  border-color: #d7cdc2;
}

.toolbar,
.filters {
  background: rgba(255, 253, 249, 0.98);
}

.filters {
  padding: 1.4rem;
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.filter-group + .filter-group {
  margin-top: 1.25rem;
}

.filter-group label,
.toolbar label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.filter-list {
  display: grid;
  gap: 0.8rem;
}

.filter-list label {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-weight: 500;
  color: var(--muted);
}

.filter-list input[type="checkbox"] {
  accent-color: var(--heading);
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px auto;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.product-grid[data-grid="shop"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card.is-hidden {
  display: none;
}

.mobile-filter-toggle {
  display: none;
}

.filter-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(21, 21, 21, 0.4);
  padding: 1rem;
}

.filter-drawer.is-open,
.mobile-panel.is-open {
  display: block;
}

.filter-drawer-panel {
  width: min(100%, 420px);
  height: 100%;
  margin-left: auto;
  background: #fff;
  border-radius: 28px;
  padding: 1.2rem;
  overflow-y: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.collection-stack {
  display: grid;
  gap: 2rem;
}

.collection-card {
  padding: 1.4rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.preview-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.preview-media {
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
  border-radius: 18px;
}

.about-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: transparent;
  box-shadow: none;
  border: none;
}

.about-visuals img {
  min-height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: var(--space-5);
}

.contact-panel {
  padding: 1.5rem;
}

.contact-panel h2,
.info-card h3 {
  margin-bottom: 0.8rem;
}

.info-stack {
  padding: 1.5rem;
}

.info-stack > * + * {
  margin-top: 1rem;
}

.info-card p + p {
  margin-top: 0.35rem;
}

.form-status {
  margin-top: 0.75rem;
  font-weight: 600;
}

.form-status.is-error {
  color: #8a2f2f;
}

.form-status.is-success {
  color: #2f6e42;
}

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

@media (max-width: 1100px) {
  .category-grid,
  .product-grid,
  .arrival-strip,
  .value-grid,
  .review-grid,
  .zone-grid,
  .footer-grid,
  .preview-grid,
  .about-values,
  .product-grid[data-grid="shop"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-block,
  .shop-hero,
  .page-hero-grid,
  .about-grid,
  .contact-grid,
  .collection-section,
  .shop-layout,
  .newsletter {
    grid-template-columns: 1fr;
  }

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

  .shop-hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .filters {
    display: none;
  }

  .mobile-filter-toggle {
    display: inline-flex;
  }

  .toolbar {
    grid-template-columns: 1fr 220px auto;
  }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
  }

  .mobile-panel {
    position: fixed;
    inset: var(--header-height) 0 auto;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 1rem;
  }

  .mobile-panel nav ul {
    display: grid;
    gap: 1rem;
  }

  .mobile-panel .mobile-search {
    margin-top: 1rem;
  }

  .hero {
    min-height: 70vh;
    background-position: center;
  }

  .collection-banner {
    min-height: 560px;
  }

  .split-heading {
    flex-direction: column;
    align-items: start;
  }

  .category-band {
    margin-top: 0;
    padding-top: 1rem;
  }

  .category-grid,
  .product-grid,
  .arrival-strip,
  .zone-grid,
  .value-grid,
  .review-grid,
  .footer-grid,
  .preview-grid,
  .about-values,
  .product-grid[data-grid="shop"] {
    grid-template-columns: 1fr;
  }

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

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

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

  .newsletter-form,
  .contact-form .form-row,
  .product-actions {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .logo {
    gap: 0.65rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 0.88rem;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .section,
  .section-tight,
  .page-hero {
    padding: 3.75rem 0;
  }

  .hero {
    min-height: 560px;
    align-items: end;
  }

  .hero-content {
    padding-bottom: 2.25rem;
  }

  .hero h1,
  .page-hero-copy h1,
  .about-copy h1,
  .contact-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
  }

  .btn,
  .btn-card {
    width: 100%;
  }
}
