/* ============================================
   Shilleh — Light modern theme
   Green & gold accents only (no dark sections)
   ============================================ */

:root {
  --forest: #0d3b22;
  --pine: #1a6b3c;
  --leaf: #3a9a4a;
  --logo-green-dark: #0d3b22;
  --logo-green-light: #7db83a;
  --gold: #c9a24d;
  --gold-deep: #9a7a2e;
  --cream: #faf8f4;
  --cream-deep: #f1ede4;
  --ink: #1a241c;
  --ink-muted: #5a655c;
  --white: #ffffff;
  --line: rgba(13, 59, 34, 0.12);
  --line-gold: rgba(201, 162, 77, 0.45);
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 3vw, 2rem);
  --max: 1120px;
  --header-h: 96px;
  --radius: 10px;
  --shadow: 0 8px 28px rgba(26, 36, 28, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 0.4em;
}

.container {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* ---------- Motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(13, 59, 34, 0.18); }
.btn:active { transform: translateY(0); }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn-primary {
  background: var(--gold);
  color: var(--forest);
}
.btn-primary:hover { background: #d4b05c; }
.btn-solid {
  background: var(--forest);
  color: var(--white);
}
.btn-solid:hover { background: var(--pine); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.35);
}
.btn-lg { min-height: 50px; padding: 0.9rem 1.6rem; font-size: 1rem; }

/* ---------- Utility bar ---------- */
.page-home .utility-bar { display: none; }
.utility-bar {
  background: var(--cream-deep);
  color: var(--ink-muted);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.utility-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
  padding: 0.5rem 0;
}
.utility-bar a {
  color: var(--pine);
  font-weight: 700;
}
.utility-bar a:hover { color: var(--gold-deep); }
.utility-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

/* ---------- Header (transparent over hero → solid on scroll) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  background: linear-gradient(180deg, var(--forest) 0%, #0f4227 100%);
  border-bottom-color: var(--gold);
  box-shadow: 0 8px 24px rgba(13, 59, 34, 0.25);
}
body.nav-open .site-header {
  background: linear-gradient(180deg, var(--forest) 0%, #0f4227 100%);
  border-bottom-color: var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.75rem 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 1 auto;
  min-width: 0;
}
.site-header .brand-logo {
  width: 0;
  height: 0;
  opacity: 0;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
  border: 0 solid var(--line-gold);
  padding: 0;
  overflow: hidden;
  pointer-events: none;
  flex-shrink: 0;
  transition: width 0.28s ease, height 0.28s ease, opacity 0.28s ease, padding 0.28s ease, border-width 0.28s ease;
}
.site-header.show-nav-logo .brand-logo {
  width: 78px;
  height: 72px;
  opacity: 1;
  padding: 4px;
  border-width: 1.5px;
  pointer-events: auto;
}
.brand-logo {
  width: 78px;
  height: 72px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--line-gold);
  padding: 4px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-width 0.3s ease, opacity 0.25s ease;
}
.site-header.show-nav-logo .brand-text {
  max-width: 14rem;
  opacity: 1;
  pointer-events: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-footer .brand-name {
  color: #fff;
}
.legal-header .brand-name {
  color: var(--forest);
}
.site-footer .brand-text,
.legal-header .brand-text {
  max-width: none;
  opacity: 1;
  pointer-events: auto;
  overflow: visible;
}
.brand-sub {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-footer .brand-sub {
  color: rgba(255, 255, 255, 0.72);
}
.legal-header .brand-sub {
  color: var(--ink-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(0.85rem, 1.5vw, 1.5rem);
  min-width: 0;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 550;
  font-size: 1.02rem;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (dual video, centered brand) ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 86vh, 860px);
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0a1f14;
  border-bottom: 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0a1f14;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero-video.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, rgba(8, 22, 14, 0.35) 0%, rgba(8, 22, 14, 0.72) 70%, rgba(8, 22, 14, 0.85) 100%),
    linear-gradient(180deg, rgba(8, 22, 14, 0.45) 0%, rgba(8, 22, 14, 0.25) 45%, rgba(8, 22, 14, 0.7) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 2 * var(--space), 36rem);
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 3.5rem) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: clamp(240px, 42vw, 420px);
  height: auto;
  margin: 0 auto 1.15rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
  animation: hero-logo-in 0.9s ease both;
}
@keyframes hero-logo-in {
  from { opacity: 0; transform: translateY(14px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.btn-hero-dark,
.btn-hero-light {
  min-width: 168px;
  border-width: 1.5px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.btn-hero-dark {
  background: var(--logo-green-dark);
  border-color: var(--logo-green-dark);
  color: #fff;
}
.btn-hero-dark:hover {
  background: var(--logo-green-light);
  border-color: var(--logo-green-light);
  color: var(--logo-green-dark);
}
.btn-hero-light {
  background: var(--logo-green-light);
  border-color: var(--logo-green-light);
  color: var(--logo-green-dark);
}
.btn-hero-light:hover {
  background: var(--logo-green-dark);
  border-color: var(--logo-green-dark);
  color: #fff;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.75rem, 8vw, 5.75rem) 0; }
.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.55rem;
}
.section-kicker::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 0.45rem;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.1s;
}
.section-head.center .section-kicker::after { margin-inline: auto; }
.reveal.in .section-kicker::after { transform: scaleX(1); }
.section-head {
  max-width: 540px;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
}
.section-head p {
  margin: 0.55rem 0 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

/* ---------- Products (light) ---------- */
.market { background: var(--white); }
.product-families {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}
.product-family {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-family:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}
.product-family-media { min-height: 180px; overflow: hidden; }
.product-family-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-family:hover .product-family-media img { transform: scale(1.04); }
.product-family-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem;
}
.product-family-copy h3 {
  margin: 0;
  font-size: 1.25rem;
}
.product-family-copy p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.ask-link {
  margin-top: 0.35rem;
  align-self: flex-start;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  color: var(--pine);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.ask-link:hover {
  color: var(--gold-deep);
  border-bottom-color: var(--gold);
}
.market-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}
.market-cta p {
  margin: 0;
  color: var(--ink-muted);
  max-width: 42ch;
}

/* ---------- About ---------- */
.about { background: var(--cream); }
.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.about-year {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--white);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}
.about-year strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--forest);
  line-height: 1;
}
.about-year span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.about-copy p {
  color: var(--ink-muted);
  margin: 0 0 0.9rem;
}
.about-points {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.75rem;
}
.about-points li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.7rem;
  align-items: start;
  font-weight: 500;
}
.about-points li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(58, 154, 74, 0.15);
}

/* ---------- How to shop ---------- */
.convenience { background: var(--white); }
.convenience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.convenience-item {
  padding: 1.5rem 1.35rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.convenience-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}
.convenience-num {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
}
.convenience-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.convenience-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* ---------- Gallery invite ---------- */
.gallery-invite {
  position: relative;
  min-height: 320px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.gallery-invite-bg { position: absolute; inset: 0; }
.gallery-invite-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-invite-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(26, 36, 28, 0.72) 0%, rgba(26, 36, 28, 0.35) 70%);
}
.gallery-invite-inner {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0;
  max-width: 480px;
}
.gallery-invite .section-kicker { color: var(--gold); }
.gallery-invite h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.gallery-invite p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.25rem;
}

/* ---------- Visit / Contact (storefront scene) ---------- */
.visit {
  background: #0c1610;
  padding: 0;
}
.visit-scene {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 78vh, 820px);
  overflow: hidden;
  display: grid;
  align-items: end;
}
.visit-scene-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 1.2s ease;
}
.visit-scene:hover .visit-scene-photo { transform: scale(1.03); }
.visit-scene-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 18, 12, 0.12) 0%, transparent 30%, rgba(8, 18, 12, 0.55) 55%, rgba(8, 18, 12, 0.92) 100%);
  pointer-events: none;
}
.visit-overlay {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--space), 1120px);
  margin: 0 auto;
  padding: 0 0 clamp(1.75rem, 4.5vh, 2.75rem);
}
.visit-overlay-inner {
  display: grid;
  gap: 1.15rem;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  color: #fff;
}
.visit-overlay .section-kicker {
  color: var(--logo-green-light);
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.visit-overlay .section-kicker::after {
  background: var(--logo-green-light);
  transform: scaleX(1);
}
.visit-overlay h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  max-width: 14ch;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 4px 22px rgba(0, 0, 0, 0.45);
}
.visit-intro {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.95);
  max-width: 38ch;
  font-size: 1.02rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 3px 14px rgba(0, 0, 0, 0.4);
}
.visit-overlay-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem 1.25rem;
}
.visit-chip {
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: rgba(6, 14, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.visit-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8c56a;
  margin-bottom: 0.4rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.75);
}
.visit-chip p {
  margin: 0;
  color: #fff;
  font-weight: 650;
  line-height: 1.5;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.visit-chip a {
  color: #fff;
  font-weight: 700;
  font-size: 1.12rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}
.visit-chip a:hover { color: var(--logo-green-light); }
.visit-address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
}
.copy-address {
  min-height: 32px;
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.copy-address:hover,
.copy-address.is-copied {
  border-color: var(--logo-green-light);
  background: rgba(125, 184, 58, 0.25);
  color: #fff;
}
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.visit-map {
  width: 100%;
  margin: 0;
  min-height: 300px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #111;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05) brightness(0.95);
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--cream-deep);
  overflow: hidden;
}
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding-left: max(var(--space), calc((100vw - var(--max)) / 2));
}
.reviews-copy {
  min-width: 0;
}
.reviews .section-head { margin-bottom: 0; }
.reviews .section-head p { max-width: 36ch; }
.reviews .section-head .btn { margin-top: 1.1rem; }
.review-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 92%, transparent);
}
.review-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  will-change: transform;
  animation: review-tape var(--tape-duration, 90s) linear infinite;
}
.review-slideshow:hover .review-track {
  animation-play-state: paused;
}
.review-slide {
  flex: 0 0 min(320px, 78vw);
  width: min(320px, 78vw);
  box-sizing: border-box;
  margin: 0;
  padding: clamp(1.2rem, 2.5vw, 1.7rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
@keyframes review-tape {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-stars {
  display: inline-block;
  color: var(--gold-deep);
  letter-spacing: 0.14em;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}
.review-slide p {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.6;
}
.review-slide cite {
  display: block;
  color: var(--forest);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--forest) 0%, #0f4227 100%);
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2.25rem;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: rgba(255, 255, 255, 0.72); }
.footer-brand p {
  margin: 0.9rem 0 0;
  max-width: 30ch;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.footer-col a,
.footer-col span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201, 162, 77, 0.35); }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.footer-legal-links a { color: rgba(255, 255, 255, 0.72); }
.footer-legal-links a:hover { color: var(--gold); }

/* ---------- Mobile action bar ---------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 0.45rem 0.65rem calc(0.45rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
  box-shadow: 0 -8px 24px rgba(26, 36, 28, 0.08);
}
.mobile-action {
  flex: 1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
}
.mobile-action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.mobile-action-call {
  background: var(--gold);
  color: var(--forest);
}
.mobile-action-dir {
  background: var(--forest);
  color: var(--white);
}

/* ---------- Page banner / Gallery ---------- */
.page-banner {
  padding: clamp(3rem, 7vw, 4.25rem) 0;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-banner h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
}
.page-banner p {
  margin: 0.45rem auto 0;
  max-width: 42ch;
  color: var(--ink-muted);
}

.gallery { background: var(--cream); }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}
.gallery-filter {
  min-height: 40px;
  padding: 0.4rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gallery-filter.is-active,
.gallery-filter:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 0.7rem;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-deep);
  position: relative;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item:nth-child(8),
.gallery-item:nth-child(15) {
  grid-column: span 2;
}
.gallery-item[hidden] { display: none !important; }
.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  text-align: left;
}
.gallery-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-trigger:hover img,
.gallery-trigger:focus-visible img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(transparent, rgba(26, 36, 28, 0.75));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-trigger:hover .gallery-caption,
.gallery-trigger:focus-visible .gallery-caption { opacity: 1; }

.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 36, 28, 0.82);
}
.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  max-height: 88vh;
  display: grid;
  place-items: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  background: var(--gold);
  color: var(--forest);
  font-size: 1.45rem;
  font-weight: 700;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  line-height: 1;
}
.lightbox-close { top: -0.4rem; right: -0.2rem; }
.lightbox-prev { left: 0.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.4rem; top: 50%; transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }

/* ---------- Legal ---------- */
.legal-body { background: var(--cream); }
.legal-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem var(--space);
}
.legal-header nav {
  width: min(100%, 760px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.legal-header .brand-logo {
  width: 44px;
  height: 40px;
}
.legal-header .brand-name { font-size: 1.1rem; }
.legal-header .brand-sub { display: none; }
.legal-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.legal-header .back-link {
  color: var(--pine);
  font-weight: 600;
  font-size: 0.9rem;
}
.legal-header .back-link:hover { color: var(--gold-deep); }
.legal-main {
  width: min(100% - 2 * var(--space), 760px);
  margin: 0 auto;
  padding: 2.75rem 0 4.5rem;
}
.legal-main h1 { font-size: 2rem; }
.legal-main h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  color: var(--pine);
}
.legal-main p,
.legal-main li { color: var(--ink-muted); }
.legal-main ul { padding-left: 1.15rem; list-style: disc; }
.legal-main a { color: var(--pine); font-weight: 600; }
.legal-main address {
  font-style: normal;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.legal-footer {
  background: var(--white);
  color: var(--ink-muted);
  text-align: center;
  padding: 1.1rem;
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  :root { --header-h: 80px; }

  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

  .header-actions { display: none; }
  .nav-toggle { display: flex; }

  /* Logo + name only after scroll (show-nav-logo) */
  .site-header .brand-logo {
    width: 0;
    height: 0;
    opacity: 0;
    padding: 0;
    border-width: 0;
  }
  .site-header.show-nav-logo .brand-logo {
    width: 62px;
    height: 58px;
    opacity: 1;
    padding: 3px;
    border-width: 1.5px;
    pointer-events: auto;
  }
  .site-header .brand-sub { display: none; }
  .site-header.show-nav-logo .brand-text {
    max-width: 10rem;
  }
  .site-header .brand-name { font-size: 1.2rem; }
  .site-header .brand { flex: 1 1 auto; }
  .header-inner {
    padding: 0.45rem 0;
    gap: 0.65rem;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: none;
    width: 100%;
    gap: 0;
    background: linear-gradient(180deg, var(--forest) 0%, #0f4227 100%);
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 12px 28px rgba(8, 22, 14, 0.35);
    padding: 0.35rem var(--space) 0.85rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 101;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .main-nav a {
    color: rgba(255, 255, 255, 0.92) !important;
    text-shadow: none !important;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.05rem;
    font-weight: 600;
  }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .main-nav a:hover,
  .main-nav a.active { color: var(--gold) !important; }

  .mobile-action-bar { display: flex; }

  /* Hero: fit landscape video (16:9), content under it — same width as header */
  .hero {
    display: flex;
    flex-direction: column;
    place-items: stretch;
    min-height: 0;
    height: auto;
    width: 100%;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
    overflow: hidden;
  }
  .hero-video {
    object-fit: cover;
    object-position: center;
  }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(8, 22, 14, 0.35) 0%, rgba(8, 22, 14, 0.15) 55%, rgba(8, 22, 14, 0.55) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.15rem var(--space) calc(1.15rem + 72px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, var(--forest) 0%, #0f4227 100%);
    box-sizing: border-box;
  }
  .hero-logo {
    width: clamp(140px, 42vw, 200px);
    margin-bottom: 0.75rem;
  }
  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 1rem;
    max-width: 32ch;
  }
  .hero-cta {
    gap: 0.55rem;
  }
  .btn-hero-dark,
  .btn-hero-light {
    min-width: 0;
  }
  /* Dark green panel: keep CTAs readable */
  .hero-content .btn-hero-dark {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff;
  }
  .hero-content .btn-hero-dark:hover {
    background: var(--logo-green-light);
    border-color: var(--logo-green-light);
    color: var(--logo-green-dark);
  }
  .hero-content .btn-hero-light {
    background: var(--logo-green-light);
    border-color: var(--logo-green-light);
    color: var(--logo-green-dark);
  }

  .site-header,
  .site-header .header-inner,
  .site-header .container {
    width: 100%;
    max-width: none;
  }
  .site-header .container {
    width: min(100% - 2 * var(--space), var(--max));
    max-width: var(--max);
  }

  .review-slide {
    flex-basis: min(280px, 72vw);
    width: min(280px, 72vw);
  }

  .visit-overlay {
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  }
  .visit-overlay h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    max-width: none;
  }
  .visit-chip {
    background: rgba(6, 14, 10, 0.88);
  }

  .site-footer {
    padding-bottom: 0.5rem;
  }
  .page-banner {
    padding-top: calc(var(--header-h) + 1.75rem);
  }
}

@media (max-width: 980px) {
  .about-layout { grid-template-columns: 1fr; }
  .reviews-layout {
    grid-template-columns: 1fr;
    padding-left: var(--space);
    padding-right: 0;
    gap: 1.35rem;
  }
  .reviews-copy {
    padding-right: var(--space);
  }
  .reviews .section-head h2 {
    font-size: clamp(1.55rem, 6.5vw, 2.1rem);
  }
  .visit-overlay-meta {
    grid-template-columns: 1fr 1fr;
  }
  .visit-chip:last-child {
    grid-column: 1 / -1;
  }
  .visit-scene { min-height: clamp(560px, 90svh, 780px); }
  .visit-scene-photo { object-position: center 35%; }
  .product-families { grid-template-columns: 1fr; }
  .convenience-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(15) {
    grid-column: span 2;
  }
  .product-family { grid-template-columns: 1fr; }
  .product-family-media { min-height: 170px; }
  .utility-bar-inner { justify-content: center; text-align: center; }
  .gallery-filter {
    min-height: 44px;
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 74px; }

  .site-header.show-nav-logo .brand-logo {
    width: 54px;
    height: 50px;
  }
  .site-header .brand-name { font-size: 1.1rem; }

  .hero-cta,
  .visit-actions { flex-direction: column; align-items: stretch; }
  .hero-cta .btn,
  .visit-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .hero-logo {
    width: clamp(120px, 38vw, 170px);
  }
  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
  }
  .hero-content {
    padding-top: 1rem;
    padding-bottom: calc(1rem + 72px + env(safe-area-inset-bottom));
  }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }
  .site-footer .brand-logo {
    width: 64px;
    height: 58px;
  }

  .visit-overlay-meta {
    grid-template-columns: 1fr;
  }
  .visit-chip:last-child {
    grid-column: auto;
  }
  .visit-address {
    flex-direction: column;
    align-items: flex-start;
  }
  .review-slide p {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .btn::after,
  .convenience-item,
  .product-family,
  .section-kicker::after,
  .hero-video,
  .hero-logo,
  .visit-scene-photo,
  .review-track {
    transition: none !important;
    animation: none !important;
  }
  .review-slideshow {
    mask-image: none;
    -webkit-mask-image: none;
    overflow-x: auto;
  }
  .review-track {
    width: auto;
    flex-wrap: nowrap;
  }
  .convenience-item:hover,
  .product-family:hover,
  .btn:hover,
  .visit-scene:hover .visit-scene-photo {
    transform: none;
  }
}

/* ---------- Section polish ---------- */
.today { background: var(--cream); }
.today-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.today-media { position: relative; min-height: 390px; }
.today-media img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.today-media span { position: absolute; left: 1rem; bottom: 1rem; padding: .55rem .8rem; border-radius: 5px; background: var(--white); color: var(--forest); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.today-copy h2 { max-width: 14ch; font-size: clamp(2rem, 4vw, 3.35rem); }
.today-copy p { max-width: 46ch; color: var(--ink-muted); }
.today-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.4rem 0 1.6rem; }
.today-tags span { padding: .42rem .7rem; border: 1px solid var(--line-gold); border-radius: 999px; color: var(--forest); font-size: .8rem; font-weight: 600; }
.text-link { color: var(--pine); font-weight: 700; }
.text-link:hover { color: var(--gold-deep); }

@media (max-width: 900px) {
  .today-layout { grid-template-columns: 1fr; gap: 2rem; }
  .today-media { min-height: 300px; }
  .today-media img { min-height: 300px; max-height: 470px; }
}

