*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --forest: #1a5c2a;
  --forest-deep: #0f3d1a;
  --forest-light: #2d8a42;
  --forest-muted: #3a7d4a;
  --off-white: #f5f0e8;
  --off-white-pure: #faf7f2;
  --cream: #ede6d8;
  --accent-pink: #e8457c;
  --accent-yellow: #f5c542;
  --accent-blue: #4a9fd4;
  --text-dark: #1a2e1f;
  --text-mid: #3d5a42;
  --text-light: #6b8a70;
  --shadow-sm: 0 2px 8px rgba(26, 92, 42, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 92, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 92, 42, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Public Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--forest);
  color: var(--off-white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

/* Geometric Background */
.geometric-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.geo-shape {
  position: absolute;
  opacity: 0.06;
}

.geo-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--forest);
  top: -200px;
  right: -150px;
}

.geo-circle-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--accent-pink);
  bottom: 10%;
  left: -100px;
}

.geo-triangle {
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-bottom: 346px solid var(--accent-yellow);
  top: 40%;
  right: -80px;
  opacity: 0.04;
}

.geo-square {
  width: 200px;
  height: 200px;
  background: var(--forest-light);
  bottom: 30%;
  left: 5%;
  transform: rotate(45deg);
  border-radius: 20px;
}

.geo-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--forest) 2px, transparent 2px);
  background-size: 16px 16px;
  top: 60%;
  left: 15%;
  opacity: 0.1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 92, 42, 0.08);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--forest-deep);
  line-height: 1.2;
}

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(26, 92, 42, 0.2));
}

.logo-accent {
  color: var(--forest-light);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav a {
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: all 0.25s ease;
}

.nav a:hover {
  background: var(--forest);
  color: var(--off-white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 0;
  overflow: hidden;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-card {
  background: var(--off-white-pure);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 92, 42, 0.06);
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--off-white);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-yellow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.highlight {
  color: var(--forest);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--accent-yellow);
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
}

.highlight-outline {
  -webkit-text-stroke: 2px var(--forest);
  color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--forest);
  color: var(--off-white);
  box-shadow: 0 8px 24px rgba(26, 92, 42, 0.3);
}

.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 92, 42, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--off-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--off-white);
  color: var(--forest);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--off-white-pure);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-map {
  margin-top: 20px;
  font-size: 0.9rem;
  padding: 12px 24px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-image-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--accent-yellow);
  border-radius: var(--radius-md);
  opacity: 0.6;
  z-index: -1;
}

.stat-card {
  position: absolute;
  background: var(--off-white-pure);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(26, 92, 42, 0.06);
  z-index: 3;
}

.stat-card--top {
  top: 40px;
  right: -30px;
  animation: float 4s ease-in-out infinite;
}

.stat-card--bottom {
  bottom: 60px;
  left: -30px;
  animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-number {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: var(--forest);
  color: var(--off-white);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Features */
.features {
  position: relative;
  z-index: 1;
  padding: 100px 0 120px;
  background: var(--off-white-pure);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid rgba(26, 92, 42, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card--accent {
  background: var(--forest);
  color: var(--off-white);
  border-color: transparent;
}

.feature-card--accent::before {
  background: var(--accent-yellow);
}

.feature-card--accent h3 {
  color: var(--off-white);
}

.feature-card--accent p {
  color: rgba(245, 240, 232, 0.8);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(26, 92, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: 24px;
}

.feature-card--accent .feature-icon {
  background: rgba(245, 240, 232, 0.15);
  color: var(--accent-yellow);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* About */
.about {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 75%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--off-white);
  z-index: 3;
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-stat {
  background: var(--forest);
  color: var(--off-white);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-stat-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 4px;
  display: block;
}

.about-content {
  max-width: 480px;
}

.about-content .section-tag {
  margin-bottom: 18px;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.highlight-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Visit */
.visit {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--forest-deep);
  overflow: hidden;
}

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.visit .section-tag {
  background: var(--accent-yellow);
  color: var(--forest-deep);
}

.visit .section-title {
  color: var(--off-white);
  margin-bottom: 16px;
}

.visit .section-title .highlight {
  color: var(--accent-yellow);
}

.visit-desc {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245, 240, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  flex-shrink: 0;
}

.visit-detail strong {
  display: block;
  color: var(--off-white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

.visit-detail a:hover {
  color: var(--accent-yellow);
}

.visit-map {
  position: relative;
}

.map-placeholder {
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.map-pin {
  color: var(--accent-pink);
  margin-bottom: 20px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.map-placeholder p {
  color: var(--off-white);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 8px;
}

.map-deco {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-yellow);
  opacity: 0.06;
}

.map-circle {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

/* CTA */
.cta {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--off-white);
  overflow: hidden;
}

.cta-inner {
  position: relative;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-shape {
  position: absolute;
  opacity: 0.06;
}

.cta-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--forest);
  top: -80px;
  left: -80px;
}

.cta-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent-pink);
  bottom: -60px;
  right: 10%;
}

.cta-triangle {
  width: 0;
  height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 208px solid var(--accent-yellow);
  top: 10%;
  right: 5%;
}

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}

.cta-content .section-title {
  margin-bottom: 16px;
}

.cta-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--off-white-pure);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 92, 42, 0.06);
  position: relative;
  z-index: 2;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(26, 92, 42, 0.12);
  border-radius: var(--radius-sm);
  font-family: 'Public Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(26, 92, 42, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.cta-form .btn {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 20px;
  background: rgba(26, 92, 42, 0.08);
  border-radius: var(--radius-sm);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-success.show {
  display: flex;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  background: var(--forest-deep);
  padding: 48px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--off-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-copy {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-address {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .visit-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--off-white-pure);
    padding: 80px 32px 32px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 99;
  }

  .nav.open {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .nav a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .hero {
    padding: 100px 0 0;
    min-height: auto;
  }

  .hero-card {
    padding: 32px;
  }

  .hero-headline {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .stat-card--top {
    right: 10px;
    top: 10px;
  }

  .stat-card--bottom {
    left: 10px;
    bottom: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-image-stack {
    height: 400px;
  }

  .about-img-main {
    height: 360px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-form {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .feature-card {
    padding: 28px;
  }

  .stat-card {
    padding: 14px 18px;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
