/* ==========================================================================
   PROFILE RIZ — design system
   Direction: architectural atelier / editorial luxury.
   Warm plaster neutrals, inscriptional serif display, terracotta accent,
   double-bezel containers, spring-physics motion.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* surface */
  --paper: #faf8f4;
  --paper-warm: #f4efe7;
  --paper-deep: #ece4d8;
  --white: #ffffff;

  /* ink */
  --ink: #191512;
  --ink-2: #3d362e;
  --muted: #615850;
  --faint: #7b7165;

  /* lines */
  --line: #e3dacd;
  --line-soft: #efe8de;
  --line-ink: rgba(25, 21, 18, 0.1);

  /* accent */
  --clay: #a44b26;
  --clay-deep: #823818;
  --clay-soft: #f1e4da;
  --sage: #5d6b57;
  --sage-soft: #e6ebe1;

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --fs-display: clamp(2.85rem, 6.6vw, 6rem);
  --fs-h1: clamp(2.3rem, 4.9vw, 4.1rem);
  --fs-h2: clamp(1.72rem, 3.1vw, 2.85rem);
  --fs-h3: clamp(1.24rem, 1.9vw, 1.6rem);
  --fs-h4: clamp(1.06rem, 1.35vw, 1.2rem);
  --fs-lede: clamp(1.04rem, 1.3vw, 1.24rem);
  --fs-body: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.82rem;
  --fs-micro: 0.72rem;

  /* space */
  --shell: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 10vw, 9rem);
  --section-y-tight: clamp(3rem, 6vw, 5.5rem);

  /* radii */
  --r-xl: 2.25rem;
  --r-lg: 1.6rem;
  --r-md: 1.1rem;
  --r-sm: 0.7rem;
  --r-pill: 999px;

  /* elevation — diffuse, never harsh */
  --shadow-1: 0 1px 2px rgba(25, 21, 18, 0.04), 0 10px 26px -14px rgba(25, 21, 18, 0.12);
  --shadow-2: 0 2px 6px rgba(25, 21, 18, 0.05), 0 30px 70px -34px rgba(25, 21, 18, 0.24);
  --shadow-nav: 0 1px 3px rgba(25, 21, 18, 0.04), 0 18px 44px -22px rgba(25, 21, 18, 0.2);

  /* motion — mass and spring, never linear */
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.62s;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

::selection {
  background: var(--clay);
  color: var(--paper);
}

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

/* film grain — fixed, never on a scrolling container */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--wide {
  max-width: 1520px;
}

.shell--narrow {
  max-width: 820px;
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: var(--section-y-tight);
}

.section--warm {
  background: var(--paper-warm);
}

.section--deep {
  background: var(--ink);
  color: var(--paper);
}

.section--deep .muted,
.section--deep .lede {
  color: rgba(250, 248, 244, 0.68);
}

.section--line {
  border-top: 1px solid var(--line);
}

[data-nav-sentinel] {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 84px;
  pointer-events: none;
  visibility: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.2rem;
  border-radius: var(--r-pill);
}

.skip-link:focus {
  left: 1rem;
}

/* --------------------------------------------------------------------------
   4. Type helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.eyebrow--plain::before {
  display: none;
}

.eyebrow--light {
  color: #e5ac8b;
}

.display {
  font-size: var(--fs-display);
  line-height: 0.98;
  letter-spacing: -0.032em;
}

.h1 {
  font-size: var(--fs-h1);
}

.h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.026em;
}

.h3 {
  font-size: var(--fs-h3);
}

.h4 {
  font-size: var(--fs-h4);
}

.italic {
  font-style: italic;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.lede {
  font-size: var(--fs-lede);
  color: var(--ink-2);
  line-height: 1.64;
  max-width: 62ch;
  text-wrap: pretty;
}

.muted {
  color: var(--muted);
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* section heading block */
.sec-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem 3rem;
  margin-bottom: clamp(2.2rem, 4vw, 3.6rem);
}

.sec-head__text {
  max-width: 62ch;
  display: grid;
  gap: 1rem;
}

.sec-head--center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.sec-head--center .lede {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   5. Buttons — nested "button-in-button" architecture
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.62rem 0.62rem 0.62rem 1.45rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: -0.006em;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    background-color 0.4s var(--ease);
  box-shadow: var(--shadow-1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.btn:active {
  transform: scale(0.985) translateY(0);
}

.btn__icon {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.14);
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease);
}

.btn__icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 1.6;
}

.btn:hover .btn__icon {
  transform: translate(2px, -2px) scale(1.06);
}

.btn--clay {
  --btn-bg: var(--clay);
  --btn-fg: #fff;
}

.btn--clay:hover {
  background: var(--clay-deep);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--ghost .btn__icon {
  background: rgba(25, 21, 18, 0.06);
}

.btn--ghost:hover {
  background: var(--white);
  box-shadow: var(--shadow-1);
}

.btn--light {
  --btn-bg: var(--paper);
  --btn-fg: var(--ink);
}

.btn--light .btn__icon {
  background: rgba(25, 21, 18, 0.08);
}

.btn--sm {
  padding: 0.4rem 0.4rem 0.4rem 1.1rem;
  font-size: var(--fs-xs);
}

.btn--sm .btn__icon {
  width: 1.75rem;
  height: 1.75rem;
}

/* bare text link with animated rule */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clay);
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: 0 100%;
  transition: background-size 0.5s var(--ease), color 0.4s var(--ease);
}

.tlink:hover {
  background-size: 0% 1px;
  background-position: 100% 100%;
}

/* --------------------------------------------------------------------------
   6. Header & navigation
   -------------------------------------------------------------------------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: clamp(0.7rem, 1.6vw, 1.25rem) var(--gutter) 0;
  transition: padding 0.6s var(--ease);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 1440px;
  margin-inline: auto;
  padding: 0.62rem 0.62rem 0.62rem 0.85rem;
  border-radius: var(--r-pill);
  /* always a frosted island, so the bar stays legible over any hero photo */
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(25, 21, 18, 0.08);
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.6s var(--ease), padding 0.6s var(--ease),
    background-color 0.6s var(--ease);
}

.topbar.is-stuck .topbar__inner {
  padding-block: 0.45rem;
  box-shadow: var(--shadow-nav);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.6rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  transition: transform 0.6s var(--ease);
}

/* optional image logo — add an <img> inside .brand__mark to use it */
.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.brand:hover .brand__mark {
  transform: rotate(-6deg) scale(1.04);
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav__link {
  position: relative;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.4s var(--ease), background-color 0.4s var(--ease);
}

.nav__link:hover {
  color: var(--ink);
  background: rgba(25, 21, 18, 0.05);
}

.nav__link[aria-current="page"] {
  color: var(--clay);
}

.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.18rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--clay);
  transform: translateX(-50%);
}

.topbar__cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.04em;
  color: var(--ink-2);
  padding: 0.5rem 0.9rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}

.topbar__phone:hover {
  border-color: var(--clay);
  color: var(--clay);
}

/* burger */
.burger {
  display: none;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
}

.burger span {
  position: absolute;
  left: 50%;
  width: 1.05rem;
  height: 1.5px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.55s var(--ease), opacity 0.3s var(--ease);
}

.burger span:nth-child(1) {
  top: 1.12rem;
  transform: translateX(-50%);
}

.burger span:nth-child(2) {
  top: 1.62rem;
  transform: translateX(-50%);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateX(-50%) translateY(0.25rem) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  transform: translateX(-50%) translateY(-0.25rem) rotate(-45deg);
}

/* mobile overlay */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  display: grid;
  align-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__list {
  list-style: none;
  display: grid;
  gap: 0.2rem;
  max-width: 40rem;
  margin-inline: auto;
  width: 100%;
}

.drawer__list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  letter-spacing: -0.03em;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.drawer.is-open .drawer__list a {
  opacity: 1;
  transform: none;
}

.drawer__list a span {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  color: var(--faint);
}

.drawer__foot {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  width: 100%;
  display: grid;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.7s var(--ease) 0.3s;
}

.drawer.is-open .drawer__foot {
  opacity: 1;
}

.drawer__list li:nth-child(1) a { transition-delay: 0.06s; }
.drawer__list li:nth-child(2) a { transition-delay: 0.11s; }
.drawer__list li:nth-child(3) a { transition-delay: 0.16s; }
.drawer__list li:nth-child(4) a { transition-delay: 0.21s; }
.drawer__list li:nth-child(5) a { transition-delay: 0.26s; }
.drawer__list li:nth-child(6) a { transition-delay: 0.31s; }
.drawer__list li:nth-child(7) a { transition-delay: 0.36s; }

/* --------------------------------------------------------------------------
   7. Hero — editorial split: copy on warm plaster, product plate on the right
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(7rem, 12vw, 10.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(78% 62% at 92% 4%, rgba(164, 75, 38, 0.1), transparent 62%),
    radial-gradient(60% 50% at 4% 100%, rgba(25, 21, 18, 0.05), transparent 70%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}

.hero__grid {
  display: grid;
  gap: clamp(2.4rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1.02fr 0.98fr;
  }
}

.hero__copy {
  display: grid;
  gap: clamp(1.15rem, 2.3vw, 1.75rem);
  align-content: center;
  justify-items: start;
}

.hero__title {
  font-size: clamp(2.35rem, 4.5vw, 3.95rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.hero__lede {
  color: var(--ink-2);
  font-size: var(--fs-lede);
  max-width: 46ch;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  align-items: center;
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
  padding-top: clamp(1.2rem, 2.4vw, 1.8rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__foot b {
  color: var(--ink);
  font-weight: 600;
}

/* the product plate */
.hero__plate {
  position: relative;
  display: grid;
  gap: 0.9rem;
  /* cap the width so the 346px-wide source is never upscaled past ~1.5x */
  max-width: 33rem;
  margin-inline: auto;
  width: 100%;
}

@media (min-width: 1000px) {
  .hero__plate {
    margin-inline: 0 0;
  }
}

.hero__plate--main {
  padding: 0.45rem;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}

.hero__plate--main img {
  width: 100%;
  aspect-ratio: 346 / 162;
  object-fit: cover;
  border-radius: calc(var(--r-xl) - 0.45rem);
  background: var(--paper-deep);
}

.hero__plate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.9rem;
  padding: 0 0.6rem 0.5rem;
}

.hero__plate-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.hero__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.hero__thumb {
  padding: 0.35rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease),
    border-color 0.5s var(--ease);
}

.hero__thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
  border-color: rgba(164, 75, 38, 0.3);
}

.hero__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--r-md) - 0.35rem);
  background: var(--paper-deep);
}

.hero__thumb span {
  display: block;
  margin-top: 0.55rem;
  padding: 0 0.35rem 0.3rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* compact page hero for inner pages */
.phero {
  position: relative;
  padding-top: clamp(7.5rem, 13vw, 11rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper-warm);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.phero--media {
  background: var(--ink);
  color: var(--paper);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.phero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.phero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(25, 21, 18, 0.95) 0%, rgba(25, 21, 18, 0.86) 42%, rgba(25, 21, 18, 0.9) 100%),
    radial-gradient(80% 130% at 12% 60%, rgba(25, 21, 18, 0.72) 0%, rgba(25, 21, 18, 0) 72%);
}

.phero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
  max-width: 68rem;
}

.phero__title {
  font-size: var(--fs-h1);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.phero--media .phero__title {
  color: #fff;
}

/* frosted badge so the eyebrow stays legible on any hero photograph */
.phero--media .eyebrow {
  width: fit-content;
  padding: 0.42rem 0.95rem 0.42rem 0.8rem;
  border-radius: var(--r-pill);
  background: rgba(25, 21, 18, 0.74);
  border: 1px solid rgba(250, 248, 244, 0.18);
  color: #f6d3b6;
}

.phero--media .eyebrow::before {
  background: currentColor;
}

.phero--media .lede {
  color: rgba(250, 248, 244, 0.92);
}

.phero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.phero--media .phero__meta {
  color: rgba(250, 248, 244, 0.82);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.crumbs a:hover {
  color: var(--clay);
}

.crumbs span[aria-hidden] {
  opacity: 0.45;
}

.phero--media .crumbs {
  color: rgba(255, 255, 255, 0.58);
}

.phero--media .crumbs a:hover {
  color: #fff;
}

/* --------------------------------------------------------------------------
   8. Cards — double-bezel
   -------------------------------------------------------------------------- */
.bz {
  padding: 0.4rem;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  transition: transform 0.65s var(--ease), box-shadow 0.65s var(--ease),
    border-color 0.5s var(--ease), background-color 0.5s var(--ease);
}

.bz__core {
  border-radius: calc(var(--r-xl) - 0.4rem);
  background: var(--white);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bz--lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: rgba(176, 83, 44, 0.28);
}

/* product card */
.pcard {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
}

.pcard__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.pcard:hover .pcard__media img {
  transform: scale(1.055);
}

.pcard__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.32rem 0.7rem;
  border-radius: var(--r-pill);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.pcard__body {
  padding: 1.35rem 1.5rem 1.6rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.pcard__code {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

.pcard__title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.14;
  letter-spacing: -0.022em;
}

.pcard__text {
  font-size: var(--fs-sm);
  color: var(--muted);
  line-height: 1.62;
}

.pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
}

.pcard__price {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.pcard__arrow {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper-warm);
  transition: transform 0.55s var(--ease), background-color 0.45s var(--ease),
    color 0.45s var(--ease);
}

.pcard__arrow svg {
  width: 0.85rem;
  height: 0.85rem;
}

.pcard:hover .pcard__arrow {
  background: var(--clay);
  color: #fff;
  transform: translate(2px, -2px) scale(1.06);
}

/* --------------------------------------------------------------------------
   9. Bento grid
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(12, 1fr);
}

.bento > * {
  grid-column: span 12;
}

@media (min-width: 700px) {
  .bento > .col-6 { grid-column: span 6; }
}

@media (min-width: 1024px) {
  .bento > .col-lg-7 { grid-column: span 7; }
  .bento > .col-lg-5 { grid-column: span 5; }
  .bento > .col-lg-4 { grid-column: span 4; }
  .bento > .col-lg-6 { grid-column: span 6; }
}

/* Uniform media band: every card in the bento gets the same image height,
   so a wide card never blows its image up and a narrow card never leaves
   a hole underneath. */
.bento .pcard__media {
  aspect-ratio: auto;
  height: clamp(9.5rem, 14vw, 12.5rem);
}

.bento .pcard__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.bento .pcard__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* footer pinned to the bottom so prices and arrows line up across the row */
.bento .pcard__foot {
  margin-top: auto;
}

@media (min-width: 900px) {
  .bento .pcard--wide .pcard__media {
    height: 100%;
    min-height: 15rem;
  }
  .bento .pcard--wide .pcard__body {
    justify-content: center;
  }
  .bento .pcard--wide .pcard__foot {
    margin-top: 0.6rem;
    align-self: stretch;
  }
  .bento .pcard--wide .pcard__text {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    max-width: 46ch;
  }
}

.span-feature {
  position: relative;
  min-height: 22rem;
  display: grid;
  align-content: end;
  color: #fff;
  isolation: isolate;
}

.span-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.span-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(25, 21, 18, 0.1) 30%, rgba(25, 21, 18, 0.82) 100%);
}

.span-feature__body {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  display: grid;
  gap: 0.6rem;
}

/* plain grid helper */
.grid {
  display: grid;
  gap: 1.1rem;
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }
.grid--tight { gap: 0.75rem; }

/* --------------------------------------------------------------------------
   10. Stats / trust band
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat {
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variation-settings: "SOFT" 30;
}

.stat__label {
  font-size: var(--fs-xs);
  color: var(--muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   11. Split / editorial feature
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
  .split--flip > *:first-child { order: 2; }
}

.split__media {
  position: relative;
}

.frame {
  padding: 0.45rem;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.frame img {
  border-radius: calc(var(--r-xl) - 0.45rem);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.frame--tall img {
  aspect-ratio: 3 / 4;
}

.frame--offset {
  position: relative;
}

@media (min-width: 900px) {
  .frame--offset::before {
    content: "";
    position: absolute;
    inset: auto -1.6rem -1.6rem auto;
    width: 62%;
    height: 62%;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    z-index: -1;
  }
}

/* numbered process list */
.steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.step:first-child {
  border-top: 1px solid var(--line);
}

.step__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  color: var(--clay);
  padding-top: 0.3rem;
}

.step__body {
  display: grid;
  gap: 0.45rem;
}

/* feature list with ticks */
.ticks {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.ticks li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  font-size: var(--fs-sm);
  color: var(--ink-2);
}

.ticks svg {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.32rem;
  color: var(--clay);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. Gallery
   -------------------------------------------------------------------------- */
.rz-gallery {
  margin: clamp(1.8rem, 3.4vw, 3rem) 0;
  display: grid;
  gap: 0.85rem;
}

.rz-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 11.5rem), 1fr));
  gap: 0.6rem;
}

.rz-shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--paper-deep);
  aspect-ratio: 1;
  padding: 0;
  display: block;
  width: 100%;
}

.rz-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}

.rz-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(25, 21, 18, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.rz-shot:hover img {
  transform: scale(1.07);
}

.rz-shot:hover::after {
  opacity: 1;
}

.rz-shot:focus-visible {
  outline-offset: 3px;
}

.rz-gallery__meta {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

/* stand-alone masonry gallery page */
.masonry {
  columns: 2;
  column-gap: 0.75rem;
}

@media (min-width: 700px) { .masonry { columns: 3; } }
@media (min-width: 1100px) { .masonry { columns: 4; } }

.masonry > * {
  margin-bottom: 0.75rem;
  break-inside: avoid;
}

.masonry .rz-shot {
  aspect-ratio: auto;
}

.masonry .rz-shot img {
  height: auto;
  aspect-ratio: 4 / 5;
}

.gal-block {
  margin-block: clamp(2.4rem, 5vw, 4rem);
}

.gal-block__head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 1.2rem;
}

.gal-block__count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  color: var(--faint);
}

/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: rgba(18, 15, 13, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.lb.is-open {
  opacity: 1;
  visibility: visible;
}

.lb__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: rgba(250, 248, 244, 0.75);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lb__stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 clamp(0.75rem, 3vw, 3rem);
  min-height: 0;
}

.lb__stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 40px 120px -40px rgba(0, 0, 0, 0.9);
}

.lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(250, 248, 244, 0.12);
  color: #fff;
  transition: background-color 0.4s var(--ease), transform 0.5s var(--ease);
}

.lb__nav:hover {
  background: rgba(250, 248, 244, 0.26);
}

.lb__nav--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lb__nav--next { right: clamp(0.5rem, 2vw, 1.5rem); }

.lb__foot {
  padding: 1.1rem clamp(1rem, 3vw, 2rem) 1.6rem;
  text-align: center;
  color: rgba(250, 248, 244, 0.72);
  font-size: var(--fs-sm);
}

.lb__close {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(250, 248, 244, 0.12);
  color: #fff;
  transition: background-color 0.4s var(--ease), transform 0.5s var(--ease);
}

.lb__close:hover {
  background: rgba(250, 248, 244, 0.26);
  transform: rotate(90deg);
}

/* --------------------------------------------------------------------------
   13. Video
   -------------------------------------------------------------------------- */
.rz-video {
  margin: clamp(1.8rem, 3.4vw, 3rem) 0;
  padding: 0.45rem;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.rz-video video {
  width: 100%;
  border-radius: calc(var(--r-xl) - 0.45rem);
  background: var(--ink);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.videoband {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.videoband video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.videoband__label {
  position: absolute;
  left: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 2;
  color: #fff;
  display: grid;
  gap: 0.35rem;
  pointer-events: none;
}

.videoband__label span {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   14. Prose — long-form content from the original site
   -------------------------------------------------------------------------- */
.prose {
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.78;
  color: var(--ink-2);
  max-width: 74ch;
}

.prose > * + * {
  margin-top: 1.15rem;
}

.prose h2,
.prose h3,
.prose h4 {
  color: var(--ink);
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.2rem;
}

.prose h2 { font-size: var(--fs-h2); letter-spacing: -0.026em; }
.prose h3 { font-size: var(--fs-h3); }
.prose h4 { font-size: var(--fs-h4); }

.prose h2 > a,
.prose h3 > a {
  color: inherit;
}

.prose a {
  color: var(--clay);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(176, 83, 44, 0.32);
  transition: text-decoration-color 0.4s var(--ease), color 0.4s var(--ease);
}

.prose a:hover {
  color: var(--clay-deep);
  text-decoration-color: currentColor;
}

.prose strong,
.prose b {
  color: var(--ink);
  font-weight: 650;
}

.prose ul,
.prose ol {
  padding-left: 1.35rem;
  display: grid;
  gap: 0.55rem;
}

.prose ul { list-style: none; padding-left: 0; }

.prose ul li {
  position: relative;
  padding-left: 1.5rem;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.72em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  border: 1.5px solid var(--clay);
}

.prose ol { list-style: decimal; }

.prose ol li::marker {
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--clay);
}

.prose blockquote {
  margin: 2rem 0;
  padding: 0.2rem 0 0.2rem 1.6rem;
  border-left: 2px solid var(--clay);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.prose figure {
  margin: 0;
}

.prose > figure:not(.rz-gallery):not(.rz-video) {
  margin: 1.8rem 0;
}

.prose img:not(.rz-shot img) {
  border-radius: var(--r-md);
  width: 100%;
}

.prose > p > img,
.prose > figure > img {
  border-radius: var(--r-md);
}

.prose figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  margin: 1.8rem 0;
}

.prose th,
.prose td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.prose th {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.prose pre {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.2rem;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  line-height: 1.6;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

.prose .rule {
  margin: 2.4rem 0;
}

/* article body wrapper */
.article-body {
  display: grid;
  gap: 0;
}

/* aside rail */
.rail {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

@media (min-width: 1024px) {
  .rail--sticky {
    position: sticky;
    top: 7rem;
  }
}

.railcard {
  padding: 1.5rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  gap: 0.9rem;
}

.railcard--warm {
  background: var(--paper-warm);
}

.railcard__title {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* spec list */
.spec {
  display: grid;
  gap: 0;
}

.spec__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: var(--fs-sm);
}

.spec__row:last-child {
  border-bottom: 0;
}

.spec__row dt {
  color: var(--muted);
}

.spec__row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--ink);
  text-align: right;
}

/* --------------------------------------------------------------------------
   15. Marquee
   -------------------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.1rem;
  background: var(--paper-warm);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 2.6rem;
  animation: marquee 42s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.marquee__item::after {
  content: "◆";
  font-size: 0.5rem;
  color: var(--clay);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   16. Shop
   -------------------------------------------------------------------------- */
.shopbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: var(--fs-xs);
  color: var(--ink-2);
  background: var(--white);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease),
    background-color 0.4s var(--ease), transform 0.5s var(--ease);
}

.chip:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-1px);
}

.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.count {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--muted);
  letter-spacing: 0.06em;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: 1rem;
}

.pgrid .bz__core {
  padding: 0;
}

.pgrid .pcard__media {
  aspect-ratio: 1;
  padding: 0.9rem;
  background: var(--paper-warm);
}

.pgrid .pcard__media img {
  object-fit: contain;
}

.pgrid .pcard__body {
  padding: 1rem 1.15rem 1.25rem;
  gap: 0.45rem;
}

.pgrid .pcard__title {
  font-size: 1.06rem;
  line-height: 1.2;
}

.pgrid .pcard__code {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.pgrid .pcard__foot {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}

.shopnav {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.shopnav__col {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.shopnav__title {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.35rem;
}

.shopnav__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  padding: 0.22rem 0;
  transition: color 0.35s var(--ease), transform 0.5s var(--ease);
}

.shopnav__link:hover {
  color: var(--clay);
  transform: translateX(3px);
}

.shopnav__link em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--faint);
}

/* --------------------------------------------------------------------------
   17. Contact
   -------------------------------------------------------------------------- */
.contact-cards {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.person {
  padding: 1.6rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  gap: 0.9rem;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.5s var(--ease);
}

.person:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
  border-color: rgba(176, 83, 44, 0.25);
}

.person__avatar {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-deep);
}

.person__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.024em;
}

.person__role {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.person__phone {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--clay);
  letter-spacing: -0.01em;
}

.info-list {
  display: grid;
  gap: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--fs-sm);
  align-items: baseline;
}

.info-list li:first-child {
  border-top: 1px solid var(--line);
}

.info-list b {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* form */
.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: var(--white);
  font: inherit;
  font-size: var(--fs-sm);
  color: var(--ink);
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(176, 83, 44, 0.1);
}

.field-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
}

.form__note {
  font-size: var(--fs-xs);
  color: var(--faint);
}

.form__status {
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-md);
  background: var(--sage-soft);
  color: #3f4a3b;
  font-size: var(--fs-sm);
  display: none;
}

.form__status.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   18. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2.2rem, 5vw, 4rem);
  display: grid;
  gap: 1.6rem;
  isolation: isolate;
}

.cta-band__glow {
  position: absolute;
  inset: auto -10% -60% 30%;
  height: 120%;
  background: radial-gradient(closest-side, rgba(176, 83, 44, 0.55), transparent);
  z-index: -1;
  filter: blur(10px);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  align-items: flex-end;
  justify-content: space-between;
}

.cta-band h2 {
  color: #fff;
  max-width: 22ch;
}

.cta-band p {
  color: rgba(250, 248, 244, 0.7);
  max-width: 44ch;
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(250, 248, 244, 0.72);
  padding-top: clamp(3rem, 6vw, 5rem);
  margin-top: 0;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer__col {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer__title {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.58);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.025em;
}

.footer__text {
  font-size: var(--fs-sm);
  line-height: 1.68;
}

.footer a {
  transition: color 0.4s var(--ease);
}

.footer a:hover {
  color: #fff;
}

.footer .muted {
  color: rgba(250, 248, 244, 0.64);
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: var(--fs-sm);
}

.footer__contact {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: var(--fs-sm);
}

.footer__contact b {
  font-weight: 500;
  color: rgba(250, 248, 244, 0.58);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
}

.footer__bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.6);
}

.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   20. Chat assistant
   -------------------------------------------------------------------------- */
.chat-fab {
  position: fixed;
  right: clamp(0.9rem, 2.4vw, 1.75rem);
  bottom: clamp(0.9rem, 2.4vw, 1.75rem);
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.15rem 0.6rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-2);
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease);
}

.chat-fab:hover {
  transform: translateY(-3px);
}

.chat-fab__dot {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--clay);
  color: #fff;
  flex-shrink: 0;
}

.chat-fab__dot svg {
  width: 1rem;
  height: 1rem;
}

.chat-fab__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .chat-fab__label { display: none; }
  .chat-fab { padding: 0.55rem; }
}

.chat {
  position: fixed;
  right: clamp(0.9rem, 2.4vw, 1.75rem);
  bottom: clamp(4.6rem, 8vw, 5.6rem);
  z-index: 56;
  width: min(24rem, calc(100vw - 1.8rem));
  max-height: min(32rem, calc(100dvh - 8rem));
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-radius: var(--r-lg);
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease), visibility 0.45s;
}

.chat.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.chat__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.chat__head b {
  font-size: var(--fs-sm);
  font-weight: 650;
}

.chat__head span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.chat__close {
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.chat__close:hover {
  background: var(--paper-warm);
  color: var(--ink);
}

.chat__log {
  padding: 1rem;
  overflow-y: auto;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  scrollbar-width: thin;
}

.msg {
  max-width: 88%;
  padding: 0.7rem 0.95rem;
  border-radius: 1rem;
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.msg--bot {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom-left-radius: 0.3rem;
  justify-self: start;
}

.msg--me {
  background: var(--ink);
  color: var(--paper);
  border-bottom-right-radius: 0.3rem;
  justify-self: end;
}

.msg a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.msg--me a { color: #f0c3a4; }

.msg__hits {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.55rem;
}

.msg__hit {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.4rem 0.6rem;
  border-radius: 0.55rem;
  background: var(--paper-warm);
  font-size: var(--fs-xs);
  transition: background-color 0.35s var(--ease);
}

.msg__hit:hover {
  background: var(--clay-soft);
}

.msg__hit em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--clay);
  white-space: nowrap;
}

.chat__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chat__form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 0.6rem 1rem;
  font: inherit;
  font-size: var(--fs-sm);
  background: var(--paper);
  min-width: 0;
}

.chat__form input:focus {
  outline: none;
  border-color: var(--clay);
}

.chat__send {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background-color 0.4s var(--ease), transform 0.5s var(--ease);
}

.chat__send:hover {
  background: var(--clay-deep);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   21. Nav dropdown, wide cards, gallery masonry variant
   -------------------------------------------------------------------------- */
.nav__caret {
  margin-left: 0.28rem;
  opacity: 0.55;
  transition: transform 0.45s var(--ease);
}

.navdrop {
  position: relative;
}

.navdrop:hover .nav__caret,
.navdrop:focus-within .nav__caret {
  transform: rotate(180deg);
}

.navdrop__panel {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  min-width: 20rem;
  padding: 0.55rem;
  border-radius: var(--r-lg);
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -0.6rem);
  transition: opacity 0.42s var(--ease), transform 0.5s var(--ease), visibility 0.42s;
}

.navdrop:hover .navdrop__panel,
.navdrop:focus-within .navdrop__panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.navdrop__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0.85rem;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--ink-2);
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.navdrop__link svg {
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
}

.navdrop__link:hover {
  background: var(--paper-warm);
  color: var(--ink);
}

.navdrop__link:hover svg {
  opacity: 1;
  transform: none;
}

.navdrop__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
  padding: 0.7rem 0.85rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
}

/* wide bento card */
@media (min-width: 900px) {
  .pcard--wide {
    grid-template-columns: 0.95fr 1.05fr;
    grid-template-rows: auto;
  }
  .pcard--wide .pcard__body {
    padding: clamp(1.6rem, 3vw, 2.6rem);
  }
  .pcard--wide .pcard__title {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.08;
  }
  .pcard--wide .pcard__text {
    font-size: var(--fs-body);
  }
}

/* gallery page: masonry columns instead of a uniform grid */
.galmason .rz-gallery__grid {
  display: block;
  columns: 2;
  column-gap: 0.6rem;
}

@media (min-width: 700px) { .galmason .rz-gallery__grid { columns: 3; } }
@media (min-width: 1100px) { .galmason .rz-gallery__grid { columns: 4; } }

.galmason .rz-shot {
  aspect-ratio: auto;
  margin-bottom: 0.6rem;
  break-inside: avoid;
}

.galmason .rz-shot img {
  height: auto;
  aspect-ratio: 4 / 5;
}

.chip em {
  font-style: normal;
  font-size: 0.82em;
  opacity: 0.78;
}

/* --------------------------------------------------------------------------
   22. Motion — scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(2.2rem);
  filter: blur(6px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out),
    filter 0.85s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-0 { margin-top: 0; }
.stack-sm { display: grid; gap: 0.65rem; }
.stack { display: grid; gap: 1.1rem; }
.stack-lg { display: grid; gap: 1.9rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

@media (max-width: 900px) {
  .nav { display: none; }
  .topbar__phone { display: none; }
  .burger { display: block; }
  .topbar__cta .btn { display: none; }
}

@media (max-width: 640px) {
  .hero { padding-bottom: 2.5rem; }
  .hero__foot { gap: 0.7rem 1.4rem; font-size: 0.68rem; }
  .info-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .rz-gallery__grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 8.5rem), 1fr)); }
}
