:root {
  /* Logo navy + cream interior */
  --navy: #001740;
  --navy-deep: #010F2D;
  --navy-soft: #0D2953;
  --ivory: #F4EDE3;
  --ivory-warm: #EDE4D6;
  --white: #FAF6F0;
  --beige: #E2D6C4;
  --dusty-pink: #D4A5A5;
  --sage: #8FA88B;
  --gold: #C4A35A;
  --gold-soft: #E2C988;
  --text: #1A2740;
  --text-soft: #5A6578;
  --border: rgba(0, 23, 64, 0.12);
  --shadow: 0 18px 40px rgba(1, 15, 45, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --header-h: 104px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1100px 480px at 8% -8%, rgba(196, 163, 90, 0.10), transparent 55%),
    radial-gradient(900px 420px at 92% 0%, rgba(143, 168, 139, 0.10), transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, var(--white) 45%, var(--ivory-warm) 100%);
  line-height: 1.65;
  min-height: 100vh;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
p { margin: 0 0 1rem; color: var(--text-soft); }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(244, 237, 227, 0.92);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 240, 0.96);
  box-shadow: 0 8px 24px rgba(1, 15, 45, 0.08);
}
.topbar {
  background: var(--navy-deep);
  color: rgba(244, 237, 227, 0.88);
  font-size: 0.78rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0;
}
.topbar p { margin: 0; color: inherit; }
.topbar-links { display: flex; gap: 0.5rem; align-items: center; }
.topbar a { color: var(--gold-soft); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
  display: block;
}
.brand-logo-footer {
  height: 64px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
}
.brand-footer { margin-bottom: 0.4rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.82;
}
.nav-link:hover .nav-icon,
.nav-link.is-active .nav-icon {
  opacity: 1;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--navy);
  background: rgba(0, 23, 64, 0.06);
}
.nav-actions .btn {
  gap: 0.4rem;
}
.nav-actions .btn .nav-icon {
  width: 15px;
  height: 15px;
}
.nav-actions .btn-primary .nav-icon {
  opacity: 1;
}
.nav-actions { display: flex; align-items: center; gap: 0.55rem; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--navy);
  color: var(--ivory);
  box-shadow: 0 10px 24px rgba(27, 58, 92, 0.22);
}
.btn-primary:hover { background: var(--navy-deep); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(27, 58, 92, 0.25);
}
.btn-secondary:hover { background: rgba(27, 58, 92, 0.05); }
.btn-ghost {
  background: rgba(255, 252, 248, 0.7);
  color: var(--navy);
  border-color: var(--border);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #B8923A);
  color: #fff;
}
.btn-sm { padding: 0.55rem 0.95rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}
.hero--home {
  min-height: min(90vh, 860px);
  align-items: center;
  isolation: isolate;
}
.hero--home .hero-media { display: none; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url("../images/hero/store-collage.png") center/cover no-repeat;
  transform: scale(1.03);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-bg-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(1, 15, 45, 0.94) 0%, rgba(0, 23, 64, 0.82) 34%, rgba(0, 23, 64, 0.45) 58%, rgba(0, 23, 64, 0.18) 100%),
    linear-gradient(180deg, rgba(1, 15, 45, 0.15) 0%, transparent 35%, rgba(1, 15, 45, 0.35) 100%);
}
.hero-home-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(4.5rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
}
.hero-copy {
  max-width: 620px;
  animation: fadeUp .85s ease both;
}
.hero-logo {
  width: min(300px, 72vw);
  height: auto;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}
.hero-kicker {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 201, 136, 0.35);
  background: rgba(196, 163, 90, 0.12);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero--home h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 0.85rem;
  max-width: 16ch;
  text-wrap: balance;
}
.hero-lead {
  color: rgba(244, 237, 227, 0.92);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 42ch;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.hero-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
}
.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}
.hero--home .hero-actions { margin-bottom: 1.35rem; }
.hero--home .hero-chips span {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.07);
}
.hero-showcase {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}
.hero-showcase-frame {
  position: relative;
  border-radius: 28px 28px 28px 120px;
  overflow: hidden;
  border: 1px solid rgba(244, 237, 227, 0.22);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  min-height: 360px;
}
.hero-showcase-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.hero-showcase-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(1, 15, 45, 0.88));
}
.hero-showcase-tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero-showcase-overlay p {
  margin: 0;
  color: rgba(244, 237, 227, 0.9);
  font-size: 0.95rem;
  max-width: 28ch;
}
.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.hero-mini {
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(244, 237, 227, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.hero-mini:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(226, 201, 136, 0.35);
}
.hero-mini strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}
.hero-mini span {
  font-size: 0.74rem;
  color: rgba(244, 237, 227, 0.78);
  line-height: 1.35;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(244, 237, 227, 0.82);
}
.hero-chips span {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(244, 237, 227, 0.2);
  border-radius: 999px;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.section-head h2 { font-size: clamp(2rem, 3.5vw, 2.85rem); margin: 0; font-weight: 600; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.lead { font-size: 1.05rem; max-width: 56ch; }

/* Pathways / doors */
.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}
.pathway {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.pathway:hover {
  transform: translateY(-4px);
  border-color: rgba(27, 58, 92, 0.28);
}
.pathway h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}
.pathway p { margin-bottom: 0.8rem; font-size: 0.92rem; }
.pathway span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

/* Category visual tiles */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.cat-tile {
  position: relative;
  min-height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1.4rem;
  color: #fff;
  isolation: isolate;
}
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(18, 41, 66, 0.85) 100%);
  z-index: 1;
}
.cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  z-index: 0;
}
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-body { position: relative; z-index: 2; }
.cat-tile h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 0.25rem;
}
.cat-tile p {
  color: rgba(247, 243, 235, 0.85);
  margin: 0;
  font-size: 0.88rem;
}

/* Need chips */
.need-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.need-item {
  display: block;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color .2s, transform .2s, background .2s;
}
.need-item:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
  background: linear-gradient(180deg, #fff, var(--ivory));
}
.need-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.need-item span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product-media {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--ivory-warm), #fff);
  display: grid;
  place-items: center;
  padding: 1.2rem;
  position: relative;
}
.product-media img { width: 78%; height: auto; }
.badge-row {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--ivory);
}
.badge.new { background: var(--sage); }
.badge.promo { background: var(--dusty-pink); color: #fff; }
.badge.package { background: var(--gold); color: #fff; }
.product-body {
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body .cat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.product-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.product-body .price {
  font-weight: 700;
  color: var(--navy);
  margin: auto 0 0.9rem;
}
.product-body .price small {
  display: block;
  font-weight: 500;
  color: var(--text-soft);
  font-size: 0.78rem;
}
.product-actions { display: flex; gap: 0.45rem; }

/* Workshop */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.workshop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.workshop-media {
  aspect-ratio: 16/10;
  background: var(--navy);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.workshop-media img { width: 55%; }
.workshop-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.workshop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.6rem 0 1rem;
  font-size: 0.8rem;
}
.meta-chip {
  background: var(--ivory-warm);
  color: var(--navy);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}
.workshop-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: auto 0 1rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-item {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--white), var(--ivory));
  border: 1px solid var(--border);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--ivory);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.service-item h3 { font-size: 1.45rem; }

/* Inspiration masonry-like */
.inspo-grid {
  columns: 3;
  column-gap: 1rem;
}
.inspo-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}
.inspo-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--ivory-warm);
}
.inspo-body { padding: 1rem 1.1rem 1.2rem; }
.inspo-body .tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  font-weight: 700;
}
.inspo-body h3 { font-size: 1.35rem; margin: 0.3rem 0 0.6rem; }

/* About / split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.split-visual {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(27, 58, 92, 0.15), rgba(27, 58, 92, 0.05)),
    url("../images/hero/store-collage.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.value-list { display: grid; gap: 0.7rem; margin: 1.4rem 0 1.8rem; }
.value-list li {
  display: flex;
  gap: 0.7rem;
  align-items: start;
  color: var(--text);
}
.value-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Wholesale band */
.band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: var(--ivory);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(2rem, 4vw, 3.2rem);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}
.band h2, .band p { color: inherit; }
.band h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); color: #fff; }
.band p { color: rgba(247, 243, 235, 0.85); }
.band ul { display: grid; gap: 0.45rem; margin: 1rem 0 0; }
.band li {
  color: rgba(247, 243, 235, 0.9);
  padding-left: 1rem;
  position: relative;
}
.band li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: grid; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
input, select, textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  font: inherit;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 4px rgba(27, 58, 92, 0.08);
}
textarea { min-height: 120px; resize: vertical; }

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.alert {
  margin: 1rem 0 0;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-weight: 500;
}
.alert-success {
  background: rgba(143, 168, 139, 0.18);
  color: #2f5a3a;
  border: 1px solid rgba(143, 168, 139, 0.4);
}
.alert-error {
  background: rgba(212, 165, 165, 0.2);
  color: #8a3d3d;
  border: 1px solid rgba(212, 165, 165, 0.45);
}

/* Page hero compact */
.page-hero {
  padding: 3.5rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(27, 58, 92, 0.05), transparent),
    radial-gradient(600px 200px at 0% 0%, rgba(201, 162, 77, 0.12), transparent);
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  max-width: 16ch;
  font-weight: 600;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}
.breadcrumb a { color: var(--navy); }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.filter-chip {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
}
.filter-chip.is-active,
.filter-chip:hover {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}

/* Detail layouts */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.detail-media {
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--ivory-warm), #fff);
  border: 1px solid var(--border);
  padding: 2rem;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.detail-media img { width: min(70%, 320px); }
.detail-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0;
}
.map-frame {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--beige);
}

.info-list { display: grid; gap: 0.85rem; }
.info-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: var(--navy-deep);
  color: rgba(247, 243, 235, 0.82);
  padding-top: 3.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-tagline {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1rem 0 0.6rem;
}
.footer-desc { color: rgba(247, 243, 235, 0.72); }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { display: grid; gap: 0.45rem; }
.footer-links a:hover { color: var(--gold-soft); }
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.pill-row span {
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 235, 0.18);
  color: rgba(247, 243, 235, 0.75);
}
.footer-bottom {
  border-top: 1px solid rgba(247, 243, 235, 0.1);
  padding: 1rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold-soft); }
.mt-lg { margin-top: 1.5rem; }

/* Mobile dock */
.mobile-dock {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(420px, calc(100% - 1.5rem));
  background: rgba(18, 41, 66, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 0.45rem;
  z-index: 120;
  box-shadow: 0 16px 40px rgba(18, 41, 66, 0.35);
}
.dock-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: rgba(247, 243, 235, 0.8);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.45rem;
  border-radius: 999px;
}
.dock-item svg { width: 20px; height: 20px; }
.dock-wa {
  background: #25D366;
  color: #fff;
  min-width: 96px;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-soft);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hide-mobile {}

/* ===== Home page enhancements ===== */
.stats-strip {
  position: relative;
  z-index: 4;
  margin-top: -2.2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.stat-item {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--white), var(--ivory));
}
.stat-item strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.stat-item span {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.section--tight { padding-top: 3rem; }
.section--soft {
  background: linear-gradient(180deg, rgba(244, 237, 227, 0.45), rgba(250, 246, 240, 0.2));
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 23, 64, 0.22);
  box-shadow: 0 22px 44px rgba(1, 15, 45, 0.1);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.85;
}
.pillar h3 { font-size: 1.45rem; margin-bottom: 0.35rem; }
.pillar p { margin-bottom: 0.75rem; font-size: 0.92rem; }
.pillar-link { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.bento-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
}
.bento-cat {
  position: relative;
  grid-column: span 2;
  min-height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1.35rem;
  color: #fff;
  isolation: isolate;
}
.bento-cat--wide { grid-column: span 2; min-height: 260px; }
.bento-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(1, 15, 45, 0.88) 100%);
  z-index: 1;
}
.bento-cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  z-index: 0;
}
.bento-cat:hover img { transform: scale(1.06); }
.bento-cat-body { position: relative; z-index: 2; }
.bento-cat h3 { color: #fff; font-size: 1.55rem; margin-bottom: 0.25rem; }
.bento-cat p { margin: 0; color: rgba(244, 237, 227, 0.85); font-size: 0.86rem; }
.need-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  border-radius: calc(var(--radius) + 8px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.need-list { display: grid; gap: 0.55rem; }
.need-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--white), var(--ivory));
  transition: border-color .2s, transform .2s;
}
.need-row:hover { border-color: var(--navy); transform: translateX(4px); }
.need-row-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 600;
}
.need-row strong { display: block; color: var(--navy); margin-bottom: 0.15rem; }
.need-row span { font-size: 0.84rem; color: var(--text-soft); }
.need-row-arrow { color: var(--navy); font-weight: 700; }
.product-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.product-tab {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-soft);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.product-tab.is-active,
.product-tab:hover {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.product-tab-panel { display: none; }
.product-tab-panel.is-active { display: block; }
.product-grid--home { grid-template-columns: repeat(4, 1fr); }
.workshop-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: var(--ivory);
  overflow: hidden;
}
.workshop-spotlight-media {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.workshop-spotlight-media img { width: min(70%, 260px); }
.workshop-spotlight-body h2,
.workshop-spotlight-body p { color: rgba(244, 237, 227, 0.92); }
.workshop-spotlight-body h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.service-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service-showcase-item {
  padding: 0;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
.service-showcase-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-showcase-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ivory-warm);
}
.service-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-showcase-item:hover .service-showcase-media img {
  transform: scale(1.04);
}
.service-showcase-body {
  padding: 1.1rem 1.2rem 1.25rem;
}
.service-showcase-top,
.service-showcase-icon { display: none; }
.service-showcase-item h3 { font-size: 1.35rem; margin: 0 0 0.45rem; }
.service-showcase-item p { margin-bottom: 0.85rem; font-size: 0.92rem; }
.band-actions { display: grid; gap: 0.65rem; align-content: center; }
.band-btn-ghost {
  color: var(--ivory);
  border-color: rgba(244, 237, 227, 0.28);
  background: rgba(255, 255, 255, 0.06);
}
.about-home {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.75fr;
  gap: 1.25rem;
  align-items: stretch;
}
.about-home-visual { min-height: 100%; }
.about-home-content {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}
.visit-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ivory), var(--white));
  border: 1px solid var(--border);
}
.visit-card h3 { font-size: 1.55rem; margin-bottom: 1rem; }
.visit-card .info-list span {
  display: block;
  color: var(--text-soft);
  font-size: 0.9rem;
}
.home-cta { padding: 0 0 4.5rem; }
.home-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--ivory);
}
.home-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 0.65rem;
}
.home-cta-inner p { color: rgba(244, 237, 227, 0.85); margin: 0; }
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}
.home-cta-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

/* ===== Home — creative editorial layout ===== */
.page-home .site-main { overflow-x: clip; }

.hc-hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--ivory);
  isolation: isolate;
}
.hc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.hc-hero-bg-img {
  position: absolute;
  inset: 0;
  background: url("../images/hero/store-collage.png") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
.hc-hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(196, 163, 90, 0.18), transparent 60%),
    linear-gradient(115deg, rgba(1, 15, 45, 0.96) 0%, rgba(0, 23, 64, 0.82) 38%, rgba(0, 23, 64, 0.35) 72%, rgba(0, 23, 64, 0.15) 100%);
}
.hc-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(5rem, 9vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
}
.hc-hero-kicker {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 201, 136, 0.35);
  background: rgba(196, 163, 90, 0.1);
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hc-hero-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hc-hero-line { display: block; color: #fff; }
.hc-hero-line--accent {
  font-style: italic;
  color: var(--gold-soft);
  padding-left: clamp(0.5rem, 2vw, 2rem);
}
.hc-hero-lead {
  max-width: 38ch;
  margin: 0 0 1.5rem;
  color: rgba(244, 237, 227, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.65;
}
.hc-hero-lead em { color: var(--gold-soft); font-style: normal; font-weight: 600; }
.hc-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hc-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
}
.hc-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
}
.hc-hero--minimal { min-height: min(72vh, 680px); justify-content: center; }
.hc-hero-shell--center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
  padding: clamp(5rem, 10vw, 7rem) 0 clamp(3rem, 5vw, 4rem);
}
.hc-hero-title--single {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-style: italic;
  color: #fff;
  max-width: none;
}
.hc-hero-lead--center { max-width: 48ch; margin-left: auto; margin-right: auto; }
.hc-hero-actions--center { justify-content: center; }

.hc-philosophy {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--ivory);
  overflow: hidden;
}
.hc-philosophy-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% 10%, rgba(196, 163, 90, 0.12), transparent 65%),
    radial-gradient(600px 350px at 5% 90%, rgba(0, 23, 64, 0.06), transparent 60%);
  pointer-events: none;
}
.hc-philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hc-philosophy-label {
  display: inline-block;
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.hc-philosophy-quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy);
  text-wrap: balance;
}
.hc-philosophy-text {
  margin: 0 auto 2.5rem;
  max-width: 58ch;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
  color: var(--text-soft);
}
.hc-philosophy-visual {
  border-radius: 28px 28px 28px 100px;
  overflow: hidden;
  border: 1px solid rgba(0, 23, 64, 0.1);
  box-shadow: 0 28px 60px rgba(1, 15, 45, 0.12);
  max-width: 720px;
  margin: 0 auto;
}
.hc-philosophy-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hc-pillars {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--ivory);
  margin-top: -1px;
}
.hc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hc-pillar {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.hc-pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 23, 64, 0.2);
}
.hc-pillar-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.65rem;
}
.hc-pillar h3 {
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
  color: var(--navy);
}
.hc-pillar p {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.hc-pillar-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
}

.hc-moments {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background: var(--white);
}
.hc-moments-head { max-width: 520px; margin-bottom: 2rem; }
.hc-moments-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0.2rem 0 0;
}
.hc-moments-head h2 em { font-style: italic; color: var(--navy-soft); }
.hc-moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.hc-moment {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.hc-moment:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(1, 15, 45, 0.1);
}
.hc-moment-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory);
}
.hc-moment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.hc-moment:hover .hc-moment-media img { transform: scale(1.06); }
.hc-moment-body { padding: 1.1rem 1.15rem 1.2rem; }
.hc-moment-body h3 { font-size: 1.1rem; margin: 0 0 0.35rem; color: var(--navy); }
.hc-moment-body p {
  margin: 0 0 0.65rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.hc-moment-arrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}
.hc-moments-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.hc-moment-chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--ivory-warm);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  transition: background .2s ease, border-color .2s ease;
}
.hc-moment-chip:hover {
  background: var(--white);
  border-color: rgba(0, 23, 64, 0.22);
}

.hc-paths {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--ivory);
}
.hc-paths-inner { text-align: center; }
.hc-paths-inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.2rem 0 1.5rem;
}
.hc-paths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.hc-path {
  padding: 1.15rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background .25s ease, transform .25s ease;
}
.hc-path:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}
.hc-path strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.hc-path span {
  font-size: 0.78rem;
  color: rgba(244, 237, 227, 0.7);
}

.hc-section-intro { max-width: 520px; margin-bottom: 2rem; }
.hc-section-intro h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin: 0.2rem 0 0.65rem;
}
.hc-section-intro h2 em { font-style: italic; color: var(--navy-soft); }
.hc-section-intro p { margin: 0; color: var(--text-soft); max-width: 42ch; }
.hc-section-intro--light h2 { color: #fff; }
.hc-section-intro--light p { color: rgba(244, 237, 227, 0.78); }

.hc-curate {
  padding: clamp(3.5rem, 6vw, 4.5rem) 0;
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  color: var(--ivory);
}
.hc-curate-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hc-curate-top .btn-secondary {
  color: var(--ivory);
  border-color: rgba(244, 237, 227, 0.28);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.hc-curate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 1rem;
  align-items: stretch;
}
.hc-product-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.hc-product-pick {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform .25s ease, background .25s ease;
}
.hc-product-pick:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.hc-product-index {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-soft);
  line-height: 1;
}
.hc-product-pick-media {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}
.hc-product-pick-media img { width: 100%; height: 100%; object-fit: cover; }
.hc-product-pick-body span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 237, 227, 0.6);
}
.hc-product-pick-body strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.35;
  margin: 0.15rem 0;
}
.hc-product-pick-body em {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--gold-soft);
  font-weight: 700;
}
.hc-class-ticket {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--navy);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.hc-class-ticket::before,
.hc-class-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--navy-soft);
  transform: translateY(-50%);
}
.hc-class-ticket::before { left: -9px; }
.hc-class-ticket::after { right: -9px; }
.hc-ticket-label {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hc-class-ticket h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  line-height: 1.2;
}
.hc-class-ticket p {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.hc-ticket-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.hc-ticket-meta span {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 23, 64, 0.06);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
}

.hc-visit {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}
.hc-visit-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 15, 45, 0.92) 0%, rgba(1, 15, 45, 0.75) 45%, rgba(1, 15, 45, 0.4) 100%),
    url("../images/hero/store-collage.png") center/cover no-repeat;
}
.hc-visit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  color: var(--ivory);
}
.hc-visit-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  margin: 0.2rem 0 0.65rem;
}
.hc-visit-copy p {
  margin: 0;
  max-width: 38ch;
  color: rgba(244, 237, 227, 0.82);
  line-height: 1.6;
}
.hc-visit-panel {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 252, 248, 0.08);
  border: 1px solid rgba(244, 237, 227, 0.18);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 0.75rem;
}
.hc-visit-panel div { display: grid; gap: 0.15rem; }
.hc-visit-panel strong {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hc-visit-panel span {
  font-size: 0.88rem;
  color: rgba(244, 237, 227, 0.9);
  line-height: 1.45;
}
.hc-visit-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.hc-visit-panel .btn-secondary {
  color: var(--ivory);
  border-color: rgba(244, 237, 227, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.hc-finish {
  padding: clamp(4rem, 7vw, 5.5rem) 0 4.5rem;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(196, 163, 90, 0.15), transparent 70%),
    var(--ivory);
}
.hc-finish-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.hc-finish-quote {
  margin: 0 0 1.5rem;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--navy);
}
.hc-finish-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.hc-btn-ghost-dark {
  color: var(--navy);
  border-color: rgba(0, 23, 64, 0.18);
  background: rgba(255, 252, 248, 0.8);
}

@media (max-width: 1024px) {
  .hc-hero-shell,
  .hc-philosophy-visual,
  .hc-pillars-grid,
  .hc-moments-grid,
  .hc-paths-grid,
  .hc-visit-grid,
  .hc-curate-layout { grid-template-columns: 1fr; }
  .hc-moments-grid { grid-template-columns: repeat(2, 1fr); }
  .hc-paths-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .hc-hero--minimal { min-height: auto; }
  .hc-hero-shell--center { padding-top: 4.5rem; }
  .hc-philosophy-visual { border-radius: 22px; }
  .hc-pillars-grid,
  .hc-moments-grid,
  .hc-paths-grid { grid-template-columns: 1fr; }
  .hc-curate-top { flex-direction: column; align-items: flex-start; }
  .hc-product-rail { grid-template-columns: repeat(2, 1fr); }
}

/* ===== About page ===== */
.page-about .page-hero { display: none; }
.about-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}
.about-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(1, 15, 45, 0.9) 0%, rgba(0, 23, 64, 0.72) 55%, rgba(0, 23, 64, 0.55) 100%),
    url("../images/hero/store-collage.png") center/cover no-repeat;
}
.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3rem;
  max-width: 760px;
}
.breadcrumb--light,
.breadcrumb--light a { color: rgba(244, 237, 227, 0.82); }
.breadcrumb--light a:hover { color: #fff; }
.about-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.about-hero .lead {
  color: rgba(244, 237, 227, 0.9);
  margin-bottom: 1.5rem;
}
.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 620px;
}
.about-hero-stats div {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 237, 227, 0.16);
  background: rgba(255, 255, 255, 0.07);
}
.about-hero-stats strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
}
.about-hero-stats span {
  font-size: 0.76rem;
  color: rgba(244, 237, 227, 0.78);
}
.about-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.about-story-visual { min-height: 460px; }
.about-story-content h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.about-quote {
  margin: 1.5rem 0 0;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(90deg, rgba(196, 163, 90, 0.12), transparent);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--navy);
}
.about-mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.about-mvv-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-mvv-card--accent {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  border-color: transparent;
}
.about-mvv-card--accent h3,
.about-mvv-card--accent p { color: rgba(244, 237, 227, 0.9); }
.about-mvv-card--accent h3 { color: #fff; }
.about-mvv-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-mvv-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}
.about-mvv-card p { margin: 0; font-size: 0.92rem; }
.about-lines {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.about-line {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.about-line:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.about-line-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.about-line h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.about-line p { margin: 0; font-size: 0.88rem; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.about-value {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
}
.about-value strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.about-value span {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.about-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.about-zone {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--ivory));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.about-zone h3 { font-size: 1.25rem; margin-bottom: 0.45rem; }
.about-zone p { margin: 0; font-size: 0.88rem; }
.about-journey {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.about-timeline {
  display: grid;
  gap: 0.75rem;
}
.about-timeline-item {
  padding: 1.1rem 1.2rem 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
}
.about-timeline-item span {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.about-timeline-item strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.about-timeline-item p { margin: 0; font-size: 0.88rem; }
.about-visit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}
.about-visit-visual { min-height: 100%; }
.about-visit-content {
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-visit-content h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); margin-bottom: 1rem; }

/* ===== Services page ===== */
.page-services .page-hero { display: none; }
.services-hero {
  position: relative;
  min-height: min(68vh, 620px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}
.services-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(1, 15, 45, 0.92) 0%, rgba(0, 23, 64, 0.75) 50%, rgba(0, 23, 64, 0.58) 100%),
    url("../images/hero/store-collage.png") center/cover no-repeat;
}
.services-hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3rem;
  max-width: 720px;
}
.services-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.services-hero .lead {
  color: rgba(244, 237, 227, 0.9);
  margin-bottom: 1.4rem;
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.services-intro-points {
  display: grid;
  gap: 0.75rem;
}
.services-intro-points div {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
}
.services-intro-points strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.services-intro-points span {
  font-size: 0.88rem;
  color: var(--text-soft);
}
.service-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 8px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.service-spotlight-visual {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--border);
}
.service-spotlight-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}
.service-spotlight-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.65rem;
}
.service-checklist {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
}
.service-checklist li {
  color: var(--text);
  padding-left: 1rem;
  position: relative;
}
.service-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  padding: 0;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 23, 64, 0.2);
}
.service-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ivory-warm);
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-media img {
  transform: scale(1.05);
}
.service-card-num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(1, 15, 45, 0.72);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.service-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-top,
.service-card-icon { display: none; }
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}
.service-card p {
  margin-bottom: 1rem;
  font-size: 0.92rem;
  flex: 1;
}
.service-card-actions {
  display: grid;
  gap: 0.55rem;
}
.service-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-step {
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  position: relative;
}
.service-step span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.45rem;
  line-height: 1;
}
.service-step h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.service-step p { margin: 0; font-size: 0.88rem; }
.service-usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-usecase {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--white), var(--ivory));
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
}
.service-usecase h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.service-usecase p { margin: 0; font-size: 0.88rem; }
.service-trust {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}
.service-trust-content {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}
.service-trust-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  color: var(--ivory);
}
.service-trust-panel h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 0.55rem;
}
.service-trust-panel p {
  color: rgba(244, 237, 227, 0.85);
  margin-bottom: 1rem;
}
.service-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.service-form-visual { min-height: 100%; }
.service-form-panel h2 { margin-bottom: 0.45rem; }
.service-form { margin-top: 1.2rem; }

/* ===== Shop / Products page ===== */
.page-shop .page-hero,
.page-product .page-hero { display: none; }
.shop-hero {
  position: relative;
  min-height: min(62vh, 560px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}
.shop-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(1, 15, 45, 0.92) 0%, rgba(0, 23, 64, 0.72) 50%, rgba(0, 23, 64, 0.55) 100%),
    url("../images/hero/store-collage.png") center/cover no-repeat;
}
.shop-hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.2rem 0 2.8rem;
  max-width: 760px;
}
.shop-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  margin-bottom: 0.7rem;
}
.shop-hero .lead {
  color: rgba(244, 237, 227, 0.9);
  margin-bottom: 1.2rem;
}
.shop-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.shop-hero-stats div {
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(244, 237, 227, 0.16);
  background: rgba(255, 255, 255, 0.07);
}
.shop-hero-stats strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.shop-hero-stats span {
  font-size: 0.74rem;
  color: rgba(244, 237, 227, 0.78);
}
.shop-cat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.shop-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: background .2s, color .2s, border-color .2s;
}
.shop-cat-pill small {
  font-size: 0.68rem;
  opacity: 0.7;
}
.shop-cat-pill.is-active,
.shop-cat-pill:hover {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: grid;
  gap: 1rem;
}
.shop-sidebar-block {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}
.shop-sidebar-block h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.shop-search-form { display: grid; gap: 0.55rem; }
.shop-sidebar-list {
  display: grid;
  gap: 0.25rem;
}
.shop-sidebar-list a {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--text-soft);
  transition: background .2s, color .2s;
}
.shop-sidebar-list a span {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
}
.shop-sidebar-list a.is-active,
.shop-sidebar-list a:hover {
  background: rgba(0, 23, 64, 0.06);
  color: var(--navy);
}
.shop-sidebar-cta h3 {
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.45rem;
}
.shop-sidebar-cta p {
  font-size: 0.86rem;
  margin-bottom: 0.85rem;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.shop-toolbar h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.2rem;
}
.shop-toolbar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.shop-filters { margin-bottom: 1.25rem; }
.product-grid--shop { grid-template-columns: repeat(3, 1fr); }
.product-card--shop .product-body h3 { font-size: 1.15rem; }
.product-stock {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-stock--ready {
  background: rgba(143, 168, 139, 0.18);
  color: #3f5f45;
}
.product-stock--preorder {
  background: rgba(196, 163, 90, 0.18);
  color: #7a6020;
}
.product-stock--out {
  background: rgba(212, 165, 165, 0.2);
  color: #8a3d3d;
}
.shop-empty { text-align: center; padding: 2.5rem 1.5rem; }
.shop-empty h3 { margin-bottom: 0.45rem; }
.shop-packages {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.shop-package-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

/* Product detail */
.product-detail-hero {
  padding: 1.5rem 0 0;
  background: linear-gradient(180deg, rgba(0, 23, 64, 0.04), transparent);
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.product-detail-gallery { position: sticky; top: calc(var(--header-h) + 1rem); }
.product-detail-media {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(160deg, var(--ivory-warm), #fff);
  border: 1px solid var(--border);
  padding: 2rem;
  display: grid;
  place-items: center;
  min-height: 420px;
  box-shadow: var(--shadow);
}
.product-detail-media img { width: min(72%, 320px); }
.product-detail-info h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.35rem;
}
.product-sku {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}
.product-detail-price {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0.75rem 0;
}
.product-detail-price small {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
}
.product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}
.product-detail-desc {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.product-detail-desc h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  margin-bottom: 0.45rem;
}
.product-detail-desc p { margin: 0; }
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
.product-trust-item {
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--white), var(--ivory));
  border: 1px solid var(--border);
}
.product-trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.product-trust-item span {
  font-size: 0.76rem;
  color: var(--text-soft);
  line-height: 1.4;
}
.product-related { margin-top: 3.5rem; }

/* ===== Contact page ===== */
.page-contact .page-hero { display: none; }
.contact-hero {
  position: relative;
  min-height: min(58vh, 520px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}
.contact-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(1, 15, 45, 0.92) 0%, rgba(0, 23, 64, 0.72) 50%, rgba(0, 23, 64, 0.55) 100%),
    url("../images/hero/store-collage.png") center/cover no-repeat;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2.8rem;
  max-width: 720px;
}
.contact-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  margin-bottom: 0.7rem;
}
.contact-hero .lead {
  color: rgba(244, 237, 227, 0.9);
  margin-bottom: 1.3rem;
}
.contact-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.contact-quick-card {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 23, 64, 0.2);
  box-shadow: 0 18px 36px rgba(1, 15, 45, 0.08);
}
.contact-quick-card--static { cursor: default; }
.contact-quick-card--static:hover { transform: none; }
.contact-quick-card--wa {
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.08), var(--white));
  border-color: rgba(37, 211, 102, 0.25);
}
.contact-quick-card strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.contact-quick-card span {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.45;
}
.contact-quick-card small {
  color: var(--text-soft);
  font-size: 0.76rem;
  margin-top: 0.15rem;
}
.contact-map-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}
.contact-map-side { display: grid; gap: 1rem; }
.contact-store-photo { min-height: 220px; }
.contact-map {
  min-height: 320px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-info-panel {
  padding: 1.6rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-info-panel h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin-bottom: 0.45rem;
}
.contact-info-panel .lead { margin-bottom: 1.2rem; }
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.contact-info-item {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--white), var(--ivory));
  border: 1px solid var(--border);
}
.contact-info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-info-item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
}
.contact-info-item a { color: var(--navy); font-weight: 600; }
.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.contact-tags span {
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 23, 64, 0.06);
  color: var(--navy);
  font-weight: 600;
}
.contact-help {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.contact-help-item {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.contact-help-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.contact-help-item h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.contact-help-item p { margin-bottom: 0.75rem; font-size: 0.88rem; }
.contact-form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-form-intro h2 { margin-bottom: 0.45rem; }
.contact-form-panel { padding: 1.5rem; }
.contact-visit {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-visit-panel {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy-deep), var(--navy-soft));
  color: var(--ivory);
}
.contact-visit-panel h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}
.contact-visit-panel p {
  color: rgba(244, 237, 227, 0.85);
  margin-bottom: 1rem;
}
.contact-visit-panel .btn-block { margin-bottom: 0.55rem; }
.contact-visit-panel .btn-secondary {
  color: var(--ivory);
  border-color: rgba(244, 237, 227, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open .nav-link {
    width: 100%;
    border-radius: 12px;
    padding: 0.75rem 0.85rem;
  }
  .nav-toggle { display: inline-flex; }
  .site-header { position: sticky; }
  .nav-wrap { position: relative; }
  .pathways,
  .pillars,
  .stats-grid,
  .bento-cats,
  .need-panel,
  .hero-home-layout,
  .workshop-spotlight,
  .service-showcase,
  .about-home,
  .about-story,
  .about-mvv,
  .about-lines,
  .about-values,
  .about-zones,
  .about-journey,
  .about-visit,
  .about-hero-stats,
  .services-intro,
  .service-spotlight,
  .services-grid,
  .service-process,
  .service-usecases,
  .service-trust,
  .service-form-wrap,
  .shop-layout,
  .shop-packages,
  .product-detail,
  .product-trust-grid,
  .product-grid--shop,
  .contact-quick,
  .contact-map-wrap,
  .contact-help,
  .contact-form-wrap,
  .contact-visit,
  .contact-info-grid,
  .home-cta-inner,
  .product-grid--home,
  .cat-grid,
  .need-grid,
  .product-grid,
  .workshop-grid,
  .service-grid,
  .footer-grid,
  .split,
  .band,
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .inspo-grid { columns: 2; }
  .hide-mobile { display: none !important; }
}

@media (max-width: 720px) {
  .brand-logo { height: 44px; }
  .hero-logo { width: min(220px, 72vw); }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .pathways,
  .pillars,
  .stats-grid,
  .bento-cats,
  .need-panel,
  .hero-home-layout,
  .workshop-spotlight,
  .service-showcase,
  .about-home,
  .about-story,
  .about-mvv,
  .about-lines,
  .about-values,
  .about-zones,
  .about-journey,
  .about-visit,
  .about-hero-stats,
  .services-intro,
  .service-spotlight,
  .services-grid,
  .service-process,
  .service-usecases,
  .service-trust,
  .service-form-wrap,
  .shop-layout,
  .shop-packages,
  .product-detail,
  .product-trust-grid,
  .product-grid--shop,
  .contact-quick,
  .contact-map-wrap,
  .contact-help,
  .contact-form-wrap,
  .contact-visit,
  .contact-info-grid,
  .home-cta-inner,
  .product-grid--home,
  .cat-grid,
  .need-grid,
  .product-grid,
  .workshop-grid,
  .service-grid,
  .footer-grid,
  .split,
  .band,
  .detail-grid,
  .form-grid { grid-template-columns: 1fr; }
  .product-grid--shop { grid-template-columns: 1fr; }
  .about-hero { min-height: auto; }
  .about-hero-inner { padding: 3.5rem 0 2.5rem; }
  .about-story-visual,
  .about-visit-visual { min-height: 260px; }
  .services-hero { min-height: auto; }
  .services-hero-inner { padding: 3.5rem 0 2.5rem; }
  .service-spotlight-visual,
  .service-form-visual { min-height: 260px; }
  .shop-sidebar { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-packages { grid-template-columns: 1fr; }
  .shop-package-links { justify-content: flex-start; }
  .product-detail-gallery { position: static; }
  .product-detail { grid-template-columns: 1fr; }
  .product-trust-grid { grid-template-columns: 1fr; }
  .product-grid--shop { grid-template-columns: 1fr 1fr; }
  .home-cta-actions { justify-content: flex-start; }
  .inspo-grid { columns: 1; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hero--home { min-height: auto; }
  .hero-home-layout {
    padding: 4rem 0 2.5rem;
    grid-template-columns: 1fr;
  }
  .hero--home h1 { max-width: none; }
  .hero-showcase-frame,
  .hero-showcase-frame img { min-height: 260px; }
  .hero-showcase-frame { border-radius: 22px; }
  .hero-mini-grid { grid-template-columns: 1fr; }
  .stats-strip { margin-top: -1.2rem; }
  .mobile-dock { display: flex; }
  .site-main { padding-bottom: 5.5rem; }
  .footer-bottom-inner { flex-direction: column; }
}
