/* ==========================================================
   Cardiff Valero — Beach palette
   ========================================================== */
:root {
  --bg: #f5ecd4;              /* warm sand — sun-bleached, slightly desaturated */
  --bg-2: #efe5c6;             /* deeper sand for alt sections */
  --bg-3: #e9dfb8;             /* darkest sand */
  --surface: #ffffff;          /* card / content surfaces */
  --surface-2: #fafaf6;        /* slightly off-white */
  --ink: #0e2c3d;              /* deep ocean navy — soft near-black, warmer */
  --ink-2: #1a3d54;            /* a touch lighter navy */
  --text-light: #0e2c3d;       /* maps to ink on light bg */
  --text-muted: #4c5766;       /* darkened to meet WCAG AA 4.5:1 on sand */
  --text-light-muted: #4c5766; /* kept name for compat, same value */
  --border-dark: #d5c99a;      /* sand border on light sections */
  --border-light: #d5c99a;
  --accent: #0e2c3d;           /* no loud accent — navy is the "accent" */
  --accent-hover: #1a3d54;
  --hairline: rgba(14,44,61,0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1280px;
  --header-h: 76px;
  --section-pad: 100px;
}
* { box-sizing: border-box; }
*::selection { background: var(--ink); color: var(--bg); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(14,44,61,0.1);
  overflow-x: hidden;
  position: relative;
}
/* Subtle grain texture — SVG noise overlay, barely visible */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.22 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: multiply;
}

/* Italic accents — subtle Inter italic, deeper ink tone — no handwritten cheese */
.hero-title em, .section-intro h2 em, .chapter h2 em,
.feature-text h2 em, .visit h2 em, .story-section h2 em,
.apply-intro h2 em, .admin-title em, .nf-title em, .foot-giant em,
.page-placeholder h1 em, .page-hero h1 em,
.hero-title .hl, .section-intro h2 .hl, .feature-text h2 .hl, .visit h2 .hl,
.page-hero h1 .hl, .page-placeholder h1 .hl, .foot-giant .hl {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: inherit;
  display: inline;
  transform: none;
  padding: 0;
}
.foot-giant em { color: rgba(14,44,61,0.55); }

/* All display headings stay on clean Inter */
.hero-title, .page-hero h1, .section-intro h2,
.chapter h2, .feature-text h2, .visit h2, .story-section h2,
.apply-intro h2, .admin-title, .nf-title,
.foot-giant, .page-placeholder h1 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
p { margin: 0 0 1em; }
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Screen-reader-only helper (for hidden structural headings) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ==========================================================
   REVEAL-ON-SCROLL
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ==========================================================
   PARALLAX HERO BACKGROUND
   ========================================================== */
.hero-visual img, .page-hero {
  will-change: transform;
}
.page-hero {
  background-attachment: scroll;
}

/* ==========================================================
   LIVE OPEN/CLOSED CLOCK (top strip dot reflects real status)
   ========================================================== */
.live-dot.is-closed {
  background: #d9541c;
  box-shadow: 0 0 0 3px rgba(217,84,28,0.25);
}
.ts-status-text[data-status="closed"]::before { content: "Closed · "; }

/* ==========================================================
   PALM DIVIDER (section separator SVG)
   ========================================================== */
.palm-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: var(--bg);
  margin: 0;
}
.palm-divider svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 80px;
  opacity: 0.08;
}
@media (min-width: 720px) {
  .palm-divider { height: 120px; }
  .palm-divider svg { height: 120px; }
}

/* ==========================================================
   GIANT FOOTER WORDMARK + SUNSET GRADIENT
   ========================================================== */
.foot-hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 30%, #8b6b4d 70%, var(--ink) 100%);
  padding: 80px 0 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.foot-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 400px at 50% 100%, rgba(217,84,28,0.25), transparent 70%);
  pointer-events: none;
}
.foot-giant {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: clamp(64px, 14vw, 220px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.foot-giant em {
  font-family: "Inter", -apple-system, sans-serif !important;
  font-style: italic;
  font-weight: 500;
  color: rgba(14,44,61,0.55);
  letter-spacing: -0.04em;
}
.foot-hours-live {
  position: relative;
  z-index: 1;
  color: var(--bg);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 32px 24px 48px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  opacity: 0.85;
}
.foot-hours-live .live-dot { flex-shrink: 0; }

/* ---- Skip link ---- */
.skip {
  position: absolute; top: -48px; left: 16px; z-index: 9999;
  background: #fff; color: var(--ink); padding: 10px 16px;
  font-weight: 600; border-radius: var(--radius-sm);
}
.skip:focus { top: 16px; }

/* ---- Small label ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  /* full opacity — passes 4.5:1 contrast */
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1.5px;
  background: currentColor;
}

/* ---- Marquee ticker (top, kinetic) ---- */
.ticker {
  background: var(--bg-2);
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  padding: 8px 0;
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 30, "SOFT" 100;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.01em;
  font-weight: 500;
  position: relative;
}
.ticker::before, .ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-2), rgba(239,229,198,0));
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-2), rgba(239,229,198,0));
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid var(--hairline);
}
.ticker-track span::before {
  content: "✺";
  color: var(--ink);
  opacity: 0.4;
  margin-right: 14px;
  font-size: 10px;
  font-style: normal;
  font-family: "Inter", sans-serif;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---- Top info strip (above main header) ---- */
.top-strip {
  background: var(--ink);
  color: var(--bg);
  padding: 9px 0;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.top-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
  justify-content: center;
}
.ts-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bg);
}
.ts-sep { color: rgba(245,236,212,0.3); }
.ts-pin { color: var(--bg); opacity: 0.6; font-size: 10px; letter-spacing: 0; }
.ts-link { transition: color .15s; cursor: pointer; }
.ts-link:hover { color: #fff; text-decoration: underline; }
.live-dot {
  width: 7px; height: 7px;
  background: #8cd67b;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(140,214,123,0.25);
  display: inline-block;
  animation: live-pulse 2.2s infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ---- Main header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}
.hdr-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px;
  min-height: var(--header-h);
  max-width: var(--max);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 42px; width: auto; }
.nav {
  display: none;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
/* Desktop: hide mobile-only drawer structure */
.nav-main { display: contents; }
.nav-footer { display: none; }
.nav a {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: -0.005em;
}
.nav a:hover { color: var(--ink-2); background: rgba(14,44,61,0.06); }
.nav a[aria-current="page"] {
  color: var(--ink);
  position: relative;
}
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 5px;
  height: 1.5px;
  background: var(--ink);
}
.nav a .ext { opacity: 0.4; font-size: 11px; }
.hdr-actions { display: flex; gap: 10px; align-items: center; }
.btn-header {
  background: var(--ink);
  color: var(--bg);
  padding: 11px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  transition: background .15s, transform .15s;
  display: none;
  min-height: 42px;
  align-items: center;
}
.btn-header:hover { background: var(--ink-2); transform: translateY(-1px); }
.nav-toggle {
  background: transparent;
  border: 0;
  padding: 10px;
  margin: -10px -10px -10px 0;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; flex-direction: column; gap: 5px; justify-content: center; align-items: center;
  position: relative;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
  border-radius: 1px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

body.nav-open { overflow: hidden; }
body.nav-open .site-header {
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

/* MOBILE DRAWER — full-viewport, premium */
body.nav-open .nav {
  display: flex !important;
  position: fixed !important;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 100vw;
  background: var(--bg);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  z-index: 101;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
  animation: nav-in .22s ease;
}
@keyframes nav-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* Mobile-only: show nav-main as full-width vertical stack */
body.nav-open .nav-main {
  display: flex;
  flex-direction: column;
  padding: 12px 22px 8px;
  width: 100%;
  align-items: stretch;
}
body.nav-open .nav-footer {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px 22px 40px;
  margin-top: 16px;
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  width: 100%;
}

/* Main nav links in drawer (scoped — doesn't hit buttons in footer) */
body.nav-open .nav-main > a {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 500;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  width: 100%;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.02em;
  flex: 0 0 auto;
  background: transparent;
  text-align: left;
}
body.nav-open .nav-main > a::after { display: none; }
body.nav-open .nav-main > a .ext {
  opacity: 0.4;
  font-size: 16px;
  font-weight: 400;
  transform: rotate(-45deg);
  display: inline-block;
}
body.nav-open .nav-main > a:hover { background: transparent; color: var(--ink-2); }
body.nav-open .nav-main > a:last-child { border-bottom: 0; }

/* Footer inside drawer */
.nav-foot-section { display: flex; flex-direction: column; gap: 6px; }
.nav-foot-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-foot-addr {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.nav-foot-hours {
  font-size: 14px;
  color: var(--ink);
  margin: 0;
  line-height: 1.55;
}
.nav-foot-hours strong { font-weight: 600; }
.nav-foot-hours span { color: var(--text-muted); }
.nav-foot-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.nav-foot-actions .btn {
  min-height: 50px;
  font-size: 13px;
  padding: 12px 16px;
  width: 100%;
}
.nav-foot-actions .btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.nav-foot-actions .btn-primary:hover,
.nav-foot-actions .btn-primary:active { background: var(--ink-2); color: var(--bg); }
.nav-foot-actions .btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.nav-foot-actions .btn-ghost:hover,
.nav-foot-actions .btn-ghost:active { background: var(--ink); color: var(--bg); }

/* ---- Button system ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
  min-height: 50px;
  font-family: inherit;
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--bg-2); color: var(--ink); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ink {
  background: var(--ink); color: var(--bg);
}
.btn-ink:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-arrow::after { content: "→"; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---- HERO — asymmetric 50/50, beach-bright ---- */
.hero {
  position: relative;
  background: var(--bg);
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-glow { display: none; }
.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
}
.hero-text { max-width: 640px; }
.hero-text .eyebrow { margin-bottom: 22px; }
.hero-title {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hero-title .hl {
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 50ch;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trust .dot { width: 7px; height: 7px; background: #10b981; border-radius: 50%; box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
.hero-trust-item { display: inline-flex; align-items: center; gap: 8px; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-2);
  box-shadow: 0 30px 60px -20px rgba(14,44,61,0.25);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--ink);
}
.hero-badge-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.7;
}
.hero-badge-text { font-size: 15px; font-weight: 500; line-height: 1.35; }

/* ---- Stats bar ---- */
.stats {
  background: var(--ink);
  color: var(--bg);
  padding: 60px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.stat-num {
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--bg);
  line-height: 0.95;
  margin-bottom: 10px;
  font-feature-settings: "tnum";
}
.stat-num .accent { opacity: 0.6; font-weight: 400; }
.stat-label {
  font-size: 13px;
  color: rgba(245,236,212,0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- Section heading (section intro) ---- */
.section-intro {
  max-width: 720px;
  margin-bottom: 52px;
}
.section-intro .eyebrow { margin-bottom: 18px; }
.section-intro h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  margin: 0 0 18px;
}
.section-intro h2 .hl {
  font-style: italic;
  color: var(--ink);
}
.section-intro p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
}

/* ---- Business cards ---- */
.businesses {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.businesses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.biz-card {
  display: block;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.6,.2,1), box-shadow .25s;
  color: var(--ink);
}
.biz-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(14,44,61,0.18); }
.biz-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-3);
}
.biz-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.biz-card:hover .biz-card-img img { transform: scale(1.04); }
.biz-card-body { padding: 26px 26px 28px; }
.biz-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.65;
}
.biz-card-top .type-tag { color: var(--ink-2); }
.biz-card-top .ext { color: var(--text-muted); }
.biz-card h3 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.1;
}
.biz-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 18px;
  min-height: 3em;
}
.biz-card-meta {
  display: flex;
  gap: 18px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--hairline);
  padding-top: 16px;
  margin-top: 4px;
}
.biz-card-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

/* ---- Feature row (50/50 alternating) ---- */
.feature-row {
  background: var(--surface);
  color: var(--ink);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--hairline);
}
.feature-row.dark {
  background: var(--bg-2);
  color: var(--ink);
  border-top: 1px solid var(--hairline);
}
.feature-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  background: var(--bg-3);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-text .eyebrow { margin-bottom: 18px; }
.feature-text h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 18px;
  color: var(--ink);
}
.feature-text h2 .hl { font-style: italic; color: var(--ink); }
.feature-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 22px;
}
.feature-list {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1px solid var(--hairline);
}
.feature-list li:first-child { border-top: 0; padding-top: 0; }
.feature-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---- On-lot section (Car Wash + El Pueblo) ---- */
.on-lot {
  background: var(--bg-2);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--hairline);
}
.on-lot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.on-lot-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--ink);
  transition: transform .25s, box-shadow .25s;
}
.on-lot-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(14,44,61,0.2); }
.on-lot-img { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-3); }
.on-lot-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.on-lot-card:hover .on-lot-img img { transform: scale(1.04); }
.on-lot-body { padding: 28px 28px 32px; }
.on-lot-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: inline-block;
}
.on-lot-body h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
}
.on-lot-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 18px;
}
.on-lot-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  align-items: center;
}
.on-lot-meta strong { color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }
.on-lot-meta .sep { opacity: 0.4; }
@media (min-width: 760px) {
  .on-lot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Valero grid — 3 columns, even sizing */
@media (min-width: 1024px) {
  .valero-grid.businesses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .valero-grid.businesses-grid .biz-card:first-child,
  .valero-grid.businesses-grid .biz-card:nth-child(4) {
    grid-column: auto;
  }
  .valero-grid.businesses-grid .biz-card:first-child .biz-card-img,
  .valero-grid.businesses-grid .biz-card:nth-child(4) .biz-card-img {
    aspect-ratio: 4/3;
  }
}

/* ---- Visit CTA block ---- */
.visit {
  background: var(--bg);
  color: var(--ink);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--hairline);
}
.visit-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.visit h2 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  line-height: 0.98;
}
.visit h2 .hl { font-style: italic; color: var(--ink); }
.visit-addr {
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-family: "Inter", sans-serif;
}
.visit-hours {
  margin: 0 0 28px;
  border-top: 1px solid var(--hairline);
}
.vh-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}
.vh-name {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.vh-time {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
  flex-shrink: 0;
}
@media (min-width: 560px) {
  .vh-name { font-size: 16px; }
  .vh-time { font-size: 15px; }
}
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.visit-map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--hairline);
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: rgba(245,236,212,0.72);
  padding: 80px 0 28px;
  border-top: 1px solid var(--hairline);
}
.foot-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.foot-brand img { height: 36px; margin-bottom: 16px; background: var(--bg); padding: 8px 12px; border-radius: 6px; }
.foot-tagline { color: rgba(245,236,212,0.72); font-size: 14px; max-width: 32ch; line-height: 1.5; }
.foot-col h4 {
  color: var(--bg);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 14px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a {
  color: rgba(245,236,212,0.72);
  font-size: 14px;
  transition: color .15s;
}
.foot-col a:hover { color: var(--bg); }
.foot-phone {
  color: var(--bg);
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  letter-spacing: -0.01em;
}
.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(245,236,212,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(245,236,212,0.78);
}

/* ==========================================================
   INTERIOR PAGE COMPONENTS
   ========================================================== */

/* ---- Page hero (full-bleed image + overlay text) ---- */
.page-hero {
  position: relative;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  color: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,44,61,0.0) 0%, rgba(14,44,61,0.2) 45%, rgba(14,44,61,0.85) 100%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 160px 24px 56px;
  width: 100%;
}
@media (min-width: 720px) {
  .page-hero { min-height: 58vh; }
  .page-hero-inner { padding: 200px 32px 72px; }
}
.page-hero .eyebrow { color: rgba(245,236,212,0.92); margin-bottom: 16px; }
.page-hero .eyebrow::before { background: rgba(245,236,212,0.9); }
.page-hero .crumb { margin-bottom: 20px; color: rgba(245,236,212,0.75); }
.page-hero .crumb a { color: inherit; border-bottom: 1px solid rgba(245,236,212,0.3); }
.page-hero h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--bg);
  margin: 0 0 18px;
  max-width: 16ch;
}
.page-hero h1 .hl {
  font-style: italic;
  color: var(--bg);
  font-weight: 400;
}
.page-hero .page-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(245,236,212,0.88);
  max-width: 54ch;
  line-height: 1.5;
  margin: 0;
}

/* ---- Two-column intro block ---- */
.page-intro {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.page-intro-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.page-intro-left .eyebrow { margin-bottom: 16px; }
.page-intro-left h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--ink);
}
.page-intro-left h2 em { font-style: italic; font-weight: 400; }
.page-intro-right p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.page-intro-right p strong { color: var(--ink); font-weight: 600; }
@media (min-width: 900px) {
  .page-intro-wrap { grid-template-columns: 1fr 1.1fr; gap: 72px; }
}

/* ---- Category grid (for Liquor, Mart) ---- */
.category-section {
  background: var(--bg-2);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--hairline);
}
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 40px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 26px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.cat-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(14,44,61,0.15); }
.cat-card-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cat-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}
.cat-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 720px) { .category-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- Photo gallery strip ---- */
.gallery {
  background: var(--bg);
  padding: var(--section-pad) 0;
}
.gallery-intro { max-width: 720px; margin: 0 auto 40px; padding: 0 24px; text-align: center; }
.gallery-intro .eyebrow { justify-content: center; display: inline-flex; margin-bottom: 14px; }
.gallery-intro h2 { font-size: clamp(30px, 4.5vw, 44px); font-weight: 500; letter-spacing: -0.03em; margin: 0; color: var(--ink); }
.gallery-intro h2 em { font-style: italic; font-weight: 400; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
}
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-img:hover img { transform: scale(1.04); }
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: 2fr 1fr 1fr; gap: 14px; grid-auto-rows: minmax(280px, auto); }
  .gallery-grid .gallery-img:first-child { grid-row: span 2; aspect-ratio: auto; }
  /* Liquor page: 8-image editorial grid (fills 4×4 exactly) */
  .gallery-grid.liquor-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
  }
  .gallery-grid.liquor-gallery .gallery-img { aspect-ratio: auto; }
  .gallery-grid.liquor-gallery .gallery-img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid.liquor-gallery .gallery-img:nth-child(2) { grid-column: span 2; }
  .gallery-grid.liquor-gallery .gallery-img:nth-child(3) { grid-column: span 2; }
  .gallery-grid.liquor-gallery .gallery-img:nth-child(4) { grid-column: span 2; }
  .gallery-grid.liquor-gallery .gallery-img:nth-child(5) { grid-column: span 2; }
  .gallery-grid.liquor-gallery .gallery-img:nth-child(8) { grid-column: span 4; }
  /* Mart page: 5-image editorial grid (fills 3×3) */
  .gallery-grid.mart-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    grid-auto-flow: dense;
  }
  .gallery-grid.mart-gallery .gallery-img { aspect-ratio: auto; }
  .gallery-grid.mart-gallery .gallery-img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-grid.mart-gallery .gallery-img:nth-child(4) { grid-column: span 2; }
  /* Gas page: 4-image editorial grid (fills 3×2) */
  .gallery-grid.gas-gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
  }
  .gallery-grid.gas-gallery .gallery-img { aspect-ratio: auto; }
  .gallery-grid.gas-gallery .gallery-img:nth-child(1) { grid-column: span 2; }
  .gallery-grid.gas-gallery .gallery-img:nth-child(4) { grid-column: span 2; }
}

/* ---- Propane callout (no image, typographic) ---- */
.propane-callout {
  background: var(--ink);
  color: var(--bg);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.propane-callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 85% 0%, rgba(140,214,123,0.08), transparent 70%),
    radial-gradient(ellipse 500px 400px at 10% 100%, rgba(245,236,212,0.04), transparent 70%);
  pointer-events: none;
}
.propane-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.propane-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--bg);
}
.propane-icon {
  width: 44px;
  height: 56px;
  flex-shrink: 0;
  color: var(--bg);
  opacity: 0.7;
}
.propane-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg);
  opacity: 0.7;
}
.propane-text h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 500;
  color: var(--bg);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 18px;
}
.propane-text h2 em { font-style: italic; font-weight: 400; }
.propane-text p {
  color: rgba(245,236,212,0.78);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 54ch;
}
.propane-price {
  border: 1.5px solid rgba(245,236,212,0.2);
  padding: 22px 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  text-align: left;
  min-height: 120px;
}
.propane-price-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,236,212,0.6);
  font-weight: 600;
}
.propane-price-value {
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: var(--bg);
  line-height: 1;
  margin: 4px 0;
}
.propane-price-note { font-size: 11.5px; color: rgba(245,236,212,0.55); font-weight: 500; }
.propane-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(245,236,212,0.12);
}
.propane-services li {
  padding: 20px 16px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(245,236,212,0.12);
}
.propane-services li:nth-child(odd) { padding-right: 16px; }
.propane-services li:nth-child(even) { padding-left: 16px; border-left: 1px solid rgba(245,236,212,0.12); }
.propane-services li strong {
  color: var(--bg);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.propane-services li span { color: rgba(245,236,212,0.6); font-size: 13px; }

@media (min-width: 900px) {
  .propane-wrap {
    grid-template-columns: auto 1.6fr auto;
    column-gap: 48px;
    align-items: end;
  }
  .propane-services {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 24px;
  }
  .propane-services li { padding: 22px 20px; border-left: 1px solid rgba(245,236,212,0.12) !important; border-bottom: 0; }
  .propane-services li:first-child { border-left: 0 !important; padding-left: 0; }
}

/* ---- Info panel (for gas/mart/liquor quick facts) ---- */
.info-panel {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin-top: 28px;
}
.info-panel h3 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 16px;
}
.info-panel-rows {
  display: grid;
  gap: 14px;
}
.info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  font-size: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row dt { color: var(--text-muted); font-size: 13px; }
.info-row dd { margin: 0; color: var(--ink); font-weight: 500; }
.info-row dd strong { font-family: "Inter", sans-serif; font-weight: 600; }

/* ---- 21+ notice ---- */
.age-notice {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.age-notice::before {
  content: "21+";
  background: var(--bg);
  color: var(--ink);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0;
}

/* ---- Apply form ---- */
.apply-section {
  background: var(--bg);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--hairline);
}
.apply-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.apply-intro { max-width: 560px; }
.apply-intro .eyebrow { margin-bottom: 16px; }
.apply-intro h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 18px;
  color: var(--ink);
}
.apply-intro h2 em { font-style: italic; font-weight: 400; }
.apply-intro p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.apply-form {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.req { color: var(--ink); font-weight: 700; }
.optional { font-weight: 400; color: var(--text-muted); letter-spacing: 0.04em; text-transform: none; }
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--hairline);
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
  min-height: 48px;
  line-height: 1.3;
}
.apply-form textarea { resize: vertical; min-height: 100px; }
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: 0;
  border-color: var(--ink);
  background: #fff;
}
.apply-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230e2c3d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.file-field input[type="file"] {
  padding: 12px 14px;
  background: var(--paper);
  border: 1.5px dashed var(--hairline);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  min-height: 48px;
}
.file-field input[type="file"]:hover { border-color: var(--ink); background: #fff; }
.file-field input[type="file"]::file-selector-button {
  border: 0;
  padding: 8px 14px;
  margin-right: 12px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.honey {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  margin-top: 8px;
}
.form-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}
.form-error {
  margin-top: 4px;
  padding: 14px 18px;
  background: #fdeeea;
  border: 1px solid #d9c2b7;
  border-radius: var(--radius-sm);
  color: #7a2a18;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 900px) {
  .apply-wrap { grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
  .form-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Jobs list ---- */
.jobs-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 40px auto 0;
}
.job-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.job-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
  flex-wrap: wrap;
  align-items: baseline;
}
.job-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.job-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.job-pay {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 4px 0 14px;
}
.job-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 16px;
}
.job-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}
.job-benefits li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.job-benefits li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 1.5px;
  background: var(--ink);
}

/* ---- Apply section alignment ---- */
.apply-section .wrap { max-width: 920px; }
.apply-section .apply-intro { max-width: none; }

/* ---- Long application form ---- */
.apply-form-long {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 0;
  width: 100%;
  margin: 0 auto;
}
.form-section {
  border: 0;
  border-top: 1px solid var(--hairline);
  padding: 32px 28px;
  margin: 0;
}
.form-section:first-of-type { border-top: 0; }
.form-section-legend {
  font-family: "Inter", sans-serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.form-section-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  padding: 5px 9px;
  background: var(--bg-2);
  border-radius: 4px;
  min-width: 36px;
  text-align: center;
}
.form-section-note {
  font-size: 14px;
  color: var(--text-muted);
  margin: -8px 0 20px;
}

.form-grid-2,
.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.emp-block {
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--hairline);
  margin-bottom: 20px;
}
.emp-block:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.emp-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.apply-form-long input[type="text"],
.apply-form-long input[type="email"],
.apply-form-long input[type="tel"],
.apply-form-long input[type="date"],
.apply-form-long select,
.apply-form-long textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--hairline);
  background: var(--paper);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, background .15s;
  min-height: 46px;
  line-height: 1.3;
}
.apply-form-long textarea { resize: vertical; min-height: 80px; }
.apply-form-long input:focus,
.apply-form-long select:focus,
.apply-form-long textarea:focus {
  outline: 0;
  border-color: var(--ink);
  background: #fff;
}
.apply-form-long select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230e2c3d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.radio-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--hairline);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
}
.radio-opt:hover { border-color: var(--ink); }
.radio-opt input[type="radio"] { accent-color: var(--ink); margin: 0; }
.radio-opt:has(input:checked) { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font-size: 14px;
  line-height: 1.55;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.check-row:hover { border-color: var(--ink); background: #fff; }
.check-row input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--ink);
}
.check-row span { color: var(--ink); }

.hint {
  display: block;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.form-submit-bar {
  padding: 28px;
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  justify-content: space-between;
}

@media (min-width: 720px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
  .form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .form-span-2 { grid-column: span 2; }
  .form-section { padding: 40px 36px; }
  .form-submit-bar { padding: 28px 36px; flex-wrap: wrap; }
}

/* ---- Mobile polish pass ---- */
@media (max-width: 640px) {
  /* Ticker — tighter on mobile */
  .ticker { padding: 6px 0; font-size: 12.5px; }
  .ticker-track span { padding: 0 18px; }
  .ticker-track { animation-duration: 40s; }
  .ticker::before, .ticker::after { width: 24px; }

  /* Top strip — keep single row, compact */
  .top-strip { padding: 7px 0; font-size: 11px; }
  .top-strip-inner { padding: 0 12px; gap: 8px; }

  /* Hero */
  .hero { padding: 40px 0 60px; }
  .hero-wrap { gap: 28px; padding: 0 18px; }
  .hero-text { max-width: 100%; }
  .hero-title { font-size: clamp(38px, 10vw, 52px); line-height: 1.05; }
  .hero-sub { font-size: 15.5px; max-width: 100%; }
  .hero-ctas { gap: 8px; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-trust { font-size: 12px; gap: 12px; }
  .hero-visual { aspect-ratio: 4/4; border-radius: var(--radius); }
  .hero-badge { bottom: 12px; left: 12px; right: 12px; padding: 12px 14px; }
  .hero-badge-text { font-size: 13.5px; }
  .hero-badge-label { font-size: 9px; letter-spacing: 0.12em; }

  /* Stats */
  .stats { padding: 40px 0; }
  .stats-grid { gap: 24px 16px; }

  /* Section intros */
  .businesses { padding: 50px 0; }
  .section-intro { margin-bottom: 28px; }
  .section-intro h2 { font-size: clamp(28px, 8vw, 40px); }
  .section-intro p { font-size: 15px; }

  /* Business card grid */
  .businesses-grid { gap: 12px; }
  .biz-card-body { padding: 20px; }
  .biz-card h3 { font-size: 22px; }
  .biz-card p { font-size: 14px; min-height: 0; }
  .biz-card-meta { gap: 14px; padding-top: 14px; }

  /* Feature rows */
  .feature-row { padding: 50px 0; }
  .feature-wrap { gap: 24px; padding: 0 18px; }
  .feature-text h2 { font-size: clamp(28px, 7vw, 36px); }
  .feature-text p { font-size: 15.5px; }
  .feature-list li { font-size: 14.5px; }

  /* On-lot */
  .on-lot { padding: 50px 0; }
  .on-lot-grid { gap: 12px; }
  .on-lot-body { padding: 22px 22px 24px; }
  .on-lot-body h3 { font-size: 22px; }
  .on-lot-body p { font-size: 14.5px; }

  /* Visit */
  .visit { padding: 50px 0; }
  .visit-wrap { padding: 0 18px; gap: 24px; }
  .visit h2 { font-size: clamp(36px, 10vw, 56px); }
  .visit-addr { font-size: 18px; margin-bottom: 18px; }
  .visit-map { aspect-ratio: 1/1; border-radius: var(--radius); }

  /* Foot hero wordmark */
  .foot-hero { padding: 48px 0 0; }
  .foot-giant {
    font-size: clamp(42px, 13vw, 80px);
    padding: 0 18px;
  }
  .foot-giant em { font-size: 1.05em; }
  .foot-hours-live { font-size: 11px; padding: 24px 18px 32px; letter-spacing: 0.12em; }

  /* Site footer */
  .site-footer { padding: 48px 0 24px; }
  .foot-wrap { padding: 0 18px; gap: 28px; padding-bottom: 28px; }
  .foot-brand img { height: 32px; }
  .foot-col h4 { margin-bottom: 10px; }
  .foot-col li { margin-bottom: 8px; }
  .foot-bottom { padding: 20px 18px 0; font-size: 11px; }

  /* Page hero (interior) — tighter on mobile */
  .page-hero { min-height: 46vh; }
  .page-hero-inner { padding: 100px 18px 40px; }
  .page-hero h1 { font-size: clamp(38px, 11vw, 56px); line-height: 1.02; }
  .page-hero .page-sub { font-size: 15.5px; }

  /* Page intro blocks */
  .page-intro { padding: 50px 0; }
  .page-intro-wrap { padding: 0 18px; gap: 24px; }
  .page-intro-left h2 { font-size: clamp(28px, 7vw, 40px); }
  .page-intro-right p { font-size: 15.5px; }
  .page-intro-right .info-panel { padding: 22px 20px; }

  /* Category grid */
  .category-section { padding: 50px 0; }
  .category-grid { gap: 10px; }
  .cat-card { padding: 22px 20px; }
  .cat-card h3 { font-size: 20px; }
  .cat-card p { font-size: 14px; }

  /* Gallery */
  .gallery { padding: 50px 0; }
  .gallery-intro { margin-bottom: 28px; padding: 0 18px; }
  .gallery-intro h2 { font-size: clamp(26px, 7vw, 34px); }
  .gallery-grid { gap: 8px; padding: 0 12px; }
  .gallery-img { border-radius: var(--radius-sm); }

  /* Propane callout — cleaner stack */
  .propane-callout { padding: 50px 0; }
  .propane-wrap { padding: 0 18px; gap: 24px; }
  .propane-text h2 { font-size: clamp(30px, 8vw, 44px); }
  .propane-text p { font-size: 15.5px; }
  .propane-price { padding: 18px 20px; min-height: 0; }
  .propane-price-value { font-size: 36px; }
  .propane-services { grid-template-columns: 1fr; }
  .propane-services li { padding: 16px 0 !important; border-left: 0 !important; }
  .propane-services li:first-child { padding-top: 0 !important; border-top: 1px solid rgba(245,236,212,0.12); }
  /* Apply form on very small screens */
  .apply-form-long { border-radius: var(--radius); }
  .form-section { padding: 24px 18px; }
  .form-section-legend { font-size: 18px; margin-bottom: 16px; }
  .form-section-num { font-size: 10px; padding: 4px 7px; min-width: 32px; }
  .form-submit-bar { padding: 20px 18px; flex-direction: column; align-items: stretch; gap: 12px; }
  .form-submit-bar .btn { width: 100%; }
  .form-submit-bar .form-note { text-align: center; order: 2; }
  .check-row { padding: 12px 14px; font-size: 13.5px; }
  .radio-opt { font-size: 13.5px; padding: 10px 14px; }
  /* Form field hints */
  .hint { font-size: 12px; }
  /* Emp blocks breathing room */
  .emp-block { padding-bottom: 18px; margin-bottom: 18px; }

  /* Legal pages */
  .page-placeholder { padding: 40px 0 80px; }
  .page-placeholder h2 { font-size: 20px; margin-top: 32px; padding-top: 20px; }
  .page-placeholder p { font-size: 15.5px; }
  .page-placeholder ul li { font-size: 14.5px; padding-left: 20px; }

  /* 404 */
  .not-found { padding: 60px 20px 40px; }
  .not-found::before { font-size: 240px; }
  .nf-links { grid-template-columns: 1fr; }

  /* Visit block on mobile — single column, address big */
  .vh-row { padding: 14px 0; }
  .vh-name { font-size: 14.5px; }
  .vh-time { font-size: 13.5px; }

  /* Stats band — tighter */
  .stat-num { font-size: clamp(36px, 10vw, 54px); }
  .stat-label { font-size: 11.5px; }

  /* Footer */
  .footer-phone, .foot-phone { font-size: 18px; }
}

/* ==========================================================
   COOKIE BANNER
   ========================================================== */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(14,44,61,0.25);
  display: none;
  gap: 18px;
  align-items: center;
  flex-direction: column;
  max-width: 640px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
  animation: cookie-in .3s ease;
}
@keyframes cookie-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: rgba(245,236,212,0.9); }
.cookie-banner a { color: var(--bg); text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  background: var(--bg);
  color: var(--ink);
  border: 0;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  min-height: 42px;
  transition: background .15s;
}
.cookie-btn:hover { background: rgba(245,236,212,0.85); }
.cookie-btn.secondary {
  background: transparent;
  color: var(--bg);
  border: 1.5px solid rgba(245,236,212,0.3);
}
.cookie-btn.secondary:hover { background: rgba(245,236,212,0.08); border-color: rgba(245,236,212,0.6); }

@media (min-width: 720px) {
  .cookie-banner { flex-direction: row; padding: 20px 26px; }
}

/* ---- Breadcrumb ---- */
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--bg);
  opacity: 0.7;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.crumb a { color: inherit; border-bottom: 1px solid rgba(245,236,212,0.3); padding-bottom: 1px; }
.crumb a:hover { opacity: 1; border-color: var(--bg); }

/* ---- Legal pages ---- */
.page-placeholder {
  background: var(--bg);
  min-height: 60vh;
  padding: 60px 0 100px;
  color: var(--ink);
}
.page-placeholder .wrap { max-width: 780px; }
.page-placeholder .eyebrow { margin-bottom: 18px; }
.page-placeholder h1 {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
  line-height: 1.0;
}
.page-placeholder h1 .hl { font-style: italic; color: var(--ink); }
.page-placeholder h2 {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
  color: var(--ink);
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.page-placeholder h2:first-of-type { margin-top: 32px; }
.page-placeholder p {
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 64ch;
}
.page-placeholder p.legal-updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
}
.page-placeholder p.legal-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}
.page-placeholder ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  max-width: 64ch;
}
.page-placeholder ul li {
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--hairline);
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.55;
  position: relative;
}
.page-placeholder ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 20px;
  width: 12px; height: 1.5px;
  background: var(--ink);
}
.page-placeholder ul li:last-child { border-bottom: 0; }
.page-placeholder a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(14,44,61,0.3);
  transition: text-decoration-color .15s;
}
.page-placeholder a:hover { text-decoration-color: var(--ink); }
.page-placeholder strong { font-weight: 600; }

/* Compact top strip on small screens */
@media (max-width: 640px) {
  .top-strip { padding: 7px 0; font-size: 11px; }
  .top-strip-inner { padding: 0 12px; gap: 8px; }
  .top-strip-inner .ts-item:first-child { display: none; }
  .top-strip-inner .ts-sep:first-of-type { display: none; }
}

/* ==========================================================
   TABLET (≥ 760px)
   ========================================================== */
@media (min-width: 760px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .businesses-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature-wrap { grid-template-columns: 1fr 1fr; gap: 56px; }
  .feature-row:nth-of-type(even) .feature-wrap .feature-img { order: 1; }
  .feature-row:nth-of-type(even) .feature-wrap .feature-text { order: 2; }
  .visit-wrap { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
  .foot-wrap { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* ==========================================================
   DESKTOP (≥ 1024px)
   ========================================================== */
@media (min-width: 1024px) {
  :root { --section-pad: 120px; }
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .btn-header { display: inline-flex; }
  .hero { padding: 100px 0 140px; }
  .hero-wrap { grid-template-columns: 1.15fr 1fr; gap: 72px; }
  .hero-visual { aspect-ratio: 4/5; }
  .businesses-grid { grid-template-columns: repeat(3, 1fr); }
  .businesses-grid .biz-card:first-child,
  .businesses-grid .biz-card:nth-child(4) { grid-column: span 2; }
  .businesses-grid .biz-card:first-child .biz-card-img,
  .businesses-grid .biz-card:nth-child(4) .biz-card-img { aspect-ratio: 16/9; }
}

/* ==========================================================
   Reduced motion
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
