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

:root {
  --forest: #1a3c2a;
  --forest-light: #24543a;
  --forest-dark: #0f2519;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --cream-dark: #e8e0d0;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --text-muted: #7a7a7a;
  --line: rgba(26, 60, 42, 0.12);
  --line-strong: rgba(26, 60, 42, 0.25);
  --radius: 8px;
  --radius-lg: 12px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.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.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: -0.01em;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 60, 42, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--forest);
  background: rgba(26, 60, 42, 0.04);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-large {
  padding: 18px 36px;
  font-size: 0.9rem;
}

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

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
}

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

.logo-text {
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--forest);
  transition: var(--transition);
}

.nav a:hover { color: var(--forest); }
.nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--forest) !important;
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--forest-light) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--forest);
  transition: var(--transition);
  transform-origin: center;
}
.menu-toggle.active span:first-child { transform: rotate(45deg) translate(4px, 5px); }
.menu-toggle.active span:last-child { transform: rotate(-45deg) translate(4px, -5px); }

/* ── Mobile Nav ───────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; }

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  transition: var(--transition);
}
.mobile-nav-link:hover { opacity: 0.6; }

.mobile-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid var(--line-strong);
  padding: 14px 28px;
  border-radius: var(--radius);
  margin-top: 16px;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream-light);
  overflow: hidden;
}

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

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

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

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 40px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--line-strong);
}

.hero-image {
  position: relative;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26, 60, 42, 0.12);
}

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

.hero-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ── Divider ──────────────────────────────────────────── */
.section-divider {
  padding: 0;
}
.divider-line {
  width: 100%;
  height: 1px;
  background: var(--line);
}

/* ── Services ─────────────────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--cream-light);
}

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

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

.service-card {
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--cream-light);
}

.service-card:hover {
  border-color: var(--line-strong);
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 60, 42, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  margin-bottom: 24px;
  color: var(--forest);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── About ────────────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: white;
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(26, 60, 42, 0.1);
}

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

.about-content {
  padding-left: 20px;
}

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

.about-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--line-strong);
}

.value-label {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Why Us ───────────────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: var(--cream-light);
}

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

.why-content {
  padding-right: 20px;
}

.why-content .section-title {
  margin-bottom: 48px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  min-width: 36px;
  padding-top: 4px;
}

.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(26, 60, 42, 0.1);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── CTA Section ──────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--forest);
}

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content .section-eyebrow {
  color: rgba(245, 240, 232, 0.6);
}

.cta-content .section-title {
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn-outline {
  border-color: rgba(245, 240, 232, 0.4);
  color: var(--cream);
}
.cta-actions .btn-outline:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

/* ── Contact ──────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 40px;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--forest);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-link {
  transition: var(--transition);
}
.contact-link:hover { color: var(--forest); }

/* ── Form ─────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: white;
  color: var(--text);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.08);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(26, 60, 42, 0.06);
  border: 1px solid rgba(26, 60, 42, 0.15);
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--forest);
}

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

.form-success svg {
  flex-shrink: 0;
  color: var(--forest);
}

/* ── Map ──────────────────────────────────────────────── */
.map-section {
  height: 360px;
  background: var(--cream-dark);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.6) contrast(1.05);
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.55);
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.footer-links a:hover { color: var(--cream); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(245, 240, 232, 0.55);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.04em;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 0.9fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr 1.1fr; }
  .why-grid { grid-template-columns: 1fr 0.9fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 60px;
  }

  .hero-image { order: -1; }
  .hero-image-wrap { max-height: 360px; }

  .hero-stats { gap: 20px; }

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

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content { padding-left: 0; }
  .about-image { order: -1; max-height: 360px; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-content { padding-right: 0; }
  .why-image { order: -1; max-height: 360px; }

  .contact-form-wrap { padding: 28px; }

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

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { width: 36px; height: 1px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn-large { width: 100%; justify-content: center; }
}
