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

:root {
  --porcelain: #FAFAF8;
  --stone:     #F2EDE6;
  --parchment: #E8E0D5;
  --charcoal:  #181714;
  --ink:       #2A2724;
  --gold:      #A87840;
  --gold-lt:   #C49858;
  --muted:     #908880;
  --border:    rgba(26, 25, 22, 0.1);
  --border-dk: rgba(250, 250, 248, 0.08);

  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Inter', system-ui, sans-serif;

  --px: clamp(1.5rem, 5.5vw, 5rem);
  --py: clamp(5rem, 9vw, 9rem);
}

html { scroll-behavior: smooth; }

/* ── SCROLLBAR ─────────────────────────────────────── */
/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--parchment) var(--stone);
}
/* WebKit / Blink */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--stone); }
::-webkit-scrollbar-thumb {
  background: var(--parchment);
  border-radius: 0;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
body {
  font-family: var(--ff-b);
  background: var(--porcelain);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

/* ── UTILITIES ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

/* ── NAV ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100vw;
  padding: 1.75rem var(--px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease,
              padding-top 0.35s ease, padding-bottom 0.35s ease;
}
.site-nav.solid {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--border);
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
}

.nav-logo {
  font-family: var(--ff-d);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  white-space: nowrap;
}
.nav-logo b { color: var(--gold); font-weight: 600; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  font-size: 0.71875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  /* Always flex so opacity/transform can transition — visibility
     keeps it out of tab order and hit-testing when closed */
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 190;
  background: var(--porcelain);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--px);
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--ff-d);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(14px);
  transition: color 0.3s, opacity 0.3s ease, transform 0.35s ease;
}
.nav-mobile a:hover { color: var(--gold); }

/* Stagger links in on open */
.nav-mobile.open a          { opacity: 1; transform: none; }
.nav-mobile.open a:nth-child(1) { transition-delay: 0.07s; }
.nav-mobile.open a:nth-child(2) { transition-delay: 0.14s; }
.nav-mobile.open a:nth-child(3) { transition-delay: 0.21s; }
.nav-mobile.open a:nth-child(4) { transition-delay: 0.28s; }
.nav-sentinel { height: 1px; width: 100%; pointer-events: none; }

/* ── HOME HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--px) clamp(3rem, 6vh, 5rem);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.hero-heading {
  font-family: var(--ff-d);
  font-size: clamp(4.5rem, 11vw, 12rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin: 1.5rem 0 clamp(1.5rem, 3vw, 2.5rem);
}
.hero-heading em { font-style: italic; color: var(--gold); }
.hero-clip { overflow: hidden; }
.hero-line {
  display: block;
  animation: lineUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-clip:nth-child(1) .hero-line { animation-delay: 0.1s; }
.hero-clip:nth-child(2) .hero-line { animation-delay: 0.25s; }
.hero-clip:nth-child(3) .hero-line { animation-delay: 0.4s; }
@keyframes lineUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.hero-sub {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Plate decoration */
.hero-plate {
  position: relative;
  width: clamp(220px, 34vw, 500px);
  height: clamp(220px, 34vw, 500px);
  flex-shrink: 0;
  animation: plateIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
@keyframes plateIn {
  from { opacity: 0; transform: scale(0.86); }
  to   { opacity: 1; transform: scale(1); }
}
.plate-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid;
  transform: translate(-50%, -50%);
}
.plate-ring--1 { width: 100%; height: 100%; background: var(--stone);     border-color: rgba(168,120,64,.14); }
.plate-ring--2 { width: 78%;  height: 78%;  background: var(--parchment); border-color: rgba(168,120,64,.18); }
.plate-ring--3 { width: 54%;  height: 54%;  background: var(--porcelain); border-color: rgba(168,120,64,.22); }
.plate-ring--4 {
  width: 30%; height: 30%;
  background: transparent;
  border-color: rgba(168,120,64,.28);
  border-style: dashed;
  animation: spin 70s linear infinite;
}
.plate-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 2.5rem;
  animation: fadeUp 0.8s ease 1.2s both;
}
.hero-scroll-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 44px; height: 1px;
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: sweep 2.5s ease 1.5s infinite;
}
@keyframes sweep { from { left: -100%; } to { left: 110%; } }

/* ── SECTION CHROME ────────────────────────────────── */
.section { padding: var(--py) var(--px); }
.section--stone { background: var(--stone); }
.section--dark  { background: var(--charcoal); color: var(--porcelain); }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.sec-head--dk { border-color: var(--border-dk); }

.sec-title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-top: 0.625rem;
}
.sec-title--lt { color: var(--porcelain); }

.sec-action {
  font-size: 0.71875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  white-space: nowrap;
  align-self: flex-end;
  transition: color 0.3s, border-color 0.3s;
}
.sec-action:hover { color: var(--gold); border-color: var(--gold-lt); }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid;
  cursor: pointer;
  transition: background 0.35s, color 0.35s, border-color 0.35s, gap 0.3s;
}
.btn:hover { gap: 0.9rem; }
.btn-dark  { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-dark:hover  { background: var(--charcoal); color: var(--porcelain); }
.btn-gold  { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-gold:hover  { background: var(--gold); color: var(--porcelain); }
.btn-light { border-color: rgba(250,250,248,.35); color: var(--porcelain); background: transparent; }
.btn-light:hover { background: var(--porcelain); color: var(--charcoal); border-color: var(--porcelain); }

/* ── CATEGORY CARDS ────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.cat-card {
  display: block;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.cat-card:hover {
  border-color: rgba(168,120,64,.35);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(26,25,22,.08);
}
.cat-thumb {
  aspect-ratio: 2 / 3;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.cat-card:hover .cat-thumb { background: var(--parchment); }

/* concentric-circle plate inside each thumb */
.cat-plate {
  position: relative;
  width: 54%; height: 54%;
}
.cat-plate::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid rgba(168,120,64,.22);
}
.cat-plate::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58%; height: 58%;
  border-radius: 50%;
  border: 1px solid rgba(168,120,64,.18);
}
.cat-plate-dot {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(168,120,64,.3);
  transition: background 0.3s;
}
.cat-card:hover .cat-plate-dot { background: var(--gold); }

.cat-info {
  padding: 1.125rem 1.25rem 1.375rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-name {
  font-family: var(--ff-d);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
}
.cat-arrow {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.3s, transform 0.3s;
}
.cat-card:hover .cat-arrow { color: var(--gold); transform: translateX(3px); }

/* ── CRAFT STATEMENT ───────────────────────────────── */
.craft-quote {
  font-family: var(--ff-d);
  font-size: clamp(1.875rem, 4vw, 3.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.22;
  color: rgba(250, 250, 248, 0.85);
  max-width: 22ch;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.craft-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.craft-cols p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.82;
  color: rgba(250, 250, 248, 0.58);
}
.craft-cols p + p { margin-top: 1.1em; }

/* ── FEATURED PRODUCTS (HOME) ──────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.feat-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(26,25,22,.09);
}
.feat-thumb {
  aspect-ratio: 3 / 4;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.4s;
}
.feat-card:hover .feat-thumb { background: var(--parchment); }
.feat-thumb-label {
  position: absolute;
  top: 1rem; left: 1.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(168,120,64,.55);
}
.feat-plate {
  position: relative;
  width: 58%; height: 58%;
}
.feat-plate::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid rgba(168,120,64,.2);
}
.feat-plate::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58%; height: 58%;
  border-radius: 50%;
  border: 1px solid rgba(168,120,64,.17);
}
.feat-info {
  padding: 1.375rem 1.375rem 1.625rem;
  border-top: 1px solid var(--border);
}
.feat-info .eyebrow { margin-bottom: 0.375rem; font-size: 0.625rem; }
.feat-name {
  font-family: var(--ff-d);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.feat-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.feat-cta {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s;
}
.feat-card:hover .feat-cta { letter-spacing: 0.18em; }

/* ── ABOUT TEASER ──────────────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.about-teaser-title {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.about-teaser-title em { font-style: italic; color: var(--gold); }
.about-teaser-body {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.8;
  color: #4A4640;
  max-width: 50ch;
  margin-bottom: 2rem;
}
.about-visual {
  background: var(--stone);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual-plate {
  position: relative;
  width: 52%; height: 52%;
}
.about-visual-plate::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid rgba(168,120,64,.2);
}
.about-visual-plate::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58%; height: 58%;
  border-radius: 50%;
  border: 1px solid rgba(168,120,64,.18);
}
.about-visual-label {
  position: absolute;
  bottom: 1.25rem; right: 1.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(168,120,64,.45);
}

/* ── CTA STRIP ─────────────────────────────────────── */
.cta-strip {
  background: var(--charcoal);
  padding: var(--py) var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}
.cta-strip-title {
  font-family: var(--ff-d);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--porcelain);
  margin-bottom: 1.5rem;
}
.cta-strip-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.cta-strip-contacts a {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 300;
  color: rgba(250, 250, 248, 0.5);
  transition: color 0.3s;
}
.cta-strip-contacts a:hover { color: var(--gold-lt); }
.cta-tagline {
  font-family: var(--ff-d);
  font-size: clamp(1.125rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(250, 250, 248, 0.22);
  line-height: 1.5;
  max-width: 28ch;
}

/* ── PAGE HERO (interior) ──────────────────────────── */
.page-hero {
  padding: calc(6rem + var(--py)) var(--px) var(--py);
  background: var(--stone);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 780px; }
.page-hero-title {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--charcoal);
  margin-top: 1rem;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  margin-top: 1.75rem;
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
}

/* ── PRODUCTS PAGE ─────────────────────────────────── */
.prod-category { padding: var(--py) var(--px); }
.prod-category + .prod-category { border-top: 1px solid var(--border); }
.prod-category:nth-child(even) { background: var(--stone); }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}
.prod-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26,25,22,.09);
  border-color: rgba(168,120,64,.28);
}
.prod-thumb {
  aspect-ratio: 4 / 3;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.4s;
}
.prod-card:hover .prod-thumb { background: var(--parchment); }

/* plate shape (default) */
.prod-shape {
  position: relative;
  width: 52%; height: 52%;
}
.prod-shape::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--parchment);
  border: 1px solid rgba(168,120,64,.2);
}
.prod-shape::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56%; height: 56%;
  border-radius: 50%;
  border: 1px solid rgba(168,120,64,.16);
}

/* mug silhouette */
.prod-shape--mug {
  width: 34%; height: 42%;
  background: var(--parchment);
  border: 1px solid rgba(168,120,64,.2);
  border-radius: 3px 3px 7px 7px;
  position: relative;
}
.prod-shape--mug::before { display: none; }
.prod-shape--mug::after {
  content: '';
  position: absolute;
  right: -26%;
  top: 18%;
  width: 26%; height: 42%;
  border-right: 1px solid rgba(168,120,64,.25);
  border-top: 1px solid rgba(168,120,64,.25);
  border-bottom: 1px solid rgba(168,120,64,.25);
  border-radius: 0 50% 50% 0;
  background: transparent;
  transform: none;
}

.prod-info {
  padding: 1.375rem 1.375rem 1.625rem;
  border-top: 1px solid var(--border);
}
.prod-cat-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.prod-name {
  font-family: var(--ff-d);
  font-size: 1.1875rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
.prod-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.prod-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.prod-btn:hover { color: var(--gold); border-color: var(--gold-lt); gap: 0.7rem; }

/* ── ABOUT PAGE ────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.about-story-body p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.82;
  color: #4A4640;
}
.about-story-body p + p { margin-top: 1.2em; }
.about-story-visual {
  background: var(--stone);
  border: 1px solid var(--border);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-story-visual .about-visual-plate { width: 58%; height: 58%; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-item {
  background: var(--porcelain);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  text-align: center;
}
.stat-num {
  font-family: var(--ff-d);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2.5rem);
}
.value-item {
  padding: clamp(2rem, 3.5vw, 3rem);
  border: 1px solid var(--border);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.value-item:hover { border-color: rgba(168,120,64,.3); box-shadow: 0 10px 40px rgba(26,25,22,.06); }
.value-num {
  font-family: var(--ff-d);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(168,120,64,.18);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.value-title {
  font-family: var(--ff-d);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.875rem;
}
.value-body {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* ── CONTACT PAGE ──────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-form-title {
  font-family: var(--ff-d);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}
.form-group { margin-bottom: 1.75rem; }
.form-group label {
  display: block;
  font-size: 0.6375rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.625rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.contact-info-title {
  font-family: var(--ff-d);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.contact-info-lbl {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.375rem;
}
.contact-info-val {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--ink);
}
.contact-info-val a { transition: color 0.3s; }
.contact-info-val a:hover { color: var(--gold); }
.contact-socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-socials a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.contact-socials a:hover { color: var(--gold); border-color: var(--gold-lt); }

/* ── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 250, 248, 0.58);
  padding: clamp(3rem, 7vw, 6rem) var(--px) 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border-dk);
  margin-bottom: 2rem;
}
.footer-brand .nav-logo { display: block; color: var(--porcelain); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; font-weight: 300; line-height: 1.72; max-width: 30ch; }
.footer-col h4 {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 250, 248, 0.28);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { font-size: 0.875rem; font-weight: 300; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.71875rem; font-weight: 300; }
.footer-socials { display: flex; gap: 1.5rem; }
.footer-socials a {
  font-size: 0.71875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--gold-lt); }

/* ── IMAGES ────────────────────────────────────────── */
/* Cat thumbnails */
.cat-thumb {
  overflow: hidden;
}
.cat-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.cat-card:hover .cat-thumb img { transform: scale(1.08); }

/* Featured product thumbs */
.feat-thumb {
  overflow: hidden;
}
.feat-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.feat-card:hover .feat-thumb img { transform: scale(1.06); }

/* Product card thumbs */
.prod-thumb {
  overflow: hidden;
}
.prod-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}
.prod-card:hover .prod-thumb img { transform: scale(1.06); }

/* About / story visuals */
.about-visual img,
.about-story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero plate image */
.plate-frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(168,120,64,.18);
  background: var(--stone);
}
.plate-spin-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 86%; height: 86%;
  border-radius: 50%;
  border: 1px dashed rgba(168,120,64,.28);
  animation: spin 70s linear infinite;
}
.plate-image {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72%; height: 72%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  border: 1px solid rgba(168,120,64,.12);
}
.plate-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Craft section: pottery image as subtle bg */
.section--dark {
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(src/pottery.jpg) center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }

/* ── SWUP PAGE TRANSITIONS ───────────────────────────── */
/* Swup adds/removes html.is-animating and detects transition       */
/* duration automatically via transitionend on .swup-transition-*.  */
.swup-transition-main {
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
  transform: none;
}

html.is-animating .swup-transition-main {
  opacity: 0;
  transform: translateY(6px);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-plate { display: none; }
  .craft-cols, .about-teaser, .about-story { grid-template-columns: 1fr; }
  .cta-strip { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
