/* interior — Scandinavian furniture storefront */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --olive: #5c6754;
  --olive-deep: #4a5443;
  --olive-soft: #e8ebe4;
  --sage: #818d82;
  --ink: #2a2a28;
  --muted: #7a7a74;
  --line: #e4e2dc;
  --fog: #f6f5f2;
  --paper: #ffffff;
  --sand: #edeceb;
  --warm: #f9f8f5;
  --container: 1240px;
  --font: "Outfit", sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --header-h: 72px;
  --nav-h: 48px;
  --topbar-h: 36px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

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

/* ——— Announcement ——— */
.announce {
  background: var(--sage);
  color: #fff;
  height: var(--topbar-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.announce-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

.announce-track span::after {
  content: "·";
  margin-left: 2.5rem;
  opacity: 0.7;
}

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

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(42, 42, 40, 0.04);
}

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

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header-right {
  justify-content: flex-end;
}

.logo {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink);
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--ink);
  transition: color 0.2s;
}

.icon-btn:hover {
  color: var(--olive);
}

.icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--olive);
  color: #fff;
  font-size: 0.625rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.menu-toggle {
  display: none;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.25rem;
  height: var(--nav-h);
  border-top: 1px solid var(--line);
}

.primary-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--ink);
}

.primary-nav a.active::after,
.primary-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 1.25rem;
  border-top: 1px solid var(--line);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-ghost {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.btn-ghost-dark {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-ghost-dark:hover {
  background: var(--ink);
  color: #fff;
}

.btn-olive {
  background: var(--olive);
  color: #fff;
  border: 1px solid var(--olive);
}

.btn-olive:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}

.btn-solid {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
}

.btn-solid:hover {
  background: transparent;
  color: var(--ink);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  height: min(88vh, 820px);
  min-height: 520px;
  overflow: hidden;
  color: #fff;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 28, 24, 0.18) 0%,
    rgba(30, 28, 24, 0.35) 55%,
    rgba(30, 28, 24, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: heroIn 1.1s var(--ease) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 14ch;
  margin-bottom: 0.85rem;
}

.hero-content .sub {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.hero-nav:hover {
  opacity: 1;
}

.hero-nav.prev { left: 1.25rem; }
.hero-nav.next { right: 1.25rem; }

.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.3s, background 0.3s;
}

.hero-dots button.active {
  width: 22px;
  border-radius: 99px;
  background: #fff;
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
}

.section-tight {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.section-head p {
  color: var(--muted);
  margin-top: 0.65rem;
  font-size: 0.95rem;
  max-width: 42ch;
  margin-inline: auto;
}

.cat-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.cat-tabs button {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.cat-tabs button.active,
.cat-tabs button:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ——— Products ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.35rem;
}

.product-card {
  text-align: center;
}

.product-card .thumb {
  position: relative;
  aspect-ratio: 1;
  background: var(--fog);
  overflow: hidden;
  margin-bottom: 1.1rem;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.product-card .quick {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  background: var(--olive);
  color: #fff;
  padding: 0.7rem 1.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.35s, transform 0.35s var(--ease);
  z-index: 2;
}

.product-card:hover .quick {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.product-card .price {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.add-link {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
  background: none;
  padding: 0;
}

.add-link:hover {
  color: var(--olive);
  border-color: var(--olive);
}

.product-card .wish {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.product-card:hover .wish {
  opacity: 1;
}

/* ——— Featured split ——— */
.featured {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
}

.featured-media {
  position: relative;
  min-height: 420px;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.featured-panel {
  background: var(--fog);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2.5rem;
  position: relative;
}

.featured-panel h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--olive-deep);
  margin-bottom: 2rem;
}

.featured-product {
  max-width: 320px;
  width: 100%;
}

.featured-product img {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  mix-blend-mode: multiply;
}

.featured-product .btn {
  margin-bottom: 1.25rem;
  min-width: 160px;
}

.featured-product h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.featured-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 2.5rem;
}

.featured-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5c5c0;
  transition: background 0.2s, transform 0.2s;
}

.featured-dots button.active {
  background: var(--olive);
  transform: scale(1.15);
}

/* ——— Sale banner ——— */
.sale-banner {
  position: relative;
  margin: 0;
  min-height: 240px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.sale-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sale-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(35, 38, 32, 0.55);
}

.sale-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding-inline: 2.5rem;
  margin-block: 1.5rem;
}

.sale-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.sale-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.sale-countdown {
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 2.5rem;
}

.sale-countdown .label {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.countdown {
  display: flex;
  gap: 1rem;
}

.countdown div {
  text-align: center;
  min-width: 52px;
}

.countdown strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

.countdown span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ——— Category tiles ——— */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.cat-tile {
  position: relative;
  aspect-ratio: 1 / 1.05;
  overflow: hidden;
  color: #fff;
  display: block;
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.cat-tile:hover img {
  transform: scale(1.05);
}

.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 20, 18, 0.55) 100%);
}

.cat-tile .inset {
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 1;
  pointer-events: none;
}

.cat-tile .meta {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 2;
}

.cat-tile h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}

.cat-tile p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.25rem;
  max-width: 22ch;
}

.cat-tile .arrow {
  position: absolute;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.cat-tile:hover .arrow {
  background: #fff;
  transform: translateX(3px);
}

/* ——— Compare slider ——— */
.compare {
  position: relative;
  height: min(72vh, 640px);
  min-height: 380px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
}

.compare-img {
  position: absolute;
  inset: 0;
}

.compare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.compare-after {
  z-index: 0;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.compare-handle .knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.compare-tag {
  position: absolute;
  z-index: 4;
  background: #fff;
  color: var(--ink);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  font-weight: 500;
}

.compare-tag.before {
  left: 1.25rem;
  bottom: 1.25rem;
}

.compare-tag.after {
  right: 1.25rem;
  top: 1.25rem;
}

/* ——— Instagram ——— */
.ig-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.ig-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-banner::before {
  content: "";
  position: absolute;
  inset: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 1;
  pointer-events: none;
}

.ig-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 30, 26, 0.28);
}

.ig-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  text-align: center;
  padding: 3rem 3.5rem;
  max-width: 480px;
  margin: 2rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.ig-card h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.ig-card p {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.ig-card .btn-ghost-dark {
  border-color: var(--ink);
}

/* ——— Stories ——— */
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.story-card .thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--fog);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.story-card:hover img {
  transform: scale(1.04);
}

.story-card .date {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.story-card h3 {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  transition: color 0.2s;
}

.story-card:hover h3 {
  color: var(--olive);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--sand);
  padding-top: 4.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 28ch;
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.social-row {
  display: flex;
  gap: 0.5rem;
}

.social-row a {
  width: 34px;
  height: 34px;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.social-row a:hover {
  background: var(--olive-deep);
}

.social-row svg {
  width: 14px;
  height: 14px;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.15rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--ink);
}

.newsletter p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 320px;
}

.newsletter-form input {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: #aaa;
}

.newsletter-form button {
  background: var(--olive);
  color: #fff;
  padding: 0.8rem 1.15rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: var(--olive-deep);
}

.footer-bottom {
  border-top: 1px solid #e0ded8;
  padding: 1.15rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-meta select {
  border: none;
  background: transparent;
  font-size: 0.75rem;
  color: var(--muted);
  cursor: pointer;
}

.pay-icons {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  opacity: 0.7;
}

.pay-icons span {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  border: 1px solid #ccc;
  padding: 0.2rem 0.4rem;
  background: #fff;
  color: var(--ink);
  border-radius: 2px;
}

/* ——— Page hero ——— */
.page-hero {
  background: var(--fog);
  padding: 3.5rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero .breadcrumbs {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.page-hero .breadcrumbs a:hover {
  color: var(--ink);
}

.page-hero .breadcrumbs .sep {
  margin: 0 0.45rem;
  opacity: 0.5;
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
}

.page-hero p {
  color: var(--muted);
  margin-top: 0.65rem;
  max-width: 48ch;
  margin-inline: auto;
}

/* ——— Shop ——— */
.shop-layout {
  padding: 3rem 0 5rem;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.shop-toolbar .results {
  font-size: 0.85rem;
  color: var(--muted);
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
}

.sort-wrap select {
  border: 1px solid var(--line);
  padding: 0.55rem 0.85rem;
  background: #fff;
  min-width: 180px;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-chip {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
}

/* ——— Product detail ——— */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  padding: 3.5rem 0 5rem;
  align-items: start;
}

.pdp-gallery {
  display: grid;
  gap: 0.85rem;
}

.pdp-main {
  aspect-ratio: 1;
  background: var(--fog);
  overflow: hidden;
}

.pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.pdp-thumbs button {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--fog);
  border: 1px solid transparent;
  transition: border-color 0.2s;
}

.pdp-thumbs button.active,
.pdp-thumbs button:hover {
  border-color: var(--olive);
}

.pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.pdp-info h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.pdp-info .price {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.pdp-info .desc {
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 42ch;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2rem;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.qty button {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty span {
  min-width: 36px;
  text-align: center;
  font-size: 0.9rem;
}

.pdp-meta {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  padding: 3.5rem 0 5rem;
}

.contact-info h2 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-block {
  margin-bottom: 1.5rem;
}

.contact-block h4 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-block p,
.contact-block a {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  background: #fff;
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--olive);
}

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

/* ——— About ——— */
.about-hero-img {
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin-bottom: 0;
}

.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.about-split h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 1.15rem;
}

.about-split p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0 5rem;
}

.value-item h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Features page ——— */
.feature-list {
  display: grid;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.feature-row:nth-child(even) .feature-copy {
  order: 2;
}

.feature-media {
  position: relative;
  min-height: 320px;
}

.feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  background: var(--fog);
}

.feature-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.feature-copy p {
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 1.5rem;
}

/* ——— Journal ——— */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3.5rem 0 5rem;
}

.journal-card .thumb {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.15rem;
  background: var(--fog);
}

.journal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.journal-card:hover img {
  transform: scale(1.04);
}

.journal-card .date {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.journal-card h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.journal-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ——— Cart / Search overlays ——— */
.cart-backdrop,
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 18, 0.45);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cart-backdrop.open,
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 400px);
  background: #fff;
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.08);
}

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

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.cart-head h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 1.25rem 1.5rem;
}

.cart-empty {
  color: var(--muted);
  text-align: center;
  padding: 3rem 1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: var(--fog);
}

.cart-line h5 {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.cart-line .price {
  font-size: 0.85rem;
  color: var(--muted);
}

.cart-foot {
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cart-total strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}

.cart-foot .btn {
  width: 100%;
}

.search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}

.search-overlay.open .search-panel {
  transform: translateY(0);
}

.search-row {
  display: flex;
  gap: 0.75rem;
  max-width: 720px;
  margin-inline: auto;
  align-items: center;
}

.search-row input {
  flex: 1;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  font-size: 1.1rem;
  font-family: var(--display);
}

.search-row input:focus {
  outline: none;
  border-color: var(--ink);
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ——— Reveal motion ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .product-grid,
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 900px) {
  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .featured,
  .pdp,
  .contact-grid,
  .about-split,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row:nth-child(even) .feature-copy {
    order: 0;
  }

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

  .sale-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sale-countdown {
    border-left: none;
    padding-left: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
  }

  .countdown {
    justify-content: center;
  }

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

  .hero-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-grid,
  .story-grid,
  .journal-grid,
  .pdp-thumbs,
  .footer-grid,
  .contact-form .row {
    grid-template-columns: 1fr;
  }

  .product-card .quick {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .ig-card {
    padding: 2rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    min-height: 480px;
    height: 70vh;
  }
}
