/* ── 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, -apple-system, sans-serif;
  color: #1e293b;
  background: #f8fafc;
  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 { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Tokens ── */
:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ── Nav ── */
.nav {
  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(--slate-200);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--slate-800);
}
.nav-logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav-tag { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.85rem; color: var(--teal-600); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--slate-600); transition: color 0.2s; }
.nav-links a:hover { color: var(--teal-600); }
.nav-cta {
  background: var(--teal-600); color: var(--white) !important;
  padding: 10px 20px; border-radius: 8px; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--teal-700); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--slate-700);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh; padding: 120px 0 80px;
  background: var(--white);
  overflow: hidden;
}
.hero-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--teal-600);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); }
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--slate-900);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-desc {
  font-size: 1.1rem; color: var(--slate-600);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.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: 10px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary { background: var(--teal-600); color: var(--white); }
.btn-primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-secondary { background: var(--slate-100); color: var(--slate-700); }
.btn-secondary:hover { background: var(--slate-200); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--slate-800); }
.hero-stat-label { font-size: 0.8rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-stat-divider { width: 1px; height: 48px; background: var(--slate-200); }

/* Hero Visual */
.hero-visual { position: relative; height: 680px; }
.hero-img-main {
  width: 100%; height: 560px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute; bottom: 0; left: -40px;
  width: 260px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.hero-img-float img { width: 100%; height: 180px; object-fit: cover; }
.hero-float-badge {
  background: var(--white); padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--slate-700);
}
.hero-float-badge svg { width: 18px; height: 18px; color: var(--teal-500); flex-shrink: 0; }
.hero-accent-bar {
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 20px;
  background: var(--teal-600); opacity: 0.1;
}

/* ── Section Shared ── */
.section-eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-600);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--slate-900); margin-bottom: 16px;
}
.section-title .accent { color: var(--teal-600); }
.section-desc { font-size: 1.05rem; color: var(--slate-500); max-width: 560px; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ── Services ── */
.services { padding: 100px 0; background: var(--slate-50); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--slate-200);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: var(--teal-500);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--teal-50); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; color: var(--teal-600); }
.service-card h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--slate-800); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--slate-500); line-height: 1.7; }

/* ── About ── */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-1 { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.about-img-1 img { width: 100%; height: 100%; object-fit: cover; }
.about-img-2 {
  margin-top: 40px; border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.about-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--teal-600); color: var(--white);
  padding: 20px 24px; border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: 0 12px 32px rgba(13,148,136,0.35);
}
.about-exp-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-exp-label { font-size: 0.8rem; font-weight: 600; opacity: 0.9; margin-top: 4px; }
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text { font-size: 1rem; color: var(--slate-600); line-height: 1.8; margin-bottom: 16px; }
.about-features { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; font-weight: 500; color: var(--slate-700);
}
.about-feature svg { width: 20px; height: 20px; color: var(--teal-500); flex-shrink: 0; }

/* ── Why ── */
.why { padding: 100px 0; background: var(--slate-900); }
.why-header { text-align: center; margin-bottom: 64px; }
.why-header .section-title { color: var(--white); }
.why-header .accent { color: var(--teal-400, #5eead4); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px 28px;
  transition: transform 0.3s, background 0.3s;
}
.why-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.08); }
.why-num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem;
  font-weight: 700; color: var(--teal-500); opacity: 0.5; line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: var(--slate-400); line-height: 1.7; }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: var(--slate-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: 16px; padding: 36px 28px;
  border: 1px solid var(--slate-200);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.testimonial-quote {
  width: 32px; height: 24px; color: var(--teal-200, #99f6e4);
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem; color: var(--slate-600); line-height: 1.8;
  margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-600); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.testimonial-name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--slate-800); }
.testimonial-location { font-size: 0.8rem; color: var(--slate-400); }

/* ── Contact ── */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-desc { font-size: 1.05rem; color: var(--slate-500); 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: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-50); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--teal-600); }
.contact-label { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-400); margin-bottom: 2px; }
.contact-value { display: block; font-size: 0.95rem; font-weight: 600; color: var(--slate-800); }
.contact-value:hover { color: var(--teal-600); }

/* Form */
.contact-form-wrap {
  background: var(--slate-50); border-radius: 20px; padding: 40px;
  border: 1px solid var(--slate-200);
}
.form-title {
  font-size: 1.4rem; color: var(--slate-800); margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--slate-600); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.form-input {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--slate-200); background: var(--white);
  font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--slate-800);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(20,184,166,0.15); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: 10px;
  background: var(--teal-50); color: var(--teal-700);
  font-size: 0.9rem; font-weight: 600;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Map ── */
.map-section { height: 360px; }
.map-section iframe { width: 100%; height: 100%; }

/* ── Footer ── */
.footer { background: var(--slate-900); padding: 80px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-icon { width: 28px; height: 28px; }
.footer-tag { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.85rem; color: var(--teal-400, #5eead4); }
.footer-desc { font-size: 0.88rem; color: var(--slate-400); line-height: 1.7; max-width: 280px; }
.footer-heading {
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--white);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--slate-400); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-400, #5eead4); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.85rem; color: var(--slate-400); margin-bottom: 14px; line-height: 1.5;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--teal-500); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: var(--slate-400); transition: color 0.2s; }
.footer-contact a:hover { color: var(--teal-400, #5eead4); }
.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--slate-500); }
.footer-bottom a { color: var(--teal-400, #5eead4); }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 32px 24px; gap: 20px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.35s, opacity 0.35s;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-cta { margin-top: 8px; text-align: center; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 420px; order: -1; }
  .hero-img-main { height: 320px; }
  .hero-img-float { left: 16px; width: 200px; }
  .hero-img-float img { height: 140px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { max-width: 480px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
