/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #2d3036;
  background: #faf9f8;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Color Utilities ── */
.text-coral-400 { color: #E07A5F; }
.text-coral-200 { color: #F4B5A6; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  border-radius: 50px; transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-coral { background: #E07A5F; color: #fff; box-shadow: 0 4px 20px rgba(224,122,95,0.35); }
.btn-coral:hover { background: #d4624a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,122,95,0.45); }
.btn-outline { background: transparent; color: #2d3036; border: 2px solid #2d3036; }
.btn-outline:hover { background: #2d3036; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #2d3036; box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.btn-white:hover { background: #f6f6f7; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px 24px; font-size: 1rem; }

/* ── Section Shared ── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header--center { }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #E07A5F;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 16px; color: #1a1c20;
}
.section-subtitle { font-size: 1.1rem; color: #6b7078; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,249,248,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,48,54,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(45,48,54,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; color: #1a1c20; }
.nav-logo-icon { width: 36px; height: 36px; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: #555a63; transition: color 0.2s; }
.nav-links a:hover { color: #E07A5F; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: #2d3036; }
.nav-toggle svg { width: 24px; height: 24px; }
.close-icon { display: none; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #faf9f8 0%, #fdf0ed 50%, #f9d7ce 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.hero-shape-1 { width: 600px; height: 600px; background: #f9d7ce; top: -200px; right: -100px; }
.hero-shape-2 { width: 400px; height: 400px; background: #e8d5c8; bottom: -100px; left: -100px; }
.hero-shape-3 { width: 200px; height: 200px; background: #F4B5A6; top: 40%; left: 30%; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,122,95,0.1); color: #E07A5F;
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 24px; color: #1a1c20;
}
.hero-subtitle { font-size: 1.15rem; color: #6b7078; margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stat Cards */
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: 20px;
  padding: 28px 24px; transition: all 0.35s ease;
  box-shadow: 0 4px 24px rgba(45,48,54,0.06);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(224,122,95,0.15); border-color: rgba(224,122,95,0.2); }
.stat-card--1 { grid-column: 1; grid-row: 1; }
.stat-card--2 { grid-column: 2; grid-row: 1; }
.stat-card--3 { grid-column: 1; grid-row: 2; }
.stat-card--4 { grid-column: 2; grid-row: 2; }
.stat-card-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(224,122,95,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.stat-card-number { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: #1a1c20; margin-bottom: 4px; }
.stat-card-label { font-size: 0.82rem; color: #868a91; line-height: 1.4; }

/* ── Services ── */
.services { background: #faf9f8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(45,48,54,0.06); transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #E07A5F, #F4B5A6); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(45,48,54,0.08); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(224,122,95,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #1a1c20; }
.service-card p { font-size: 0.95rem; color: #6b7078; line-height: 1.7; }

/* ── About ── */
.about { background: linear-gradient(180deg, #faf9f8 0%, #fdf0ed 100%); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { border-radius: 24px; box-shadow: 0 20px 60px rgba(45,48,54,0.12); width: 100%; height: 500px; object-fit: cover; }
.about-image-accent {
  position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px;
  border-radius: 24px; background: linear-gradient(135deg, #E07A5F, #F4B5A6);
  z-index: -1; opacity: 0.3;
}
.about-content { }
.about-text { font-size: 1.05rem; color: #6b7078; line-height: 1.8; margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; color: #44484f; }
.about-feature-icon { flex-shrink: 0; }

/* ── Why Us ── */
.why-us { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: linear-gradient(135deg, #faf9f8, #fdf0ed); border-radius: 20px;
  padding: 36px 28px; border: 1px solid rgba(224,122,95,0.08);
  transition: all 0.35s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(224,122,95,0.1); border-color: rgba(224,122,95,0.2); }
.why-card-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: rgba(224,122,95,0.15); margin-bottom: 16px; line-height: 1; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #1a1c20; }
.why-card p { font-size: 0.92rem; color: #6b7078; line-height: 1.7; }

/* ── CTA Section ── */
.cta-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2d3036 0%, #1a1c20 100%);
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-shape { position: absolute; border-radius: 50%; filter: blur(80px); }
.cta-shape-1 { width: 400px; height: 400px; background: rgba(224,122,95,0.2); top: -100px; left: -100px; }
.cta-shape-2 { width: 300px; height: 300px; background: rgba(244,181,166,0.15); bottom: -80px; right: -60px; }
.cta-container { position: relative; z-index: 1; text-align: center; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { background: #faf9f8; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info { }
.contact-text { font-size: 1.05rem; color: #6b7078; line-height: 1.7; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(224,122,95,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #868a91; margin-bottom: 2px; }
.contact-detail-value { font-size: 1rem; font-weight: 500; color: #2d3036; }
.contact-link:hover { color: #E07A5F; }
.contact-map { margin-top: 32px; border-radius: 16px; overflow: hidden; height: 200px; background: #e3e4e6; }
.contact-map iframe { width: 100%; height: 100%; }

/* Contact Form */
.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 40px; border: 1px solid rgba(45,48,54,0.06);
  box-shadow: 0 8px 40px rgba(45,48,54,0.06);
}
.contact-form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; color: #1a1c20; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #555a63; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  border: 1.5px solid #e3e4e6; background: #faf9f8; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: #2d3036; transition: all 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #E07A5F; background: #fff; box-shadow: 0 0 0 3px rgba(224,122,95,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; align-items: center; gap: 10px; margin-top: 16px;
  padding: 14px 20px; border-radius: 12px; background: rgba(76,175,80,0.08);
  color: #2e7d32; font-weight: 500; font-size: 0.95rem;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ── */
.footer { background: #1a1c20; color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; margin-bottom: 16px; }
.footer-logo-icon { width: 36px; height: 36px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #E07A5F; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; margin-bottom: 12px; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #E07A5F; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer-bottom a:hover { color: #E07A5F; }

/* ── 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-cards { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { 
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250,249,248,0.98); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: center; gap: 24px;
    transform: translateX(100%); transition: transform 0.35s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: block; }
  .nav-toggle .menu-icon { display: block; }
  .nav-toggle .close-icon { display: none; }
  .nav-links.open ~ .nav-toggle .menu-icon { display: none; }
  .nav-links.open ~ .nav-toggle .close-icon { display: block; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat-card { padding: 20px 16px; }
  .stat-card-number { font-size: 1.1rem; }
  .stat-card-label { font-size: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .hero-cards { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
