/* ============================================================
   WOODSMITH FURNITURE & INTERIOR — STYLES
   Mobile-first, 100% responsive, 360px → 1920px
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES (Design Tokens) ──────────────────── */
:root {
  /* Brand Colors */
  --espresso:   #2E2A26;
  --charcoal:   #3D3733;
  --brick:      #C0504D;
  --brick-dark: #A8423F;
  --gold:       #B08D57;
  --gold-soft:  #C9A876;
  --cream:      #FAF7F2;
  --sand:       #EDE6DB;
  --taupe:      #8A7E70;
  --line:       #E2D9CC;
  --white:      #FFFFFF;
  --ink:        #241F1B;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-ui:    'Montserrat', 'Arial', sans-serif;

  /* Fluid type scale using clamp(min, preferred, max) */
  --text-xs:   clamp(0.7rem,  1vw,  0.8rem);
  --text-sm:   clamp(0.8rem,  1.2vw, 0.9rem);
  --text-base: clamp(0.95rem, 1.5vw, 1.05rem);
  --text-md:   clamp(1rem,    1.8vw, 1.15rem);
  --text-lg:   clamp(1.1rem,  2vw,   1.3rem);
  --text-xl:   clamp(1.2rem,  2.5vw, 1.6rem);
  --text-2xl:  clamp(1.4rem,  3vw,   2rem);
  --text-3xl:  clamp(1.8rem,  4vw,   2.8rem);
  --text-4xl:  clamp(2.2rem,  5vw,   3.8rem);
  --text-hero: clamp(2.6rem,  7vw,   5.5rem);

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --container-max: 1240px;
  --container-pad: clamp(1.25rem, 5vw, 3rem);
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  6px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(46,42,38,0.08);
  --shadow-md:  0 4px 16px rgba(46,42,38,0.12);
  --shadow-lg:  0 8px 40px rgba(46,42,38,0.16);
  --shadow-xl:  0 16px 64px rgba(46,42,38,0.20);

  /* Transitions */
  --ease-out:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:    cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --trans-fast: 180ms var(--ease-out);
  --trans-med:  280ms var(--ease-out);
  --trans-slow: 420ms var(--ease-out);

  /* Z-index scale */
  --z-base:    0;
  --z-card:    10;
  --z-sticky:  20;
  --z-overlay: 40;
  --z-nav:     100;
  --z-modal:   1000;
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

/* Focus styles — visible and branded */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── 3. SCROLL PROGRESS BAR ─────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--brick), var(--gold));
  z-index: calc(var(--z-nav) + 10);
  transition: width 80ms linear;
  pointer-events: none;
}

/* ── 4. CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── 5. NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-5) 0;
  transition: background var(--trans-med), box-shadow var(--trans-med), padding var(--trans-med);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  height: 40px;
  width: auto;
  transition: filter var(--trans-med);
}

/* Links */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

.nav__links a {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--trans-fast);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-soft);
  transition: width var(--trans-med);
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
}

/* WhatsApp button in nav */
.btn--nav-wa {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white) !important;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-4);
  transition: background var(--trans-fast), border-color var(--trans-fast);
}

.btn--nav-wa:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--nav-wa:hover::after { width: 0 !important; }

.btn--nav-wa svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Scrolled state */
.nav--scrolled {
  background: var(--cream);
  box-shadow: var(--shadow-md);
  padding: var(--space-3) 0;
}

.nav--scrolled .nav__links a {
  color: var(--charcoal);
}

.nav--scrolled .nav__links a::after {
  background: var(--gold);
}

.nav--scrolled .btn--nav-wa {
  color: var(--charcoal) !important;
  border-color: var(--charcoal);
}

.nav--scrolled .nav__logo img {
  filter: none;
}

/* Logo on dark hero — invert charcoal text to white */
.nav:not(.nav--scrolled) .nav__logo img {
  filter: brightness(0) invert(1);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-2);
  margin: calc(-1 * var(--space-2));
  cursor: pointer;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans-med), opacity var(--trans-fast), background var(--trans-med);
  transform-origin: center;
}

.nav--scrolled .nav__hamburger span {
  background: var(--charcoal);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay menu */
.nav__mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--trans-med), visibility var(--trans-med);
}

.nav__mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__mobile-menu a {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color var(--trans-fast);
}

.nav__mobile-menu a:hover {
  color: var(--gold-soft);
}

.nav__mobile-menu .btn--whatsapp {
  margin-top: var(--space-4);
}

/* Desktop nav show */
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}

/* ── 6. BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-8);
  min-height: 48px;
  transition: background var(--trans-fast), color var(--trans-fast), box-shadow var(--trans-fast), border-color var(--trans-fast), transform 120ms var(--ease-out);
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--brick);
  color: var(--white);
  border-color: var(--brick);
}

.btn--primary:hover {
  background: var(--brick-dark);
  border-color: var(--brick-dark);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--ghost-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  gap: var(--space-3);
}

.btn--whatsapp:hover {
  background: #1EB85A;
  border-color: #1EB85A;
  box-shadow: var(--shadow-md);
}

.btn--whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  min-height: 40px;
  font-size: calc(var(--text-xs) * 0.9);
}

/* Gold underline text link */
.link--gold {
  font-family: var(--font-ui);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 1px;
  transition: color var(--trans-fast), border-color var(--trans-fast);
}

.link--gold:hover {
  color: var(--gold-soft);
  border-color: transparent;
}

/* ── 7. SECTION HEADING PATTERN ─────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
}

.section-intro {
  font-size: var(--text-md);
  color: var(--taupe);
  line-height: 1.7;
  max-width: 56ch;
  margin-top: var(--space-4);
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-intro {
  margin-inline: auto;
}

/* ── 8. REVEAL ANIMATION ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--trans-slow), transform var(--trans-slow);
}

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

.reveal--delay-1 { transition-delay: 80ms; }
.reveal--delay-2 { transition-delay: 160ms; }
.reveal--delay-3 { transition-delay: 240ms; }
.reveal--delay-4 { transition-delay: 320ms; }
.reveal--delay-5 { transition-delay: 400ms; }
.reveal--delay-6 { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── 9. HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(36,31,27,0.72) 0%,
    rgba(36,31,27,0.48) 60%,
    rgba(36,31,27,0.28) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--space-32) 0 var(--space-20);
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--space-5);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  max-width: 14ch;
  white-space: pre-line;
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.82);
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: var(--space-10);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.6);
}

.hero__scroll-cue span {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── 10. STATS BAND ──────────────────────────────────────────── */
.stats {
  background: var(--espresso);
  padding: var(--space-16) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8) var(--space-4);
  text-align: center;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }
}

.stats__item {}

.stats__value {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
}

.stats__label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── 11. COLLECTION CARDS ────────────────────────────────────── */
.collections {
  padding: var(--space-24) 0;
  background: var(--cream);
}

.collections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 600px) {
  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collections__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none;
  aspect-ratio: 4/3;
  background: var(--sand);
}

.collection-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.collection-card:hover .collection-card__img {
  transform: scale(1.06);
}

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(36,31,27,0.75) 0%,
    rgba(36,31,27,0.1) 55%,
    transparent 100%
  );
  transition: background var(--trans-med);
}

.collection-card:hover .collection-card__overlay {
  background: linear-gradient(
    to top,
    rgba(36,31,27,0.85) 0%,
    rgba(36,31,27,0.25) 55%,
    transparent 100%
  );
}

.collection-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
}

.collection-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-1);
}

.collection-card__cta {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transform: translateY(4px);
  opacity: 0;
  transition: transform var(--trans-med), opacity var(--trans-med);
}

.collection-card:hover .collection-card__cta {
  transform: translateY(0);
  opacity: 1;
}

.collection-card__cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--trans-fast);
}

.collection-card:hover .collection-card__cta svg {
  transform: translateX(3px);
}

/* ── 12. CRAFTSMANSHIP STICKY SECTION ───────────────────────── */
.craftsmanship {
  padding: var(--space-24) 0;
  background: var(--sand);
}

.craftsmanship__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .craftsmanship__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.craftsmanship__sticky {
  position: static;
}

@media (min-width: 900px) {
  .craftsmanship__sticky {
    position: sticky;
    top: 120px;
  }
}

.craftsmanship__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.craftsmanship__img-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--espresso);
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
}

.craftsmanship__steps {
  padding-top: var(--space-4);
}

.craftsmanship__step {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--line);
}

.craftsmanship__step:first-child { padding-top: 0; }
.craftsmanship__step:last-child  { border-bottom: none; }

.craftsmanship__step-num {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5ch;
  padding-top: 2px;
}

.craftsmanship__step-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
}

.craftsmanship__step-text {
  font-size: var(--text-sm);
  color: var(--taupe);
  line-height: 1.7;
}

/* ── 13. PRODUCT CARD ────────────────────────────────────────── */
.featured {
  padding: var(--space-24) 0;
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 560px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-med), box-shadow var(--trans-med);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--espresso);
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: calc(var(--text-xs) * 0.88);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
}

.product-card__body {
  padding: var(--space-5) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--taupe);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-4);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink);
}

.product-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  transition: background var(--trans-fast), border-color var(--trans-fast), color var(--trans-fast);
  flex-shrink: 0;
}

.product-card:hover .product-card__arrow {
  background: var(--brick);
  border-color: var(--brick);
  color: var(--white);
}

.product-card__arrow svg {
  width: 14px;
  height: 14px;
}

/* ── 14. TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  padding: var(--space-24) 0;
  background: var(--espresso);
}

.testimonials .section-eyebrow { color: var(--gold-soft); }
.testimonials .section-title   { color: var(--cream); }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial-card__author {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.testimonial-card__location {
  font-size: var(--text-xs);
  color: var(--taupe);
  margin-top: 2px;
}

/* ── 15. VISIT / CONTACT ─────────────────────────────────────── */
.visit {
  padding: var(--space-24) 0;
  background: var(--sand);
}

.visit__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .visit__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--space-16);
  }
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.visit__detail-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.visit__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.visit__detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.visit__detail-label {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.visit__detail-value {
  font-size: var(--text-sm);
  color: var(--charcoal);
  line-height: 1.6;
}

.visit__detail-value a {
  color: var(--brick);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.visit__detail-value a:hover { color: var(--brick-dark); }

.visit__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

/* Map */
.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  width: 100%;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── 16. FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 640px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer__brand {}

.footer__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-4);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: var(--space-6);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--trans-fast), color var(--trans-fast), background var(--trans-fast);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(176,141,87,0.1);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  transition: color var(--trans-fast);
  text-decoration: none;
}

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

.footer__contact-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-3);
}

.footer__contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item span {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
}

.footer__credits {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}

/* ── 17. BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb {
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-10);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--taupe);
  letter-spacing: 0.06em;
}

.breadcrumb__item a {
  color: var(--taupe);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.breadcrumb__item a:hover { color: var(--charcoal); }

.breadcrumb__item:last-child { color: var(--charcoal); font-weight: 600; }

.breadcrumb__sep {
  color: var(--line);
  font-size: 10px;
}

/* ── 18. FILTER TABS ─────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-8) 0;
}

.filter-tab {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--taupe);
  cursor: pointer;
  min-height: 44px;
  transition: background var(--trans-fast), border-color var(--trans-fast), color var(--trans-fast);
}

.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-tab.is-active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--gold-soft);
}

/* ── 19. COLLECTION PAGE HEADER ─────────────────────────────── */
.page-hero {
  background: var(--espresso);
  padding: calc(var(--space-32) + 60px) 0 var(--space-16);
  text-align: center;
}

.page-hero .section-eyebrow { color: var(--gold-soft); }
.page-hero .section-title   { color: var(--white); }
.page-hero .section-intro   { color: rgba(255,255,255,0.65); margin-inline: auto; }

/* ── 20. PRODUCT DETAIL ──────────────────────────────────────── */
.product-detail {
  padding: var(--space-12) 0 var(--space-24);
}

.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 900px) {
  .product-detail__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

/* Gallery */
.product-gallery {}

.product-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4/3;
  margin-bottom: var(--space-3);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--trans-fast);
}

.product-gallery__thumbs {
  display: flex;
  gap: var(--space-3);
}

.product-gallery__thumb {
  aspect-ratio: 1;
  width: clamp(64px, 10vw, 88px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--sand);
  transition: border-color var(--trans-fast);
  flex-shrink: 0;
}

.product-gallery__thumb.is-active {
  border-color: var(--gold);
}

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

/* Info panel */
.product-info {}

.product-info__category {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-3);
}

.product-info__name {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: var(--space-4);
}

.product-info__badge {
  display: inline-block;
  background: var(--espresso);
  color: var(--gold-soft);
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

.product-info__price {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--brick);
  margin-bottom: var(--space-6);
}

.product-info__description {
  font-size: var(--text-base);
  color: var(--taupe);
  line-height: 1.75;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-6) 0;
  margin-bottom: var(--space-6);
}

.product-info__specs {
  margin-bottom: var(--space-6);
}

.product-info__spec {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
}

.product-info__spec:last-child { border-bottom: none; }

.product-info__spec-label {
  font-weight: 600;
  color: var(--charcoal);
  min-width: 110px;
  flex-shrink: 0;
}

.product-info__spec-value {
  color: var(--taupe);
}

.product-info__features {
  margin-bottom: var(--space-8);
}

.product-info__features-title {
  font-family: var(--font-ui);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}

.product-info__feature-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--taupe);
  padding: var(--space-2) 0;
  line-height: 1.5;
}

.product-info__feature-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.product-info__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* Related */
.related {
  padding: var(--space-20) 0;
  background: var(--sand);
}

/* ── 21. NOT FOUND ───────────────────────────────────────────── */
.not-found {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-24) var(--container-pad);
}

.not-found__num {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  color: var(--line);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.not-found__title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.not-found__text {
  font-size: var(--text-md);
  color: var(--taupe);
  max-width: 40ch;
  margin-bottom: var(--space-8);
}

/* ── 22. BODY LOCK (mobile menu open) ───────────────────────── */
body.nav-open {
  overflow: hidden;
}

/* ── 23. UTILITIES ───────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-auto     { margin-top: auto; }

/* ── 24. ABOUT STRIP ─────────────────────────────────────────── */
.about-strip {
  padding: var(--space-24) 0;
  background: var(--white);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 900px) {
  .about-strip__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.about-strip__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.about-strip__body {}
.about-strip__body .section-intro { margin-top: var(--space-5); }

.about-strip__list {
  margin-top: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-strip__list-item {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  font-size: var(--text-sm);
  color: var(--charcoal);
  font-weight: 500;
}

.about-strip__list-item::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── 25. COLLECTION PAGE EMPTY STATE ────────────────────────── */
.empty-state {
  padding: var(--space-24) 0;
  text-align: center;
  color: var(--taupe);
}

.empty-state svg {
  width: 56px;
  height: 56px;
  color: var(--line);
  margin: 0 auto var(--space-4);
}

/* ── 26. RESPONSIVE POLISH ───────────────────────────────────── */

/* Hero: prevent content overflow on landscape / very short viewports */
@media (max-height: 560px) {
  .hero__content {
    padding: var(--space-16) 0 var(--space-10);
  }
  .hero__subtitle {
    display: none;
  }
  .hero__scroll-cue {
    display: none;
  }
}

/* Hero title: prevent overflow on narrow screens */
@media (max-width: 480px) {
  .hero__title {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .hero__eyebrow {
    font-size: calc(var(--text-xs) * 0.9);
  }
}

/* Map: guarantee a usable minimum height on very small screens */
.visit__map {
  min-height: 240px;
}

/* Stats: prevent text overflow in 2-column mobile layout */
@media (max-width: 480px) {
  .stats__value {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
}

/* Section spacing: tighten vertical padding on very small screens */
@media (max-width: 480px) {
  .collections,
  .craftsmanship,
  .about-strip,
  .featured,
  .testimonials,
  .visit {
    padding: var(--space-16) 0;
  }
  .section-header {
    margin-bottom: var(--space-8);
  }
  .testimonials__grid {
    margin-top: var(--space-8);
  }
}

/* Craftsmanship: collapse large gap between image and steps on mobile */
@media (max-width: 899px) {
  .craftsmanship__img-wrap {
    aspect-ratio: 16/9;
  }
  .craftsmanship__steps {
    padding-top: 0;
  }
}

/* Product cards: keep card body from overflowing on very narrow screens */
@media (max-width: 360px) {
  .product-card__body {
    padding: var(--space-4);
  }
  .product-card__name {
    font-size: var(--text-lg);
  }
}

/* Collection cards: minimum height on very small single-column view */
@media (max-width: 480px) {
  .collection-card {
    aspect-ratio: 3/2;
  }
}

/* Footer: tighten gap on very small screens */
@media (max-width: 480px) {
  .footer__top {
    gap: var(--space-8);
  }
  .footer {
    padding: var(--space-12) 0 var(--space-6);
  }
}

/* Nav: ensure logo doesn't shrink too much on small screens */
@media (max-width: 360px) {
  .nav__logo img {
    height: 32px;
  }
}

/* Buttons: ensure comfortable tap targets on all mobiles */
@media (max-width: 480px) {
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* About strip: tighten up the list on mobile */
@media (max-width: 480px) {
  .about-strip__list {
    gap: var(--space-2);
  }
}

/* Visit detail items: handle long address text gracefully */
.visit__detail-value {
  word-break: break-word;
}

/* Footer contact: prevent long email/address overflow */
.footer__contact-item span,
.footer__contact-item a {
  word-break: break-word;
}
