/* ── 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, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #374151;
  background: #fff;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #FF6B57; color: #fff; padding: .5rem 1rem; z-index: 9999;
  font-weight: 500;
}
.skip-link:focus { left: 0; }

/* ── Typography ──────────────────────────────────────────── */
:root {
  --charcoal: #374151;
  --charcoal-light: #6B7280;
  --charcoal-dark: #1F2937;
  --coral: #FF6B57;
  --coral-dark: #E85A47;
  --bg: #FAFAF9;
  --bg-warm: #F5F5F4;
  --white: #FFFFFF;
  --line: #E5E7EB;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

h1, h2, h3, h4 { font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 480px) { .container { padding: 0 1.25rem; } }

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .6rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600; color: var(--charcoal);
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--coral); }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
  font-size: .85rem; font-weight: 400; color: var(--charcoal-light);
  letter-spacing: 0.02em; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--coral);
  transition: width 0.3s ease;
}
.nav-menu a:hover { color: var(--charcoal); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  background: var(--charcoal); color: var(--white) !important;
  padding: .55rem 1.2rem; border-radius: 100px;
  font-weight: 500; text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--coral); color: var(--white) !important; transform: translateY(-1px); }

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

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column; justify-content: flex-start; padding-top: 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu li { width: 100%; text-align: center; }
  .nav-menu a {
    display: block; padding: 1rem 2rem;
    font-size: 1rem; text-transform: none; letter-spacing: 0.01em;
  }
  .nav-menu a::after { display: none; }
  .nav-cta {
    margin-top: 1rem; display: inline-block !important;
  }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.8rem; border-radius: 100px;
  font-size: .9rem; font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--coral); color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,87,0.3);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(255,107,87,0.4); }
.btn-outline {
  border: 1px solid var(--charcoal); color: var(--charcoal);
  background: transparent;
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-dark {
  border: 1px solid var(--charcoal); color: var(--charcoal);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4); color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn-ghost:hover { background: var(--white); color: var(--charcoal); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section shared ──────────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-title.light-title { color: var(--white); }
.section-desc {
  font-size: 1.05rem; color: var(--charcoal-light);
  max-width: 560px; line-height: 1.8;
}
.section-header { margin-bottom: 4rem; }
.section-header.light { text-align: center; }
.section-header .section-desc { margin: 0 auto; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding: 4rem 0 0;
}
.hero-content { padding-right: 1rem; }
.hero-eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1; color: var(--charcoal-dark);
  margin-bottom: 1.5rem;
}
.hero-accent {
  font-style: italic; color: var(--coral);
  font-weight: 400;
}
.hero-desc {
  font-size: 1.05rem; color: var(--charcoal-light);
  line-height: 1.85; margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--charcoal-light);
}

/* Hero image */
.hero-image { position: relative; }
.hero-img-wrapper {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--white); padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--line);
}
.float-card-number {
  font-family: var(--font-display);
  font-size: 2.2rem; color: var(--coral);
  line-height: 1; margin-bottom: .3rem;
}
.float-card-label {
  font-size: .8rem; color: var(--charcoal-light);
  line-height: 1.4;
}
.hero-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--line);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-content { padding-right: 0; order: 1; }
  .hero-image { order: 2; max-width: 500px; margin: 0 auto; width: 100%; }
  .hero-float-card { bottom: -1rem; left: -0.5rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── Services ────────────────────────────────────────────── */
.services { padding: 8rem 0; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { border-color: transparent; box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.35s ease;
}
.service-card:hover .service-icon { background: var(--coral); border-color: var(--coral); }
.service-card:hover .service-icon svg { stroke: var(--white); }
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--charcoal);
  margin-bottom: .75rem;
}
.service-desc { font-size: .92rem; color: var(--charcoal-light); 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; } }

/* ── About ───────────────────────────────────────────────── */
.about { padding: 8rem 0; background: var(--bg); overflow: hidden; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  width: 100%; height: 100%; object-fit: cover;
}
.about-accent-line {
  position: absolute; top: -1.5rem; right: -1.5rem;
  width: 80px; height: 80px;
  border-top: 2px solid var(--coral);
  border-right: 2px solid var(--coral);
  border-radius: 0 12px 0 0;
}
.about-content { padding: 1rem 0; }
.about-text {
  font-size: 1rem; color: var(--charcoal-light);
  line-height: 1.85; margin-bottom: 1.5rem;
}
.about-stats {
  display: flex; align-items: center; gap: 2rem;
  margin: 2.5rem 0; padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { text-align: left; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; color: var(--charcoal);
  line-height: 1; margin-bottom: .3rem;
}
.stat-label { font-size: .8rem; color: var(--charcoal-light); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 48px; background: var(--line); }

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

/* ── Why Us ──────────────────────────────────────────────── */
.why-us { padding: 8rem 0; background: var(--charcoal-dark); }
.why-us .section-header { margin-bottom: 4rem; text-align: center; }
.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.why-item { padding-left: 2rem; position: relative; }
.why-item::before {
  content: ''; position: absolute; left: 0; top: .3rem;
  width: 32px; height: 1px; background: var(--coral);
}
.why-number {
  font-family: var(--font-display);
  font-size: 3rem; color: rgba(255,255,255,0.08);
  line-height: 1; margin-bottom: .5rem;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.35rem; color: var(--white);
  margin-bottom: .75rem;
}
.why-desc { font-size: .92rem; color: rgba(255,255,255,0.5); line-height: 1.8; }

@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  padding: 7rem 0;
  background: var(--coral);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap; position: relative;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-accent { font-style: italic; opacity: 0.85; }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-ghost:hover { background: var(--white); color: var(--charcoal); }

@media (max-width: 640px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ── Contact ─────────────────────────────────────────────── */
.contact { padding: 8rem 0; background: var(--white); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 2rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px;
}
.contact-label {
  font-size: .75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--charcoal-light);
  margin-bottom: .2rem;
}
.contact-value { font-size: 1rem; color: var(--charcoal); }
.contact-link { transition: color 0.2s; }
.contact-link:hover { color: var(--coral); }

/* Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: .8rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: .5rem;
  letter-spacing: 0.03em;
}
.form-input {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body); font-size: .95rem;
  color: var(--charcoal); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,87,0.1);
}
.form-input::placeholder { color: #B0B8C4; }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; align-items: center; gap: .75rem;
  margin-top: 1rem; padding: 1rem 1.2rem;
  background: #ECFDF5; border: 1px solid #A7F3D0;
  border-radius: 8px; font-size: .9rem; color: #059669;
}
.form-success.show { display: flex; }

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--charcoal-dark); padding: 5rem 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 4rem;
}
.footer-desc { font-size: .9rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 1rem; max-width: 280px; }
.footer-heading {
  font-size: .75rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.footer-links li { margin-bottom: .7rem; }
.footer-links a, .footer-links li:not(a) {
  font-size: .9rem; color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: inline-flex; align-items: center; gap: .5rem;
}
.footer-links a:hover { color: var(--coral); }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--coral); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Scroll Animations ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
