/* ================================================
   PLANTS HUB & LANDSCAPES
   Aesthetic: Editorial Luxury + Organic Natural
   Fonts: Cormorant Garamond + Outfit
   ================================================ */

:root {
  --bg-deep: #0a1a0c;
  --bg-card: #0f2712;
  --bg-elevated: #1a3a1f;
  --cream: #f5eed8;
  --cream-muted: #b8b09a;
  --sage: #c8a96e;
  --sage-dim: #2d5a33;
  --copper: #c8a96e;
  --copper-glow: #d4b87e;
  --green-accent: #c8a96e;
  --white: #f5eed8;
  --mono-dark: #1c1c1c;
  --border: rgba(245, 238, 216, 0.08);
  --border-hover: rgba(245, 238, 216, 0.15);
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg-elevated);
  color: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.3s;
}
input:focus, select:focus, textarea:focus { border-color: var(--sage); }
input::placeholder, textarea::placeholder { color: var(--cream-muted); opacity: 0.4; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b8b09a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
select option { background: var(--bg-deep); color: var(--cream); }
label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream-muted); margin-bottom: 6px; font-weight: 500; }
.optional { opacity: 0.4; text-transform: none; letter-spacing: 0; }

.section-container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 80px);
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10, 26, 12, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: block;
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.logo-text { font-size: 0.9rem; line-height: 1.2; font-weight: 500; }
.logo-sub { font-size: 0.72rem; color: var(--cream-muted); font-weight: 400; letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 0.85rem; font-weight: 400; letter-spacing: 0.03em; color: var(--cream-muted); transition: color 0.3s; }
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  background: var(--sage-dim) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 500 !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover { background: var(--sage) !important; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--cream); transition: all 0.3s; border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 26, 12, 0.97);
  backdrop-filter: blur(30px);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.4rem; font-family: var(--font-display); font-weight: 400; color: var(--cream-muted); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--cream); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-gradient {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(to top, var(--bg-deep) 0%, rgba(10,26,12,0.7) 40%, rgba(10,26,12,0.2) 70%, rgba(10,26,12,0.4) 100%),
    linear-gradient(135deg, rgba(10,26,12,0.5) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 clamp(20px, 5vw, 80px) clamp(60px, 10vh, 120px);
  max-width: 900px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}
.hero-line { width: 40px; height: 1px; background: var(--sage); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title-line {
  display: block;
  opacity: 0; transform: translateY(40px);
  animation: fadeUp 1s var(--ease-out) forwards;
}
.hero-title-line[data-delay="0"] { animation-delay: 0.5s; }
.hero-title-line[data-delay="1"] { animation-delay: 0.7s; }
.hero-title-line[data-delay="2"] { animation-delay: 0.9s; }
.hero-title-accent {
  color: var(--sage);
  font-style: italic;
  font-weight: 400;
}
.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--cream-muted);
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 1.3s forwards;
}
.hero-stats {
  display: flex; align-items: center; gap: 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 1.5s forwards;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border-hover); }
.hero-scroll {
  position: absolute; right: clamp(20px, 5vw, 80px); bottom: 40px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cream-muted);
  opacity: 0; animation: fadeIn 1s var(--ease-out) 2s forwards;
}
.hero-scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--sage), transparent); animation: scrollPulse 2s ease infinite; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sage-dim);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sage), var(--green-accent));
  opacity: 0; transition: opacity 0.35s;
  border-radius: inherit;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45, 90, 51, 0.3); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { transition: transform 0.35s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-primary-light { background: var(--cream); color: var(--bg-deep); }
.btn-primary-light::before { background: linear-gradient(135deg, var(--white), var(--cream)); }
.btn-primary-light:hover { box-shadow: 0 8px 30px rgba(245, 238, 216, 0.2); }

.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  font-size: 0.9rem; font-weight: 400;
  color: var(--cream-muted);
  transition: all 0.35s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--sage-dim); color: var(--cream); background: rgba(45, 90, 51, 0.08); }

/* ============ SECTION COMMON ============ */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--sage); font-weight: 500;
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; width: 8px; height: 8px;
  background: var(--sage-dim); border-radius: 50%;
}
.section-eyebrow-light { color: var(--cream); }
.section-eyebrow-light::before { background: var(--copper); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-desc { font-size: 1rem; color: var(--cream-muted); max-width: 520px; line-height: 1.7; }

/* ============ WHOLESALE ============ */
.wholesale { padding: clamp(80px, 12vh, 160px) 0; }
.wholesale-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.wholesale-features { display: flex; flex-direction: column; gap: 28px; margin: 40px 0; }
.feature { display: flex; gap: 18px; }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--sage);
}
.feature h4 { font-size: 0.95rem; font-weight: 500; margin-bottom: 4px; }
.feature p { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.6; }
.wholesale-images { position: relative; height: 580px; }
.w-img {
  position: absolute; overflow: hidden; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.5s var(--ease-out);
}
.w-img:hover { transform: scale(1.02) rotate(-0.5deg); }
.w-img img { width: 100%; height: 100%; object-fit: cover; }
.w-img-1 { top: 0; left: 10%; width: 55%; height: 60%; z-index: 2; }
.w-img-2 { top: 20%; right: 0; width: 45%; height: 50%; z-index: 1; }
.w-img-3 { bottom: 0; left: 0; width: 40%; height: 40%; z-index: 3; }

@media (max-width: 900px) {
  .wholesale-grid { grid-template-columns: 1fr; }
  .wholesale-images { height: 400px; margin-top: 20px; }
}

/* ============ MARQUEE ============ */
.marquee-strip {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}
.marquee-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marqueeScroll 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream-muted);
  letter-spacing: 0.02em;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage-dim); flex-shrink: 0; }

/* ============ CATALOGUE ============ */
.catalogue { padding: clamp(80px, 12vh, 160px) 0; }
.catalogue-header { text-align: center; margin-bottom: clamp(40px, 6vh, 72px); }
.catalogue-header .section-eyebrow { justify-content: center; }
.catalogue-header .section-title { margin-left: auto; margin-right: auto; }
.catalogue-desc { max-width: 560px; margin: 0 auto; }
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.cat-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.cat-card-featured { grid-column: span 2; grid-row: span 2; }
.cat-card-featured .cat-img { height: 100%; min-height: 360px; }
.cat-img { height: 200px; overflow: hidden; position: relative; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-info { padding: 24px; }
.cat-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.cat-card-featured .cat-info h3 { font-size: 1.8rem; }
.cat-info p { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.6; margin-bottom: 16px; }
.cat-meta { display: flex; gap: 16px; }
.cat-meta span {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--sage); font-weight: 500;
  background: rgba(200, 169, 110, 0.12);
  padding: 5px 10px; border-radius: 4px;
}

@media (max-width: 900px) {
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card-featured { grid-column: span 2; grid-row: span 1; }
  .cat-card-featured .cat-img { min-height: 240px; }
}
@media (max-width: 580px) {
  .catalogue-grid { grid-template-columns: 1fr; }
  .cat-card-featured { grid-column: span 1; }
}

/* ============ LANDSCAPING ============ */
.land-intro {
  position: relative;
  height: 90vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.land-intro-bg { position: absolute; inset: 0; }
.land-intro-bg img { width: 100%; height: 100%; object-fit: cover; }
.land-intro-grain {
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.land-intro-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(ellipse at center, rgba(10,26,12,0.5) 0%, rgba(10,26,12,0.85) 100%);
}
.land-intro-content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 780px;
  padding: 0 20px;
}
.land-intro-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.land-intro-title em { color: var(--copper-glow); }
.land-intro-desc { font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--cream-muted); line-height: 1.8; max-width: 600px; margin: 0 auto; }
.land-body { padding: clamp(60px, 10vh, 120px) 0; }

/* Philosophy */
.land-philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(60px, 10vh, 120px);
}
.land-phil-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
}
.land-phil-text p { color: var(--cream-muted); margin-bottom: 16px; line-height: 1.8; font-size: 1rem; }
.land-phil-image { position: relative; border-radius: 16px; overflow: hidden; }
.land-phil-image img { border-radius: 16px; }
.land-phil-caption {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(10,26,12,0.6);
  backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: 6px;
}

@media (max-width: 768px) {
  .land-philosophy { grid-template-columns: 1fr; }
}

/* Services */
.land-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: clamp(60px, 10vh, 120px);
}
.land-service {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
}
.land-service:hover { border-color: var(--copper); transform: translateY(-4px); background: var(--bg-elevated); }
.land-service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--copper);
  opacity: 0.6;
  margin-bottom: 16px;
}
.land-service h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.land-service p { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.7; }

@media (max-width: 900px) { .land-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .land-services { grid-template-columns: 1fr; } }

/* Gallery */
.land-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(60px, 10vh, 120px);
}
.land-gal-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}
.land-gal-wide { grid-column: span 2; }
.land-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.land-gal-item:hover img { transform: scale(1.08); }
.land-gal-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(10,26,12,0.5);
  backdrop-filter: blur(10px);
  padding: 6px 14px; border-radius: 4px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.35s var(--ease-out);
}
.land-gal-item:hover .land-gal-label { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .land-gallery { grid-template-columns: repeat(2, 1fr); }
  .land-gal-wide { grid-column: span 2; }
  .land-gal-item { height: 220px; }
}
@media (max-width: 480px) {
  .land-gallery { grid-template-columns: 1fr; }
  .land-gal-wide { grid-column: span 1; }
}

/* Land CTA */
.land-cta { text-align: center; padding: clamp(40px, 6vh, 80px) 0; }
.land-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: 16px;
}
.land-cta p { color: var(--cream-muted); max-width: 520px; margin: 0 auto 32px; line-height: 1.7; }

/* ============ ABOUT ============ */
.about {
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-body p {
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-body p:first-child {
  color: var(--cream);
  font-size: 1.05rem;
}
.about-location {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.about-location svg {
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-location strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.about-location p {
  font-size: 0.85rem;
  color: var(--cream-muted);
  line-height: 1.5;
  margin: 0;
}
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  border-radius: 16px;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 90px;
  height: 90px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.about-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.about-map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}
.about-map-link {
  display: block;
  padding: 12px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--sage);
  border-top: 1px solid var(--border);
  transition: color 0.25s, background 0.25s;
}
.about-map-link:hover { color: var(--cream); background: rgba(255,255,255,0.02); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { margin-top: 20px; }
  .about-map iframe { aspect-ratio: 4 / 3; }
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  padding: clamp(40px, 6vh, 80px) 0 32px;
  background: var(--bg-card);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: 48px;
}
.footer-brand .logo-mark { margin-bottom: 16px; }
.footer-brand h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.6; max-width: 320px; }
.footer-col h5 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sage); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; font-size: 0.9rem; color: var(--cream-muted); margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--cream); }
.footer-address { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.5; margin-top: 8px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-bottom p { font-size: 0.78rem; color: var(--cream-muted); opacity: 0.6; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: var(--sage-dim);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: all 0.4s var(--ease-out);
  opacity: 0; transform: translateY(20px);
  pointer-events: none;
}
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.floating-cta:hover { background: var(--sage); transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 40px rgba(45,90,51,0.4); }

/* ============ POPUP ============ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  padding: 20px;
}
.popup-overlay.open { opacity: 1; pointer-events: all; }
.popup {
  position: relative;
  background: var(--bg-deep);
  border: 1px solid var(--border-hover);
  border-radius: 24px;
  max-width: 520px; width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s var(--ease-out);
}
.popup-overlay.open .popup { transform: translateY(0) scale(1); }
.popup-close {
  position: absolute; top: 20px; right: 20px; z-index: 1;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--cream-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.popup-close:hover { color: var(--cream); border-color: var(--border-hover); }
.popup-inner { padding: 48px 40px 40px; }
.popup-eyebrow {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--sage); font-weight: 500;
  margin-bottom: 12px;
}
.popup-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
}
.popup-subtitle { font-size: 0.9rem; color: var(--cream-muted); line-height: 1.6; margin-bottom: 32px; }
.popup-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--sage-dim);
  color: var(--white);
  padding: 16px;
  border-radius: 10px;
  font-size: 0.95rem; font-weight: 500;
  margin-top: 8px;
  transition: all 0.35s var(--ease-out);
  position: relative; overflow: hidden;
}
.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--sage), var(--green-accent));
  opacity: 0; transition: opacity 0.35s;
}
.btn-submit:hover::before { opacity: 1; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45, 90, 51, 0.3); }
.btn-submit span, .btn-submit svg { position: relative; z-index: 1; }

@media (max-width: 480px) {
  .popup-inner { padding: 36px 24px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============ RESPONSIVE POLISH ============ */
@media (max-width: 768px) {
  .hero { min-height: 640px; }
  .hero-stats { flex-wrap: wrap; gap: 20px 24px; }
  .stat-divider { display: none; }
  .hero-content { padding-bottom: clamp(80px, 14vh, 120px); }
  .hero-scroll { display: none; }
  .floating-cta { bottom: 20px; right: 20px; padding: 12px 18px; font-size: 0.8rem; }
  .nav { padding: 14px 20px; }
  .logo-text { font-size: 0.8rem; }
  .logo-sub { font-size: 0.65rem; }
}
@media (max-width: 480px) {
  input, select, textarea { font-size: 16px; }
  .popup { border-radius: 20px; }
  .popup-title { font-size: 1.6rem; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { padding: 12px 22px; font-size: 0.85rem; }
  .about-location { padding: 18px; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--sage-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* ============ SELECTION ============ */
::selection { background: var(--sage-dim); color: var(--white); }
