/* ── TOKENS ── */
:root {
  --cream: #F7F4EF;
  --charcoal: #1E1E1B;
  --charcoal-soft: #2E2E2A;
  --bronze: #9C7D56;
  --bronze-light: #B8966E;
  --wood-light: #D4B896;
  --wood-mid: #A8866A;
  --stone: #7A7570;
  --stone-light: #B0ABA5;
  --white: #FFFFFF;

  /* Single-typeface system — the Enchi brand font (Hanken Grotesk) everywhere.
     Hierarchy comes from weight, size, and italics rather than a second family. */
  --font-serif: 'Hanken Grotesk', system-ui, sans-serif; /* display / headings */
  --font-sans: 'Hanken Grotesk', system-ui, sans-serif;  /* body */
  --font-logo: 'Hanken Grotesk', system-ui, sans-serif;  /* wordmark */

  --nav-h: 72px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Bronze-tinted text selection */
::selection { background: rgba(184, 150, 110, 0.4); }

/* Soft fade on each page load */
@media (prefers-reduced-motion: no-preference) {
  body { animation: pageFade 0.45s ease-out; }
}
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ── TYPOGRAPHY HELPERS ── */
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-soft);
  border-color: var(--charcoal-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247,244,239,0.5);
}
.btn-ghost:hover {
  background: rgba(247,244,239,0.1);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(247,244,239,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(30,30,27,0.08);
}
.nav-logo {
  font-family: var(--font-logo);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: color 0.4s var(--ease);
}
.nav.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.8);
  transition: color 0.3s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--cream); }
.nav.scrolled .nav-links a { color: var(--stone); }
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }
.nav.scrolled .nav-links a.active { color: var(--charcoal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--cream);
}
.nav.scrolled .nav-toggle { color: var(--charcoal); }

@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav-toggle { display: block; }

  /* Mobile menu: a clean drop-down panel below the bar */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(247,244,239,0.98);
    backdrop-filter: blur(12px);
    padding: 8px 0;
    border-bottom: 1px solid rgba(30,30,27,0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  /* Always dark links on the cream panel, regardless of scroll state */
  .nav-links a,
  .nav.scrolled .nav-links a {
    color: var(--charcoal);
    display: block;
    width: 100%;
    padding: 14px 24px;
  }
  .nav-links a::after { display: none; }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 96px;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30,30,27,0.5) 0%, rgba(30,30,27,0.18) 38%, rgba(30,30,27,0.72) 100%),
    linear-gradient(90deg, rgba(30,30,27,0.5) 0%, rgba(30,30,27,0) 58%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood-light);
  text-shadow: 0 1px 12px rgba(30,30,27,0.55);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(64px, 8vw, 112px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  text-shadow: 0 2px 28px rgba(30,30,27,0.45);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease-out) 0.5s forwards;
}
.hero-heading em {
  font-style: italic;
  color: var(--wood-light);
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(247,244,239,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.hero-scroll-hint span {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(247,244,239,0.4), transparent);
  animation: scrollPulse 2s ease-in-out 1.5s infinite;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 24px; }
  .hero-scroll-hint { right: 24px; }
}

/* ─────────────────────────────────────────
   BRAND STATEMENT
───────────────────────────────────────── */
.brand-statement {
  padding: 120px 0;
  background: var(--charcoal);
  color: var(--cream);
}
.statement-intro { padding: 130px 0 110px; }
.statement-pillars-band { padding: 110px 0 130px; }

/* Full-width feature photo between the two statement bands */
.statement-feature {
  background: var(--charcoal);
  overflow: hidden;
}
.statement-feature img {
  width: 100%;
  height: 62vh;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 64px;
  color: rgba(247,244,239,0.9);
}
.statement-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar {
  text-align: center;
}
.pillar-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--bronze);
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 14px;
  padding-top: 20px;
  position: relative;
}
.pillar h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: rgba(156,125,86,0.5);
}
.pillar p {
  font-size: 17px;
  color: rgba(247,244,239,0.6);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .brand-statement { padding: 80px 0; }
  .statement-pillars { grid-template-columns: 1fr; gap: 40px; }
  .statement-text br { display: none; }
}

/* ─────────────────────────────────────────
   PRODUCT PREVIEW
───────────────────────────────────────── */
.product-preview {
  padding: 120px 0;
}
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.product-card {
  position: relative;
  cursor: pointer;
}
.card-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 3/4;
}

.card-image img {
  transition: transform 0.7s var(--ease);
}
.product-card:hover .card-image img { transform: scale(1.04); }

.card-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bronze);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.card-body h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}
.card-body p {
  font-size: 16px;
  color: var(--stone);
  margin-bottom: 12px;
}
.card-link {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: letter-spacing 0.3s var(--ease);
}
.card-link:hover { letter-spacing: 0.2em; }

.preview-cta { text-align: center; }

@media (max-width: 960px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .product-preview { padding: 80px 0; }
  .product-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   WHO WE SERVE
───────────────────────────────────────── */
.who-we-serve {
  padding: 120px 0;
  background: #F0EBE3;
}
.serve-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.serve-image {
  overflow: hidden;
  aspect-ratio: 4/5;
}
.serve-image img { transition: transform 0.7s var(--ease); }
.serve-image:hover img { transform: scale(1.04); }
.serve-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 48px;
}
.serve-content h2 em { font-style: italic; color: var(--bronze); }
.serve-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.serve-list li {
  display: flex;
  gap: 20px;
}
.serve-icon {
  color: var(--bronze);
  font-family: var(--font-serif);
  font-size: 21px;
  flex-shrink: 0;
  margin-top: 2px;
}
.serve-list strong {
  display: block;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 4px;
}
.serve-list p {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.6;
}

@media (max-width: 860px) {
  .who-we-serve { padding: 80px 0; }
  .serve-split { grid-template-columns: 1fr; gap: 48px; }
}

/* ─────────────────────────────────────────
   MATERIALS FEATURE
───────────────────────────────────────── */
.materials-feature {
  padding: 120px 0 100px;
  text-align: center;
}
.materials-text {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.materials-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
}
.materials-text h2 em { font-style: italic; color: var(--bronze); }
.materials-text p {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}
.materials-image {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}
.materials-image img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
}
.materials-names {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 48px;
  padding: 0 24px;
}
.materials-names span {
  font-family: var(--font-serif);
  font-size: 21px;
  font-style: italic;
  color: var(--charcoal);
  position: relative;
}
.materials-names span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -22px;
  color: var(--bronze);
}
.materials-names small {
  font-size: 0.72em;
  font-style: normal;
  color: var(--stone);
  letter-spacing: 0.02em;
}
.materials-note {
  text-align: center;
  font-size: 14px;
  font-style: italic;
  color: var(--stone-light);
  margin-top: 20px;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .materials-feature { padding: 80px 0 64px; }
  .materials-text h2 br { display: none; }
}

/* ─────────────────────────────────────────
   CTA BAND
───────────────────────────────────────── */
.cta-band {
  padding: 140px 0;
  background: var(--cream);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  margin-bottom: 20px;
}
.cta-band p {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-band p br { display: block; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(247,244,239,0.6);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(247,244,239,0.08);
}
.footer-logo {
  font-family: var(--font-logo);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 16px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 16px;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  padding: 24px 48px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(247,244,239,0.25);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { padding: 24px; }
}

/* ─────────────────────────────────────────
   INNER PAGES (About, etc.)
───────────────────────────────────────── */
.section-eyebrow.light { color: var(--wood-light); text-shadow: 0 1px 12px rgba(30,30,27,0.55); }

/* Page hero */
.page-hero {
  position: relative;
  height: 64vh;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}
.page-hero-media { position: absolute; inset: 0; overflow: hidden; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* Desktop: bias the hero crop lower so the tables aren't cut off.
   Scoped to wider screens only — mobile keeps the default centred crop. */
@media (min-width: 861px) {
  .page-hero { height: 78vh; }
  .page-hero-media img { object-position: center 72%; }
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(30,30,27,0.4);
}
.page-hero-content h1 em { font-style: italic; color: var(--wood-light); }

/* Intro statement */
.about-intro { padding: 110px 0 90px; }
.statement-text.dark { color: var(--charcoal); }

/* Philosophy split */
.about-split { padding-bottom: 110px; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-image { overflow: hidden; aspect-ratio: 4/5; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}
.split-content h2 em { font-style: italic; color: var(--bronze); }
.split-content p {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Values */
.about-values { padding: 110px 0; background: var(--charcoal); color: var(--cream); }
.about-values .section-header h2 { color: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.value-item .pillar-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--bronze);
  margin-bottom: 18px;
}
.value-item h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 14px;
  padding-top: 20px;
  position: relative;
}
.value-item h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: rgba(156,125,86,0.5);
}
.value-item p { font-size: 17px; color: rgba(247,244,239,0.6); line-height: 1.8; }

/* Craft video band */
.craft-band {
  position: relative;
  height: 70vh;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.craft-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.craft-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,30,27,0.4);
}
.craft-band-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
}
.craft-band-caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 300;
  color: var(--cream);
  max-width: 760px;
  margin: 12px auto 0;
  line-height: 1.3;
}

/* Full-width feature */
.about-feature { position: relative; overflow: hidden; }
/* Parallax-driven photos: contained + GPU-hinted */
.statement-feature img,
.about-feature img { will-change: transform; }
.about-feature img { width: 100%; max-height: 80vh; object-fit: cover; }
.about-feature-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,30,27,0.35);
}
.about-feature-caption p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  max-width: 800px;
  padding: 0 32px;
}

/* Clients */
.about-clients { padding: 110px 0; }
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.client-tag {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--charcoal);
  padding: 16px 28px;
  border: 1px solid rgba(30,30,27,0.15);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.client-tag:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

@media (max-width: 860px) {
  .about-intro { padding: 72px 0 56px; }
  .about-split { padding-bottom: 72px; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-values { padding: 72px 0; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-clients { padding: 72px 0; }
  .page-hero-content { padding: 0 24px; }
}

/* ─────────────────────────────────────────
   CATALOGUE
───────────────────────────────────────── */
.catalogue-header {
  padding: calc(var(--nav-h) + 72px) 0 48px;
  text-align: center;
}
.catalogue-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  margin-bottom: 20px;
}
.catalogue-header p {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.catalogue-filters {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(30,30,27,0.08);
  border-bottom: 1px solid rgba(30,30,27,0.08);
  padding: 18px 0;
}
.catalogue-filters .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-btn {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: 1px solid transparent;
  padding: 9px 20px;
  cursor: pointer;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.filter-btn:hover { color: var(--charcoal); }
.filter-btn.active {
  color: var(--cream);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.catalogue-section { padding: 64px 0 40px; }
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.cat-card {
  opacity: 1;
  transition: opacity 0.4s var(--ease);
}
.cat-card.hide { display: none; }
.cat-image {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 18px;
  background: #ece6dd;
}
.cat-body h3 a,
.card-body h3 a { color: inherit; transition: color 0.3s var(--ease); }
.cat-body h3 a:hover,
.card-body h3 a:hover { color: var(--bronze); }
.cat-image img { transition: transform 0.7s var(--ease); }
.cat-card:hover .cat-image img { transform: scale(1.04); }
.cat-ref {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 6px;
}
.cat-body h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 400;
  margin-bottom: 6px;
}
.cat-spec {
  font-size: 16px;
  color: var(--stone);
  margin-bottom: 16px;
}
.cat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(30,30,27,0.1);
}
.cat-price {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.cat-enquire {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: letter-spacing 0.3s var(--ease);
}
.cat-enquire:hover { letter-spacing: 0.2em; }

.catalogue-empty {
  text-align: center;
  color: var(--stone);
  padding: 48px 0;
  font-style: italic;
}
.catalogue-loading,
.catalogue-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--stone);
  padding: 64px 0;
  font-size: 16px;
}
.catalogue-error a { color: var(--bronze); text-decoration: underline; }

/* ─────────────────────────────────────────
   PRODUCT DETAIL PAGE
───────────────────────────────────────── */
.product-detail { padding: calc(var(--nav-h) + 56px) 0 100px; }
.back-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 36px;
  transition: color 0.3s var(--ease);
}
.back-link:hover { color: var(--charcoal); }

.pd-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

/* Gallery */
.pd-main {
  position: relative;
  aspect-ratio: 4/3;
  background: #efeae2;
  overflow: hidden;
}
.pd-main img { width: 100%; height: 100%; object-fit: contain; }
.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(247,244,239,0.85);
  color: var(--charcoal);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.pd-arrow:hover { background: var(--cream); }
.pd-prev { left: 16px; }
.pd-next { right: 16px; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb {
  width: 74px; height: 74px;
  padding: 0;
  border: 1px solid transparent;
  background: #efeae2;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb:hover { opacity: 1; }
.pd-thumb.active { opacity: 1; border-color: var(--bronze); }

/* Info */
.pd-info { padding-top: 8px; }
.pd-ref {
  display: block;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 14px;
}
.pd-info h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pd-price { font-size: 20px; color: var(--charcoal); margin-bottom: 32px; }
.pd-specs {
  border-top: 1px solid rgba(30,30,27,0.1);
  margin-bottom: 32px;
}
.pd-spec-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(30,30,27,0.1);
}
.pd-spec-row dt {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.pd-spec-row dd { font-size: 16px; color: var(--charcoal); }
.pd-desc { font-size: 16px; line-height: 1.8; color: var(--stone); margin-bottom: 36px; }
.pd-desc p { margin-bottom: 12px; }
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(30,30,27,0.25);
}
.btn-wa svg { width: 17px; height: 17px; fill: #25D366; flex-shrink: 0; }
.btn-wa:hover { border-color: var(--charcoal); background: rgba(30,30,27,0.04); }

@media (max-width: 860px) {
  .product-detail { padding: calc(var(--nav-h) + 32px) 0 64px; }
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .catalogue-header { padding: calc(var(--nav-h) + 40px) 0 32px; }
  .catalogue-grid { grid-template-columns: 1fr; }
  .filter-btn { padding: 8px 14px; font-size: 13px; }
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-section {
  padding: calc(var(--nav-h) + 80px) 0 110px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-aside h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 28px;
}
.contact-aside h1 em { font-style: italic; color: var(--bronze); }
.contact-lead {
  font-size: 18px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 420px;
}
.enquiry-ref {
  display: inline-block;
  margin: 18px 0 0;
  padding: 10px 16px;
  background: rgba(156,125,86,0.1);
  border-left: 2px solid var(--bronze);
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--stone);
}
.enquiry-ref span {
  color: var(--charcoal);
  font-weight: 600;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.detail-item h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 8px;
}
.detail-item a,
.detail-item p {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.6;
}
.detail-item a { transition: color 0.3s var(--ease); }
.detail-item a:hover { color: var(--bronze); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border: 1px solid rgba(30,30,27,0.08);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}
.field .optional { text-transform: none; letter-spacing: 0; color: var(--stone-light); }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid rgba(30,30,27,0.15);
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239C7D56' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-submit { width: 100%; margin-top: 8px; border: none; }
.form-note {
  font-size: 15px;
  color: var(--stone-light);
  text-align: center;
  margin-top: 16px;
}
.form-success {
  font-size: 17px;
  color: var(--bronze);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}
.field input.invalid,
.field textarea.invalid { border-color: #B0524A; }

@media (max-width: 860px) {
  .contact-section { padding: calc(var(--nav-h) + 48px) 0 72px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────
   DISPLAY HEADINGS — tighter tracking to echo the Enchi wordmark
───────────────────────────────────────── */
.hero-heading,
.page-hero-content h1,
.section-header h2,
.statement-text,
.serve-content h2,
.split-content h2,
.materials-text h2,
.cta-band h2,
.contact-aside h1,
.catalogue-header h1,
.about-feature-caption p,
.craft-band-caption p {
  letter-spacing: -0.02em;
}

/* ─────────────────────────────────────────
   ANIMATED WORD REVEAL (statement section)
   Words rise from a clipped mask, staggered, on scroll-in.
───────────────────────────────────────── */
.animate-words .aw-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.12em;   /* room so descenders aren't clipped */
  margin-bottom: -0.12em;
}
.animate-words .aw-inner {
  display: inline-block;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.animate-words.aw-in .aw-inner {
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .animate-words .aw-inner { transition: none; transform: none; opacity: 1; }
}

/* ─────────────────────────────────────────
   CARD ENTRANCE ANIMATION (catalogue + homepage, staggered via inline delay)
───────────────────────────────────────── */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.card-enter { animation: cardIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }

/* ─────────────────────────────────────────
   HOVER CROSSFADE — second product photo on hover
───────────────────────────────────────── */
.cat-image { position: relative; }
.card-image { display: block; }
.cat-image .img-alt,
.card-image .img-alt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
}
.cat-card:hover .img-alt,
.product-card:hover .img-alt { opacity: 1; }

/* ─────────────────────────────────────────
   SKELETON LOADING (shimmer placeholders)
───────────────────────────────────────── */
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
.sk {
  background: linear-gradient(90deg, #ece6dd 25%, #f5f0e9 50%, #ece6dd 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}
.sk-card .sk-img { aspect-ratio: 4/5; }
.sk-line { height: 15px; margin-top: 14px; }
.sk-line.w80 { width: 80%; }
.sk-line.w60 { width: 60%; }
.sk-line.w40 { width: 40%; }
.sk-line.w30 { width: 30%; }
.sk-line.sk-tall { height: 40px; }
.pd-sk-img { aspect-ratio: 4/3; }
@media (prefers-reduced-motion: reduce) {
  .card-enter { animation: none; }
  .sk { animation: none; }
}

/* ─────────────────────────────────────────
   LIGHTBOX (fullscreen product photo viewer)
───────────────────────────────────────── */
.pd-main img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(22, 21, 19, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  cursor: default;
}
.lb-close {
  position: absolute;
  top: 18px; right: 26px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s var(--ease);
}
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(247,244,239,0.35);
  background: transparent;
  color: var(--cream);
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}
.lb-prev:hover, .lb-next:hover { background: rgba(247,244,239,0.12); }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
