/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #1f2937;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #374151; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 4px 4px; z-index: 200; font-size: .875rem;
}
.skip-link:focus { top: 0; }

/* ── Tokens ──────────────────────────────────────── */
:root {
  --charcoal:    #374151;
  --charcoal-dk: #1f2937;
  --coral:       #F97316;
  --coral-hover: #EA6C0A;
  --coral-light: #FFF7ED;
  --gray-50:     #fafafa;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-800:    #1f2937;
  --white:       #ffffff;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.10);
  --transition:  .25s ease;
}

/* ── Layout ──────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.25; color: var(--charcoal-dk); }
.eyebrow { font-family: 'Inter', sans-serif; font-weight: 500; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); margin-bottom: .75rem; }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Inter', sans-serif; font-weight: 400; font-size: .9375rem;
  padding: .8125rem 1.75rem; border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-hover); box-shadow: 0 4px 16px rgba(249,115,22,.35); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--gray-300); }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }
.btn-ghost-sm { font-size: .8125rem; padding: .5rem 1rem; color: var(--gray-500); border-bottom: 1px solid var(--gray-300); }
.btn-ghost-sm:hover { color: var(--coral); border-color: var(--coral); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,250,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: .625rem; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1.125rem; color: var(--charcoal-dk); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a { font-size: .875rem; font-weight: 400; color: var(--gray-600); transition: color var(--transition); }
.nav-menu a:hover { color: var(--coral); }
.nav-cta {
  background: var(--charcoal); color: var(--white) !important;
  padding: .5rem 1.125rem; border-radius: var(--radius);
  font-weight: 500; font-size: .8125rem; letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--gray-600); transform: translateY(-1px); }

/* Nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: .25rem; }
.nav-toggle-line { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────── */
.hero { padding-top: 72px; min-height: 100vh; display: flex; align-items: center; background: var(--gray-50); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; padding: 4rem 0; }
.hero-eyebrow { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--coral); font-weight: 500; margin-bottom: 1rem; }
.hero-headline { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 500; line-height: 1.15; margin-bottom: 1.5rem; color: var(--charcoal-dk); }
.hero-sub { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; align-items: center; gap: .75rem; font-size: .8125rem; color: var(--gray-500); }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-300); }
.hero-image { position: relative; }
.hero-img-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 160px; height: 160px; border-radius: var(--radius-lg);
  background: var(--coral); opacity: .12; z-index: -1;
}

/* ── Section shared ──────────────────────────────── */
section { padding: 6rem 0; }
.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header--centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.section-desc { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.75; }

/* ── Services ────────────────────────────────────── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { border-color: var(--coral); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon { width: 52px; height: 52px; border-radius: var(--radius); background: var(--coral-light); display: flex; align-items: center; justify-content: center; color: var(--coral); margin-bottom: 1.25rem; }
.service-card h3 { font-size: 1.1875rem; margin-bottom: .625rem; font-family: 'Inter', sans-serif; font-weight: 500; }
.service-card p { font-size: .9375rem; color: var(--gray-500); line-height: 1.7; }

/* ── About ───────────────────────────────────────── */
.about { background: var(--gray-50); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 55%; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 4px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-eyebrow { margin-bottom: .75rem; }
.about-content .section-title { margin-bottom: 1.25rem; }
.about-content p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.about-stats { display: flex; gap: 1.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 600; color: var(--charcoal-dk); line-height: 1; }
.stat-label { font-size: .8125rem; color: var(--gray-500); margin-top: .375rem; }
.stat-divider { width: 1px; background: var(--gray-200); align-self: stretch; }

/* ── Why Us ──────────────────────────────────────── */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.why-item { padding: 2rem; border-left: 2px solid var(--gray-200); transition: border-color var(--transition); }
.why-item:hover { border-color: var(--coral); }
.why-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 600; color: var(--gray-200); line-height: 1; margin-bottom: .75rem; transition: color var(--transition); }
.why-item:hover .why-number { color: var(--coral); }
.why-item h3 { font-family: 'Inter', sans-serif; font-size: 1.125rem; font-weight: 500; margin-bottom: .625rem; }
.why-item p { font-size: .9375rem; color: var(--gray-500); line-height: 1.75; }

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner { background: var(--charcoal-dk); color: var(--white); padding: 5rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: .75rem; color: var(--white); }
.cta-desc { font-size: 1.0625rem; color: var(--gray-400); max-width: 480px; line-height: 1.75; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-actions .btn-primary { background: var(--coral); }
.cta-actions .btn-primary:hover { background: var(--coral-hover); }
.cta-actions .btn-outline { border-color: var(--gray-600); color: var(--gray-300); }
.cta-actions .btn-outline:hover { border-color: var(--coral); color: var(--coral); }

/* ── Contact ─────────────────────────────────────── */
.contact { background: var(--gray-50); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-desc { font-size: 1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); margin-bottom: .25rem; font-weight: 500; }
.contact-item dd a, .contact-item dd { font-size: 1rem; color: var(--charcoal); line-height: 1.7; }
.contact-item dd a:hover { color: var(--coral); }
.contact-item dd address { font-style: normal; }

/* ── Form ────────────────────────────────────────── */
.contact-form-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--gray-200); }
.form-title { font-size: 1.375rem; margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .8125rem; font-weight: 500; color: var(--gray-600); margin-bottom: .375rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: .9375rem;
  color: var(--charcoal); background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group--textarea textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .8125rem; color: var(--gray-400); margin-top: 1rem; text-align: center; }
.form-success { text-align: center; padding: 2rem 0; }
.success-icon { margin-bottom: 1rem; }
.success-title { font-size: 1.5rem; margin-bottom: .5rem; }
.form-success p { color: var(--gray-500); margin-bottom: 1.5rem; }

/* ── Footer ──────────────────────────────────────── */
.site-footer { background: var(--charcoal-dk); color: var(--gray-400); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { font-size: .9375rem; margin-top: 1rem; line-height: 1.7; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul a { font-size: .9375rem; color: var(--gray-400); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--coral); }
.footer-col address { font-size: .9375rem; line-height: 1.8; }
.footer-col a { color: var(--gray-400); transition: color var(--transition); }
.footer-col a:hover { color: var(--coral); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom p { font-size: .8125rem; color: var(--gray-500); }

/* ── Animations ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; max-width: 560px; margin: 0 auto; }
  .hero-img-wrapper { max-height: 420px; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-accent { width: 45%; bottom: -1.5rem; right: -1rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250,250,250,.98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 2rem 1.5rem; gap: 0;
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu li { border-bottom: 1px solid var(--gray-200); }
  .nav-menu a { display: block; padding: 1rem 0; font-size: 1.0625rem; color: var(--charcoal); }
  .nav-cta { text-align: center; margin-top: 1rem; border-bottom: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .about-stats { flex-direction: column; gap: 1.25rem; }
  .stat-divider { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
}
