/* Walking Sticks & Crutches Kenya — shared styles
   Pure CSS. Zero JavaScript. Elevated accessibility. */

/* -------------------------------------------------------------------------- */
/* Tokens                                                                      */
/* -------------------------------------------------------------------------- */
:root {
  --surface: #f7f4ef;
  --surface-elevated: #fffcf8;
  --ink: #1c2421;
  --ink-muted: #5c6560;
  --line: #d9d3c9;
  --action: #2f6f68;
  --action-hover: #265a54;
  --action-subtle: #e4f0ee;
  --whatsapp: #1f6b4a;
  --whatsapp-hover: #185538;
  --focus: #2f6f68;
  --danger-soft: #7a3e3e;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(28, 36, 33, 0.06);
  --shadow-md: 0 4px 12px rgba(28, 36, 33, 0.08);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 96px;

  --content-max: 72rem;
  --read-max: 40rem;
  --tap-min: 44px;
  --header-h: 4.25rem;
  --sticky-bar-h: 4.25rem;

  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --body: clamp(1.125rem, 1.05rem + 0.35vw, 1.25rem);
  --small: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --h1: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
  --h2: clamp(1.375rem, 1.2rem + 0.7vw, 1.75rem);
  --h3: clamp(1.2rem, 1.1rem + 0.4vw, 1.35rem);
  --price: clamp(1.35rem, 1.2rem + 0.5vw, 1.65rem);

  --trans: 150ms ease;
}

/* -------------------------------------------------------------------------- */
/* Reset & base                                                                */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  min-height: 100vh;
  padding-bottom: calc(var(--sticky-bar-h) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--action);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color var(--trans);
}

a:hover {
  color: var(--action-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 var(--space-4);
}

h1 {
  font-size: var(--h1);
  line-height: 1.2;
}

h2 {
  font-size: var(--h2);
  margin-top: var(--space-7);
}

h3 {
  font-size: var(--h3);
  margin-top: var(--space-5);
}

p {
  margin: 0 0 var(--space-4);
}

ul,
ol {
  margin: 0 0 var(--space-4);
  padding-left: 1.25em;
}

li {
  margin-bottom: var(--space-2);
}

strong {
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  margin: 0 0 var(--space-5);
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-weight: 600;
  background: var(--action-subtle);
  color: var(--ink);
}

tr:last-child td {
  border-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-5);
  -webkit-overflow-scrolling: touch;
}

/* -------------------------------------------------------------------------- */
/* Utilities                                                                   */
/* -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -100px;
  z-index: 1000;
  background: var(--action);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-4);
  color: #fff;
}

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

.container--narrow {
  width: min(100% - 2rem, var(--read-max));
  margin-inline: auto;
}

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

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

.price {
  font-size: var(--price);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  letter-spacing: 0;
}

.price-note {
  font-size: var(--small);
  color: var(--ink-muted);
  margin: 0;
}

.section {
  padding: var(--space-8) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-9) 0;
  }
}

.section--tight {
  padding: var(--space-6) 0;
}

.section-title {
  margin-top: 0;
}

.lead {
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.3rem);
  line-height: 1.6;
  max-width: 40rem;
}

.def-sentence {
  font-size: var(--small);
  color: var(--ink-muted);
  border-left: 3px solid var(--action);
  padding-left: var(--space-4);
  margin: var(--space-5) 0;
}

/* -------------------------------------------------------------------------- */
/* Buttons                                                                     */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: var(--tap-min);
  min-width: var(--tap-min);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border-color var(--trans),
    box-shadow var(--trans);
}

.btn--primary {
  background: var(--action);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--action-hover);
  color: #fff;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
}

.btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--surface-elevated);
}

.btn--ghost {
  background: var(--action-subtle);
  color: var(--action);
}

.btn--ghost:hover {
  background: var(--action);
  color: #fff;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.btn svg {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
/* Header & nav                                                                */
/* -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 248, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
  padding-block: var(--space-2);
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  min-height: var(--tap-min);
  justify-content: center;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--action);
}

.logo__name {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.logo__tag {
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.header-actions .btn {
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
}

@media (max-width: 899px) {
  .header-actions .btn--outline {
    display: none;
  }
}

/* Mobile nav: checkbox technique */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tap-min);
  min-height: var(--tap-min);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--small);
  color: var(--ink);
  padding: 0 var(--space-3);
}

.nav-toggle-label:hover {
  border-color: var(--action);
  color: var(--action);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--surface-elevated);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
}

.nav-toggle:checked ~ .site-nav {
  display: block;
}

.nav-toggle:focus-visible + .nav-toggle-label {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: var(--tap-min);
  padding: var(--space-2) var(--space-3);
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.site-nav a:hover {
  background: var(--action-subtle);
  color: var(--action);
}

@media (min-width: 1024px) {
  .nav-toggle-label {
    display: none;
  }

  .header-inner {
    gap: var(--space-5);
  }

  .site-nav {
    display: block;
    position: static;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    flex: 1;
  }

  .site-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
  }

  .site-nav a {
    min-height: 2.5rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
  }
}

/* -------------------------------------------------------------------------- */
/* Breadcrumbs                                                                 */
/* -------------------------------------------------------------------------- */
.breadcrumbs {
  padding: var(--space-4) 0 var(--space-2);
  font-size: var(--small);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  color: var(--ink-muted);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--line);
}

.breadcrumbs a {
  color: var(--ink-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--action);
}

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Trust strip                                                                 */
/* -------------------------------------------------------------------------- */
.trust-strip {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin: var(--space-5) 0;
  padding: var(--space-4);
  background: var(--action-subtle);
  border-radius: var(--radius-md);
  border: 1px solid #c5ddd8;
}

@media (min-width: 640px) {
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--small);
  color: var(--ink);
}

.trust-item svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: var(--action);
  margin-top: 0.15rem;
}

.trust-item strong {
  display: block;
  font-size: 0.95rem;
}

/* -------------------------------------------------------------------------- */
/* Spec badges (signature element)                                             */
/* -------------------------------------------------------------------------- */
.spec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0;
}

.spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--action-subtle);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #c5ddd8;
  line-height: 1.3;
}

.spec-badge__label {
  color: var(--ink-muted);
  font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* Cards & product grid                                                        */
/* -------------------------------------------------------------------------- */
.product-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow var(--trans), border-color var(--trans);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #c5ddd8;
}

.product-card__media {
  aspect-ratio: 4 / 3;
  background: #ebe6de;
  overflow: hidden;
}

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

.product-card__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.product-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.product-card__title a {
  color: var(--ink);
  text-decoration: none;
}

.product-card__title a:hover {
  color: var(--action);
}

.product-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--small);
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}

.product-card__specs li {
  margin: 0 0 0.15rem;
}

.product-card__price {
  margin-top: auto;
  padding-top: var(--space-3);
  font-size: 1.2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.product-card__cta {
  margin-top: var(--space-3);
}

/* Type / situation cards */
.card-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: box-shadow var(--trans);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #ebe6de;
  overflow: hidden;
}

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

.card__body {
  padding: var(--space-4) var(--space-5) var(--space-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--action);
}

.card p:last-child {
  margin-bottom: 0;
}

/* Situation chips with photo tiles */
.situation-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
}

@media (min-width: 640px) {
  .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .situation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .situation-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.situation-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
  transition: box-shadow var(--trans), border-color var(--trans);
}

.situation-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #c5ddd8;
  color: var(--action);
}

.situation-card__media {
  aspect-ratio: 4 / 3;
  background: #ebe6de;
}

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

.situation-card__label {
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.hero {
  padding: var(--space-8) 0 var(--space-7);
}

@media (min-width: 900px) {
  .hero {
    padding: var(--space-10) 0 var(--space-9);
  }

  .hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-8);
    align-items: center;
  }
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--small);
  font-weight: 600;
  color: var(--action);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}

.hero h1 {
  margin-bottom: var(--space-4);
}

.hero__media {
  margin-top: var(--space-6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: #ebe6de;
  aspect-ratio: 4 / 3;
  position: relative;
}

@media (min-width: 900px) {
  .hero__media {
    margin-top: 0;
  }
}

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

/* Multi-slide hero: pure CSS auto-swipe (no JavaScript) */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.hero-slider__track {
  display: flex;
  width: 500%;
  height: 100%;
  animation: hero-swipe 22s ease-in-out infinite;
  will-change: transform;
}

.hero-slider__slide {
  flex: 0 0 20%;
  width: 20%;
  height: 100%;
  position: relative;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  pointer-events: none;
  z-index: 2;
}

.hero-slider__dots span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.45);
  box-shadow: 0 0 0 1px rgba(28, 36, 33, 0.15);
  animation: hero-dot 22s ease-in-out infinite;
}

.hero-slider__dots span:nth-child(1) {
  animation-name: hero-dot-1;
}
.hero-slider__dots span:nth-child(2) {
  animation-name: hero-dot-2;
}
.hero-slider__dots span:nth-child(3) {
  animation-name: hero-dot-3;
}
.hero-slider__dots span:nth-child(4) {
  animation-name: hero-dot-4;
}
.hero-slider__dots span:nth-child(5) {
  animation-name: hero-dot-5;
}

@keyframes hero-swipe {
  0%,
  14% {
    transform: translateX(0);
  }
  20%,
  34% {
    transform: translateX(-20%);
  }
  40%,
  54% {
    transform: translateX(-40%);
  }
  60%,
  74% {
    transform: translateX(-60%);
  }
  80%,
  94% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes hero-dot-1 {
  0%,
  14%,
  100% {
    background: #2f6f68;
    transform: scale(1.15);
  }
  20%,
  94% {
    background: rgba(255, 252, 248, 0.45);
    transform: scale(1);
  }
}
@keyframes hero-dot-2 {
  0%,
  14%,
  40%,
  100% {
    background: rgba(255, 252, 248, 0.45);
    transform: scale(1);
  }
  20%,
  34% {
    background: #2f6f68;
    transform: scale(1.15);
  }
}
@keyframes hero-dot-3 {
  0%,
  34%,
  60%,
  100% {
    background: rgba(255, 252, 248, 0.45);
    transform: scale(1);
  }
  40%,
  54% {
    background: #2f6f68;
    transform: scale(1.15);
  }
}
@keyframes hero-dot-4 {
  0%,
  54%,
  80%,
  100% {
    background: rgba(255, 252, 248, 0.45);
    transform: scale(1);
  }
  60%,
  74% {
    background: #2f6f68;
    transform: scale(1.15);
  }
}
@keyframes hero-dot-5 {
  0%,
  74%,
  100% {
    background: rgba(255, 252, 248, 0.45);
    transform: scale(1);
  }
  80%,
  94% {
    background: #2f6f68;
    transform: scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__track {
    animation: none;
    width: 100%;
  }
  .hero-slider__slide:not(:first-child) {
    display: none;
  }
  .hero-slider__slide {
    flex-basis: 100%;
    width: 100%;
  }
  .hero-slider__dots {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Product page layout                                                         */
/* -------------------------------------------------------------------------- */
.pdp {
  padding-bottom: var(--space-8);
}

.pdp__grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .pdp__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
  }

  .pdp__buy {
    position: sticky;
    top: calc(var(--header-h) + var(--space-4));
  }
}

.gallery {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-3);
  margin: 0 0 var(--space-4);
}

.gallery__item {
  flex: 0 0 min(100%, 28rem);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ebe6de;
  aspect-ratio: 4 / 3;
}

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

.availability {
  font-size: var(--small);
  font-weight: 600;
  color: var(--action);
  margin: 0 0 var(--space-3);
}

.panel {
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin: var(--space-5) 0;
}

.panel h2 {
  margin-top: 0;
}

.panel h3 {
  margin-top: 0;
}

/* -------------------------------------------------------------------------- */
/* FAQ (details/summary)                                                       */
/* -------------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-4) 0;
}

.faq-list details {
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0;
}

.faq-list summary {
  min-height: var(--tap-min);
  padding: var(--space-4);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--action);
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div,
.faq-list details > p {
  padding: 0 var(--space-4) var(--space-4);
  margin: 0;
  color: var(--ink);
}

/* -------------------------------------------------------------------------- */
/* Blog                                                                        */
/* -------------------------------------------------------------------------- */
.article {
  padding-bottom: var(--space-9);
}

.article__meta {
  font-size: var(--small);
  color: var(--ink-muted);
  margin-bottom: var(--space-5);
}

.article__body {
  max-width: var(--read-max);
}

.article__body h2:first-child {
  margin-top: 0;
}

.byline {
  font-size: var(--small);
  color: var(--ink-muted);
}

.blog-list {
  display: grid;
  gap: var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-card {
  display: grid;
  gap: var(--space-4);
  background: var(--surface-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .blog-card {
    grid-template-columns: 12rem 1fr;
  }
}

.blog-card__media {
  aspect-ratio: 4 / 3;
  background: #ebe6de;
}

@media (min-width: 640px) {
  .blog-card__media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

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

.blog-card__body {
  padding: var(--space-4) var(--space-4) var(--space-5);
}

.blog-card__body h2 {
  margin: 0 0 var(--space-2);
  font-size: 1.25rem;
}

.blog-card__body h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card__body h2 a:hover {
  color: var(--action);
}

/* -------------------------------------------------------------------------- */
/* Forms                                                                       */
/* -------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: var(--space-4);
  max-width: 32rem;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.form input,
.form textarea {
  width: 100%;
  min-height: var(--tap-min);
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font: inherit;
  background: var(--surface-elevated);
  color: var(--ink);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--action);
}

/* -------------------------------------------------------------------------- */
/* Contact / map                                                               */
/* -------------------------------------------------------------------------- */
.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ebe6de;
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                      */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: #1c2421;
  color: #e8e4dc;
  padding: var(--space-8) 0 var(--space-6);
  margin-top: var(--space-9);
}

.site-footer a {
  color: #c5ddd8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 var(--space-3);
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: var(--space-2);
}

.site-footer li a {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
}

.footer-brand p {
  font-size: var(--small);
  color: #b8b3a9;
  max-width: 28rem;
}

.footer-bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid #3a423e;
  font-size: var(--small);
  color: #b8b3a9;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
}

/* -------------------------------------------------------------------------- */
/* Sticky mobile action bar                                                    */
/* -------------------------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  padding-bottom: calc(var(--space-2) + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 252, 248, 0.98);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(28, 36, 33, 0.08);
}

.sticky-bar .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .sticky-bar {
    display: none;
  }
}

/* -------------------------------------------------------------------------- */
/* CTA band                                                                    */
/* -------------------------------------------------------------------------- */
.cta-band {
  background: var(--action-subtle);
  border: 1px solid #c5ddd8;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin: var(--space-7) 0;
  text-align: left;
}

.cta-band h2 {
  margin-top: 0;
}

/* -------------------------------------------------------------------------- */
/* Link chips / browse rows                                                    */
/* -------------------------------------------------------------------------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: var(--space-4) 0 var(--space-5);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-elevated);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--small);
}

.chip:hover {
  border-color: var(--action);
  color: var(--action);
  background: var(--action-subtle);
}

/* -------------------------------------------------------------------------- */
/* 404                                                                         */
/* -------------------------------------------------------------------------- */
.page-404 {
  text-align: left;
  padding: var(--space-10) 0;
}

/* -------------------------------------------------------------------------- */
/* Prose helpers                                                               */
/* -------------------------------------------------------------------------- */
.two-col {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.note {
  background: var(--surface-elevated);
  border-left: 3px solid var(--action);
  padding: var(--space-4);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-5) 0;
}

.note p:last-child {
  margin-bottom: 0;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  font-variant-numeric: tabular-nums;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--line);
}

/* Ensure tabular numbers on prices sitewide where marked */
.nums {
  font-variant-numeric: tabular-nums;
}
