@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Raleway:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --black: #111010;
  --charcoal: #1C1C1C;
  --green-deep: #2A5C1B;
  --green-mid: #3B7A26;
  --green-light: #EAF4E5;
  --green-pale: #F2F9EF;
  --gold: #B8964A;
  --cream: #FAF8F3;
  --warm-white: #FDFCFA;
  --gray-light: #F5F3EF;
  --gray-mid: #9A9690;
  --gray-dark: #4A4844;
  --border: rgba(42,92,27,0.15);
  --serif: 'Playfair Display', Georgia, serif;
  --display: 'Cormorant Garamond', serif;
  --sans: 'Raleway', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--warm-white); color: var(--charcoal); font-family: var(--sans); font-weight: 300; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(234,244,229,0.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 76px;
}
.nav-logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-monogram {
  width: 46px; height: 46px; border: 1.5px solid var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  color: var(--green-deep); letter-spacing: -1px; flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-main { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--black); }
.nav-brand-sub { font-size: 8px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green-mid); margin-top: 2px; }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--gray-dark); padding-bottom: 2px;
  border-bottom: 1px solid transparent; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-deep); border-bottom-color: var(--green-deep); }
.nav-cta {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  background: var(--green-deep); color: white; padding: 11px 26px;
  border-radius: 40px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--green-mid); }

/* MOBILE NAV */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { width: 24px; height: 1.5px; background: var(--charcoal); display: block; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 199;
  background: rgba(242,249,239,0.98); backdrop-filter: blur(12px);
  padding: 32px 24px; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; color: var(--charcoal); padding: 16px 0; border-bottom: 1px solid var(--border); display: block; transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; color: var(--green-deep); margin-top: 8px; }
.mobile-menu a:hover { color: var(--green-deep); }

/* PAGE HERO */
.page-hero {
  margin-top: 76px; height: 320px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
  background: var(--green-deep);
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero-content { position: relative; z-index: 2; }
.page-eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.page-hero h1 { font-family: var(--display); font-size: clamp(38px,6vw,68px); font-weight: 300; color: white; line-height: 1.05; }

/* SECTION */
.section { padding: 100px 56px; }
.section-sm { padding: 72px 56px; }
.section-tag {
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 16px; font-weight: 500;
}
.section-tag::before { content: ''; width: 34px; height: 1px; background: var(--green-mid); }
.section-title { font-family: var(--serif); font-size: clamp(26px,3.5vw,46px); font-weight: 400; line-height: 1.15; color: var(--black); }
.section-title em { font-style: italic; color: var(--green-deep); }
.section-subtitle { font-size: 14px; color: var(--gray-mid); line-height: 1.85; max-width: 500px; margin-top: 14px; }
.divider { width: 56px; height: 1px; background: var(--green-mid); margin: 20px 0; }

/* BUTTONS */
.btn { display: inline-block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; padding: 14px 34px; transition: all 0.2s; cursor: pointer; border: none; }
.btn-dark { background: var(--black); color: white; }
.btn-dark:hover { background: var(--green-deep); }
.btn-green { background: var(--green-deep); color: white; border-radius: 40px; }
.btn-green:hover { background: var(--green-mid); }
.btn-outline { border: 1px solid var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: white; }
.btn-white { background: white; color: var(--green-deep); font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; padding: 15px 38px; border-radius: 40px; display: inline-block; transition: all 0.2s; }
.btn-white:hover { background: var(--green-light); }
.btn-text { color: var(--charcoal); display: inline-flex; align-items: center; gap: 10px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.btn-text::after { content: '→'; font-size: 13px; transition: transform 0.2s; }
.btn-text:hover::after { transform: translateX(5px); }

/* TICKER */
.ticker { background: var(--green-deep); padding: 14px 0; overflow: hidden; }
.ticker-inner { display: flex; width: max-content; animation: tick 24s linear infinite; }
.ticker-item { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 0 44px; white-space: nowrap; display: flex; align-items: center; gap: 44px; }
.tick-dot { width: 3px; height: 3px; background: rgba(255,255,255,0.45); border-radius: 50%; display: inline-block; flex-shrink: 0; }
@keyframes tick { 0%{transform:translateX(0)}100%{transform:translateX(-50%)} }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 72px 56px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logo { font-family: var(--serif); font-size: 22px; color: white; margin-bottom: 12px; }
.footer-logo span { color: var(--green-mid); }
.footer-tagline { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.4); max-width: 200px; }
.footer-col-title { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: white; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.28); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* SHARED RESPONSIVE */
@media (max-width: 1024px) { .section, .section-sm { padding: 80px 36px; } nav { padding: 0 36px; } footer { padding: 60px 36px 36px; } .footer-grid { gap: 36px; } }
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { top: 68px; }
  .section, .section-sm { padding: 60px 20px; }
  .page-hero { height: 240px; margin-top: 68px; }
  footer { padding: 52px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ═══════════════ CAROUSEL ═══════════════ */
.carousel-section {
  padding: 80px 0 60px;
  background: var(--cream);
  overflow: hidden;
}
.carousel-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 56px; margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.carousel-controls { display: flex; gap: 10px; }
.car-btn {
  width: 48px; height: 48px; border: 1px solid var(--border);
  background: white; cursor: pointer; font-size: 18px; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; border-radius: 0; font-family: var(--sans);
}
.car-btn:hover { background: var(--green-deep); color: white; border-color: var(--green-deep); }
.car-track-wrap {
  width: 100%; overflow: hidden; padding-left: 56px;
}
.car-track {
  display: flex; gap: 16px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  cursor: grab; padding-right: 56px; padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.car-item {
  flex: 0 0 260px; scroll-snap-align: start;
  position: relative; overflow: hidden;
  text-decoration: none; display: block;
  background: var(--gray-light);
}
.car-item img {
  width: 100%; height: 340px; object-fit: cover;
  display: block; transition: transform .6s ease;
}
.car-item:hover img { transform: scale(1.06); }
.car-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 18px 16px;
  background: linear-gradient(0deg, rgba(17,16,16,.7) 0%, transparent 100%);
  display: flex; flex-direction: column; gap: 3px;
  transform: translateY(6px); opacity: 0; transition: all .3s;
}
.car-item:hover .car-cap { opacity: 1; transform: translateY(0); }
.car-name {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  color: white; line-height: 1.2;
}
.car-tag {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.car-dots {
  display: flex; gap: 8px; justify-content: center;
  padding: 24px 56px 0;
}
.car-dot {
  width: 28px; height: 3px; background: var(--border);
  border: none; cursor: pointer; transition: all .2s; padding: 0;
  border-radius: 0;
}
.car-dot.active { background: var(--green-deep); width: 48px; }
@media (max-width: 768px) {
  .carousel-header { padding: 0 20px; }
  .car-track-wrap { padding-left: 20px; }
  .car-track { padding-right: 20px; gap: 12px; }
  .car-item { flex: 0 0 200px; }
  .car-item img { height: 260px; }
  .car-dots { padding: 20px 20px 0; }
  .car-cap { opacity: 1; transform: translateY(0); }
}
