/* ===== S&R Concrete Crafts — adobe peach / terracotta storefront ===== */
:root {
  --peach: #f0c9a8;
  --peach-deep: #e8b78f;
  --cream: #f7efe4;
  --cream-soft: #fff8f0;
  --adobe-50: #fff8f0;
  --adobe-100: #f0c9a8;
  --adobe-200: #e6d0b8;
  --adobe-300: #d4b896;
  --sand: #c9a87a;
  --clay: #c45c32;
  --clay-deep: #a04a28;
  --clay-soft: #d4724a;
  --terracotta: #c45c32;
  --turquoise: #2a6b68;
  --turquoise-soft: #3f8582;
  --turquoise-mist: rgba(42, 107, 104, 0.12);
  --brown: #3a2a22;
  --brown-soft: #5c463a;
  --ink-muted: #6e5749;
  --evening: #e8a06a;

  --shadow: 0 16px 36px -20px rgba(90, 52, 34, 0.35), 0 6px 14px -8px rgba(90, 52, 34, 0.14);
  --shadow-sm: 0 10px 24px -14px rgba(90, 52, 34, 0.28), 0 3px 8px -4px rgba(90, 52, 34, 0.1);
  --shadow-lg: 0 28px 52px -26px rgba(90, 52, 34, 0.42), 0 10px 18px -12px rgba(90, 52, 34, 0.16);
  --shadow-press: 0 2px 6px -2px rgba(58, 42, 34, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --elevate-1: translateY(-1px);
  --elevate-2: translateY(-2px);
  --press: translateY(1px);
  --motion: 180ms;
  --radius: 16px;
  --radius-sm: 12px;
  --serif: "Fraunces", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --plaster:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72% 34%, rgba(58, 42, 34, 0.04) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 38% 76%, rgba(58, 42, 34, 0.035) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.3) 0 1px, transparent 1.5px);
  --plaster-size: 130px 130px, 170px 170px, 110px 110px, 150px 150px;
  --focus: 0 0 0 3px var(--cream), 0 0 0 5px var(--clay);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg-img { animation: none; }
  .hero-copy { animation: none; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--brown);
  background-color: var(--cream);
  background-image: var(--plaster);
  background-size: var(--plaster-size);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll,
body.nav-open { overflow: hidden; }

.container { width: min(1160px, 92vw); margin-inline: auto; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.015em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: none; box-shadow: var(--focus); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--clay-deep); color: #fff;
  padding: 0.65rem 1rem; border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 48px; padding: 0.85rem 1.55rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.98rem; font-family: var(--sans);
  cursor: pointer; border: 1.5px solid transparent;
  transition:
    transform var(--motion) var(--ease),
    box-shadow var(--motion) var(--ease),
    background var(--motion) var(--ease),
    border-color var(--motion) var(--ease),
    color var(--motion) var(--ease),
    filter var(--motion) var(--ease);
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
  filter: grayscale(0.15);
}
.btn-primary {
  color: #fffef8;
  background: var(--terracotta);
  border-color: rgba(160, 74, 40, 0.35);
  border-radius: 999px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:active:not(:disabled) {
  transform: var(--press);
  box-shadow: var(--shadow-press), inset 0 2px 4px rgba(58, 42, 34, 0.22);
  filter: brightness(0.97);
}
.btn-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(251, 246, 238, 0.75));
  border-color: rgba(58, 42, 34, 0.18);
  color: var(--brown);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, var(--shadow-sm);
}
.btn-ghost:active:not(:disabled) {
  transform: var(--press);
  box-shadow: inset 0 2px 4px rgba(58, 42, 34, 0.12);
  background: var(--adobe-100);
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 248, 240, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(160, 74, 40, 0.1);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0;
  min-height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem; z-index: 2; min-width: 0;
}
.brand-logo {
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  background: var(--cream-soft);
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 240, 0.95);
  box-shadow: var(--shadow-sm);
  transition: transform var(--motion) var(--ease);
}
.brand-text {
  display: flex; flex-direction: column; gap: 0.05rem; min-width: 0;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: -0.02em;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}
.nav-panel { display: flex; justify-content: center; }
.nav-links {
  display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; font-weight: 600;
}
.nav-links a {
  color: var(--brown-soft); padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: color var(--motion) var(--ease), border-color var(--motion) var(--ease);
}
.nav-links a[href="#top"],
.nav-links a.is-active {
  color: var(--brown);
  border-bottom-color: var(--terracotta);
}

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1.5px solid rgba(58, 42, 34, 0.16); background: var(--cream-soft);
  cursor: pointer; padding: 0; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; z-index: 2;
}
.nav-toggle-bar {
  display: block; width: 18px; height: 2px; background: var(--brown); border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cart-btn {
  position: relative; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 12px;
  border: 1.5px solid rgba(58, 42, 34, 0.14);
  background: linear-gradient(180deg, #fffefb, var(--cream));
  color: var(--brown); cursor: pointer; z-index: 2; justify-self: end;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, var(--shadow-sm);
  transition:
    transform var(--motion) var(--ease),
    background var(--motion) var(--ease),
    border-color var(--motion) var(--ease),
    color var(--motion) var(--ease),
    box-shadow var(--motion) var(--ease);
}
.cart-btn:active {
  transform: var(--press);
  box-shadow: inset 0 2px 4px rgba(58, 42, 34, 0.12);
}
.cart-count {
  position: absolute; top: -7px; right: -7px; min-width: 22px; height: 22px; padding: 0 5px;
  display: grid; place-items: center; background: var(--terracotta); color: #fff;
  font-size: 0.72rem; font-weight: 700; border-radius: 999px; border: 2px solid var(--cream-soft);
  transform: scale(0); transition: transform 0.25s var(--ease);
}
.cart-count.show { transform: scale(1); }
.cart-count.bump { animation: bump 0.35s var(--ease); }
@keyframes bump { 0%{transform:scale(1)} 40%{transform:scale(1.28)} 100%{transform:scale(1)} }

/* ===== Full-bleed lifestyle hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(28rem, 78vh, 42rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  background: #3a2a22;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
  animation: heroReveal 1.1s var(--ease) both;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 24, 18, 0.72) 0%, rgba(35, 24, 18, 0.42) 38%, rgba(35, 24, 18, 0.08) 62%, transparent 78%),
    linear-gradient(180deg, rgba(35, 24, 18, 0.22) 0%, transparent 28%, rgba(35, 24, 18, 0.18) 78%, rgba(35, 24, 18, 0.35) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  padding: clamp(3.5rem, 10vh, 6.5rem) 0 clamp(4.5rem, 11vh, 7rem);
}
.hero-copy {
  max-width: min(34rem, 92%);
  animation: copyRise 750ms var(--ease) both;
}
@keyframes copyRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}
.hero-brand {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 248, 240, 0.92);
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero-copy h1 {
  font-size: clamp(2rem, 4.6vw, 3.55rem);
  max-width: 14ch;
  color: #fff8f0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.hero-lead {
  margin: 0.95rem 0 0;
  max-width: 34ch;
  color: rgba(255, 248, 240, 0.88);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}
.hero-actions { margin-top: 1.45rem; }
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 3;
  color: var(--cream);
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg {
  display: block;
  width: 100%;
  height: clamp(48px, 7vw, 96px);
}

.section-eyebrow {
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 700; margin: 0 0 0.55rem;
}
.section-head {
  text-align: center; max-width: 640px; margin: 0 auto clamp(1.2rem, 3vw, 1.8rem);
}
.section-head h2 { font-size: clamp(2rem, 4.2vw, 2.85rem); }
.section-lead { color: var(--ink-muted); font-size: 1.05rem; margin: 0.55rem 0 0; }

.collection-filters {
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem; margin-bottom: 1.4rem;
}
.filters-label {
  margin: 0; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-muted);
}
.filter-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.55rem; }
.filter-chip {
  min-height: 42px; padding: 0.45rem 1rem; border-radius: 999px;
  border: 1.5px solid rgba(58, 42, 34, 0.16);
  background: linear-gradient(180deg, #fffefb, var(--adobe-50));
  color: var(--brown-soft); font-family: var(--sans); font-weight: 600; font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset, 0 2px 6px -3px rgba(58, 42, 34, 0.2);
  transition:
    transform var(--motion) var(--ease),
    box-shadow var(--motion) var(--ease),
    background var(--motion) var(--ease),
    border-color var(--motion) var(--ease),
    color var(--motion) var(--ease);
}
.filter-chip:active {
  transform: var(--press);
  box-shadow: inset 0 2px 5px rgba(58, 42, 34, 0.14);
}
.filter-chip.is-active {
  background: linear-gradient(180deg, var(--turquoise-soft), var(--turquoise));
  border-color: rgba(30, 78, 76, 0.55);
  color: #fff;
  font-weight: 700;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 4px 10px -4px rgba(47, 111, 109, 0.45),
    0 0 0 2px rgba(47, 111, 109, 0.18);
}
.filter-chip.is-active::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
  vertical-align: 0.05em;
}
.filter-chip:focus-visible {
  outline: none;
  box-shadow: var(--focus), 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}
.filter-chip.is-active:focus-visible {
  box-shadow: var(--focus), 0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.products {
  padding: clamp(2.4rem, 5vw, 3.8rem) 0 clamp(2.8rem, 6vw, 4rem);
  background: var(--cream);
}
.product-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.65rem;
}
.card {
  background: var(--cream-soft); border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
  border: 1px solid rgba(160, 74, 40, 0.07);
  transition:
    transform var(--motion) var(--ease),
    box-shadow var(--motion) var(--ease),
    border-color var(--motion) var(--ease);
  display: flex; flex-direction: column; min-width: 0;
}
.card:active { transform: var(--press); }
.card--featured {
  border-color: rgba(47, 111, 109, 0.32);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(47, 111, 109, 0.08);
}
.card-img {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(160deg, var(--adobe-200), var(--adobe-100));
  border-bottom: 1px solid rgba(58, 42, 34, 0.06);
}
.card-img img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  padding: 0.95rem; transition: transform 220ms var(--ease);
}
.card-quick {
  position: absolute; inset: auto 0 0 0; padding: 0.7rem;
  background: linear-gradient(0deg, rgba(58, 42, 34, 0.66), transparent);
  color: #fff; text-align: center; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.04em; opacity: 0; transform: translateY(6px);
  transition: opacity var(--motion) var(--ease), transform var(--motion) var(--ease);
  pointer-events: none;
}
.card:focus-within .card-quick { opacity: 1; transform: translateY(0); }
.card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--clay-deep); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 999px;
  box-shadow: 0 2px 8px -3px rgba(58, 42, 34, 0.45);
}
.card-tag--soft { background: var(--turquoise); }
.card-body {
  padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.4rem;
  flex: 1; border-top: 1px solid rgba(58, 42, 34, 0.06);
}
.card-body h3 { font-size: 1.22rem; letter-spacing: -0.02em; }
.card-item {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--clay);
}
.card-desc { color: var(--ink-muted); font-size: 0.92rem; margin: 0; flex: 1; line-height: 1.5; }
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.75rem; margin-top: 0.65rem;
}
.price {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--turquoise);
}
.price-was {
  margin-left: 0.4rem; font-size: 0.92rem; color: var(--ink-muted);
  text-decoration: line-through; font-weight: 500; font-family: var(--sans);
}
.add {
  border: 1.5px solid rgba(58, 42, 34, 0.16);
  background: linear-gradient(180deg, #fffefb, var(--adobe-100));
  color: var(--brown); font-weight: 700; font-size: 0.85rem; min-height: 40px;
  padding: 0.45rem 1rem; border-radius: 999px; cursor: pointer; font-family: var(--sans);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 2px 6px -3px rgba(58, 42, 34, 0.22);
  transition:
    transform var(--motion) var(--ease),
    box-shadow var(--motion) var(--ease),
    background var(--motion) var(--ease),
    color var(--motion) var(--ease),
    border-color var(--motion) var(--ease);
}
.add:active:not(:disabled) {
  transform: var(--press);
  box-shadow: inset 0 2px 4px rgba(58, 42, 34, 0.14);
}
.add:disabled, .add--disabled {
  opacity: 0.5; cursor: not-allowed; pointer-events: none;
  box-shadow: none; filter: grayscale(0.2);
}
.card--sold-out .card-img img { filter: grayscale(0.4) brightness(0.94); opacity: 0.9; }
.card-sold {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  background: rgba(58, 42, 34, 0.88); color: #fff; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; padding: 0.35rem 0.65rem; border-radius: 999px;
}
.catalog-status {
  text-align: center; max-width: 480px; margin: 0 auto 1.5rem; padding: 1.25rem 1.4rem;
  border-radius: var(--radius); background: var(--adobe-50);
  border: 1px solid rgba(58, 42, 34, 0.1);
}
.catalog-status p { margin: 0; color: var(--ink-muted); }
.catalog-status .catalog-retry { margin-top: 0.9rem; }
.catalog-status--error { border-color: rgba(196, 92, 50, 0.4); }
.catalog-status--loading p { color: var(--brown); }

.about {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(180deg, transparent, rgba(240, 201, 168, 0.45) 50%, transparent),
    var(--cream);
  border-top: 1px solid rgba(160, 74, 40, 0.08);
}
.about-inner {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(1.8rem, 5vw, 4rem); align-items: center;
}
.about-media { position: relative; }
.about-frame {
  position: relative; border-radius: 22px 22px 22px 56px; overflow: hidden;
  box-shadow: var(--shadow); border: 10px solid var(--adobe-50); background: var(--adobe-200);
}
.about-photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, #d8c3a4 0%, #b8956e 45%, #8f6a48 100%);
  background-size: cover; background-position: center;
}
.about-plaster {
  position: absolute; width: 42%; height: 28%; right: -4%; bottom: 10%;
  border-radius: 40px 18px 40px 18px;
  background: linear-gradient(145deg, rgba(47, 111, 109, 0.35), rgba(143, 63, 36, 0.28));
  border: 1px solid rgba(251, 246, 238, 0.45); z-index: -1;
}
.about-copy h2 { font-size: clamp(2rem, 4.2vw, 2.9rem); margin-bottom: 1rem; }
.about-copy p { color: var(--ink-muted); margin: 0 0 1rem; max-width: 52ch; }
.about-aside {
  font-family: var(--serif); font-style: italic; font-size: 1.2rem;
  color: var(--clay-deep) !important; margin-top: 0.5rem !important;
}

.story-strip {
  padding: clamp(1.6rem, 4vw, 2.4rem) 0;
  background: linear-gradient(180deg, var(--cream), #f0dcc4);
}
.story-strip-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.6rem;
  background: var(--cream-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(160, 74, 40, 0.08);
}
.story-ico {
  width: 48px;
  height: auto;
  color: var(--clay-deep);
  opacity: 0.85;
  flex-shrink: 0;
}
.story-ico--bird { width: 56px; }
.story-strip-copy { text-align: center; }
.story-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clay-deep);
}
.story-strip-copy p:last-child {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.trust-row {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  background: linear-gradient(180deg, #e8c4a0 0%, #d9a97a 55%, #c98f5e 100%);
  border-top: none;
}
.trust-desert {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.trust-mesas {
  width: 100%;
  height: 100%;
  display: block;
}
.trust-grid {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  text-align: center;
}
.trust-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 16ch;
  margin-inline: auto;
  padding: 0 0.75rem;
  border-right: 1px solid rgba(90, 52, 34, 0.18);
}
.trust-grid li:last-child { border-right: none; }
.trust-ico {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--clay-deep);
}
.trust-ico svg { width: 44px; height: 44px; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 2.6rem 0 2.8rem;
  border-top: none;
  background: linear-gradient(180deg, #b87948 0%, #8f5530 55%, #6e3f24 100%);
  color: rgba(255, 248, 240, 0.92);
}
.footer-desert {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}
.footer-desert svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 1.2rem 2rem;
}
.footer-brand {
  font-family: var(--serif); font-size: 1.3rem; color: #fff8f0;
  font-weight: 600; display: block;
}
.footer-note { color: rgba(255, 248, 240, 0.78); font-size: 0.9rem; margin: 0.35rem 0 0; }
.footer-demo {
  margin: 0; max-width: 34ch; font-size: 0.88rem; color: rgba(255, 248, 240, 0.82); line-height: 1.5;
}
.footer-demo strong { color: #fff8f0; }

.modal-overlay {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(58, 42, 34, 0.55); backdrop-filter: blur(4px);
  display: grid; place-items: center; padding: 1.2rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  width: min(860px, 100%); max-height: 90vh; overflow: auto;
  background: var(--adobe-100); border-radius: 20px; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; position: relative;
  transform: translateY(16px) scale(0.98); transition: transform 0.3s var(--ease);
  border: 1px solid rgba(58, 42, 34, 0.1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 12px; border: none;
  background: rgba(251, 246, 238, 0.95); color: var(--brown);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.modal-close:hover { background: #fff; }
.modal-media {
  background: linear-gradient(160deg, var(--adobe-200), var(--adobe-100));
  display: grid; place-items: center;
}
.modal-media img {
  width: 100%; height: 100%; object-fit: contain;
  min-height: 280px; max-height: 520px; padding: 1rem;
}
.modal-body {
  padding: 2rem 1.9rem 2.1rem; display: flex; flex-direction: column; gap: 0.65rem;
}
.modal-tag {
  align-self: flex-start; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--turquoise);
}
.modal-body h3 { font-size: 1.85rem; }
.modal-price {
  font-family: var(--serif); font-size: 1.55rem; color: var(--clay-deep);
  font-weight: 600; margin: 0;
}
.modal-desc { color: var(--ink-muted); margin: 0.2rem 0 0.5rem; }
.modal-qty {
  display: flex; align-items: center; gap: 1rem; font-weight: 600; color: var(--ink-muted);
}
.qty-control {
  display: flex; align-items: center; gap: 0.4rem; background: var(--adobe-50);
  border: 1.5px solid rgba(58, 42, 34, 0.14); border-radius: 12px; padding: 0.3rem;
}
.qty-control button {
  width: 36px; height: 36px; border: none; background: var(--adobe-200);
  color: var(--brown); border-radius: 9px; font-size: 1.15rem; cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
  transition: transform var(--motion) var(--ease), background var(--motion) var(--ease), box-shadow var(--motion) var(--ease);
}
.qty-control button:active {
  transform: var(--press);
  box-shadow: inset 0 2px 3px rgba(58, 42, 34, 0.16);
}
.qty-control span { min-width: 28px; text-align: center; font-weight: 700; color: var(--brown); }
.modal-add { margin-top: 0.55rem; width: 100%; }

.cart-backdrop {
  position: fixed; inset: 0; z-index: 50; background: rgba(58, 42, 34, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.cart-backdrop.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 55;
  width: min(400px, 100%); height: 100%;
  background: var(--adobe-100); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  border-left: 1px solid rgba(58, 42, 34, 0.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 1.4rem; border-bottom: 1px solid rgba(58, 42, 34, 0.12);
  background: rgba(251, 246, 238, 0.65);
}
.cart-head h3 { font-size: 1.45rem; }
.cart-close {
  width: 42px; height: 42px; border-radius: 12px; border: none;
  background: var(--adobe-200); color: var(--brown); font-size: 1.5rem; line-height: 1; cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  transition: transform var(--motion) var(--ease), background var(--motion) var(--ease);
}
.cart-close:active { transform: var(--press); }
.cart-items {
  flex: 1; overflow-y: auto; padding: 1rem 1.35rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.cart-line { display: grid; grid-template-columns: 68px 1fr auto; gap: 0.85rem; align-items: center; }
.cart-line img {
  width: 68px; height: 68px; border-radius: 12px; object-fit: contain;
  background: var(--adobe-50); border: 1px solid rgba(58, 42, 34, 0.08); padding: 0.25rem;
}
.cart-line-info h4 { font-family: var(--serif); font-size: 1.05rem; margin: 0; color: var(--brown); }
.cart-line-info .line-price { color: var(--clay-deep); font-weight: 700; font-size: 0.9rem; }
.cart-line-qty { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 0.35rem; }
.cart-line-qty button {
  width: 30px; height: 30px; border: 1px solid rgba(58, 42, 34, 0.16);
  background: linear-gradient(180deg, #fffefb, var(--adobe-50)); border-radius: 8px;
  cursor: pointer; color: var(--brown); font-size: 1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  transition: transform var(--motion) var(--ease), background var(--motion) var(--ease);
}
.cart-line-qty button:active { transform: var(--press); }
.cart-line-qty span { font-weight: 700; min-width: 18px; text-align: center; }
.cart-line-remove {
  background: none; border: none; color: var(--ink-muted); font-size: 0.8rem;
  cursor: pointer; text-decoration: underline; padding: 0; font-family: var(--sans);
}
.cart-line-remove:hover { color: var(--clay-deep); }
.line-total { font-family: var(--serif); font-weight: 600; color: var(--brown); }
.cart-empty {
  flex: 1; display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--ink-muted); gap: 0.3rem; padding: 2rem;
}
.cart-empty p { font-family: var(--serif); font-size: 1.4rem; color: var(--brown); margin: 0; }
.cart-drawer.empty .cart-items, .cart-drawer.empty .cart-foot { display: none; }
.cart-drawer.empty .cart-empty { display: flex; }
.cart-foot {
  padding: 1.25rem 1.4rem 1.55rem; border-top: 1px solid rgba(58, 42, 34, 0.12);
  background: rgba(251, 246, 238, 0.7);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--serif); font-size: 1.35rem; color: var(--brown); margin-bottom: 0.95rem;
}
.cart-checkout { width: 100%; }
.cart-note { text-align: center; font-size: 0.78rem; color: var(--ink-muted); margin: 0.7rem 0 0; }

.checkout {
  position: fixed; inset: 0; z-index: 70;
  background-color: var(--adobe-100); background-image: var(--plaster);
  background-size: var(--plaster-size); overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.checkout.open { opacity: 1; visibility: visible; }
.checkout-inner {
  width: min(980px, 92vw); margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem) 0; position: relative;
}
.checkout-close {
  position: absolute; top: 1.5rem; right: 0; width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid rgba(58, 42, 34, 0.16); background: var(--adobe-50);
  color: var(--brown); font-size: 1.6rem; line-height: 1; cursor: pointer;
}
.checkout-grid {
  display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 2.5rem; align-items: start;
}
.checkout-form h2 { font-size: clamp(2rem, 4vw, 2.7rem); }
.checkout-sub { color: var(--ink-muted); margin: 0.35rem 0 1.4rem; }
.checkout-form fieldset {
  border: 1px solid rgba(58, 42, 34, 0.14); border-radius: 14px;
  padding: 1.15rem 1.25rem 1.3rem; margin: 0 0 1.15rem;
  background: rgba(251, 246, 238, 0.65);
}
.checkout-form legend {
  font-family: var(--serif); font-size: 1.15rem; color: var(--brown); padding: 0 0.5rem;
}
.checkout-form label {
  display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink-muted); margin-bottom: 0.85rem;
}
.checkout-form input {
  width: 100%; margin-top: 0.3rem; padding: 0.75rem 0.9rem;
  border: 1.5px solid rgba(58, 42, 34, 0.16); border-radius: 10px;
  background: var(--adobe-50); font-family: var(--sans); font-size: 0.98rem; color: var(--brown);
}
.checkout-form input:focus {
  outline: none; border-color: var(--turquoise); box-shadow: 0 0 0 3px var(--turquoise-mist);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkout-pay { width: 100%; font-size: 1.02rem; padding: 1rem; }
.checkout-summary {
  background: var(--adobe-50); border-radius: 16px; padding: 1.5rem;
  box-shadow: var(--shadow-sm); position: sticky; top: 2rem;
  border: 1px solid rgba(58, 42, 34, 0.08);
}
.checkout-summary h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.checkout-demo-note { margin: 0.9rem 0 0; font-size: 0.82rem; color: var(--ink-muted); }
.summary-items {
  display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.15rem;
  max-height: 320px; overflow-y: auto;
}
.summary-row {
  display: grid; grid-template-columns: 48px 1fr auto; gap: 0.7rem;
  align-items: center; font-size: 0.9rem;
}
.summary-row img {
  width: 48px; height: 48px; border-radius: 10px; object-fit: contain;
  background: var(--adobe-100); padding: 0.15rem;
}
.summary-row .s-name { color: var(--brown); font-weight: 700; }
.summary-row .s-qty { color: var(--ink-muted); font-size: 0.8rem; }
.summary-row .s-price { font-weight: 700; color: var(--brown); }
.summary-line {
  display: flex; justify-content: space-between; padding: 0.4rem 0;
  color: var(--ink-muted); border-top: 1px dashed rgba(58, 42, 34, 0.2);
}
.summary-total {
  font-family: var(--serif); font-size: 1.3rem; color: var(--brown);
  border-top: 1px solid rgba(58, 42, 34, 0.28); margin-top: 0.3rem; padding-top: 0.7rem;
}
.checkout-success { text-align: center; max-width: 480px; margin: 4vh auto 0; color: var(--clay-deep); }
.success-check { display: grid; place-items: center; margin-bottom: 1rem; color: var(--turquoise); }
.checkout-success h2 { font-size: 2.35rem; color: var(--brown); }
.checkout-success p { color: var(--ink-muted); margin: 0.6rem 0 1.6rem; }

.toast {
  position: fixed; bottom: 24px; left: 50%; z-index: 90;
  transform: translate(-50%, 120%); background: var(--brown); color: var(--adobe-50);
  padding: 0.9rem 1.4rem; border-radius: 12px; font-weight: 600; font-size: 0.92rem;
  box-shadow: var(--shadow-lg); transition: transform 0.35s var(--ease);
  max-width: min(92vw, 420px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); }

@media (max-width: 960px) {
  .brand-tag { display: none; }
  .hero {
    min-height: clamp(26rem, 72vh, 36rem);
  }
  .hero-bg-img { object-position: 70% center; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(35, 24, 18, 0.35) 0%, rgba(35, 24, 18, 0.25) 40%, rgba(35, 24, 18, 0.55) 100%),
      linear-gradient(90deg, rgba(35, 24, 18, 0.55) 0%, rgba(35, 24, 18, 0.2) 55%, transparent 85%);
  }
  .hero-inner { padding: clamp(2.8rem, 8vh, 4rem) 0 clamp(3.8rem, 10vh, 5.5rem); }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { max-width: 16ch; }
  .about-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
  .story-strip-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 0.85rem; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid li { border-right: none; padding-bottom: 0.5rem; }
  .modal { grid-template-columns: 1fr; }
  .modal-media img { min-height: 200px; max-height: 280px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .nav { grid-template-columns: auto auto 1fr; }
  .nav-toggle { display: inline-flex; justify-self: start; }
  .cart-btn { grid-column: 3; }
  .nav-panel {
    position: fixed; inset: 0; z-index: 1; display: block;
    padding: 5.5rem 1.4rem 2rem; background: rgba(255, 248, 240, 0.98);
    backdrop-filter: blur(10px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.22s var(--ease), visibility 0.22s;
  }
  body.nav-open .nav-panel { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links { flex-direction: column; gap: 0.35rem; align-items: stretch; }
  .nav-links a {
    display: block; padding: 0.95rem 0.85rem; font-size: 1.2rem;
    border-radius: 12px; border-bottom: none;
  }
  .nav-links a[href="#top"],
  .nav-links a.is-active { border-bottom: none; color: var(--terracotta); }
  .nav-links a:hover { background: rgba(196, 92, 50, 0.12); }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 0.95rem; }
  .hero {
    min-height: clamp(24rem, 78vh, 32rem);
  }
  /*
    Mobile crop for <img object-fit:cover> (same role as background-position).
    Skull sits ~58% across the photo. ~50% object-position places it mid-right,
    clear of the left CTA. (78% put it under the button; very low % crops it off.)
  */
  .hero-bg-img { object-position: 50% 50%; }
  .hero-copy h1 { font-size: clamp(1.75rem, 8vw, 2.25rem); max-width: none; }
  .hero-brand { font-size: 1.05rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem 0.85rem; }
  .card-body h3 { font-size: 1.15rem; }
  .footer-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .brand-logo { height: 40px; width: 40px; }
}

/* Fine-tune phone widths — nudge skull farther right as the viewport narrows */
@media (max-width: 430px) {
  .hero-bg-img { object-position: 48% 50%; }
}

@media (max-width: 412px) {
  .hero-bg-img { object-position: 47% 50%; }
}

@media (max-width: 390px) {
  .hero-bg-img { object-position: 46% 50%; }
}

@media (max-width: 360px) {
  .hero-actions .btn { width: 100%; }
  .hero-lead { font-size: 0.98rem; }
  .hero-bg-img { object-position: 44% 50%; }
}

@media (max-width: 320px) {
  .hero-bg-img { object-position: 42% 50%; }
}

/* Hover motion only on true hover pointers — touch relies on :active / focus */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover:not(:disabled) {
    transform: var(--elevate-2);
    box-shadow:
      var(--shadow),
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      inset 0 -1px 0 rgba(58, 42, 34, 0.16);
    filter: brightness(1.03);
  }
  .btn-ghost:hover:not(:disabled) {
    transform: var(--elevate-1);
    border-color: var(--turquoise);
    color: var(--turquoise);
    background: #fff;
  }
  .brand:hover .brand-logo { transform: var(--elevate-1); }
  .nav-links a:hover { color: var(--clay-deep); border-bottom-color: var(--terracotta); }
  .cart-btn:hover {
    background: #fff;
    border-color: var(--turquoise);
    color: var(--turquoise);
    transform: var(--elevate-1);
  }
  .filter-chip:hover:not(.is-active) {
    border-color: var(--turquoise);
    color: var(--turquoise);
    transform: var(--elevate-1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 4px 10px -4px rgba(47, 111, 109, 0.28);
  }
  .filter-chip.is-active:hover {
    transform: var(--elevate-1);
  }
  .card:hover {
    transform: var(--elevate-2);
    box-shadow: var(--shadow);
    border-color: rgba(58, 42, 34, 0.14);
  }
  .card:hover .card-img img { transform: scale(1.02); }
  .card:hover .card-quick { opacity: 1; transform: translateY(0); }
  .add:hover:not(:disabled) {
    background: linear-gradient(180deg, var(--clay-soft), var(--clay));
    color: #fff;
    border-color: rgba(143, 63, 36, 0.45);
    transform: var(--elevate-1);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 4px 10px -4px rgba(143, 63, 36, 0.4);
  }
  .qty-control button:hover { background: var(--sand); }
  .cart-close:hover { background: var(--sand); }
  .cart-line-qty button:hover { background: #fff; border-color: var(--turquoise); }
  .cart-line-remove:hover { color: var(--clay-deep); }
  .modal-close:hover { background: #fff; }
}

@media (hover: none) {
  .card-quick {
    opacity: 0.95;
    transform: none;
    background: linear-gradient(0deg, rgba(58, 42, 34, 0.55), transparent 70%);
  }
}
