/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #2d2d2d;
  --charcoal-deep: #1a1a1a;
  --charcoal-light: #3d3d3d;
  --coral: #ff6b4a;
  --coral-dark: #e8553a;
  --coral-light: #ff8a72;
  --white: #ffffff;
  --off-white: #faf8f6;
  --gray-50: #f7f6f4;
  --gray-100: #efeeeb;
  --gray-200: #e2e0db;
  --gray-300: #c8c5bd;
  --gray-400: #9e9b93;
  --gray-500: #747169;
  --gray-600: #55524b;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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; }
label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid var(--gray-300);
  color: var(--charcoal);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--charcoal);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-1px); }

.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-full { width: 100%; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,248,246,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--gray-200); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
}
.logo-text { letter-spacing: -0.01em; }

.nav { display: flex; align-items: center; gap: 32px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-menu a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--gray-600);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.25s var(--ease-out);
}
.nav-menu a:hover { color: var(--charcoal); }
.nav-menu a:hover::after { width: 100%; }

.btn-nav {
  background: var(--charcoal);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.8rem !important;
  letter-spacing: 0.01em;
  transition: background 0.2s ease !important;
}
.btn-nav::after { display: none; }
.btn-nav:hover { background: var(--charcoal-light) !important; }

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--charcoal);
}

/* ─── Hero ─── */
.hero {
  padding-top: 68px;
  background: var(--off-white);
}
.hero-line {
  height: 1px;
  background: linear-gradient(90deg, var(--gray-200), transparent 70%);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 60px 0 80px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  line-height: 0.95;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 400;
}
.detail-item svg { color: var(--gray-400); flex-shrink: 0; }

.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.hero-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: var(--off-white);
}

.section-header {
  margin-bottom: 64px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--off-white);
  padding: 40px 32px;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--white); }

.service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--coral);
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--coral);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--gray-500);
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100px;
  height: 100px;
  border: 2px solid var(--coral);
  border-radius: 12px;
  opacity: 0.25;
  pointer-events: none;
}

.about-content { padding: 8px 0; }
.about-content .section-title { margin-bottom: 24px; }

.about-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.stat { flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  letter-spacing: 0.01em;
}
.stat-divider {
  width: 1px;
  background: var(--gray-200);
  align-self: stretch;
  flex-shrink: 0;
}

/* ─── Why Us ─── */
.why-us {
  padding: 100px 0;
  background: var(--charcoal-deep);
}
.why-us .section-title { color: var(--white); }

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 64px;
}

.feature-item {
  background: var(--charcoal-deep);
  padding: 44px 40px;
  transition: background 0.3s ease;
}
.feature-item:hover { background: var(--charcoal); }

.feature-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.feature-item h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-item p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ─── CTA ─── */
.cta {
  padding: 100px 0;
  background: var(--coral);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.cta-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info .section-title { margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray-100);
  color: var(--coral);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.contact-value {
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 400;
}
.contact-item a {
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: color 0.2s ease;
}
.contact-item a:hover { color: var(--coral); }

.map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.map-link {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  color: var(--charcoal);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s ease;
}
.map-link:hover { background: var(--gray-50); }

/* ─── Form ─── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 40px;
}
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.form-note {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,74,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #166534;
  font-weight: 400;
}
.form-success.visible { display: block; }

/* ─── Footer ─── */
.site-footer {
  background: var(--charcoal-deep);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo { color: var(--white); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--coral); }
.footer-copy {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .btn-nav { display: block; text-align: center; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 60px;
    gap: 32px;
  }
  .hero-headline { font-size: clamp(2.6rem, 10vw, 3.6rem); }
  .hero-image { max-height: 400px; }

  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .about { padding: 72px 0; }
  .about-inner { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }

  .why-us { padding: 72px 0; }
  .features-list { grid-template-columns: 1fr; }

  .cta { padding: 72px 0; }

  .contact { padding: 72px 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }

  .footer-links { gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 280px; }
}
