/* ---------- Design tokens ---------- */
:root {
  --bg: #faf7f1;
  --bg-alt: #f1e9dc;
  --surface: #ffffff;
  --ink: #241d17;
  --ink-dim: #6f6459;
  --ink-faint: #9c9186;
  --teal: #147880;
  --teal-deep: #0f5b61;
  --terracotta: #a5402b;
  --amber: #d9862a;
  --amber-deep: #b96c1c;
  --line: rgba(36, 29, 23, 0.12);
  --line-strong: rgba(36, 29, 23, 0.2);
  --shadow: 0 24px 48px rgba(36, 29, 23, 0.1);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
address { font-style: normal; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  border: 1px solid transparent;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--terracotta));
  color: #fff;
  box-shadow: 0 14px 28px rgba(165, 64, 43, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(165, 64, 43, 0.36); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-secondary:hover { border-color: #fff; background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn-header-call {
  background: rgba(20, 120, 128, 0.1);
  color: var(--teal-deep);
  border: 1px solid rgba(20, 120, 128, 0.3);
  padding: 0.6rem 1.1rem;
  font-size: 0.92rem;
}
.btn-header-call:hover { background: rgba(20, 120, 128, 0.18); }

/* on-light sections, the outline button should read dark, not white */
.location-actions .btn-secondary,
.why .btn-secondary,
.footer-inner .btn-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}
.location-actions .btn-secondary:hover { border-color: var(--ink); background: rgba(36, 29, 23, 0.05); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: env(safe-area-inset-top, 0px) 0 0;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  transition: padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-scrolled .header-inner { padding-block: 0.85rem; }
.site-header:not(.is-scrolled) { color: #fff; }
.site-header:not(.is-scrolled) .main-nav a { color: rgba(255, 255, 255, 0.82); }
.site-header:not(.is-scrolled) .main-nav a:hover { color: #fff; }
.site-header:not(.is-scrolled) .btn-header-call {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.brand { display: flex; align-items: center; gap: 0.8rem; transition: transform 0.3s var(--ease); }
.brand:hover { transform: translateY(-1px); }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  background: var(--surface);
  border: 1px solid rgba(36, 29, 23, 0.06);
  box-shadow: 0 6px 16px rgba(20, 15, 10, 0.16);
  transition: box-shadow 0.3s var(--ease);
}
.brand:hover .brand-mark { box-shadow: 0 8px 20px rgba(20, 15, 10, 0.22); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.brand-name em { font-style: normal; color: var(--terracotta); }
.site-header:not(.is-scrolled) .brand-name { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25); }
.site-header:not(.is-scrolled) .brand-name em { color: var(--amber); }

.main-nav { display: none; gap: 2rem; }
.main-nav a {
  font-size: 0.92rem;
  color: var(--ink-dim);
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--teal);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }

@media (min-width: 900px) {
  .main-nav { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(6.5rem + env(safe-area-inset-top, 0px)) 1.5rem 5rem;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 15, 10, 0.42) 0%, rgba(20, 15, 10, 0.3) 40%, rgba(15, 11, 8, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 7, 5, 0.7) 0%, rgba(10, 7, 5, 0.1) 65%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero .eyebrow { color: var(--amber); }
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.1rem);
  color: #fff;
  margin-bottom: 1.1rem;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 46ch;
  margin-bottom: 2.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: none;
}
.scroll-cue span {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  background: var(--amber);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; top: 7px; }
  30% { opacity: 1; }
  80% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}
@media (min-width: 700px) { .scroll-cue { display: block; } }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal.is-visible { transition-delay: var(--d, 0s); }
.hero-content .eyebrow.reveal { --d: 0.05s; }
.hero-content h1.reveal { --d: 0.15s; }
.hero-content .hero-sub.reveal { --d: 0.28s; }
.hero-content .hero-actions.reveal { --d: 0.4s; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.trust-figure {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.9rem;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.trust-figure .star { width: 22px; height: 22px; color: var(--amber); }
.trust-label { color: var(--ink-dim); font-size: 0.88rem; max-width: 22ch; }
.trust-divider { display: none; }

@media (min-width: 760px) {
  .trust-inner { flex-direction: row; justify-content: center; align-items: center; gap: 3rem; }
  .trust-divider { display: block; width: 1px; height: 48px; background: var(--line); }
}

/* ---------- Spotlight (award) ---------- */
.spotlight {
  background: var(--bg-alt);
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1fr;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
  align-items: center;
}
@media (min-width: 860px) { .spotlight { grid-template-columns: 0.85fr 1fr; gap: 3.5rem; } }
.spotlight-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1245 / 1600;
  max-width: 380px;
  margin: 0 auto;
}
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 860px) { .spotlight-media { max-width: none; } }
.spotlight-content p:last-child {
  color: var(--ink-dim);
  margin: 1rem 0 0;
  max-width: 48ch;
}
.spotlight-content h2 { font-size: clamp(1.7rem, 3.4vw, 2.2rem); }

/* ---------- Section shell ---------- */
main section:not(.hero) { padding: 5.5rem 1.5rem; }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }

/* ---------- Products ---------- */
.products { background: var(--bg); }
.product-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease);
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(20, 120, 128, 0.35); }
.product-media { aspect-ratio: 4 / 3; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.07); }
.product-card h3 { font-size: 1.15rem; margin: 1.3rem 1.3rem 0.5rem; }
.product-card p { margin: 0 1.3rem 1.4rem; color: var(--ink-dim); font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-alt); }
.gallery-track {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}
@media (min-width: 720px) { .gallery-track { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border: 1px solid var(--line);
}
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- Why ---------- */
.why { background: var(--bg); }
.why-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
  padding: 1.9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.why-card:hover { border-color: rgba(20, 120, 128, 0.35); transform: translateY(-4px); box-shadow: var(--shadow); }
.why-index {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--amber-deep);
  font-size: 0.95rem;
  opacity: 0.9;
}
.why-card h3 { font-size: 1.2rem; margin: 0.6rem 0 0.5rem; }
.why-card p { margin: 0; color: var(--ink-dim); font-size: 0.94rem; }

/* ---------- Location ---------- */
.location {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 900px) { .location { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-details address {
  color: var(--ink-dim);
  margin: 1.1rem 0 1.6rem;
  line-height: 1.7;
}
.hours-list { margin-bottom: 2rem; border-top: 1px solid var(--line); }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-dim);
}
.hours-list li span:first-child { color: var(--ink); font-weight: 500; }
.location-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 241, 0.88);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.6rem; }
.footer-brand .brand-name em { color: var(--amber); }
.site-footer address { color: rgba(250, 247, 241, 0.65); font-size: 0.9rem; }
.site-footer a[href^="tel:"] { color: var(--amber); font-weight: 600; }
.footer-note {
  max-width: 1180px;
  margin: 2rem auto 0;
  color: rgba(250, 247, 241, 0.4);
  font-size: 0.8rem;
}

/* ---------- Mobile persistent CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}
.mobile-cta .btn { flex: 1; padding: 0.85rem 1rem; }
.mobile-cta .btn-secondary { color: var(--ink); border-color: var(--line-strong); background: var(--surface); }
.mobile-cta.is-hidden { transform: translateY(110%); }
body { padding-bottom: 78px; }

@media (min-width: 900px) {
  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
}
