/* =========================================================================
   Hatton — a custom Shopify theme for Factory Direct Statues & Fountains
   Design system: classical European garden meets regional Australian craft
   ========================================================================= */

:root {
  /* Stone neutrals */
  --stone-50:  #FAF7F2;
  --stone-100: #F3EDE3;
  --stone-150: #ECE3D2;
  --stone-200: #E5DCC9;
  --stone-300: #D4C7AE;
  --stone-400: #B7AB95;
  --stone-500: #8E836F;

  /* Ink */
  --ink:       #2A2724;
  --ink-soft:  #4A453E;
  --ink-mute:  #756E63;
  --ink-deep:  #1A1815;

  /* Accents */
  --green:        #3B5141;
  --green-deep:   #2A3B2E;
  --green-soft:   #8AA08F;
  --terracotta:   #B25C3E;
  --terracotta-soft: #D89274;

  /* Roles */
  --bg:           var(--stone-50);
  --surface:      #FFFFFF;
  --surface-warm: var(--stone-100);
  --border:       var(--stone-200);
  --text:         var(--ink);
  --text-mute:    var(--ink-mute);
  --link:         var(--green-deep);
  --accent:       var(--terracotta);

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Cormorant', 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Scale */
  --container: 1320px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --t-fast: 160ms;
  --t-base: 280ms;
  --t-slow: 480ms;
}

/* -------------------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: var(--link); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--accent); }
hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }
input, select, textarea { font: inherit; color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--stone-50);
  padding: .75rem 1rem; z-index: 9999; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 2px;
}

/* -------------------------------------------------------------------------
   Type system
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink-deep);
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 .9rem;
  display: inline-block;
}
.eyebrow--accent { color: var(--terracotta); }

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 400;
}

/* -------------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------------- */
.wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(48px, 8vw, 96px); }
.section--tight { padding-block: clamp(32px, 5vw, 56px); }
.section--bare  { padding-block: 0; }
.section--warm  { background: var(--surface-warm); }
.section--dark  { background: var(--ink-deep); color: var(--stone-100); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--stone-50); }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }
.grid--6 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1040px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--6 { grid-template-columns: repeat(6, 1fr); }
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(28px, 4vw, 48px);
  flex-wrap: wrap;
}
.section-head__title { max-width: 720px; }
.section-head h2 { margin: 0; }
.section-head__link { font-size: 14px; letter-spacing: 0.05em; }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink-deep);
  color: var(--stone-50);
}
.btn--primary:hover { background: var(--green-deep); color: var(--stone-50); }
.btn--secondary {
  background: transparent;
  color: var(--ink-deep);
  border-color: var(--ink-deep);
}
.btn--secondary:hover { background: var(--ink-deep); color: var(--stone-50); }
.btn--ghost {
  background: transparent; color: var(--ink-deep);
  padding: 10px 0;
  border-radius: 0;
}
.btn--ghost:hover { color: var(--terracotta); }
.btn--ghost::after {
  content: '→'; margin-left: .35em;
  transition: transform var(--t-fast) var(--ease);
  display: inline-block;
}
.btn--ghost:hover::after { transform: translateX(4px); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* -------------------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------------------- */
.announcement {
  background: var(--green-deep);
  color: var(--stone-100);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px var(--gutter);
}
.announcement a { color: var(--stone-50); text-decoration: underline; text-underline-offset: 3px; }
.announcement a:hover { color: var(--terracotta-soft); }

.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 18px;
}
.header__logo a {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  color: var(--ink-deep);
  letter-spacing: 0.005em;
  line-height: 1.1;
  display: inline-block;
}
.header__logo .logo-mark {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: 2px;
}

.nav {
  display: none;
  justify-content: center;
  gap: clamp(20px, 3vw, 36px);
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  padding: 8px 0;
  position: relative;
}
.nav a:hover { color: var(--ink-deep); }
.nav a.is-active::after,
.nav a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--terracotta);
}
@media (min-width: 900px) { .nav { display: flex; } }

.header__tools {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--ink-deep);
  transition: background var(--t-fast) var(--ease);
}
.icon-btn:hover { background: var(--stone-100); color: var(--ink-deep); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: relative;
}
.cart-count[data-count]:not([data-count='0'])::after {
  content: attr(data-count);
  position: absolute;
  top: 4px; right: 4px;
  background: var(--terracotta);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.menu-toggle { display: inline-flex; }
@media (min-width: 900px) { .menu-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu[aria-hidden='false'] { transform: translateX(0); }
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__nav { padding: 1rem var(--gutter); }
.mobile-menu__nav a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--ink-deep);
  border-bottom: 1px solid var(--border);
}
.mobile-menu__nav a:last-child { border-bottom: 0; }
.mobile-menu__contact { padding: 1.5rem var(--gutter) 2rem; color: var(--ink-mute); font-size: 14px; }
.mobile-menu__contact a { color: var(--ink-deep); }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--surface-warm);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: clamp(480px, 80vh, 760px);
  align-items: stretch;
}
.hero__copy {
  padding: clamp(40px, 8vw, 80px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  margin-inline: auto;
  text-align: left;
}
.hero__copy h1 {
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.hero__copy h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.hero__lede {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 1.25rem 0 2rem;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__media {
  position: relative;
  min-height: 60vw;
  background: var(--stone-200);
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__caption {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(26, 24, 21, 0.78);
  color: var(--stone-100);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1fr 1.1fr; }
  .hero__media { min-height: auto; }
}

/* -------------------------------------------------------------------------
   Trust bar
   ------------------------------------------------------------------------- */
.trust {
  background: var(--ink-deep);
  color: var(--stone-100);
}
.trust__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: clamp(36px, 5vw, 64px);
}
@media (min-width: 720px) { .trust__row { grid-template-columns: repeat(3, 1fr); } }
.trust__item {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 56px;
  position: relative;
  min-height: 48px;
}
.trust__item svg {
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px;
  color: var(--terracotta-soft);
}
.trust__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--stone-50);
  font-weight: 500;
  margin: 0;
}
.trust__desc { font-size: 14px; color: var(--stone-300); margin: 0; line-height: 1.5; }

/* -------------------------------------------------------------------------
   Category grid
   ------------------------------------------------------------------------- */
.cat-grid { display: grid; gap: clamp(16px, 2vw, 24px); grid-template-columns: 1fr 1fr; }
@media (min-width: 720px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--stone-200);
  color: var(--stone-50);
  isolation: isolate;
}
.cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(20,18,15,0.85) 100%);
}
.cat-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(16px, 2.5vw, 28px);
  z-index: 2;
}
.cat-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.1;
  margin: 0 0 4px;
  color: var(--stone-50);
}
.cat-card__meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-200);
  opacity: 0.85;
}
.cat-card:hover img { transform: scale(1.04); }
.cat-card:hover { color: var(--stone-50); }

/* "Tall" featured category — for the first item */
.cat-card--tall { aspect-ratio: 4 / 5; }
@media (min-width: 720px) {
  .cat-grid--feature {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .cat-grid--feature .cat-card:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

/* -------------------------------------------------------------------------
   Product card
   ------------------------------------------------------------------------- */
.products {
  display: grid;
  gap: clamp(20px, 2.5vw, 36px);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .products { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .products { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  group: card;
}
.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--stone-100);
  border-radius: var(--radius);
}
.card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease), opacity var(--t-base) var(--ease);
}
.card__media img.card__media--hover {
  opacity: 0;
}
.card:hover .card__media img { transform: scale(1.03); }
.card:hover .card__media--primary { opacity: 0; }
.card:hover .card__media--hover { opacity: 1; }

.card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--stone-50);
  color: var(--ink-deep);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  z-index: 2;
}
.card__badge--accent { background: var(--terracotta); color: var(--stone-50); }
.card__badge--sold   { background: var(--ink-deep); color: var(--stone-100); }

.card__body { padding: 0 4px; }
.card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 4px;
  color: var(--ink-deep);
}
.card__meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 6px;
}
.card__price {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.card__price del { color: var(--ink-mute); margin-right: 6px; font-weight: 400; }

/* -------------------------------------------------------------------------
   Story (about teaser on home)
   ------------------------------------------------------------------------- */
.story { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (min-width: 900px) { .story { grid-template-columns: 1.1fr 1fr; } }
.story__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--stone-200);
  position: relative;
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__copy { max-width: 56ch; }
.story__copy p { font-size: 1.05rem; color: var(--ink-soft); }
.story__pull {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
  color: var(--ink-deep);
  border-left: 2px solid var(--terracotta);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-weight: 400;
}

/* -------------------------------------------------------------------------
   Designs promo (mix-and-match teaser)
   ------------------------------------------------------------------------- */
.designs-promo {
  position: relative;
  background: var(--green-deep);
  color: var(--stone-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .designs-promo { grid-template-columns: 1.1fr 1fr; align-items: center; }
}
.designs-promo h2 { color: var(--stone-50); }
.designs-promo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.designs-promo__grid img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
}

/* -------------------------------------------------------------------------
   Page (about / generic)
   ------------------------------------------------------------------------- */
.page-hero {
  padding-block: clamp(56px, 8vw, 110px);
  background: var(--surface-warm);
  border-bottom: 1px solid var(--border);
}
.page-hero__inner { max-width: 880px; margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.page-hero h1 { margin: 0 0 .75rem; }

.prose {
  max-width: 70ch;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.prose h2, .prose h3 { margin-top: 2em; }
.prose p { margin-bottom: 1.25em; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.prose ul, .prose ol { margin: 1em 0; padding-left: 1.5em; }
.prose li { margin-bottom: .35em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------------------------------------
   Product detail
   ------------------------------------------------------------------------- */
.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
}
@media (min-width: 900px) {
  .product { grid-template-columns: 1.15fr 1fr; align-items: start; }
}
.product__gallery { display: grid; gap: 12px; }
.product__gallery-main {
  aspect-ratio: 1 / 1;
  background: var(--stone-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.product__gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product__gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.product__gallery-thumbs button {
  aspect-ratio: 1 / 1;
  background: var(--stone-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid transparent;
  padding: 0;
}
.product__gallery-thumbs button.is-active {
  border-color: var(--ink-deep);
}
.product__gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product__info { position: sticky; top: 96px; }
@media (max-width: 899px) { .product__info { position: static; } }
.product__type {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .75rem;
}
.product__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 .75rem;
  font-weight: 500;
}
.product__price {
  font-size: 1.5rem;
  color: var(--ink-deep);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.product__price del { color: var(--ink-mute); font-weight: 400; margin-right: .5rem; }
.product__form { display: grid; gap: 1.25rem; }
.product__option { display: grid; gap: .5rem; }
.product__option-label { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }
.product__variants {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.product__variant {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  background: var(--surface);
  cursor: pointer;
}
.product__variant.is-active { background: var(--ink-deep); color: var(--stone-50); border-color: var(--ink-deep); }

.product__heirloom {
  background: var(--surface-warm);
  border-left: 2px solid var(--terracotta);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 0 0 1.5rem;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.product__heirloom-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 .5rem;
}
.product__heirloom strong { color: var(--ink-deep); font-weight: 500; }
.product__heirloom a {
  color: var(--ink-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.product__heirloom a:hover { color: var(--terracotta); }
.product__heirloom p { margin: 0 0 .5rem; }
.product__heirloom p:last-child { margin-bottom: 0; }

.product__desc {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.product__desc p { margin-bottom: 1em; }

.product__meta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-mute);
}
.product__meta-row strong { color: var(--ink-deep); font-weight: 500; display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 2px; }
@media (min-width: 540px) { .product__meta-row { grid-template-columns: repeat(2, 1fr); } }

/* -------------------------------------------------------------------------
   Collection page
   ------------------------------------------------------------------------- */
.collection-head {
  padding-block: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
}
.collection-head__inner { display: grid; gap: 1rem; }
.collection-head h1 { margin: 0; }
.collection-head__desc { max-width: 60ch; color: var(--ink-soft); font-size: 1.05rem; }
.collection-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.collection-toolbar__count { font-size: 13px; color: var(--ink-mute); letter-spacing: 0.06em; text-transform: uppercase; }
.collection-toolbar select {
  appearance: none;
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 36px 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='none' stroke='%232A2724' stroke-width='1.5' d='M3 4.5l3 3 3-3'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.pagination {
  display: flex; gap: 6px; justify-content: center; margin-top: 3rem;
}
.pagination a, .pagination span {
  min-width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-deep);
  text-decoration: none;
  padding: 0 12px;
}
.pagination a:hover { background: var(--stone-100); color: var(--ink-deep); }
.pagination .is-current { background: var(--ink-deep); color: var(--stone-50); border-color: var(--ink-deep); }

/* List collections */
.list-collections {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .list-collections { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .list-collections { grid-template-columns: repeat(3, 1fr); } }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.footer {
  background: var(--ink-deep);
  color: var(--stone-200);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: 24px;
}
.footer a { color: var(--stone-100); }
.footer a:hover { color: var(--terracotta-soft); }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin: 0 0 1rem;
  font-weight: 500;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; }
}
.footer__brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--stone-50);
  margin: 0 0 .75rem;
}
.footer__tag { font-size: 14px; color: var(--stone-300); max-width: 38ch; line-height: 1.6; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: .65rem; font-size: 14px; }
.footer__address { font-size: 14px; line-height: 1.7; color: var(--stone-300); }
.footer__address strong { color: var(--stone-100); font-weight: 500; display: block; margin-bottom: 4px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 12px;
  color: var(--stone-400);
  letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
   Process steps (Designs page)
   ------------------------------------------------------------------------- */
.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 24px;
  align-items: start;
  position: relative;
}
.process-step__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  grid-row: 1;
}
.process-step__media {
  grid-column: 1 / -1;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-100);
  order: 3;
}
.process-step__media img { width: 100%; height: 100%; object-fit: cover; }
.process-step__body { grid-column: 2; order: 2; }
.process-step__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 4px 0 .5rem;
  color: var(--ink-deep);
}
.process-step__body p { color: var(--ink-soft); margin: 0; }

/* -------------------------------------------------------------------------
   Visit page (hours table, contact card, map)
   ------------------------------------------------------------------------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1.1fr 1fr; align-items: start; } }

.visit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}
.visit-card + .visit-card { margin-top: 16px; }
.visit-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 1rem;
}
.visit-card__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 4px;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { font-weight: 500; color: var(--ink-deep); }
.hours-table td { color: var(--ink-soft); text-align: right; font-variant-numeric: tabular-nums; }

.map-embed {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: var(--stone-100);
  overflow: hidden;
  position: relative;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.map-embed__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  color: var(--ink-mute); font-size: 14px;
  background: linear-gradient(135deg, var(--stone-100), var(--stone-200));
}

/* -------------------------------------------------------------------------
   Testimonials / quote cards
   ------------------------------------------------------------------------- */
.quotes {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.quote__mark {
  width: 28px; height: 22px;
  color: var(--terracotta);
  opacity: 0.85;
}
.quote__body {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink-deep);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}
.quote__attr {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quote__attr strong {
  color: var(--ink-deep);
  font-weight: 500;
  font-size: 14px;
}

/* -------------------------------------------------------------------------
   Breadcrumbs
   ------------------------------------------------------------------------- */
.crumbs {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.crumbs a { color: var(--ink-mute); text-decoration: none; }
.crumbs a:hover { color: var(--ink-deep); }
.crumbs__sep { opacity: 0.4; }
.crumbs__current { color: var(--ink-deep); }

/* -------------------------------------------------------------------------
   FAQ / accordion
   ------------------------------------------------------------------------- */
.faq {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-inline: auto;
}
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-deep);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--ink-mute);
  transition: transform var(--t-fast) var(--ease);
  flex-shrink: 0;
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  padding-top: .75rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.faq__a p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   Contact form
   ------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.3fr 1fr; align-items: start; } }

.contact-form { display: grid; gap: 1rem; }
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .contact-form .field-row { grid-template-columns: 1fr 1fr; } }

.contact-aside {
  background: var(--surface-warm);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}
.contact-aside h3 { font-family: var(--font-serif); font-size: 1.4rem; margin: 0 0 1rem; }
.contact-aside p { font-size: 14px; color: var(--ink-soft); }
.contact-aside a { color: var(--ink-deep); text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------------------------------------
   Lifestyle / customer-photos strip
   ------------------------------------------------------------------------- */
.lifestyle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 720px) { .lifestyle { grid-template-columns: repeat(4, 1fr); } }
.lifestyle__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-100);
  position: relative;
}
.lifestyle__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.lifestyle__item:hover img { transform: scale(1.04); }
.lifestyle__cap {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(20,18,15,0.65);
  color: var(--stone-50);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* -------------------------------------------------------------------------
   Callout — centred text block (used for "Two things in one" framing etc.)
   ------------------------------------------------------------------------- */
.callout { text-align: center; max-width: 720px; margin-inline: auto; }
.callout__h {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin: .5rem 0 1.25rem;
  color: var(--ink-deep);
}
.callout__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-align: left;
  max-width: 60ch;
  margin-inline: auto;
}
.callout__body p { margin: 0 0 1em; }
.callout__body p:last-child { margin-bottom: 0; }
.callout__body em { font-style: italic; color: var(--ink-deep); }
.callout__pull {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.4;
  color: var(--ink-deep);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin: 2rem auto 0;
  max-width: 56ch;
  font-style: italic;
  font-weight: 400;
}

/* -------------------------------------------------------------------------
   Guide steps (after-your-piece-arrives / care-and-repair)
   ------------------------------------------------------------------------- */
.guide-head { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.guide-head__h { margin: .5rem 0; }

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
  counter-reset: step;
}

.guide-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px 24px;
  align-items: start;
  position: relative;
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--border);
}
.guide-item:last-child { border-bottom: 0; padding-bottom: 0; }

.guide-list--plain .guide-item { grid-template-columns: 1fr; }

.guide-item__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  min-width: 60px;
}

.guide-item__kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 .25rem;
  font-weight: 500;
}

.guide-item__title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 500;
  margin: 0 0 .75rem;
  color: var(--ink-deep);
  line-height: 1.2;
}

.guide-item__text {
  color: var(--ink-soft);
  line-height: 1.7;
}
.guide-item__text p { margin: 0 0 1em; }
.guide-item__text p:last-child { margin-bottom: 0; }
.guide-item__text ul, .guide-item__text ol {
  margin: .5em 0 1em;
  padding-left: 1.4em;
}
.guide-item__text li { margin-bottom: .35em; }
.guide-item__text strong { color: var(--ink-deep); font-weight: 500; }

.guide-item__shop {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--surface-warm);
  border-radius: var(--radius);
  border-left: 2px solid var(--terracotta);
}
.guide-item__shop-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 .5rem;
}
.guide-item__shop-body { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.guide-item__shop-body ul { list-style: none; padding: 0; margin: 0; }
.guide-item__shop-body ul li { padding: 2px 0; }
.guide-item__shop-body ul li::before { content: '+ '; color: var(--terracotta); margin-right: 4px; }
.guide-item__shop-body a {
  color: var(--ink-deep);
  text-decoration: underline;
  text-decoration-color: var(--stone-300);
  text-underline-offset: 3px;
}
.guide-item__shop-body a:hover { text-decoration-color: var(--terracotta); color: var(--terracotta); }

.guide-item__video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.25rem;
  padding: 10px 16px;
  background: var(--ink-deep);
  color: var(--stone-50);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--t-fast) var(--ease);
}
.guide-item__video:hover { background: var(--green-deep); color: var(--stone-50); }
.guide-item__video svg { width: 18px; height: 18px; color: var(--terracotta-soft); flex-shrink: 0; }
.guide-item__video-meta { opacity: 0.65; font-size: 12px; margin-left: 4px; }

.guide-foot { margin-top: clamp(32px, 4vw, 48px); text-align: center; }

@media (max-width: 540px) {
  .guide-item { grid-template-columns: 1fr; gap: 12px; }
  .guide-item__num { font-size: 2rem; min-width: 0; }
}

/* -------------------------------------------------------------------------
   Gallery grid (masonry-ish)
   ------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: clamp(10px, 1.4vw, 16px);
}
@media (min-width: 720px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; } }
@media (min-width: 1040px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; } }

.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone-100);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 12px 12px auto;
  background: rgba(20,18,15,0.7);
  color: var(--stone-50);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  max-width: calc(100% - 24px);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* -------------------------------------------------------------------------
   Forms / inputs
   ------------------------------------------------------------------------- */
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field textarea, .field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 15px;
  width: 100%;
  transition: border-color var(--t-fast) var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--ink-deep);
  outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }

/* -------------------------------------------------------------------------
   Cart drawer (minimal)
   ------------------------------------------------------------------------- */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100%);
  height: 100vh;
  background: var(--bg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0,0,0,0.1);
}
.cart-drawer[aria-hidden='false'] { transform: translateX(0); }
.cart-drawer__head { padding: 20px var(--gutter); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 20px var(--gutter); }
.cart-drawer__foot { padding: 20px var(--gutter); border-top: 1px solid var(--border); background: var(--surface-warm); }

.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item__title { font-family: var(--font-serif); font-size: 1rem; line-height: 1.2; margin: 0 0 4px; }
.cart-item__variant { font-size: 12px; color: var(--ink-mute); }
.cart-item__price { font-size: 14px; color: var(--ink); }

.backdrop {
  position: fixed; inset: 0;
  background: rgba(20, 18, 15, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.backdrop[aria-hidden='false'] { opacity: 1; pointer-events: auto; }

/* -------------------------------------------------------------------------
   Utilities
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-mute { color: var(--text-mute); }
.flow > * + * { margin-top: 1em; }
.flow-lg > * + * { margin-top: 1.5em; }
.hidden { display: none !important; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Print */
@media print {
  .header, .footer, .announcement, .cart-drawer, .backdrop { display: none !important; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
