/* ===========================================================
   PROMENADE XPRESS LTD — site styles
   Colours, fonts and layout. Edit the variables below to retheme.
   =========================================================== */
:root {
  --cream: #faf8f5;
  --ink: #142419;
  --moss: #4a6b53;
  --forest: #1f5233;
  --forest-deep: #11291b;
  --night: #0d1f14;
  --amber: #d97706;
  --amber-bright: #f59e0b;
  --sand: #f5efe0;
  --linen: #e8e2d2;
  --mint: #ebf4ec;
  --heading: "Playfair Display", Georgia, serif;
  --body: "DM Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--amber-bright); color: var(--forest-deep); }
svg.lucide, [data-lucide] { width: 1em; height: 1em; }

.container { width: 100%; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
.hide-sm { display: none !important; }
@media (min-width: 640px) { .hide-sm { display: inline-flex !important; } }

/* ---------- Typography ---------- */
.kicker {
  margin: 0 0 0.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.kicker.light { color: var(--amber-bright); }
h1, h2, h3 { font-family: var(--heading); letter-spacing: -0.02em; margin: 0; }
.h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.08; }
@media (min-width: 640px) { .h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .h1 { font-size: 3.75rem; } }
.h2 { font-size: 1.5rem; font-weight: 600; }
@media (min-width: 640px) { .h2 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .h2 { font-size: 2.25rem; } }
.lead { max-width: 36rem; margin: 1.25rem 0 0; color: var(--moss); line-height: 1.65; }
.italic { font-style: italic; }
.text-forest { color: var(--forest); }
.text-amber { color: var(--amber); }
.text-amber-bright { color: var(--amber-bright); }
.mono { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; border-radius: 999px; border: 1px solid transparent;
  font-size: 0.875rem; font-weight: 600; white-space: nowrap;
  transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn-sm { padding: 0.625rem 1.25rem; }
.btn-forest { background: var(--forest); color: var(--cream); box-shadow: 0 4px 12px rgba(31, 82, 51, 0.2); }
.btn-forest:hover { background: var(--forest-deep); }
.btn-outline { background: #fff; color: var(--forest); border-color: rgba(31, 82, 51, 0.25); }
.btn-outline:hover { border-color: var(--forest); background: var(--mint); }
.btn-amber { background: var(--amber); color: #fff; box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25); }
.btn-amber:hover { background: var(--amber-bright); color: var(--forest-deep); }
.btn-bright { background: var(--amber-bright); color: var(--forest-deep); }
.btn-bright:hover { background: var(--cream); }
.btn-ghost-light { border-color: rgba(250, 248, 245, 0.25); color: var(--cream); }
.btn-ghost-light:hover { background: rgba(250, 248, 245, 0.1); }
.btn .lucide { transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--forest); transition: color 0.25s; }
.link-arrow:hover { color: var(--amber); }
.link-arrow.light { color: var(--amber-bright); }
.link-arrow.light:hover { color: var(--cream); }
.link-arrow .lucide { transition: transform 0.25s; }
.link-arrow:hover .lucide { transform: translate(2px, -2px); }

/* ---------- Top bar + header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; }
.topbar { display: none; background: var(--forest-deep); color: var(--cream); }
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 0.375rem 1.5rem; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; }
.topbar-inner span, .topbar-inner a { display: inline-flex; align-items: center; gap: 0.375rem; color: rgba(250, 248, 245, 0.8); transition: color 0.2s; }
.topbar-inner a:hover { color: var(--amber-bright); }
.topbar-inner .lucide { width: 0.75rem; height: 0.75rem; color: var(--amber-bright); }
.header { border-bottom: 1px solid var(--linen); background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark { display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border-radius: 0.75rem; background: var(--forest); color: var(--cream); font-family: var(--heading); font-weight: 700; font-size: 1.125rem; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
.brand-text { line-height: 1.15; }
.brand-text strong { display: block; font-family: var(--heading); font-size: 1rem; letter-spacing: -0.01em; }
.brand-text small { display: block; font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--amber); }
.nav { display: none; align-items: center; gap: 1.25rem; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { position: relative; padding: 0.5rem 0; font-size: 0.875rem; font-weight: 500; color: var(--moss); transition: color 0.25s; }
.nav a:hover { color: var(--ink); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--amber); transition: width 0.3s; }
.nav a.active { color: var(--forest); }
.nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.menu-btn { display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border: 1px solid var(--linen); border-radius: 0.75rem; background: #fff; color: var(--ink); transition: background-color 0.2s; }
.menu-btn:hover { background: var(--sand); }
.menu-btn .lucide { width: 1.25rem; height: 1.25rem; }
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 60; display: flex; flex-direction: column; background: var(--forest-deep); color: var(--cream); opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; font-family: var(--heading); font-weight: 700; font-size: 1.125rem; }
.mobile-menu-head button { display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border: 1px solid rgba(250,248,245,0.2); border-radius: 0.75rem; background: transparent; color: var(--cream); }
.mobile-menu nav { display: flex; flex: 1; flex-direction: column; justify-content: center; padding: 0 1.5rem; }
.mobile-menu nav a { display: block; padding: 1rem 0; border-bottom: 1px solid rgba(250,248,245,0.1); font-family: var(--heading); font-size: 1.875rem; font-weight: 600; letter-spacing: -0.02em; opacity: 0; transform: translateX(-18px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.2s; }
.mobile-menu.open nav a { opacity: 1; transform: none; }
.mobile-menu nav a:nth-child(1) { transition-delay: 0.06s; }
.mobile-menu nav a:nth-child(2) { transition-delay: 0.12s; }
.mobile-menu nav a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu nav a:nth-child(4) { transition-delay: 0.24s; }
.mobile-menu nav a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu nav a:nth-child(6) { transition-delay: 0.36s; }
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--amber-bright); }
.mobile-menu-foot { padding: 0 1.5rem 2.5rem; font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,245,0.7); }
.mobile-menu-foot p, .mobile-menu-foot a { display: flex; align-items: center; gap: 0.5rem; margin: 0.5rem 0; }
.mobile-menu-foot .lucide { color: var(--amber-bright); width: 0.875rem; height: 0.875rem; }
body.menu-open { overflow: hidden; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section-sm { padding: 3.5rem 0; }
@media (min-width: 1024px) { .section-sm { padding: 5rem 0; } }
.bg-cream { background: var(--cream); }
.bg-sand { background: var(--sand); }
.bg-dark { background: var(--forest-deep); color: var(--cream); }
.page-header { border-bottom: 1px solid var(--linen); background: var(--sand); padding: 4rem 0; }
@media (min-width: 1024px) { .page-header { padding: 6rem 0; } }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem; }
.ghost-word { pointer-events: none; position: absolute; user-select: none; font-family: var(--heading); font-weight: 700; line-height: 1; }

/* ---------- Reveal / masked animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.masked { display: block; overflow: hidden; }
.masked > span { display: block; transform: translateY(112%); animation: rise 0.9s var(--ease) forwards; }
.masked:nth-child(1) > span { animation-delay: 0.1s; }
.masked:nth-child(2) > span { animation-delay: 0.2s; }
.masked:nth-child(3) > span { animation-delay: 0.3s; }
.masked:nth-child(4) > span { animation-delay: 0.42s; }
@keyframes rise { to { transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(14px); animation: fadeUp 0.6s var(--ease) forwards; }
.fade-up.d1 { animation-delay: 0.6s; }
.fade-up.d2 { animation-delay: 0.72s; }
.fade-up.d3 { animation-delay: 0.9s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal, .masked > span, .fade-up { opacity: 1; transform: none; animation: none; transition: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero .ghost-word { right: -6rem; top: 2.5rem; font-size: 22vw; color: rgba(31, 82, 51, 0.05); }
.hero-grid { position: relative; display: grid; gap: 3.5rem; padding: 3.5rem 1.5rem 5rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; padding: 5rem 1.5rem 7rem; } }
.status-badge { display: inline-flex; align-items: center; gap: 0.625rem; margin-bottom: 1.75rem; padding: 0.5rem 1rem; border: 1px solid var(--linen); border-radius: 999px; background: #fff; font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest); box-shadow: 0 2px 6px rgba(0,0,0,0.05); }
.dot { position: relative; display: inline-flex; width: 0.5rem; height: 0.5rem; }
.dot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--forest); opacity: 0.6; animation: ping 1.4s ease-out infinite; }
.dot::after { content: ""; position: relative; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--forest); }
.status-badge.closed .dot::before, .status-badge.closed .dot::after { background: var(--amber); }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.chips { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; margin-top: 2.25rem; }
.chips .mono { color: var(--moss); font-size: 0.6875rem; }
.chip { padding: 0.375rem 0.875rem; border: 1px solid var(--linen); border-radius: 999px; background: #fff; font-size: 0.75rem; font-weight: 500; transition: transform 0.2s, border-color 0.2s, color 0.2s; }
.chip:hover { transform: translateY(-2px); border-color: var(--amber); color: var(--amber); }
.hero-visual { position: relative; }
.hero-frame { overflow: hidden; border-radius: 2rem; border: 1px solid var(--linen); box-shadow: 0 25px 50px -12px rgba(31, 82, 51, 0.15); }
.hero-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transform: scale(1.1); will-change: transform; }
.rot-badge { position: absolute; left: -1rem; top: -1rem; width: 6rem; height: 6rem; }
@media (min-width: 640px) { .rot-badge { left: -2rem; top: -2rem; width: 7rem; height: 7rem; } }
.rot-badge svg { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 50%; background: var(--amber-bright); color: var(--forest-deep); fill: currentColor; box-shadow: 0 10px 20px rgba(0,0,0,0.12); animation: spin 18s linear infinite; font-family: var(--mono); text-transform: uppercase; }
.rot-badge .lucide { position: absolute; left: 50%; top: 50%; width: 1.5rem; height: 1.5rem; transform: translate(-50%, -50%); color: var(--forest-deep); }
@keyframes spin { to { transform: rotate(360deg); } }
.float-card { position: absolute; display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; border-radius: 1rem; box-shadow: 0 20px 25px -5px rgba(31, 82, 51, 0.1); }
.float-card.hours { left: -1rem; bottom: -1.5rem; border: 1px solid var(--linen); background: #fff; }
@media (min-width: 640px) { .float-card.hours { left: -2.5rem; } }
.float-card.hours .icon { display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border-radius: 0.75rem; background: var(--mint); color: var(--forest); }
.float-card small { display: block; font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--moss); }
.float-card strong { display: block; font-size: 0.875rem; }
.float-card.aisles { right: -0.75rem; top: 2rem; flex-direction: column; align-items: flex-start; gap: 0; background: var(--forest-deep); color: var(--cream); }
@media (min-width: 640px) { .float-card.aisles { right: -1.5rem; } }
.float-card.aisles .num { font-family: var(--heading); font-size: 1.5rem; font-weight: 700; color: var(--amber-bright); }
.float-card.aisles small { color: rgba(250,248,245,0.7); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid rgba(250,248,245,0.1); border-bottom: 1px solid rgba(250,248,245,0.1); background: var(--night); color: var(--cream); padding: 0.875rem 0; }
.marquee.amber { background: var(--amber); color: #fff; border-color: transparent; }
.marquee-track { display: flex; width: max-content; gap: 3rem; animation: marquee 40s linear infinite; font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; }
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee-track span::after { content: "✦"; color: var(--amber-bright); }
.marquee.amber .marquee-track span::after { color: var(--forest-deep); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) and (max-width: 1023px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } }
.card { border: 1px solid var(--linen); border-radius: 1.5rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(31, 82, 51, 0.1); }
.card-media { position: relative; height: 11rem; overflow: hidden; border-radius: 1.5rem 1.5rem 0 0; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-media img { transform: scale(1.05); }
.tag { position: absolute; left: 0.75rem; top: 0.75rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: rgba(17, 41, 27, 0.85); color: var(--cream); font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.18em; text-transform: uppercase; backdrop-filter: blur(4px); }
.card-foot { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; }
.card-foot .mono { color: var(--moss); font-size: 0.625rem; }
.card-foot h3 { font-size: 1.125rem; font-weight: 600; }
.round-arrow { display: flex; width: 2.25rem; height: 2.25rem; align-items: center; justify-content: center; border: 1px solid var(--linen); border-radius: 50%; color: var(--forest); transition: background-color 0.25s, color 0.25s, border-color 0.25s; }
.card:hover .round-arrow { background: var(--amber); border-color: var(--amber); color: #fff; }

/* Services strip (dark) */
.services-grid { display: grid; gap: 1px; overflow: hidden; border: 1px solid rgba(250,248,245,0.1); border-radius: 1.5rem; background: rgba(250,248,245,0.1); }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-mini { display: flex; flex-direction: column; gap: 1rem; height: 100%; padding: 1.75rem; background: var(--forest-deep); transition: background-color 0.25s; }
.service-mini:hover { background: #16351f; }
.service-mini .row { display: flex; justify-content: space-between; align-items: center; }
.icon-dark { display: flex; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center; border-radius: 1rem; background: rgba(250,248,245,0.1); color: var(--amber-bright); transition: transform 0.3s; }
.service-mini:hover .icon-dark { transform: scale(1.1); }
.service-mini .num { font-family: var(--mono); font-size: 0.75rem; color: rgba(250,248,245,0.4); }
.service-mini h3 { font-size: 1.125rem; font-weight: 600; }
.service-mini p { margin: 0.375rem 0 0; font-size: 0.875rem; color: rgba(250,248,245,0.65); line-height: 1.6; }
.pill-outline { margin-top: auto; width: fit-content; padding: 0.25rem 0.75rem; border: 1px solid rgba(245,158,11,0.4); border-radius: 999px; font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-bright); }

/* Two-column feature */
.split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; } }
.split img.feature { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--linen); border-radius: 2rem; box-shadow: 0 20px 25px -5px rgba(217, 119, 6, 0.1); }
.price-sticker { position: absolute; right: 1.5rem; bottom: -1.25rem; padding: 0.75rem 1.25rem; border-radius: 1rem; background: var(--amber); color: #fff; font-family: var(--heading); font-size: 1.125rem; font-weight: 700; box-shadow: 0 10px 20px rgba(0,0,0,0.12); }
.offer-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem; border: 1px solid var(--linen); border-radius: 1rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.offer-row .mono { color: var(--amber); font-size: 0.625rem; }
.offer-row h3 { font-size: 1.125rem; font-weight: 600; }
.offer-row p { margin: 0; font-size: 0.875rem; color: var(--moss); }
.offer-row .price { flex-shrink: 0; font-family: var(--heading); font-size: 1.5rem; font-weight: 700; color: var(--forest); }

/* Offer cards */
.offer-card { position: relative; display: flex; flex-direction: column; height: 100%; overflow: hidden; padding: 1.75rem; border: 1px solid var(--linen); border-radius: 2rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(217, 119, 6, 0.15); }
.offer-card .blob { position: absolute; right: -2rem; top: -2rem; width: 7rem; height: 7rem; border-radius: 50%; background: var(--mint); transition: transform 0.5s; }
.offer-card:hover .blob { transform: scale(1.7); }
.offer-card > div { position: relative; }
.offer-card .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.badge-amber { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.875rem; border-radius: 999px; background: var(--amber); color: #fff; font-family: var(--mono); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.offer-card h2 { font-size: 1.5rem; font-weight: 600; }
.offer-card .deal { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--moss); line-height: 1.6; }
.offer-card .foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px dashed var(--linen); }
.offer-card .price { font-family: var(--heading); font-size: 2.25rem; font-weight: 700; color: var(--forest); }
.badge-mint { padding: 0.375rem 0.875rem; border-radius: 999px; background: var(--mint); color: var(--forest); font-family: var(--mono); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.cta-banner { display: grid; overflow: hidden; margin-top: 3.5rem; border-radius: 2rem; background: var(--forest-deep); color: var(--cream); align-items: center; }
@media (min-width: 1024px) { .cta-banner { grid-template-columns: 1fr 1fr; } }
.cta-banner .copy { padding: 2rem; }
@media (min-width: 1024px) { .cta-banner .copy { padding: 3rem; } }
.cta-banner p { max-width: 28rem; font-size: 0.875rem; color: rgba(250,248,245,0.7); line-height: 1.6; }
.cta-banner img { width: 100%; height: 100%; min-height: 16rem; object-fit: cover; }

/* Reviews */
.reviews { position: relative; overflow: hidden; }
.reviews .ghost-word { right: -2.5rem; top: 1.5rem; font-size: 18vw; color: rgba(217, 119, 6, 0.05); }
.rating-box { display: flex; align-items: center; gap: 1rem; padding: 0.875rem 1.25rem; border: 1px solid var(--linen); border-radius: 1rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.rating-box .big { font-family: var(--heading); font-size: 2.25rem; font-weight: 700; color: var(--forest); }
.rating-box .mono { color: var(--moss); font-size: 0.625rem; }
.stars { display: inline-flex; gap: 2px; }
.stars .lucide { width: 1rem; height: 1rem; fill: var(--amber-bright); color: var(--amber-bright); }
.stars .lucide.off { fill: var(--linen); color: var(--linen); }
.review-card { position: relative; display: flex; flex-direction: column; height: 100%; padding: 1.75rem; border: 1px solid var(--linen); border-radius: 2rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(217, 119, 6, 0.1); }
.review-card .quote { position: absolute; right: 1.5rem; top: 1.5rem; width: 2rem; height: 2rem; color: var(--mint); }
.review-card p { flex: 1; margin: 1rem 0 0; line-height: 1.65; }
.review-card .who { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px dashed var(--linen); }
.avatar { display: flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border-radius: 50%; background: var(--forest); color: var(--cream); font-family: var(--heading); font-weight: 700; font-size: 0.875rem; }
.who strong { display: block; font-size: 0.875rem; }
.who small { display: block; font-family: var(--mono); font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--moss); }

/* Visit banner */
.visit { position: relative; overflow: hidden; padding: 5rem 0; }
.visit .ghost-word { left: -4rem; bottom: 0; font-size: 16vw; color: rgba(250,248,245,0.05); }
.visit-inner { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
@media (min-width: 1024px) { .visit-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.visit p { display: flex; align-items: center; gap: 0.5rem; margin: 0.75rem 0 0; color: rgba(250,248,245,0.7); }
.visit p .lucide { color: var(--amber-bright); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Shop page */
.filters { display: flex; gap: 0.5rem; margin-bottom: 3rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.pill { flex-shrink: 0; padding: 0.625rem 1.25rem; border: 1px solid var(--linen); border-radius: 999px; background: #fff; color: var(--moss); font-size: 0.875rem; font-weight: 600; transition: all 0.2s; }
.pill:hover { border-color: var(--forest); color: var(--forest); }
.pill.active { background: var(--forest); border-color: var(--forest); color: var(--cream); box-shadow: 0 4px 12px rgba(31,82,51,0.2); }
.cat-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card { overflow: hidden; border: 1px solid var(--linen); border-radius: 2rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(31,82,51,0.1); }
.cat-card.hidden { display: none; }
.cat-media { position: relative; height: 15rem; overflow: hidden; }
@media (min-width: 640px) { .cat-media { height: 18rem; } }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.cat-card:hover .cat-media img { transform: scale(1.05); }
.cat-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,41,27,0.6), transparent 60%); }
.cat-media .tag { left: 1.25rem; top: 1.25rem; background: var(--amber); color: #fff; z-index: 1; }
.cat-media .num { position: absolute; left: 1.25rem; bottom: 1.25rem; z-index: 1; font-family: var(--mono); font-size: 0.875rem; color: rgba(250,248,245,0.8); }
.cat-body { padding: 1.75rem; }
.cat-title { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.cat-title h2 { font-size: 1.5rem; font-weight: 600; }
.icon-mint { display: flex; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center; border-radius: 1rem; background: var(--mint); color: var(--forest); transition: transform 0.3s; }
.cat-card:hover .icon-mint { transform: scale(1.1); }
.cat-body > p { margin: 0; color: var(--moss); line-height: 1.65; }
.shelf { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--linen); }
.shelf .mono { display: block; margin-bottom: 0.75rem; color: var(--moss); font-size: 0.625rem; font-weight: 600; }
.shelf-items { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.shelf-items span { padding: 0.375rem 0.75rem; border: 1px solid var(--linen); border-radius: 999px; background: var(--cream); font-size: 0.75rem; font-weight: 500; }
.note { margin-top: 3.5rem; padding: 1.5rem; border: 1px dashed rgba(217,119,6,0.5); border-radius: 1rem; background: var(--sand); text-align: center; font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--moss); }

/* Services page */
.service-card { position: relative; display: flex; flex-direction: column; height: 100%; padding: 1.75rem; border: 1px solid var(--linen); border-radius: 2rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(31,82,51,0.1); }
.service-card .head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.service-card .num { font-family: var(--mono); font-size: 0.875rem; color: var(--moss); }
.service-card h2 { font-size: 1.5rem; font-weight: 600; }
.service-card .desc { margin: 0.75rem 0 0; color: var(--moss); line-height: 1.65; }
.service-card .details { margin: 1.25rem 0 0; padding-top: 1.25rem; border-top: 1px dashed var(--linen); font-size: 0.875rem; color: var(--ink); }
.service-card .badge-mint { margin-top: 1.25rem; width: fit-content; }
.steps { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { padding: 1.75rem; border: 1px solid rgba(250,248,245,0.1); border-radius: 1.5rem; background: rgba(250,248,245,0.05); }
.step .big { font-family: var(--heading); font-size: 2.25rem; font-weight: 700; color: var(--amber-bright); }
.step h3 { margin-top: 0.75rem; font-size: 1.125rem; }
.step p { margin: 0.5rem 0 0; font-size: 0.875rem; color: rgba(250,248,245,0.65); line-height: 1.6; }

/* About page */
.about-hero { position: relative; height: 46vh; min-height: 340px; overflow: hidden; }
@media (min-width: 1024px) { .about-hero { height: 58vh; } }
.about-hero img { width: 100%; height: 100%; object-fit: cover; }
.about-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,41,27,0.85), rgba(17,41,27,0.3) 50%, transparent); }
.about-hero .copy { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding-bottom: 2.5rem; color: var(--cream); }
.manifesto-quote { max-width: 42rem; margin: 0 0 3.5rem; font-family: var(--heading); font-size: 1.25rem; font-style: italic; line-height: 1.6; color: var(--forest); }
@media (min-width: 640px) { .manifesto-quote { font-size: 1.5rem; } }
.chapter { display: grid; gap: 1rem; padding: 2.5rem 0; border-top: 1px solid var(--linen); }
@media (min-width: 640px) { .chapter { grid-template-columns: 3fr 9fr; gap: 2rem; } }
.chapter .num { font-family: var(--mono); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.2em; color: var(--amber); }
.chapter h2 { font-size: 1.5rem; font-weight: 600; }
@media (min-width: 640px) { .chapter h2 { font-size: 1.875rem; } }
.chapter p { max-width: 42rem; margin: 0.75rem 0 0; color: var(--moss); line-height: 1.65; }
.portrait { position: relative; }
.portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--linen); border-radius: 2rem; box-shadow: 0 20px 25px -5px rgba(217,119,6,0.1); }
.portrait .sticker { position: absolute; left: 1.5rem; bottom: -1.25rem; padding: 0.75rem 1.25rem; border-radius: 1rem; background: var(--forest-deep); color: var(--cream); font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; box-shadow: 0 10px 20px rgba(0,0,0,0.12); }
.pillars { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
.pillar { padding: 1.25rem; border: 1px solid var(--linen); border-radius: 1rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.pillar:hover { transform: translateY(-4px); box-shadow: 0 6px 16px rgba(0,0,0,0.08); }
.pillar .icon-mint { width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; margin-bottom: 0.75rem; }
.pillar h3 { font-size: 1.125rem; font-weight: 600; }
.pillar p { margin: 0.25rem 0 0; font-size: 0.875rem; color: var(--moss); line-height: 1.6; }

/* Contact page */
.contact-card { display: flex; flex-direction: column; height: 100%; padding: 1.75rem; border: 1px solid var(--linen); border-radius: 2rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); transition: transform 0.3s, box-shadow 0.3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(31,82,51,0.1); }
.contact-card.dark { background: var(--forest-deep); color: var(--cream); border-color: transparent; }
.contact-card .icon-mint { width: 3rem; height: 3rem; margin-bottom: 1.25rem; }
.contact-card.dark .icon-mint { background: rgba(250,248,245,0.1); color: var(--amber-bright); }
.contact-card h2 { font-size: 1.25rem; font-weight: 600; }
.contact-card .desc { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--moss); line-height: 1.6; }
.contact-card.dark .desc { color: rgba(250,248,245,0.7); }
.contact-card .big-link { margin-top: 1rem; font-family: var(--heading); font-size: 1.5rem; font-weight: 700; color: var(--forest); transition: color 0.25s; word-break: break-all; }
.contact-card .big-link.sm { font-size: 1.125rem; }
.contact-card .big-link:hover { color: var(--amber); }
.contact-card .address { margin: 1rem 0 0; font-family: var(--heading); font-size: 1.25rem; font-weight: 700; line-height: 1.35; }
.contact-card .btn { margin-top: 1.5rem; width: fit-content; }
.hours-card { height: 100%; padding: 1.75rem; border: 1px solid var(--linen); border-radius: 2rem; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.hours-card .head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.hours-card .icon-mint { width: 3rem; height: 3rem; }
.hours-card h2 { font-size: 1.25rem; font-weight: 600; }
.hours-card dl { margin: 1.25rem 0 0; }
.hours-card dl div { display: flex; justify-content: space-between; align-items: center; padding: 0.875rem 0; border-top: 1px solid var(--linen); }
.hours-card dl div:first-child { border-top: 0; }
.hours-card dt { margin: 0; font-size: 0.875rem; font-weight: 500; color: var(--moss); }
.hours-card dd { margin: 0; font-family: var(--mono); font-size: 0.875rem; font-weight: 600; }
.status-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.875rem; border-radius: 999px; background: var(--mint); color: var(--forest); font-family: var(--mono); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.status-pill::before { content: ""; width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--forest); }
.status-pill.closed { background: rgba(217,119,6,0.1); color: var(--amber); }
.status-pill.closed::before { background: var(--amber); }
.contact-lower { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 1024px) { .contact-lower { grid-template-columns: 2fr 3fr; } }
.map-box { height: 100%; min-height: 340px; overflow: hidden; border: 1px solid var(--linen); border-radius: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.04); }
.map-box iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--night); color: var(--cream); }
.footer-grid { display: grid; gap: 3rem; padding: 4rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer .brand-mark { background: var(--amber-bright); color: var(--forest-deep); }
.footer .brand-text small { color: var(--amber-bright); }
.footer .about { max-width: 20rem; margin-top: 1rem; font-size: 0.875rem; color: rgba(250,248,245,0.7); line-height: 1.6; }
.footer h3 { margin-bottom: 1rem; font-family: var(--mono); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber-bright); }
.footer ul { list-style: none; margin: 0; padding: 0; font-size: 0.875rem; }
.footer li { margin-bottom: 0.625rem; }
.footer li a, .footer li span { color: rgba(250,248,245,0.75); transition: color 0.2s; }
.footer li a:hover { color: var(--amber-bright); }
.footer .visit-list li { display: flex; align-items: flex-start; gap: 0.625rem; }
.footer .visit-list li a { display: flex; align-items: flex-start; gap: 0.625rem; }
.footer .visit-list + .visit-list { margin-top: 0.625rem; }
.footer .visit-list .lucide { flex-shrink: 0; margin-top: 0.15rem; color: var(--amber-bright); }
.footer .visit-list em { font-style: normal; color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(250,248,245,0.1); }
.footer-bottom .container { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 1.25rem 1.5rem; font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(250,248,245,0.5); }
@media (min-width: 640px) { .footer-bottom .container { flex-direction: row; } }
