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

:root {
  --green-900: #0B2B1A;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52A47A;
  --green-400: #74C69D;
  --green-300: #95D5B2;
  --green-200: #B7E4C7;
  --green-100: #D8F3DC;
  --green-50:  #EDF7F0;

  --off-white: #FAFBF9;
  --cream:     #F4F7F2;
  --warm-white:#FDFCFA;
  --sand:      #EDE9E0;
  --blush:     #F5EDE8;

  --text-dark:  #1A2E23;
  --text-mid:   #3D5A4C;
  --text-light: #6B8A78;
  --text-muted: #9BB5A7;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm:  0 1px 3px rgba(27,67,50,0.06), 0 1px 2px rgba(27,67,50,0.04);
  --shadow-md:  0 4px 16px rgba(27,67,50,0.08), 0 2px 4px rgba(27,67,50,0.04);
  --shadow-lg:  0 12px 40px rgba(27,67,50,0.12), 0 4px 12px rgba(27,67,50,0.06);
  --shadow-xl:  0 24px 60px rgba(27,67,50,0.14), 0 8px 20px rgba(27,67,50,0.08);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}

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

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,251,249,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,67,50,0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250,251,249,0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--green-800);
  color: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.nav-cta {
  background: var(--green-800) !important;
  color: var(--off-white) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--green-700) !important;
  color: var(--off-white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--green-800);
  margin-left: auto;
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--green-800) 0%,
    var(--green-700) 25%,
    var(--green-600) 50%,
    var(--green-500) 75%,
    var(--green-400) 100%
  );
  padding: 120px 24px 80px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(18,50,35,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(82,164,122,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(27,67,50,0.4) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: var(--off-white);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-200);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--off-white);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(250,251,249,0.82);
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 560px;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: block;
  box-shadow: var(--shadow-xl);
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--off-white);
  border-color: var(--green-800);
}

.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}

.btn-outline:hover {
  background: var(--green-800);
  color: var(--off-white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ─── Section Shared ─────────────────────────── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--green-900);
  margin-bottom: 16px;
}

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

/* ─── Services ───────────────────────────────── */
.services {
  background: var(--cream);
}

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

.service-card {
  background: var(--warm-white);
  border: 1px solid rgba(27,67,50,0.07);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-100), var(--green-50));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--green-700);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 12px;
}

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

/* ─── About ──────────────────────────────────── */
.about {
  background: var(--off-white);
}

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

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

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--off-white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(40px);
  pointer-events: none;
}

.about-content .section-tag {
  text-align: left;
}

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

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

.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-800);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.about-content .btn {
  margin-top: 8px;
}

/* ─── Gallery ────────────────────────────────── */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: auto;
  background: var(--sand);
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(3) { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ─── Visit ──────────────────────────────────── */
.visit {
  background: var(--off-white);
}

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

.visit-info .section-tag {
  text-align: left;
}

.visit-info .section-title {
  text-align: left;
  margin-bottom: 36px;
}

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

.visit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.visit-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

.visit-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 4px;
}

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

.visit-item a {
  color: var(--green-700);
  text-decoration: none;
  border-bottom: 1px solid var(--green-200);
  transition: var(--transition);
}

.visit-item a:hover {
  color: var(--green-900);
  border-color: var(--green-900);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-md);
}

/* ─── Contact ────────────────────────────────── */
.contact {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
  padding: 100px 0;
}

.contact-card {
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  box-shadow: var(--shadow-xl);
}

.contact-text .section-tag {
  text-align: left;
}

.contact-text .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(82,164,122,0.15);
}

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

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

.form-note {
  font-size: 0.82rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
}

.form-note a {
  color: var(--green-700);
  text-decoration: none;
  font-weight: 600;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 40px;
  height: 100%;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--green-800);
}

.form-success p {
  color: var(--text-mid);
  line-height: 1.7;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
}

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--green-900);
  color: var(--green-200);
  padding: 72px 0 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--off-white);
  display: block;
  margin-bottom: 14px;
}

.footer-logo-mark {
  display: none;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--green-300);
  max-width: 280px;
}

.footer-links strong,
.footer-contact strong,
.footer-hours strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--green-300);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--off-white);
}

.footer-contact p,
.footer-hours p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--green-300);
}

.footer-contact a {
  color: var(--green-300);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--off-white);
}

.footer-bottom {
  border-top: 1px solid rgba(149,213,178,0.12);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--green-400);
}

/* ─── Scroll Reveal ──────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-image {
    width: 38%;
    opacity: 0.7;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    gap: 40px;
  }

  .contact-card {
    padding: 40px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,251,249,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(27,67,50,0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    transform: none;
    opacity: 1;
  }

  .hero-image img {
    height: 50vh;
  }

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

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

  .about-images {
    height: 400px;
    order: -1;
  }

  .about-content .section-tag,
  .about-content .section-title {
    text-align: center;
  }

  .about-stats {
    justify-content: center;
  }

  .about-content .btn {
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3) {
    grid-row: span 1;
  }

  .visit-layout {
    grid-template-columns: 1fr;
  }

  .visit-info .section-tag,
  .visit-info .section-title {
    text-align: center;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 40px;
  }

  .contact-text .section-tag,
  .contact-text .section-title {
    text-align: center;
  }

  .contact-text p {
    text-align: center;
  }

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

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

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

  .container {
    padding: 0 18px;
  }

  .hero {
    padding: 100px 18px 48px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .about-images {
    height: 320px;
  }

  .about-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
}
