:root {
  --bg: #F8EFD9;
  --surface: #FFF8EA;
  --primary: #A61E22;
  --primary-dark: #7D1518;
  --clay: #8A4A2F;
  --gold: #C59A4A;
  --text: #241713;
  --muted: #6F5A4F;
  --border: rgba(36, 23, 19, 0.14);
  --shadow: 0 24px 60px rgba(36, 23, 19, 0.16);
  --soft-shadow: 0 18px 45px rgba(36, 23, 19, 0.10);
  --card-shadow: 0 16px 35px rgba(36, 23, 19, 0.12);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(197, 154, 74, .16), transparent 20rem),
    radial-gradient(circle at 85% 22%, rgba(138, 74, 47, .08), transparent 24rem),
    linear-gradient(90deg, rgba(36, 23, 19, .026) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 28px 28px, auto;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='190'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='190' height='190' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid rgba(197, 154, 74, .86); outline-offset: 4px; }

.skip-link, .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 2000;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  background: var(--surface);
}

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-head { margin-bottom: 44px; max-width: 700px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.light, .light { color: var(--bg); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: .71rem;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(248, 239, 217, .76); }
h1, h2, h3 { font-family: var(--display); font-weight: 500; }
h1 {
  margin: 0;
  font-size: clamp(4.8rem, 7vw, 8.2rem);
  line-height: .92;
  letter-spacing: -.045em;
}
h1 span, h2 span { display: block; color: var(--primary); font-style: italic; }
h2 { margin: 0 0 18px; font-size: clamp(2.25rem, 4.4vw, 4.5rem); line-height: .98; letter-spacing: -.025em; }
h3 { margin: 0 0 8px; font-size: 1.42rem; line-height: 1.08; letter-spacing: -.01em; }
p { color: var(--muted); }

.site-header { position: fixed; z-index: 900; top: 18px; left: 0; right: 0; transition: top .25s ease; }
.nav-shell {
  width: min(1040px, calc(100% - 36px));
  min-height: 78px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 251, 240, .98), rgba(255, 248, 234, .93));
  border: 1px solid rgba(36, 23, 19, .1);
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(36, 23, 19, .14), inset 0 1px rgba(255, 255, 255, .8);
  backdrop-filter: blur(12px);
}
.is-compact { top: 8px; }
.is-compact .nav-shell { min-height: 64px; box-shadow: 0 14px 35px rgba(36, 23, 19, .13); }
.brand img { width: 142px; height: 66px; object-fit: contain; object-position: center; transition: width .25s ease, transform .25s ease; filter: drop-shadow(0 4px 6px rgba(36, 23, 19, .08)); }
.brand:hover img { transform: translateY(-1px) scale(1.02); }
.is-compact .brand img { width: 124px; }
.nav-group { display: flex; align-items: center; gap: 26px; }
.nav-right { justify-content: flex-end; }
.nav-group a {
  position: relative;
  padding: 12px 0;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nav-group a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}
.nav-group a:hover { color: var(--primary); }
.nav-group a:hover::after, .nav-group a:focus-visible::after { transform: scaleX(1); }
.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(36, 23, 19, .15);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  padding: 0 8px 0 13px;
  cursor: pointer;
  box-shadow: inset 0 1px rgba(255, 255, 255, .8);
}
.cart-trigger:hover { border-color: rgba(166, 30, 34, .42); color: var(--primary); }
.cart-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
  position: relative;
}
.cart-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -7px;
  height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}
.cart-trigger strong, [data-mobile-cart-count] {
  min-width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .76rem;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(166, 30, 34, .28);
}
.menu-toggle { display: none; background: transparent; border: 0; padding: 12px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--text); transition: transform .2s ease; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: auto;
  padding: clamp(5.5rem, 7vw, 7.5rem) 0 clamp(4rem, 6vw, 5.5rem);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -26px;
  height: 64px;
  background: var(--primary-dark);
  border-radius: 50% 50% 0 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(4.5rem, 7vw, 8rem);
}
.hero-copy { max-width: 560px; position: relative; z-index: 3; }
.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero-title {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin: 0;
  font-size: clamp(3.6rem, 4.4vw, 5.25rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text);
}
.hero-title .title-line {
  display: block;
  white-space: nowrap;
}
.hero-title .primary {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}
.hero-title .accent {
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
  font-size: .92em;
  letter-spacing: -.025em;
}
.hero-title .secondary {
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  font-size: .86em;
  letter-spacing: -.035em;
}
.hero-subtitle {
  max-width: 430px;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(36, 23, 19, .76);
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
}
.button-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(36, 23, 19, .38); }
.btn:active, .round-btn:active, .cart-trigger:active { transform: translateY(0); }
.btn.primary {
  min-height: 54px;
  padding-inline: 30px;
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(166, 30, 34, .18);
}
.btn.primary:hover { background: var(--primary-dark); box-shadow: 0 18px 34px rgba(166, 30, 34, .28); }
.btn.light { color: var(--bg); border-color: rgba(248, 239, 217, .5); background: rgba(255, 248, 234, .04); }
.btn.light:hover { background: rgba(255, 248, 234, .12); }
.btn.full { width: 100%; }
.btn.small { min-height: 40px; padding: 0 15px; font-size: .67rem; }
.hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 248, 234, .68);
  box-shadow: var(--soft-shadow);
}
.hero-meta { margin-top: 1rem; }
.hero-trust span {
  padding: 10px 13px;
  color: var(--clay);
  font-size: .72rem;
  font-weight: 850;
  white-space: nowrap;
}
.hero-trust span + span { border-left: 1px solid var(--border); }
.hero-art { position: relative; display: grid; place-items: center; min-height: 590px; }
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(1.5rem) scale(.92);
  transform-origin: center;
  animation: heroFloat 6s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroFloat {
  0% {
    transform: translateX(1.5rem) translateY(0) scale(.92);
  }
  50% {
    transform: translateX(1.5rem) translateY(-.45rem) scale(.925);
  }
  100% {
    transform: translateX(1.5rem) translateY(0) scale(.92);
  }
}

@media (min-width: 1024px) and (max-height: 800px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-meta {
    margin-top: .75rem;
  }

  .hero-trust span {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.hero-art::before {
  content: "";
  position: absolute;
  width: min(595px, 82vw);
  height: min(578px, 80vw);
  border: 1px solid rgba(138, 74, 47, .18);
  border-radius: 48% 52% 51% 49%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 248, 234, .7), transparent 18%),
    radial-gradient(circle, rgba(197, 154, 74, .16), transparent 64%);
  transform: scale(1);
  opacity: .18;
}
.hero-art::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: min(705px, 94vw);
  height: min(705px, 94vw);
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .22;
  background-image:
    radial-gradient(circle at 30% 28%, rgba(255, 248, 234, .8), transparent 9rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23g)' opacity='.16'/%3E%3C/svg%3E");
}
.hero-art img {
  position: relative;
  z-index: 2;
  max-width: min(620px, 45vw);
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(36, 23, 19, .24));
  animation: heroShadowBreath 6s ease-in-out infinite;
}

@keyframes heroShadowBreath {
  0% {
    filter: drop-shadow(0 28px 34px rgba(36, 23, 19, .18));
  }
  50% {
    filter: drop-shadow(0 32px 38px rgba(36, 23, 19, .22));
  }
  100% {
    filter: drop-shadow(0 28px 34px rgba(36, 23, 19, .18));
  }
}
.mask-shadow {
  position: absolute;
  z-index: 1;
  bottom: 64px;
  width: 58%;
  height: 42px;
  border-radius: 50%;
  background: rgba(36, 23, 19, .22);
  opacity: .22;
  transform: translateY(1.8rem) scaleX(.9);
  filter: blur(18px);
}
.hero-brush-ring {
  position: absolute;
  z-index: 1;
  right: 5%;
  top: 24%;
  width: min(360px, 34vw);
  height: min(360px, 34vw);
  border: 10px solid var(--primary);
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(25deg);
  opacity: .34;
  pointer-events: none;
}
.hero-pigment {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: inset 0 0 0 6px rgba(36, 23, 19, .08), 0 14px 26px rgba(36, 23, 19, .13);
}
.hero-pigment-one {
  right: 8%;
  top: 19%;
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 35% 35%, #e1b557, var(--clay));
  opacity: .82;
}
.hero-pigment-two {
  right: 13%;
  top: 33%;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 35% 35%, #cf3940, var(--primary-dark));
  opacity: .75;
}
.pigment,
.brush-stroke,
.thread-mark,
.clay-mark {
  display: none !important;
}
.pigment {
  position: absolute;
  z-index: 3;
  right: 4%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, #e3b95b, var(--clay));
  box-shadow: inset 0 0 0 9px rgba(36, 23, 19, .12), var(--shadow);
  transform: scale(.78);
  opacity: .72;
}
.pigment-two { top: 31%; right: 12%; width: 52px; height: 52px; background: radial-gradient(circle, #bd2d31, #6b1618); }
.pigment-one { top: 14%; }
.pigment-three { right: 18%; bottom: 18%; width: 22px; height: 22px; background: var(--primary); opacity: .72; }
.brush-stroke { position: absolute; right: 3%; top: 43%; width: 280px; height: 230px; border: 18px solid var(--primary); border-left-color: transparent; border-top-color: transparent; border-radius: 50%; transform: rotate(24deg); opacity: .45; }
.brush-stroke.second { right: 22%; top: 9%; width: 120px; height: 120px; border-width: 4px; opacity: .18; transform: rotate(-20deg); }
.thread-mark { position: absolute; left: 8%; top: 18%; width: 128px; height: 152px; border: 2px solid rgba(138, 74, 47, .24); border-radius: 50% 42% 58% 46%; }
.clay-mark { position: absolute; z-index: 1; width: 72px; height: 2px; background: rgba(138, 74, 47, .3); box-shadow: 0 10px rgba(138, 74, 47, .18), 0 20px rgba(138, 74, 47, .12); transform: rotate(-12deg); }
.clay-one { left: 2%; bottom: 22%; }
.clay-two { right: 4%; bottom: 7%; transform: rotate(18deg); }
.motif { position: absolute; width: 170px; height: 220px; opacity: .18; border: 1px solid var(--clay); border-radius: 46% 54% 52% 48%; }
.motif-left { left: 3%; top: 20%; }
.motif-right { right: 2%; bottom: 12%; }

.paint-panel {
  position: relative;
  margin: 0;
  padding: 98px 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(197, 154, 74, .12), transparent 22rem),
    radial-gradient(circle at 82% 42%, rgba(36, 23, 19, .16), transparent 24rem),
    linear-gradient(115deg, var(--primary-dark), #941a1d 46%, #6f1215);
  color: var(--bg);
  overflow: hidden;
}
.paint-panel::before, .paint-panel::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  height: 42px;
  background: var(--bg);
  border-radius: 50%;
  z-index: 2;
}
.paint-panel::before { top: -24px; }
.paint-panel::after { bottom: -24px; }
.paint-panel > .container { position: relative; z-index: 3; }
.paint-panel p { color: rgba(248, 239, 217, .84); }
.paint-panel h2 span { color: var(--gold); }
.paint-panel .container::before {
  content: "";
  position: absolute;
  inset: -40px;
  opacity: .11;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 80%, transparent 34px, rgba(248, 239, 217, .38) 35px, transparent 36px),
    linear-gradient(45deg, transparent 48%, rgba(248, 239, 217, .25) 49%, transparent 50%);
  background-size: 160px 160px, 44px 44px;
}
.paint-panel .container::after {
  content: "";
  position: absolute;
  inset: -70px -30px;
  pointer-events: none;
  opacity: .18;
  background:
    radial-gradient(ellipse at 18% 35%, rgba(255, 248, 234, .16), transparent 18rem),
    radial-gradient(ellipse at 78% 60%, rgba(36, 23, 19, .28), transparent 20rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='170' viewBox='0 0 220 170'%3E%3Cg fill='none' stroke='%23F8EFD9' stroke-opacity='.24' stroke-width='1'%3E%3Cpath d='M30 120c34-62 82-62 118 0'/%3E%3Cpath d='M54 120c22-38 48-38 70 0'/%3E%3Ccircle cx='150' cy='62' r='18'/%3E%3Cpath d='M150 38v48M126 62h48'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, auto, 260px 210px;
}
.philosophy { padding: 0; }
.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(4rem, 7vw, 8rem);
  padding: clamp(7rem, 9vw, 10rem) 0;
}
.philosophy .container::before { opacity: .12; }
.philosophy-title {
  max-width: 620px;
  font-size: clamp(3.4rem, 4.5vw, 5.2rem);
  line-height: .96;
  letter-spacing: -.04em;
}
.philosophy-title .light,
.philosophy-title .white,
.philosophy-title strong {
  color: #FFF8EA;
  font-style: normal;
  font-weight: 500;
}
.philosophy-title .gold,
.philosophy-title em {
  display: block;
  max-width: 560px;
  color: #D8B45E;
  font-style: italic;
  font-weight: 500;
  font-size: .82em;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.philosophy-copy {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 248, 234, .88) !important;
}
.signature {
  margin: 28px 0 22px;
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--gold) !important;
  font-style: italic;
}
.philosophy-signature {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
  color: #D8B45E !important;
  font-style: italic;
}
.philosophy-btn,
.philosophy-button {
  min-width: 184px;
  border-color: rgba(255, 248, 234, .55);
  color: #FFF8EA;
  background: transparent;
}
.philosophy-btn:hover,
.philosophy-button:hover {
  background: #FFF8EA;
  color: #A61E22;
}
.overlap-images { position: relative; min-height: 430px; }
.philosophy-collage { transform: translateX(-1.5rem); }
.overlap-images::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 15%;
  width: 48%;
  height: 68%;
  background: rgba(255, 248, 234, .08);
  border: 1px solid rgba(248, 239, 217, .2);
  transform: rotate(5deg);
}
.overlap-images img {
  position: absolute;
  object-fit: cover;
  border: 8px solid #FFF8EA;
  box-shadow: 0 24px 50px rgba(36, 23, 19, .28);
}
.image-back { right: 10%; top: 0; width: 58%; transform: rotate(3deg); }
.image-front { left: 0; bottom: 0; width: 62%; transform: rotate(-2deg); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.category-card, .product-card {
  background: linear-gradient(180deg, rgba(255, 248, 234, .92), rgba(250, 237, 211, .72));
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(36, 23, 19, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.category-card:hover, .product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(166, 30, 34, .48);
  box-shadow: var(--card-shadow);
}
.featured-category { border-color: rgba(197, 154, 74, .42); box-shadow: 0 18px 42px rgba(36, 23, 19, .1); }
.featured-category:hover { border-color: rgba(197, 154, 74, .72); }
.category-image { position: relative; overflow: hidden; min-height: 268px; background: radial-gradient(circle at 50% 40%, rgba(197, 154, 74, .16), transparent 56%), var(--surface); }
.category-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(36, 23, 19, .08);
  pointer-events: none;
}
.category-card img { width: 100%; aspect-ratio: 1.05; object-fit: contain; padding: 18px; transition: transform .38s ease; }
.category-card:hover img { transform: scale(1.075) rotate(-1deg); }
.category-card > div:last-child { padding: 20px; }
.meta-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.category-card p, .product-card p { font-size: .92rem; }
.category-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--primary);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured-works {
  padding-top: clamp(6rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 7vw, 7rem);
}
.product-grid,
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: clamp(1.5rem, 2vw, 2rem);
  align-items: stretch;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  background: #FFF8EA;
  border: 1px solid rgba(36, 23, 19, .1);
  box-shadow: 0 14px 30px rgba(36, 23, 19, .08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(36, 23, 19, .12);
  border-color: rgba(166, 30, 34, .16);
}
.product-image {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 40%, rgba(197, 154, 74, .18), transparent 58%), #F9F1E2;
}
.product-card .product-image-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: #F7EEDB;
  overflow: hidden;
}
.product-image img,
.product-image-wrap img,
.product-card img,
.product-card .product-image-wrap img {
  display: block;
  max-width: 100%;
  max-height: 230px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
  padding: 0;
  transition: transform 220ms ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.product-badge {
  position: absolute;
  z-index: 3;
  left: 1rem;
  top: 1rem;
  padding: .45rem .65rem;
  background: var(--primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(166, 30, 34, .22);
}
.product-body,
.product-card .product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: auto;
  padding: 1.2rem 1rem 1rem;
}
.product-body h3,
.product-card .product-title {
  min-height: 3.8rem;
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text);
}
.product-body > p,
.product-card .product-desc {
  min-height: 4rem;
  margin-top: .7rem;
  font-size: .96rem;
  line-height: 1.55;
  color: rgba(36, 23, 19, .76);
}
.product-meta,
.product-size {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .85rem;
}
.product-meta span,
.product-size span {
  display: inline-flex;
  padding: .45rem .55rem;
  background: rgba(255, 255, 255, .56);
  border: 1px solid rgba(36, 23, 19, .1);
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.2;
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: .85rem;
}
.product-price {
  grid-column: 1 / -1;
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.product-price small { font-size: .9rem; }
.product-actions .btn-primary {
  background: var(--primary);
  color: #fff;
}
.product-actions .btn-secondary {
  background: transparent;
  border: 1px solid rgba(36, 23, 19, .15);
  color: var(--text);
}
.product-note {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 16px 20px;
  text-align: center;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(36, 23, 19, .72);
  background: rgba(255, 248, 234, .74);
  border: 1px solid var(--border);
  box-shadow: var(--soft-shadow);
}

.category-image, .product-image, .modal-image { isolation: isolate; }
.category-image::before, .product-image::before, .modal-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .48;
  pointer-events: none;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, .76), transparent 7rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='90' height='90' filter='url(%23p)' opacity='.1'/%3E%3C/svg%3E");
}
.category-image img, .product-image img, .modal-image img { position: relative; z-index: 1; }
.category-image::after, .product-image::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(36, 23, 19, .08);
  pointer-events: none;
}
.product-image::after {
  border-radius: 49% 51% 52% 48%;
  inset: 36px;
  opacity: .6;
}
.product-ganesha .product-image { background: radial-gradient(circle at 52% 42%, rgba(223, 164, 90, .38), transparent 55%), var(--surface); }
.product-ganesha .product-image::after {
  border-color: rgba(197, 154, 74, .32);
  border-radius: 44% 56% 48% 52%;
  box-shadow: -72px 6px 0 -54px rgba(197, 154, 74, .34), 72px 6px 0 -54px rgba(197, 154, 74, .34);
}
.product-chhau .product-image { background: radial-gradient(circle at 50% 38%, rgba(166, 30, 34, .15), transparent 52%), linear-gradient(135deg, var(--surface), #ead9b8); }
.product-chhau .product-image::after {
  border-color: rgba(166, 30, 34, .2);
  transform: rotate(-4deg);
  box-shadow: 0 -34px 0 -32px var(--primary), 0 34px 0 -32px var(--gold);
}
.product-guardian .product-image {
  background:
    radial-gradient(circle at 50% 42%, rgba(166, 30, 34, .45), transparent 44%),
    linear-gradient(135deg, #2b1c18, #fff4dc 70%);
}
.product-guardian .product-image img { filter: saturate(1.2) contrast(1.12) drop-shadow(0 18px 12px rgba(36, 23, 19, .24)); }
.product-guardian .product-image::after { border-color: rgba(166, 30, 34, .34); transform: rotate(6deg); }
.product-custom .product-image { background: radial-gradient(circle at 50% 42%, rgba(36, 23, 19, .34), transparent 52%), linear-gradient(135deg, #2b211c, #f5e2bd 72%); }
.product-custom .product-image img { filter: saturate(1.05) contrast(1.18) drop-shadow(0 20px 14px rgba(36, 23, 19, .26)); }
.product-custom .product-image::after {
  border-color: rgba(197, 154, 74, .34);
  border-style: dashed;
}

.craft-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.craft-image { position: relative; margin: 0; padding: 14px; background: linear-gradient(180deg, rgba(255, 248, 234, .9), rgba(244, 226, 190, .72)); border: 1px solid var(--border); box-shadow: 0 30px 65px rgba(36, 23, 19, .15); }
.craft-image::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(36, 23, 19, .12), inset 0 -80px 90px rgba(36, 23, 19, .18);
}
.craft-image img { width: 100%; aspect-ratio: 1.18; object-fit: cover; filter: saturate(1.06) contrast(1.04); }
.craft-image figcaption {
  position: absolute;
  z-index: 2;
  left: 32px;
  bottom: 30px;
  max-width: 270px;
  padding: 18px 20px;
  background: rgba(255, 248, 234, .94);
  color: var(--text);
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.25;
  box-shadow: var(--soft-shadow);
}
.craft-stat {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 42px;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
}
.craft-stat strong { display: block; font-family: var(--display); font-size: 2rem; line-height: .9; }
.craft-stat span { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.craft-points { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 0; position: relative; }
.craft-points::before { content: ""; position: absolute; left: 21px; top: 14px; bottom: 14px; width: 1px; background: rgba(166, 30, 34, .28); }
.craft-points li { display: grid; grid-template-columns: 44px 160px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.craft-points b {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid rgba(166, 30, 34, .24);
  color: var(--primary);
  font-size: .78rem;
}
.craft-points strong { color: var(--primary-dark); }
.craft-points span { color: var(--muted); }

.myth { padding: 82px 0; }
.myth-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: center; }
.myth-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.myth-cards article {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(248, 239, 217, .24);
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 154, 74, .12), transparent 8rem),
    linear-gradient(180deg, rgba(255, 248, 234, .105), rgba(255, 248, 234, .04));
  box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 18px 34px rgba(36, 23, 19, .14);
}
.myth-cards i {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
}
.myth-cards i::after { content: ""; position: absolute; inset: 11px; border: 1px solid var(--gold); transform: rotate(45deg); }
.myth-cards span { color: var(--gold); font-weight: 900; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; }
.myth-cards h3 { color: var(--bg); margin-top: 10px; }
.myth-cards p { margin-bottom: 0; font-size: .95rem; line-height: 1.65; color: rgba(248, 239, 217, .82); }

.testimonial-wrap { display: grid; grid-template-columns: 58px 1fr 58px; gap: 20px; align-items: center; max-width: 980px; margin: 0 auto; }
.round-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--primary-dark);
  font-size: 2rem;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}
.round-btn:hover { background: var(--primary); color: #fff; }
.testimonial-card {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 56px;
  background:
    radial-gradient(circle at 15% 20%, rgba(197, 154, 74, .14), transparent 12rem),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 22px 54px rgba(36, 23, 19, .12);
}
.quote-mark {
  position: absolute;
  top: 8px;
  left: 30px;
  color: rgba(166, 30, 34, .16);
  font-family: var(--display);
  font-size: 7rem;
  line-height: 1;
}
.testimonial-card blockquote { margin: 0 0 22px; max-width: 720px; font-family: var(--display); font-size: clamp(1.55rem, 2.5vw, 2.25rem); line-height: 1.25; color: var(--text); }
.testimonial-card p { margin: 0; color: var(--primary-dark); font-weight: 900; }
.testimonial-card span { color: var(--muted); }
.testimonial-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.testimonial-dots button { width: 9px; height: 9px; padding: 0; border: 1px solid rgba(166, 30, 34, .38); border-radius: 50%; background: transparent; cursor: pointer; }
.testimonial-dots button.is-active { width: 28px; border-radius: 999px; background: var(--primary); }

.gallery { padding-top: 92px; }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr 1fr 1fr; grid-auto-rows: 180px; gap: 18px; align-items: stretch; }
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255, 248, 234, .2);
  background: rgba(255, 248, 234, .12);
  box-shadow: 0 26px 54px rgba(36, 23, 19, .32);
}
.gallery-grid figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(36, 23, 19, .22)),
    radial-gradient(circle at 24% 20%, rgba(255, 248, 234, .26), transparent 8rem);
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.08) contrast(1.04); transition: transform .55s ease; }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(255, 248, 234, .92);
  color: var(--primary-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  box-shadow: var(--soft-shadow);
}
.center-cta { display: flex; justify-content: center; margin-top: 30px; }

.final-cta {
  position: relative;
  padding: 88px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 112px, rgba(166, 30, 34, .11) 113px, transparent 115px),
    var(--surface);
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(166, 30, 34, .14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 22px rgba(197, 154, 74, .035), 0 0 0 44px rgba(166, 30, 34, .03);
}
.final-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(138, 74, 47, .13);
  transform: translate(-50%, -50%) rotate(45deg);
}
.final-cta h2 { position: relative; z-index: 1; }
.final-cta p { font-size: 1.1rem; margin-bottom: 6px; }
.final-cta .cta-support { margin-top: 0; color: var(--clay); }
.final-cta .btn { min-height: 56px; padding-inline: 34px; }

.footer { padding: 72px 0 58px; background: radial-gradient(circle at 18% 8%, rgba(166, 30, 34, .24), transparent 24rem), #211410; color: var(--bg); }
.footer p, .footer a, .footer span { color: rgba(248, 239, 217, .78); }
.footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.05fr .82fr 1.25fr 1.08fr; gap: 44px; align-items: start; }
.footer img { width: 132px; height: 96px; object-fit: contain; object-position: left center; filter: brightness(1.26); }
.contact-card { display: grid; gap: 9px; font-style: normal; }
.contact-card strong, .newsletter label { color: var(--gold); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .78rem; }
.social-link, .whatsapp-link { display: inline-flex; width: fit-content; border-bottom: 1px solid rgba(197, 154, 74, .44); }
.newsletter { display: grid; gap: 12px; }
.newsletter div { display: grid; grid-template-columns: 1fr auto; border: 1px solid rgba(248, 239, 217, .26); background: rgba(255, 248, 234, .075); box-shadow: inset 0 1px rgba(255, 255, 255, .04); }
.newsletter input { min-width: 0; border: 0; background: transparent; color: var(--bg); padding: 13px 14px; }
.newsletter input::placeholder { color: rgba(248, 239, 217, .48); }
.newsletter button { border: 0; background: var(--gold); color: #211410; padding: 0 18px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; cursor: pointer; }
.newsletter button:hover { background: #d6ad59; }
.newsletter p { margin: 0; font-size: .88rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 22px; }

.cart-drawer {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  width: min(450px, 100%);
  height: 100dvh;
  padding: 26px;
  background: var(--surface);
  box-shadow: -22px 0 50px rgba(36, 23, 19, .24);
  transform: translateX(105%);
  transition: transform .25s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); }
.drawer-head h2 { font-size: 2.1rem; }
.drawer-head button, .modal-close { border: 0; background: transparent; font-size: 2rem; cursor: pointer; color: var(--primary-dark); }
.cart-items { overflow: auto; padding: 18px 0; }
.cart-empty { padding: 28px 0; }
.cart-item { display: grid; grid-template-columns: 78px 1fr; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 78px; height: 78px; object-fit: contain; background: var(--bg); border: 1px solid var(--border); }
.cart-item h3 { font-size: 1.08rem; }
.cart-item p { margin: 0 0 8px; color: var(--primary-dark); font-weight: 850; }
.qty-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.qty-row button { min-width: 32px; min-height: 32px; border: 1px solid var(--border); background: var(--surface); cursor: pointer; }
.qty-row .remove { padding: 0 10px; color: var(--primary); }
.subtotal { display: flex; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--border); font-size: 1.1rem; }
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(36, 23, 19, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(36, 23, 19, .58);
}
.modal.is-open { display: grid; }
.modal-panel { position: relative; width: min(940px, 100%); max-height: calc(100dvh - 40px); overflow: auto; padding: 34px; background: var(--surface); box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 12px; right: 18px; z-index: 2; }
.modal-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: center; }
.modal-image { position: relative; background: radial-gradient(circle, rgba(197, 154, 74, .16), transparent 62%), var(--bg); border: 1px solid var(--border); overflow: hidden; }
.modal-image img { padding: 20px; }
.modal-price { display: block; margin-bottom: 16px; color: var(--primary-dark); font-size: 1.45rem; }
.modal-grid dl { display: grid; gap: 11px; margin: 20px 0 24px; }
dt { color: var(--muted); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
dd { margin: 0; font-size: .95rem; color: var(--text); }

@media (max-width: 1080px) {
  .category-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: clamp(3rem, 7vw, 4.8rem);
    max-width: 100%;
  }

  .hero-title .title-line {
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 7vw, 4.8rem);
  }

  .hero-title .title-line {
    white-space: normal;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    transform: scale(.88);
    animation: none;
    will-change: auto;
  }

  .hero-art img {
    max-width: min(500px, 82vw);
    animation: none;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .nav-group { display: none; }
  .nav-shell { grid-template-columns: auto 1fr auto; }
  .brand { grid-column: 1; }
  .menu-toggle { display: block; grid-column: 3; }
  .mobile-menu {
    display: grid;
    gap: 4px;
    width: min(520px, calc(100% - 36px));
    margin: 8px auto 0;
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a, .mobile-menu button { padding: 13px; border: 0; background: transparent; text-align: left; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
  .hero-grid, .philosophy-grid, .craft-grid, .myth-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 2.5rem; }
  .philosophy-grid { padding: clamp(5rem, 9vw, 7rem) 0; }
  .philosophy-collage { transform: none; }
  .hero { padding: clamp(5.5rem, 7vw, 7.5rem) 0 clamp(4rem, 6vw, 5.5rem); }
  .hero-copy { max-width: 100%; }
  .hero-title { font-size: clamp(3rem, 7vw, 4.8rem); max-width: 100%; }
  .hero-title .title-line { white-space: normal; }
  .hero-art { min-height: 480px; }
  .hero-visual { transform: scale(.84); }
  .overlap-images { min-height: 440px; }
  .myth-grid { align-items: start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
    max-width: 100%;
    line-height: .98;
    text-align: center;
  }

  .hero-title .secondary {
    font-size: .94em;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 2rem;
    transform: translateY(.3rem) scale(.9);
    animation: none;
    will-change: auto;
  }

  .hero-art img {
    max-width: min(340px, 88vw);
  }

  .philosophy-collage {
    margin-top: 2.5rem;
    gap: 1rem;
  }

  .product-actions {
    gap: .75rem;
    margin-top: 1rem;
  }

  .product-actions button,
  .product-actions a,
  .product-actions .btn {
    min-height: 44px;
  }

  .myth-cards {
    gap: 1rem;
  }

  .myth-card,
  .myth-cards article {
    padding: 1.25rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .cart-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: .85rem;
  }

  .cart-item img {
    width: 64px;
    height: 64px;
    max-width: 64px;
  }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  .section, .paint-panel { padding: 66px 0; }
  .philosophy { padding: 0; }
  .philosophy-grid { padding: 66px 0; }
  .hero { min-height: auto; padding: 7.25rem 0 4.5rem; }
  .hero-copy { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.6rem); max-width: 100%; line-height: .98; text-align: center; }
  .hero-title .secondary { font-size: .94em; }
  h1 { line-height: .92; }
  h2 { font-size: clamp(2.1rem, 11vw, 3.2rem); }
  .hero-copy > p:last-of-type { max-width: 34rem; margin-left: auto; margin-right: auto; font-size: 1rem; }
  .hero-copy .button-row { justify-content: center; margin-top: 1.75rem; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-trust { display: flex; justify-content: center; width: 100%; }
  .hero-trust span { white-space: normal; text-align: center; }
  .hero-trust span + span { border-left: 1px solid var(--border); }
  .category-grid, .product-grid, .myth-cards, .modal-grid, .footer-links, .footer-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .product-card .product-image-wrap { height: 220px; }
  .product-body h3, .product-body > p { min-height: auto; }
  .product-actions { grid-template-columns: 1fr; }
  .craft-points::before { left: 18px; }
  .craft-points li { grid-template-columns: 38px 1fr; gap: 12px; }
  .craft-points li span { grid-column: 2; }
  .craft-points b { width: 36px; height: 36px; }
  .craft-image figcaption { position: static; max-width: none; margin-top: 12px; }
  .craft-stat { right: 16px; bottom: 88px; width: 92px; height: 92px; }
  .testimonial-wrap { grid-template-columns: 1fr 1fr; }
  .testimonial-card { grid-column: 1 / -1; grid-row: 1; padding: 40px 24px; }
  .round-btn { width: 50px; height: 50px; justify-self: center; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .gallery-grid .wide, .gallery-grid .tall { grid-column: auto; grid-row: auto; }
  .pigment, .brush-stroke, .clay-mark { display: none; }
  .newsletter div { grid-template-columns: 1fr; }
  .newsletter button { min-height: 44px; }
}

@media (max-width: 480px) {
  .nav-shell { width: calc(100% - 20px); min-height: 66px; border-radius: 18px; padding: 8px 13px; }
  .brand img { width: 112px; }
  .button-row, .btn { width: 100%; }
  .hero-art { min-height: 365px; }
  .hero-trust span { padding-inline: 7px; }
  .cart-drawer { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual,
  .hero-art img {
    animation: none !important;
    will-change: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
