/* ── JANSEN INC. — SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --olive:       #717d1b;
  --olive-mid:   #8a9820;
  --olive-light: #a3b426;
  --olive-faint: #f2f4e6;
  --black:       #0a0a09;
  --ink:         #1c1c1a;
  --charcoal:    #2a2a27;
  --mid:         #5a5a54;
  --dust:        #909086;
  --stone:       #c8c5b8;
  --cream:       #f0ede4;
  --off-white:   #f7f5f0;
  --white:       #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--olive); border-radius: 7px; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--olive-light); }
html { scrollbar-width: auto; scrollbar-color: var(--olive) var(--cream); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 74px;
  transition: all 0.4s ease;
}

nav.solid,
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-logo .logo-light { display: none; filter: brightness(0) invert(1); }
nav.overlay:not(.scrolled) .logo-light { display: block; }
nav.overlay:not(.scrolled) .logo-dark { display: none; }

.nav-center {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-center a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav.overlay:not(.scrolled) .nav-center a { color: rgba(255,255,255,0.75); }
nav.overlay:not(.scrolled) .nav-center a:hover { color: var(--white); }
nav.solid .nav-center a:hover,
nav.scrolled .nav-center a:hover { color: var(--ink); }
.nav-center a.active { color: var(--olive); border-bottom-color: var(--olive); }
nav.overlay:not(.scrolled) .nav-center a.active { color: var(--olive-light); border-bottom-color: var(--olive-light); }

.nav-bid {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--olive);
  border: none;
  padding: 11px 26px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, letter-spacing 0.25s;
}

.nav-bid:hover { background: var(--olive-mid); letter-spacing: 0.22em; }

nav.overlay:not(.scrolled) .nav-bid {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
}

nav.overlay:not(.scrolled) .nav-bid:hover { background: rgba(255,255,255,0.25); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px; height: 24px;
  position: relative;
  z-index: 300;
}

.nav-toggle span {
  display: block;
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s;
}

nav.overlay:not(.scrolled) .nav-toggle span { background: var(--white); }
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  padding: 10px;
  transition: color 0.2s;
}

.mobile-menu a:hover, .mobile-menu a.active { color: var(--olive-light); }

.mobile-menu .menu-close {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  cursor: pointer;
}

/* ── SHARED PRIMITIVES ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--olive);
}

.section-label.center { justify-content: center; }
.section-label.center::after { content: ''; display: block; width: 28px; height: 1px; background: var(--olive); }

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
}

.section-heading em { font-style: italic; color: var(--olive); }
.section-heading.white { color: var(--white); }
.section-heading.white em { color: var(--olive-light); }

.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--olive);
  color: var(--white);
  border: 1px solid var(--olive);
  padding: 14px 36px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-primary:hover { background: var(--olive-mid); border-color: var(--olive-mid); letter-spacing: 0.24em; }

.btn-outline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 36px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-outline:hover { border-color: var(--white); letter-spacing: 0.24em; }

.link-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.link-arrow:hover { gap: 18px; color: var(--olive-mid); }
.link-arrow::after { content: '→'; font-size: 14px; }
.link-arrow.light { color: var(--olive-light); }
.link-arrow.light:hover { color: var(--white); }

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  position: relative;
  height: 46vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,9,0.7) 0%, rgba(10,10,9,0.35) 60%, rgba(10,10,9,0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px 52px;
}

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--white);
}

.page-hero-title em { font-style: italic; color: var(--cream); }

.page-hero-crumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-hero-crumb::before { content: ''; display: block; width: 32px; height: 1px; background: var(--olive-light); }

/* ── MARQUEE ── */
.marquee-band {
  background: var(--olive);
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track { display: flex; white-space: nowrap; animation: marquee 35s linear infinite; }

.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 44px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.marquee-item::after { content: '◆'; font-size: 6px; color: rgba(255,255,255,0.35); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink);
  padding: 88px 72px;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.cta-band h2 em { font-style: italic; color: var(--olive-light); }

.cta-band p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 64px 72px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-brand img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 18px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 18px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--olive-light); }

.footer-addr {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}

.footer-addr a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-addr a:hover { color: var(--olive-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy, .footer-lic { font-size: 11px; color: rgba(255,255,255,0.22); letter-spacing: 0.05em; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10,10,9,0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox img { max-width: 88vw; max-height: 82vh; object-fit: contain; display: block; }

.lb-close {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.lb-close:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 28px;
  cursor: pointer;
  padding: 20px;
  transition: color 0.2s;
}

.lb-nav:hover { color: var(--white); }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

.lb-cap {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  background: rgba(113,125,27,0.8);
  padding: 7px 20px;
}

/* ── RESPONSIVE SHARED ── */
@media (max-width: 960px) {
  nav { padding: 0 28px; }
  .nav-center { display: none; }
  .nav-toggle { display: block; }
  .page-hero-content { padding: 0 36px 40px; }
  .cta-band { padding: 64px 36px; }
  footer { padding: 52px 36px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-logo img { height: 26px; }
  .nav-bid { display: none; }
  .page-hero { height: 38vh; min-height: 280px; }
  .page-hero-content { padding: 0 20px 32px; }
  .cta-band { padding: 56px 20px; }
  footer { padding: 44px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lb-cap { white-space: normal; text-align: center; width: 88%; left: 6%; transform: none; }
}
