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

:root {
  --forest: #1a3c2a;
  --forest-light: #2d5a3f;
  --forest-dark: #0f2519;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --cream-dark: #e8e0d0;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --text-muted: #7a7a7a;
  --accent: #c8a86e;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

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

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

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 60, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  box-shadow: 0 1px 20px rgba(26, 60, 42, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--forest);
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s;
  position: relative;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--forest);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--forest);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream-light) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: all 0.3s;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 60, 42, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--forest);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--forest-dark);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-headline br {
  display: none;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream-light);
}

.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 60, 42, 0.25);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

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

.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream-light);
  transform: translateY(-2px);
}

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

/* Hero Image Stack */
.hero-right {
  position: relative;
}

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

.hero-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(26, 60, 42, 0.15);
}

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

.hero-img-main {
  width: 380px;
  height: 500px;
  right: 0;
  top: 0;
  z-index: 2;
}

.hero-img-accent {
  width: 260px;
  height: 340px;
  left: 0;
  bottom: 0;
  z-index: 1;
  border: 6px solid var(--cream-light);
}

.hero-badge {
  position: absolute;
  bottom: 100px;
  left: -20px;
  z-index: 3;
  background: var(--forest);
  color: var(--cream-light);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(26, 60, 42, 0.3);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: float 3s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  animation: arrowDown 2s ease-in-out infinite;
}

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

@keyframes arrowDown {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--forest-dark);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.intro-number {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(26, 60, 42, 0.08);
  line-height: 1;
  padding-top: 8px;
}

.intro-content {
  padding-top: 20px;
}

.intro-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

.intro-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--forest-dark);
  letter-spacing: -0.025em;
}

.intro-text {
  padding-top: 20px;
}

.intro-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.intro-stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(26, 60, 42, 0.1);
}

.stat {
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  background: rgba(26, 60, 42, 0.12);
  align-self: stretch;
}

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

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

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

.service-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: rgba(26, 60, 42, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(26, 60, 42, 0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--cream-light);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--forest-dark);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

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

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 12px;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

/* ─── EDITORIAL ─── */
.editorial {
  padding: 120px 0;
  background: var(--forest-dark);
  color: var(--cream-light);
  overflow: hidden;
}

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

.editorial-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.editorial-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-image:hover img {
  transform: scale(1.03);
}

.editorial-content .section-eyebrow {
  color: var(--accent);
}

.editorial-content .section-headline {
  color: var(--cream-light);
}

.editorial-features {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-marker {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
}

.feature-title {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cream-light);
  margin-bottom: 6px;
}

.feature-text {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
}

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

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

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.area-item {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 24px;
  border: 1.5px solid rgba(26, 60, 42, 0.15);
  border-radius: 100px;
  transition: all 0.3s;
  cursor: default;
}

.area-item:hover {
  background: var(--forest);
  color: var(--cream-light);
  border-color: var(--forest);
}

.areas-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.areas-note a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 60, 42, 0.3);
  transition: border-color 0.2s;
}

.areas-note a:hover {
  border-color: var(--forest);
}

/* ─── CTA / CONTACT ─── */
.cta {
  padding: 120px 0;
  background: var(--cream-light);
}

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

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

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.cta-contact svg {
  width: 22px;
  height: 22px;
  color: var(--forest);
  min-width: 22px;
}

/* Form */
.cta-form-wrap {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(26, 60, 42, 0.06);
}

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

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

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.9375rem;
  padding: 14px 18px;
  border: 1.5px solid rgba(26, 60, 42, 0.12);
  border-radius: 12px;
  background: var(--cream-light);
  color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
}

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

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

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

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

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--forest);
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest-dark);
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
}

.form-success a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--forest-dark);
  color: var(--cream-light);
  padding: 80px 0 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cream-light);
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

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

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

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact p {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
}

.footer-contact a {
  font-size: 0.9375rem;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(245, 240, 232, 0.4);
}

.footer-bottom a {
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

  .hero-right {
    display: none;
  }

  .hero-headline {
    font-size: clamp(2.75rem, 8vw, 4.5rem);
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-number {
    font-size: 3rem;
  }

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

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

  .editorial-image {
    max-height: 400px;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

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

  .hero-headline br {
    display: block;
  }

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

  .btn {
    justify-content: center;
  }

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

  .intro-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .cta-form-wrap {
    padding: 32px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

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

  .section-headline {
    font-size: 1.875rem;
  }
}
