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

:root {
  --terra-500: #C0603A;
  --terra-600: #A84F30;
  --sand-50: #FDFBF7;
  --sand-100: #FAF6EE;
  --sand-200: #F5EDDF;
  --sand-400: #E2CCAA;
  --sand-600: #C4A46E;
  --dark: #1A1410;
  --dark-soft: #3D3229;
  --gray: #7A6E63;
  --gray-light: #B8AFA6;
  --white: #FFFFFF;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--dark);
  background: var(--sand-50);
  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;
}

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

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(26, 20, 16, 0.06);
}

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

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

.nav-logo span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gray);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--terra-500);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terra-500);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--terra-500) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.82rem !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--terra-600) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--dark);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: linear-gradient(145deg, #FDFBF7 0%, #F5DDD3 35%, #E8B49A 60%, #D0704E 85%, #A84F30 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(253, 251, 247, 0.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(253, 251, 247, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 560px;
  z-index: 2;
}

.hero-greeting {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-600);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-greeting::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--terra-600);
}

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

.hero-headline br {
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--dark-soft);
  margin-bottom: 40px;
  max-width: 460px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 20, 16, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(26, 20, 16, 0.25);
}

.btn-ghost:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  letter-spacing: 0.01em;
}

.trust-item svg {
  color: var(--terra-500);
  flex-shrink: 0;
}

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

.hero-image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  border-radius: 0 0 0 40px;
  box-shadow: -20px 0 60px rgba(26, 20, 16, 0.15);
}

.hero-line {
  position: absolute;
  bottom: 40px;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 20, 16, 0.2) 0%, transparent 100%);
}

/* ─── SECTIONS ─── */
.services,
.about,
.why-us,
.cta {
  padding: 120px 0;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-500);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--terra-500);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.75;
}

/* ─── SERVICES ─── */
.services {
  background: var(--sand-50);
}

.services .container {
  text-align: center;
}

.services .section-label {
  justify-content: center;
}

.services .section-label::before {
  display: none;
}

.services .section-sub {
  margin: 0 auto 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--terra-500), var(--sand-400));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 20, 16, 0.08);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sand-100);
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: rgba(192, 96, 58, 0.1);
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about {
  background: var(--sand-100);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: 20px;
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--terra-500);
  border-radius: 20px;
  opacity: 0.15;
  z-index: -1;
}

.about-content .section-label {
  margin-bottom: 16px;
}

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

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--sand-200);
}

.stat {
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--terra-500);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  background: var(--sand-200);
  align-self: stretch;
  flex-shrink: 0;
}

/* ─── WHY US ─── */
.why-us {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

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

.why-us-content .section-label {
  color: var(--sand-400);
}

.why-us-content .section-label::before {
  background: var(--sand-400);
}

.why-us-content .section-title {
  color: var(--white);
}

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

.why-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
}

.why-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--terra-500);
  opacity: 0.7;
  padding-top: 4px;
}

.why-item h4 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: -0.01em;
}

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

.why-us-image {
  border-radius: 20px;
  overflow: hidden;
  height: 620px;
}

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

/* ─── CTA ─── */
.cta {
  background: var(--sand-50);
}

.cta-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 24px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.cta-text .section-title {
  margin-bottom: 24px;
}

.cta-text p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 400px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cta-phone,
.cta-email {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  padding: 18px 24px;
  background: var(--sand-100);
  border-radius: 14px;
  transition: all 0.2s ease;
}

.cta-phone:hover,
.cta-email:hover {
  background: var(--sand-200);
  transform: translateX(4px);
}

.cta-address {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--gray);
  padding: 18px 24px;
  background: var(--sand-100);
  border-radius: 14px;
}

.cta-map {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 4px;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.75;
  max-width: 280px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--terra-300);
}

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

.footer-contact a {
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: color 0.2s ease;
}

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

.footer-contact span {
  font-size: 0.88rem;
  color: var(--gray-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ─── MOBILE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    width: 35vw;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--sand-200);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(26, 20, 16, 0.08);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

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

  .hero-image {
    display: none;
  }

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

  .hero-trust {
    gap: 16px;
  }

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

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

  .about-image-wrap img {
    height: 400px;
  }

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

  .stat-divider {
    display: none;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-us-image {
    height: 400px;
    order: -1;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .cta-card {
    padding: 32px 20px;
  }
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
