/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #FAFAF7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1B4332;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
  line-height: 1.8;
}

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 20px rgba(27, 67, 50, 0.06); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo ───────────────────────────────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1B4332;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-line1 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; letter-spacing: 0.01em; }
.logo-line2 { font-family: 'Playfair Display', serif; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: #2d6a4f; }
.logo-light .logo-line2 { color: #95d5a3; }

/* ── Nav ────────────────────────────────────────── */
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1B4332;
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #1B4332; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid #1B4332 !important;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: #1B4332; color: #FAFAF7 !important; }
.nav-cta::after { display: none !important; }

/* ── Mobile Nav ─────────────────────────────────── */
.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: #1B4332;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  }
  .nav-links.open { max-height: 400px; padding: 24px 0; }
  .nav-links a { padding: 14px 24px; font-size: 0.9rem; }
  .nav-cta { margin-top: 8px; text-align: center; }
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #1B4332;
  color: #FAFAF7;
}
.btn-primary:hover { background: #2d6a4f; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27, 67, 50, 0.2); }
.btn-ghost {
  background: transparent;
  color: #1B4332;
  border: 1px solid rgba(27, 67, 50, 0.3);
}
.btn-ghost:hover { border-color: #1B4332; background: rgba(27, 67, 50, 0.04); }
.btn-outline {
  background: transparent;
  color: #1B4332;
  border: 1px solid #1B4332;
}
.btn-outline:hover { background: #1B4332; color: #FAFAF7; }
.btn-full { width: 100%; }

/* ── Hero ───────────────────────────────────────── */
.hero {
  padding: 140px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2d6a4f;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #1B4332;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.hero-sub {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 560/680;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(27, 67, 50, 0.12);
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1B4332;
  font-weight: 500;
}
.stat-label {
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(27, 67, 50, 0.15);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 480px; aspect-ratio: 4/3; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat { flex: none; }
}
@media (max-width: 480px) {
  .hero { padding: 120px 20px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* ── Services ───────────────────────────────────── */
.services {
  padding: 100px 24px;
  background: #fff;
}
.services .container { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.service-card {
  padding: 36px 28px;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 12px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(27, 67, 50, 0.2);
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.06);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(27, 67, 50, 0.06);
  color: #1B4332;
  margin-bottom: 20px;
}
.service-title {
  font-size: 1.2rem;
  color: #1B4332;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.75;
}

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

/* ── Philosophy ─────────────────────────────────── */
.philosophy { padding: 100px 24px; }
.philosophy .container { max-width: 1200px; margin: 0 auto; }
.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.philosophy-image { border-radius: 12px; overflow: hidden; aspect-ratio: 600/750; }
.philosophy-image img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.philosophy-values { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.92rem;
  color: #333;
}
.value-line {
  width: 32px;
  height: 1px;
  background: #2d6a4f;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .philosophy-layout { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-image { max-height: 400px; aspect-ratio: auto; }
  .philosophy-image img { object-fit: cover; }
}

/* ── About ──────────────────────────────────────── */
.about { padding: 100px 24px; background: #fff; }
.about .container { max-width: 1200px; margin: 0 auto; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap { border-radius: 12px; overflow: hidden; aspect-ratio: 580/420; }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-content .btn { margin-top: 28px; }

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-height: 320px; }
}

/* ── Contact ────────────────────────────────────── */
.contact { padding: 100px 24px; }
.contact .container { max-width: 1200px; margin: 0 auto; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 440px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { color: #1B4332; flex-shrink: 0; margin-top: 2px; }
.contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.6;
}
.contact-value a { color: #1B4332; border-bottom: 1px solid rgba(27, 67, 50, 0.2); transition: border-color 0.2s; }
.contact-value a:hover { border-color: #1B4332; }

/* ── Form ───────────────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 16px;
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #FAFAF7;
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 8px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2d6a4f;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(27, 67, 50, 0.06);
  border-radius: 8px;
  color: #1B4332;
  font-size: 0.9rem;
  margin-top: 8px;
}
.form-success svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px; }
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: #1B4332;
  color: rgba(250, 250, 247, 0.7);
  padding: 64px 24px 40px;
}
.footer .container { max-width: 1200px; margin: 0 auto; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .logo { color: #FAFAF7; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
  color: rgba(250, 250, 247, 0.55);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.65);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.footer-links a:hover { color: #95d5a3; }
.footer-address p { font-size: 0.85rem; line-height: 1.7; }
.footer-copy {
  margin-top: 16px;
  font-size: 0.75rem !important;
  color: rgba(250, 250, 247, 0.35) !important;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 20px; }
}

/* ── Scroll to Top ──────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1B4332;
  color: #FAFAF7;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(27, 67, 50, 0.25);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 50;
}
.scroll-top:hover { transform: translateY(-2px); }

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