:root {
  --ink: #1a1f1c;
  --ink-soft: #3d4742;
  --paper: #f4f1ec;
  --mist: #e7e2da;
  --sage: #5f6f5a;
  --deep: #0f1412;
  --gold: #a8946a;
  --line: rgba(26, 31, 28, 0.12);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.container-narrow { width: min(760px, calc(100% - 2.5rem)); margin-inline: auto; }

/* Site chrome */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2rem;
  transition: background .35s ease, backdrop-filter .35s ease;
}
.site-header.is-solid {
  background: rgba(15, 20, 18, 0.88);
  backdrop-filter: blur(10px);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.brand--logo {
  letter-spacing: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  display: block;
  height: 2.1rem;
  width: auto;
  max-width: min(200px, 46vw);
  object-fit: contain;
}
.brand-logo--footer {
  height: 2.4rem;
  max-width: 220px;
  margin-bottom: .35rem;
}
.site-footer .brand {
  color: var(--ink);
}
.site-footer .brand--logo {
  margin-bottom: .35rem;
}
.nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(255,255,255,.88);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav a:hover { color: #fff; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  padding: .4rem .7rem;
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero.hero--inner {
  min-height: min(88vh, 820px);
}
.hero.hero--video::before {
  opacity: .35;
}
/* Hero — full bleed */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: end start;
  padding: 0 0 5.5rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15,20,18,.25) 0%, rgba(15,20,18,.55) 45%, rgba(15,20,18,.92) 100%),
    radial-gradient(circle at 70% 20%, rgba(168,148,106,.22), transparent 42%),
    linear-gradient(135deg, #1d2a24 0%, #0f1412 50%, #24302b 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(95,111,90,.35), transparent 50%),
    linear-gradient(90deg, rgba(0,0,0,.25), transparent 55%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  animation: rise .9s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow {
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.05;
  max-width: 14ch;
  margin: 0 0 1.2rem;
}
.hero p {
  max-width: 38ch;
  font-size: 1.05rem;
  color: rgba(255,255,255,.86);
  margin: 0 0 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.5rem;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .72rem;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: #fff; color: var(--deep); }
.btn-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-dark:hover { background: var(--ink); color: #fff; }
.btn-light {
  border-color: rgba(15, 20, 18, 0.35);
  color: var(--ink);
  background: transparent;
}
.btn-light:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.section {
  padding: 5.5rem 0;
}
.section-muted { background: var(--mist); }
.section-dark {
  background: var(--deep);
  color: #f2efe9;
}
.kicker {
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .8rem;
}
.section-dark .kicker { color: var(--gold); }
h2.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.lede {
  max-width: 52ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section-dark .lede { color: rgba(242,239,233,.78); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature {
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  animation: rise .8s ease both;
}
.feature:nth-child(2) { animation-delay: .1s; }
.feature:nth-child(3) { animation-delay: .2s; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 .4rem;
}
.feature .sub {
  color: var(--sage);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.feature p { color: var(--ink-soft); margin: 0 0 1.2rem; }
.feature a {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: .15rem;
}

.journal-list, .profile-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}
.journal-list { grid-template-columns: 1fr; }
.profile-grid { grid-template-columns: repeat(3, 1fr); }
.journal-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.journal-item .date {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.journal-item h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: .2rem 0 .5rem;
  font-weight: 500;
}
.journal-item p { margin: 0; color: rgba(242,239,233,.75); }

.profile-tile {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 35%, rgba(15,20,18,.88) 100%),
    linear-gradient(145deg, #2a3631, #171d1a);
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: transform .4s ease;
}
.profile-tile:hover { transform: translateY(-4px); }
.profile-tile h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 .25rem;
  font-weight: 500;
}
.profile-tile .meta {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.content-hero {
  padding: 8.5rem 0 2.25rem;
  background: var(--deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.content-hero-inner {
  position: relative;
  z-index: 2;
  animation: rise .9s ease both;
}
.content-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  margin: 0 0 1rem;
  max-width: 16ch;
}
.content-hero p {
  max-width: 46ch;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.content-media {
  background: var(--deep);
  padding: 0 0 2.5rem;
}
.content-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  max-height: min(62vh, 560px);
  background: #0c100e;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.content-media-image,
.content-media-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-media-video {
  transform: scale(1.02);
  animation: heroKen 28s ease-in-out infinite alternate;
}
@keyframes heroKen {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .content-media-video,
  .hero-video { animation: none; }
  .content-hero-inner, .hero-inner { animation: none; }
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroKen 28s ease-in-out infinite alternate;
}
.hero-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,20,18,.35), rgba(15,20,18,.88));
  pointer-events: none;
}
.hero.hero--video {
  background: #0f1412;
}
.hero.hero--video .hero-media-shade {
  background: linear-gradient(180deg, rgba(15,20,18,.25) 0%, rgba(15,20,18,.55) 45%, rgba(15,20,18,.92) 100%);
}
.prose {
  padding: 3.5rem 0 5rem;
}
.prose--after-media {
  padding-top: 2rem;
}
.prose h2, .prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
}
.prose p, .prose li { color: var(--ink-soft); }
.prose img { margin: 1.5rem 0; width: 100%; border-radius: 12px; display: block; }
.prose figure.blog-figure,
.prose .blog-figure {
  margin: 1.75rem 0;
}
.prose .blog-figure img { margin: 0; }
.prose .blog-figure figcaption {
  margin-top: .55rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line, rgba(0,0,0,.08));
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,20,18,.1);
}
.blog-card-media {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #1d2a24;
}
.blog-card-media--empty {
  background: linear-gradient(135deg, #1d2a24, #2f4a3c);
}
.blog-card-body { padding: 1.15rem 1.2rem 1.35rem; }
.blog-card-date {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage, #5a7a66);
  margin-bottom: .45rem;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 0 0 .5rem;
  color: var(--ink);
  line-height: 1.2;
}
.blog-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
}

.site-footer {
  background: #0c100e;
  color: rgba(242,239,233,.7);
  padding: 3rem 0;
  font-size: .92rem;
}
.site-footer .brand {
  color: #fff;
  margin-bottom: .8rem;
  display: inline-block;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.wa-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  background: #1f6b46;
  color: #fff !important;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .2s ease, background .2s ease;
}
.wa-fab:hover { transform: translateY(-2px); background: #255c3f; }

.contact-form {
  display: grid;
  gap: .9rem;
}
.contact-form label {
  display: grid;
  gap: .35rem;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: .85rem 1rem;
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
}
.flash-ok, .flash-err {
  padding: .9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.flash-ok { background: #e7f3ea; color: #215338; }
.flash-err { background: #f8e8e8; color: #7a2e2e; }

.content-hero--account h1 { max-width: 22ch; }
.account-hero-phone {
  margin-top: .75rem !important;
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold) !important;
}
.account-section { padding-top: 3rem; padding-bottom: 4.5rem; }
.account-layout {
  width: min(920px, 100%);
  margin-inline: auto;
}
.account-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.account-subnav a {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.account-subnav a:hover,
.account-subnav a.is-active {
  color: var(--ink);
}
.account-subnav a.is-active {
  border-bottom: 1px solid var(--gold);
  padding-bottom: .15rem;
}
.account-panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.75rem 1.6rem 1.9rem;
  margin-bottom: 1.25rem;
}
.account-panel-head h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 .3rem;
  color: var(--ink);
}
.account-panel-head p {
  margin: 0 0 1.35rem;
  color: var(--ink-soft);
  font-size: .92rem;
}
.account-panel-head:not(:has(+ *)) { margin-bottom: 0; }
.account-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.account-metric {
  padding: 1.1rem 1rem 1.1rem 0;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}
.account-metric:nth-child(even) {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}
.account-metric-label {
  display: block;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .45rem;
}
.account-metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.account-metric-value--code {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: .04em;
}
.account-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.account-form-grid label:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.account-stay-note {
  margin: 0;
  font-size: .85rem;
  color: var(--ink-soft);
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.5;
}
.account-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}
.account-empty {
  margin: 0;
  padding: 1.25rem 0 0.25rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.account-back {
  margin: 0 0 1rem;
  font-size: .85rem;
}
.account-back a { color: var(--ink-soft); letter-spacing: .06em; text-transform: uppercase; font-size: .75rem; }
.record-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.record-list li { margin: 0; }
.record-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.record-main { min-width: 0; }
.record-main strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.record-main span { color: var(--ink-soft); font-size: .92rem; }
.record-meta {
  text-align: right;
  flex-shrink: 0;
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
  display: grid;
  gap: .35rem;
  justify-items: end;
}
.record-badge {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sage);
}
.record-notes { display: grid; gap: 1.25rem; }
.record-notes h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 .35rem;
}
.record-notes p { margin: 0; color: var(--ink-soft); }
.record-kv { margin: 0; padding: 0; border-top: 1px solid var(--line); }
.record-kv > div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.record-kv dt {
  margin: 0;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.record-kv dd { margin: 0; color: var(--ink); }
.record-simple-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--ink-soft);
}
.record-simple-list li { margin: .4rem 0; }
@media (max-width: 700px) {
  .account-metrics { grid-template-columns: 1fr; }
  .account-metric:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
  .account-form-grid { grid-template-columns: 1fr; }
  .record-row { flex-direction: column; }
  .record-meta { text-align: left; justify-items: start; }
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.promo-card {
  padding: 1.8rem 0 0;
  border-top: 1px solid var(--line);
}
.qr-image {
  margin: 0 auto;
  border: 12px solid #fff;
  box-shadow: 0 16px 40px rgba(15,20,18,.12);
}

@media (max-width: 900px) {
  .feature-grid, .profile-grid, .promo-grid { grid-template-columns: 1fr; }
  .journal-item { grid-template-columns: 1fr; gap: .5rem; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    background: rgba(15,20,18,.96);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
}

/* PWA install banner */
.pwa-install-banner {
  position: fixed;
  inset: auto 1rem calc(1rem + env(safe-area-inset-bottom, 0px)) 1rem;
  z-index: 80;
  max-width: 420px;
  margin-inline: auto;
  left: 1rem;
  right: 1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.pwa-install-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pwa-install-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 1.1rem;
  background: rgba(15, 20, 18, 0.96);
  color: #f4f1ec;
  border: 1px solid rgba(168, 148, 106, 0.35);
  box-shadow: 0 18px 40px rgba(15, 20, 18, 0.28);
}
.pwa-install-copy {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
  flex: 1 1 160px;
}
.pwa-install-copy strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.pwa-install-copy span {
  font-size: 0.82rem;
  color: rgba(244, 241, 236, 0.78);
  line-height: 1.45;
}
.pwa-install-actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
}
.pwa-install-banner .btn {
  color: #f4f1ec;
  border-color: rgba(244, 241, 236, 0.35);
}
.pwa-install-banner .btn-dark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
}
@media (min-width: 640px) {
  .pwa-install-banner {
    left: auto;
    right: 1.5rem;
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    margin-inline: 0;
  }
}

/* —— Shop / ecommerce —— */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}
.shop-search {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 12rem;
}
.shop-search input[type="search"] {
  flex: 1;
  min-width: 10rem;
  padding: .65rem .85rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
}
.shop-crumb {
  margin: 0 0 1.25rem;
  font-size: .85rem;
  color: var(--ink-soft);
}
.shop-crumb a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.shop-section-title {
  margin: 2rem 0 1rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.shop-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--line);
  padding-top: .85rem;
  transition: transform .25s ease;
}
.shop-card:hover { transform: translateY(-3px); }
.shop-card-media {
  aspect-ratio: 4 / 3;
  background: var(--mist, #e8e4dc) center / cover no-repeat;
  margin-bottom: .85rem;
}
.shop-card-media--empty { background: linear-gradient(145deg, #d9d4c8, #ece8e0); }
.shop-card-body h3 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
}
.shop-price {
  margin: .35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .65rem;
  align-items: baseline;
}
.shop-price s { color: var(--ink-soft); font-size: .9em; }
.shop-badge {
  display: inline-block;
  margin-bottom: .35rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold, #b08d57);
}
.shop-badge--kind {
  position: absolute;
  left: .45rem;
  bottom: .45rem;
  margin: 0;
  padding: .2rem .4rem;
  background: rgba(20, 28, 24, .72);
  color: #f4efe6;
  letter-spacing: .08em;
  border-radius: 2px;
}
.shop-chips--sub {
  margin-top: -.35rem;
  margin-bottom: 1rem;
  opacity: .95;
}
.shop-chips--sub .shop-chip {
  font-size: .78rem;
}
.shop-oos { color: #7a2e2e; margin: .35rem 0 0; }
.shop-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.shop-product-media {
  background: var(--mist, #e8e4dc);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.shop-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-product-media--empty { min-height: 16rem; }
.shop-add-form label {
  display: block;
  margin: 0 0 1rem;
}
.shop-add-form select,
.shop-add-form input[type="number"] {
  display: block;
  width: 100%;
  margin-top: .35rem;
  padding: .65rem .75rem;
  border: 1px solid var(--line);
  background: transparent;
  font: inherit;
  color: var(--ink);
}
.shop-add-form .btn { margin-right: .5rem; margin-top: .5rem; }
/* Light section: never leave ghost white-on-white outline buttons */
.section .btn:not(.btn-dark):not(.btn-light) {
  border-color: rgba(15, 20, 18, 0.35);
  color: var(--ink);
}
.section .btn:not(.btn-dark):not(.btn-light):hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.shop-cart-list { display: grid; gap: 1.25rem; }
.shop-cart-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.shop-cart-thumb {
  width: 5.5rem;
  height: 5.5rem;
  background: var(--mist, #e8e4dc);
  overflow: hidden;
}
.shop-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-cart-thumb--empty { background: linear-gradient(145deg, #d9d4c8, #ece8e0); }
.shop-cart-meta h3 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
}
.shop-cart-qty {
  display: flex;
  gap: .5rem;
  align-items: center;
  margin: .5rem 0;
}
.shop-cart-qty input { width: 4rem; padding: .4rem; }
.shop-cart-line { font-weight: 500; white-space: nowrap; }
.shop-cart-summary { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.shop-cart-summary .btn { margin-right: .5rem; margin-top: .75rem; }
.shop-checkout-lines {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
.shop-checkout-lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-product-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-cart-row { grid-template-columns: 4.5rem 1fr; }
  .shop-cart-line { grid-column: 2; }
}

/* —— Shop app (mobile-first) —— */
body.shop-app {
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}
body.shop-app .site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 241, 236, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
body.shop-app .brand {
  color: var(--ink);
}
body.shop-app .nav a {
  color: var(--ink-soft);
}
body.shop-app .nav a:hover {
  color: var(--ink);
}
body.shop-app .nav-toggle {
  color: var(--ink);
  border-color: rgba(26, 31, 28, 0.35);
}
@media (max-width: 900px) {
  body.shop-app .nav {
    background: rgba(244, 241, 236, 0.98);
    border: 1px solid var(--line);
  }
  body.shop-app .nav a {
    color: var(--ink);
  }
}
body.shop-app .wa-fab { bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px)); }
body.shop-app .site-footer { display: none; }

.shop-app-top {
  background: var(--mist, #e7e2da);
  border-bottom: 1px solid var(--line);
  padding: .85rem 0 1rem;
}
.shop-app-top-inner {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.shop-app-kicker {
  margin: 0;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.shop-app-title h1,
.shop-app-detail-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
}
.shop-app-detail-title {
  font-size: 1.2rem;
  line-height: 1.25;
}
.shop-back {
  color: var(--ink);
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .04em;
}
.shop-app-search input[type="search"] {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
.shop-app-body {
  padding: 1.25rem 0 2rem;
}
.shop-chips {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 .35rem;
  margin: 0 0 1.25rem;
  scrollbar-width: none;
}
.shop-chips::-webkit-scrollbar { display: none; }
.shop-chip {
  flex: 0 0 auto;
  padding: .55rem .95rem;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
}
.shop-chip.is-active {
  background: var(--deep);
  border-color: var(--deep);
  color: #f4f1ec;
}
.shop-rail-wrap { margin-bottom: 1.5rem; }
.shop-rail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .65rem;
}
.shop-rail-head h2,
.shop-feed-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
}
.shop-feed-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 .85rem;
}
.shop-rail {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .35rem;
  scrollbar-width: none;
}
.shop-rail::-webkit-scrollbar { display: none; }
.shop-rail .shop-tile {
  flex: 0 0 9.5rem;
  width: 9.5rem;
}
.shop-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.shop-tile {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.shop-tile-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 1;
}
.shop-tile-media {
  aspect-ratio: 1;
  background: var(--mist) center / cover no-repeat;
  position: relative;
}
.shop-tile-media--empty {
  background: linear-gradient(145deg, #d9d4c8, #ece8e0);
}
.shop-badge--overlay {
  position: absolute;
  left: .45rem;
  top: .45rem;
  margin: 0;
  padding: .2rem .4rem;
  background: rgba(15, 20, 18, 0.82);
  color: #f4f1ec;
  font-size: .62rem;
}
.shop-tile-body {
  padding: .65rem .7rem .85rem;
}
.shop-tile-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: .98rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-tile-add {
  position: absolute;
  right: .4rem;
  bottom: .4rem;
  z-index: 3;
}
.shop-tile-add button {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 0;
  background: var(--deep);
  color: #f4f1ec;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}
.shop-tile-add button:active { opacity: .85; }
.shop-tile-oos {
  position: absolute;
  right: .5rem;
  bottom: .55rem;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #7a2e2e;
}
.shop-tile--compact .shop-tile-body h3 { font-size: .88rem; }

.shop-dock,
.shop-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: .5rem;
  align-items: stretch;
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 20, 18, 0.96);
  color: #f4f1ec;
}
.shop-dock a,
.shop-dock span,
.shop-buy-bar a,
.shop-buy-bar button {
  color: inherit;
  text-decoration: none;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.shop-dock-home,
.shop-dock-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .75rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}
.shop-dock-badge {
  display: inline-flex;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-left: .35rem;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--deep);
  font-size: .7rem;
  font-weight: 600;
}
.shop-dock-buy,
.shop-buy-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1rem;
  background: var(--gold);
  color: var(--deep) !important;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.shop-dock-buy--ghost {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .45;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.shop-buy-bar-cart {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid rgba(244, 241, 236, 0.35);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.shop-product-hero {
  aspect-ratio: 1;
  background: var(--mist);
  margin: 0 0 1.15rem;
  overflow: hidden;
}
.shop-product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop-product-hero--empty {
  background: linear-gradient(145deg, #d9d4c8, #ece8e0);
}
.shop-product-meta h2 {
  margin: .2rem 0 .5rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
}
.shop-price--lg { font-size: 1.15rem; margin: 0 0 .35rem; }
.shop-qty-row {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  margin: .75rem 0 1rem;
}
.shop-qty-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--ink);
}
.shop-qty-row input[type="number"] {
  width: 3.5rem;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  padding: .65rem 0;
  font: inherit;
  background: transparent;
  color: var(--ink);
}
.shop-add-form--app label { margin-top: .75rem; }

.shop-app-top-actions {
  display: flex;
  gap: .55rem;
  align-items: center;
  width: 100%;
}
.shop-app-top-actions .shop-app-search {
  flex: 1;
  min-width: 0;
}
.shop-app-cart-link {
  flex: 0 0 auto;
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .shop-feed { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
  .shop-rail .shop-tile { flex-basis: 11rem; width: 11rem; }
  .shop-app-top-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .shop-app-top-actions {
    width: min(28rem, 48%);
  }
  .shop-product-app .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
  .shop-product-hero { margin: 0; grid-row: span 3; }
}
@media (min-width: 1100px) {
  .shop-feed { grid-template-columns: repeat(4, 1fr); }
}

/* —— Cart page (polished) —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.shop-cart-top-inner {
  gap: .85rem;
}
.shop-cart-heading .shop-app-detail-title {
  font-size: 1.65rem;
}
.shop-cart-count {
  margin: .2rem 0 0;
  font-size: .85rem;
  color: var(--ink-soft);
}
.shop-cart-page {
  padding-bottom: 1rem;
}
.shop-cart-wrap {
  max-width: 720px;
}
.shop-cart-empty {
  text-align: center;
  padding: 3rem 1rem 2.5rem;
  border: 1px solid var(--line);
  background: #fff;
}
.shop-cart-empty-mark {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--ink), var(--ink)) center / 1.4rem 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1px 1.4rem no-repeat,
    var(--mist);
  opacity: .55;
}
.shop-cart-empty h2 {
  margin: 0 0 .45rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
}
.shop-cart-empty p {
  margin: 0 auto 1.35rem;
  max-width: 22rem;
  color: var(--ink-soft);
}
.shop-cart-empty-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.4rem;
  background: var(--deep);
  color: #f4f1ec;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}
.shop-cart-page .shop-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.shop-cart-card {
  display: grid;
  grid-template-columns: 5.75rem 1fr;
  gap: .95rem;
  padding: .95rem;
  background: #fff;
  border: 1px solid var(--line);
}
.shop-cart-card .shop-cart-thumb {
  width: 5.75rem;
  height: 5.75rem;
  display: block;
  background: var(--mist) center / cover no-repeat;
  text-decoration: none;
}
.shop-cart-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.shop-cart-info-top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: flex-start;
}
.shop-cart-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.3;
}
.shop-cart-info h2 a {
  color: inherit;
  text-decoration: none;
}
.shop-cart-remove {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}
.shop-cart-remove:hover { color: #7a2e2e; }
.shop-cart-unit {
  margin: 0;
  font-size: .82rem;
  color: var(--ink-soft);
}
.shop-cart-info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-top: .35rem;
}
.shop-cart-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
}
.shop-cart-stepper button {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  line-height: 1;
}
.shop-cart-stepper button:active { background: var(--mist); }
.shop-cart-qty-val {
  min-width: 2rem;
  text-align: center;
  font-size: .92rem;
  font-variant-numeric: tabular-nums;
}
.shop-cart-card .shop-cart-line {
  font-size: .98rem;
  font-variant-numeric: tabular-nums;
}
.shop-cart-aside {
  margin-top: 1.15rem;
}
.shop-cart-totals {
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--line);
  background: #fff;
}
.shop-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.05rem;
}
.shop-cart-total-row strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
}
.shop-cart-note {
  margin: .65rem 0 0;
  font-size: .78rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.shop-cart-bar {
  align-items: center;
}
.shop-cart-bar-sum {
  display: flex;
  flex-direction: column;
  padding: 0 .35rem 0 .15rem;
  min-width: 5.5rem;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}
.shop-cart-bar-sum strong {
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  color: #f4f1ec;
  font-variant-numeric: tabular-nums;
}
.shop-cart-bar .shop-buy-bar-btn {
  flex: 1;
}
@media (min-width: 720px) {
  .shop-cart-card {
    grid-template-columns: 7rem 1fr;
    padding: 1.15rem;
    gap: 1.15rem;
  }
  .shop-cart-card .shop-cart-thumb {
    width: 7rem;
    height: 7rem;
  }
  .shop-cart-info h2 { font-size: 1.25rem; }
}

/* —— Cart payment (one-step) —— */
.shop-pay {
  margin-top: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  background: #fff;
}
.shop-pay-title {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
}
.shop-pay-user {
  margin: 0 0 1rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.shop-pay-user a { text-decoration: underline; text-underline-offset: 2px; }
.shop-pay-methods {
  display: grid;
  gap: .65rem;
}
.shop-pay-method {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .9rem .95rem;
  border: 1px solid var(--line);
  cursor: pointer;
  background: var(--paper);
}
.shop-pay-method.is-selected {
  border-color: var(--deep);
  background: #fff;
  box-shadow: inset 3px 0 0 var(--gold);
}
.shop-pay-method input {
  margin-top: .2rem;
  accent-color: var(--deep);
}
.shop-pay-method-body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
}
.shop-pay-method-body strong {
  font-size: .92rem;
}
.shop-pay-method-body small {
  font-size: .78rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.shop-pay-method:has(input:disabled) {
  opacity: .55;
  cursor: not-allowed;
}
.shop-pay-next {
  margin: 1rem 0 .85rem;
  padding: .75rem .85rem;
  background: var(--mist);
  border-left: 3px solid var(--gold);
  font-size: .88rem;
  color: var(--ink);
  line-height: 1.45;
}
.shop-pay-submit {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.15rem;
  border: 0;
  background: var(--deep);
  color: #f4f1ec;
  font: inherit;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.shop-pay-submit:active { opacity: .9; }
.shop-pay-submit--link { box-sizing: border-box; }
.shop-pay-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
  align-items: center;
}
