/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2937;
  background: #F9FAFB;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Focus ───────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #F97583; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 .5rem .5rem; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid #F97583; outline-offset: 2px; }

/* ── Color Tokens ────────────────────────────────── */
:root {
  --charcoal:    #1F2937;
  --charcoal-lt: #374151;
  --charcoal-dk: #111827;
  --coral:       #F97583;
  --coral-hover: #E85A6A;
  --coral-light: #FFF0F1;
  --gray-50:     #F9FAFB;
  --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;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --radius:      .625rem;
  --radius-sm:   .375rem;
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--charcoal); }
.text-accent { color: var(--coral); }
.text-accent-light { color: var(--coral); }

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

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--coral);
  background: var(--coral-light); padding: .35rem .875rem;
  border-radius: 2rem; margin-bottom: 1rem;
}
.section-label-light { background: rgba(249,117,131,.15); color: var(--coral); }
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: .75rem; }
.section-title-light { color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: var(--gray-500); max-width: 560px; margin: 0 auto; }
.section-subtitle-light { color: rgba(255,255,255,.7); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .9375rem;
  padding: .75rem 1.5rem; border-radius: var(--radius-sm);
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-accent {
  background: var(--coral); color: var(--white);
  box-shadow: 0 4px 14px rgba(249,117,131,.35);
}
.btn-accent:hover { background: var(--coral-hover); box-shadow: 0 6px 20px rgba(249,117,131,.45); }
.btn-outline {
  background: transparent; color: var(--charcoal);
  border: 2px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav { display: none; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: .625rem;
  font-weight: 700; font-size: 1.1rem; color: var(--charcoal);
  line-height: 1.15;
}
.logo-icon { color: var(--coral); flex-shrink: 0; }
.logo-text { font-size: .9375rem; }
.logo-accent { color: var(--coral); }
.logo-light .logo-text { color: var(--white); }

.nav a {
  font-size: .9375rem; font-weight: 500; color: var(--gray-600);
  padding: .375rem 0; position: relative; transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--coral);
  transition: width .25s;
}
.nav a:hover { color: var(--coral); }
.nav a:hover::after { width: 100%; }
.nav-menu {
  display: flex; align-items: center; gap: .25rem;
}
.nav-menu a { padding: .5rem .75rem; }
.btn-nav {
  display: inline-flex; margin-left: .5rem;
  font-size: .875rem; padding: .5rem 1rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: .5rem; color: var(--charcoal);
}
.nav-toggle-icon { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1rem 1.5rem 1.5rem; gap: .25rem;
    border-bottom: 2px solid var(--coral);
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%); opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-menu a { padding: .75rem .5rem; font-size: 1rem; width: 100%; }
  .btn-nav { display: inline-flex; margin-left: 0; margin-top: .5rem; justify-content: center; }
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
  background: var(--charcoal);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(17,24,39,.92) 0%, rgba(31,41,55,.82) 50%, rgba(31,41,55,.7) 100%),
    url('https://images.pexels.com/photos/8985665/pexels-photo-8985665.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900') center/cover no-repeat;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600; color: var(--coral);
  background: rgba(249,117,131,.12); border: 1px solid rgba(249,117,131,.25);
  padding: .5rem 1rem; border-radius: 2rem; margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white); line-height: 1.08; margin-bottom: 1.25rem;
  letter-spacing: -.02em;
}
.hero-subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-number { font-size: 1.5rem; font-weight: 700; color: var(--coral); }
.stat-label { font-size: .8125rem; color: rgba(255,255,255,.5); }
.hero-stat-divider {
  width: 1px; height: 40px; background: rgba(255,255,255,.15);
}
.hero-image-wrapper { position: relative; }
.hero-image {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 400px; object-fit: cover; }
.hero-accent-card {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: .875rem;
  box-shadow: var(--shadow-lg); max-width: 260px;
}
.accent-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--coral-light); color: var(--coral);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-accent-card strong { display: block; font-size: .875rem; color: var(--charcoal); }
.hero-accent-card span { font-size: .75rem; color: var(--gray-500); }
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-accent-card { left: 50%; transform: translateX(-50%); }
  .hero-image img { height: 300px; }
}

/* ── Services ────────────────────────────────────── */
.services { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-200);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-card:hover {
  border-color: var(--coral); box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px; border-radius: .75rem;
  background: var(--coral-light); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.125rem; margin-bottom: .625rem; }
.service-card p { font-size: .9375rem; color: var(--gray-500); line-height: 1.65; }

/* ── About ───────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -2rem; right: -1rem;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
.about-img-secondary img { width: 260px; height: 200px; object-fit: cover; }
.about-experience-badge {
  position: absolute; top: -1rem; right: 2rem;
  background: var(--coral); color: var(--white);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  text-align: center; box-shadow: var(--shadow-md);
}
.exp-number { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.exp-label { font-size: .75rem; opacity: .9; margin-top: .25rem; }
.about-content .section-label { margin-bottom: .75rem; }
.about-content .section-title { margin-bottom: 1.25rem; text-align: left; }
.about-text { font-size: 1rem; color: var(--gray-600); margin-bottom: 1rem; line-height: 1.75; }
.about-features { margin-top: 1.75rem; display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.5rem; }
.about-feature { display: flex; align-items: center; gap: .625rem; font-size: .9375rem; font-weight: 500; color: var(--charcoal); }
.check-icon { color: var(--coral); flex-shrink: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-content .section-title { text-align: center; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .about-features { text-align: left; }
}

/* ── Why Us ──────────────────────────────────────── */
.why-us { background: var(--charcoal); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(249,117,131,.08) 0%, transparent 60%);
}
.why-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 2rem;
  transition: background .25s, border-color .25s;
}
.why-card:hover { background: rgba(255,255,255,.08); border-color: rgba(249,117,131,.3); }
.why-number {
  font-size: 3rem; font-weight: 700; color: rgba(249,117,131,.2);
  line-height: 1; margin-bottom: .75rem;
}
.why-card h3 { font-size: 1.125rem; color: var(--white); margin-bottom: .625rem; }
.why-card p { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── Testimonials ────────────────────────────────── */
.testimonials { background: var(--gray-50); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-200);
  position: relative; transition: box-shadow .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-quote {
  position: absolute; top: 1rem; left: 1.5rem;
  font-size: 4rem; font-family: 'Playfair Display', serif;
  color: var(--coral); line-height: 1; opacity: .25;
}
.testimonial-text {
  font-size: .9375rem; color: var(--gray-600); line-height: 1.75;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: .75rem;
  padding-top: 1.25rem; border-top: 1px solid var(--gray-200);
}
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral-light); color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9375rem; color: var(--charcoal); }
.testimonial-author span { font-size: .8125rem; color: var(--gray-500); }

/* ── CTA ─────────────────────────────────────────── */
.cta { background: var(--charcoal); padding: 4rem 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem); color: var(--white);
  margin-bottom: .5rem;
}
.cta-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.65); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Contact ─────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info .section-label { margin-bottom: .75rem; }
.contact-info .section-title { margin-bottom: .75rem; text-align: left; }
.contact-info .section-subtitle { margin: 0 0 2rem; text-align: left; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: .625rem;
  background: var(--coral-light); color: var(--coral);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: .9375rem; color: var(--charcoal); margin-bottom: .25rem; }
.contact-item p { font-size: .9375rem; color: var(--gray-500); line-height: 1.6; }
.contact-item a { color: var(--coral); font-weight: 500; transition: color .2s; }
.contact-item a:hover { color: var(--coral-hover); }

/* Form */
.contact-form-wrapper {
  background: var(--gray-50); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--gray-200);
}
.form-title { font-size: 1.25rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: .8125rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: .375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .625rem .875rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .9375rem; color: var(--charcoal);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(249,117,131,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-privacy { font-size: .75rem; color: var(--gray-400); margin-top: .75rem; text-align: center; }
.form-success {
  text-align: center; padding: 2rem 1rem;
}
.form-success svg { color: var(--coral); margin: 0 auto .75rem; }
.form-success h4 { font-size: 1.25rem; margin-bottom: .5rem; }
.form-success p { font-size: .9375rem; color: var(--gray-500); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info .section-title,
  .contact-info .section-subtitle { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────── */
.site-footer { background: var(--charcoal-dk); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem; padding-bottom: 3rem;
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.5); margin-top: 1rem; line-height: 1.7; max-width: 280px; }
.footer-links h4,
.footer-contact h4 {
  font-size: .875rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .875rem; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-links a:hover { color: var(--coral); }
.footer-contact p {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: .625rem; line-height: 1.6;
}
.footer-contact a { color: var(--coral); transition: color .2s; }
.footer-contact a:hover { color: var(--coral-hover); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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