/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1B4332;
  --green-light: #2D6A4F;
  --green-pale:  #40916C;
  --cream:       #F8F6F0;
  --cream-dark:  #EDE9DF;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-muted:  #5A5A5A;
  --text-light:  #8A8A8A;
  --line:        rgba(27, 67, 50, 0.12);
  --line-strong: rgba(27, 67, 50, 0.25);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ── Typography ──────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 24px;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--green);
  background: rgba(27, 67, 50, 0.04);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.85rem;
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(27, 67, 50, 0.06); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--green);
  letter-spacing: 0.02em;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 2px;
  letter-spacing: 0.08em;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--green);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(248, 246, 240, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-overlay-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nav-overlay-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--green);
  transition: color 0.25s;
}
.nav-overlay-link:hover { color: var(--green-pale); }
.nav-overlay-cta {
  margin-top: 16px;
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white) !important;
  background: var(--green);
  padding: 16px 36px;
  border-radius: 2px;
}

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

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
}

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

.hero-divider-line {
  width: 60px;
  height: 1px;
  background: var(--line-strong);
  margin-bottom: 16px;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}
.hero-note a {
  color: var(--green-pale);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.hero-note a:hover { border-bottom-color: var(--green-pale); }

/* Hero image */
.hero-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  border-radius: 4px;
}
.hero-image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  z-index: -1;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-light);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ── Services ────────────────────────────────────── */
.services {
  padding: 120px 0;
  background: var(--white);
}

.section-header { margin-bottom: 64px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  transition: background 0.35s var(--ease);
}
.service-card:hover { background: var(--cream); }

.service-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-pale);
  border: 1px solid var(--line-strong);
  padding: 5px 12px;
  border-radius: 2px;
}

/* ── About ───────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

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

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

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ── Gallery ─────────────────────────────────────── */
.gallery {
  padding: 120px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 320px;
  gap: 16px;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.03); }

.gallery-item--tall  { grid-column: 1 / 6;  grid-row: 1 / 3; }
.gallery-item:not(.gallery-item--tall):nth-child(2) { grid-column: 6 / 9; }
.gallery-item:not(.gallery-item--tall):nth-child(3) { grid-column: 9 / 13; }
.gallery-item--wide  { grid-column: 1 / 13; grid-row: 2; }

/* ── Visit ───────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0 40px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green-pale);
}
.visit-detail-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.visit-detail-value {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}
.visit-detail-value a {
  color: var(--green);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s;
}
.visit-detail-value a:hover { border-bottom-color: var(--green); }

.visit-cta { margin-top: auto; }

.visit-map {
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .nav-logo-mark {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  margin-left: 44px;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer-bottom a:hover { color: var(--white); }

/* ── Scroll Animations ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-image-wrap img { height: 580px; }
  .about-grid { gap: 48px; }
  .about-image-stack { height: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .hero { padding: 90px 0 80px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-image-wrap img { height: 420px; }
  .hero-image-accent { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-stack { height: 380px; }

  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall  { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:not(.gallery-item--tall):nth-child(2) { grid-column: 1 / 2; }
  .gallery-item:not(.gallery-item--tall):nth-child(3) { grid-column: 2 / 3; }
  .gallery-item--wide  { grid-column: 1 / 3; }
  .gallery-item img { height: 220px; }
  .gallery-item--tall img { height: 300px; }

  .visit { padding: 80px 0; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 280px; }

  .footer-top { flex-direction: column; gap: 24px; }
  .footer-tagline { margin-left: 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .service-card { padding: 28px 24px; }
}
