/* ===== 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;
  color: #2D2D2D;
  background: #FAFAF8;
  line-height: 1.6;
  -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: 700; line-height: 1.1; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #1A1A1A;
  margin-bottom: 20px;
}
.section-intro {
  font-size: 1.125rem;
  color: #555;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: #FF6B4A;
  color: #fff;
  border-color: #FF6B4A;
}
.btn-primary:hover { background: #E85A38; border-color: #E85A38; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline-light {
  background: transparent;
  color: #2D2D2D;
  border-color: #2D2D2D;
}
.btn-outline-light:hover { background: #2D2D2D; color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.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: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.btn-nav {
  background: #FF6B4A;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: #E85A38 !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 4px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.6) 60%, rgba(26,26,26,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FF6B4A;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}
.hero-trust .dot { color: rgba(255,255,255,0.25); }

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: #FAFAF8;
}
.services .container { text-align: center; }
.services .section-intro { margin: 0 auto 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,107,74,0.1);
  color: #FF6B4A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1A1A1A;
}
.service-card p {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: #1A1A1A;
  color: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content .section-title { color: #fff; }
.about-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat { flex: 1; min-width: 120px; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #FF6B4A;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ===== AREAS ===== */
.areas {
  padding: 120px 0;
  background: #FAFAF8;
  text-align: center;
}
.areas .container { text-align: center; }
.areas-content { margin-top: 48px; }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.area-tag {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2D2D2D;
  transition: all 0.2s;
}
.area-tag:hover {
  background: #FF6B4A;
  border-color: #FF6B4A;
  color: #fff;
}
.areas-note {
  font-size: 0.9375rem;
  color: #666;
}
.areas-note a {
  color: #FF6B4A;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.areas-note a:hover { color: #E85A38; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 120px 0;
  background: #FF6B4A;
  text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-outline-light { border-color: #fff; color: #FF6B4A; }
.btn-outline-light:hover { background: #fff; color: #FF6B4A; }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 1.0625rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,107,74,0.1);
  color: #FF6B4A;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 1rem;
  color: #2D2D2D;
  line-height: 1.5;
}
.contact-item a:hover { color: #FF6B4A; }

/* Form */
.contact-form-wrap {
  background: #FAFAF8;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.06);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #1A1A1A;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #2D2D2D;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF6B4A;
  box-shadow: 0 0 0 3px rgba(255,107,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 32px;
  color: #2D8A4E;
}
.form-success p {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FF6B4A; }
.footer-contact a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #FF6B4A; }
.footer-contact span {
  display: block;
  font-size: 0.9375rem;
  margin-top: 6px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26,26,26,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn-lg { width: 100%; max-width: 320px; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { flex-direction: column; gap: 24px; }
}
