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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
.text-coral { color: #E07A5F; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: #2D2D2D;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: #666;
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-coral {
  background: #E07A5F;
  color: #fff;
  border-color: #E07A5F;
}
.btn-coral:hover { background: #c9664a; border-color: #c9664a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,122,95,0.3); }
.btn-outline {
  background: transparent;
  color: #2D2D2D;
  border-color: #2D2D2D;
}
.btn-outline:hover { background: #2D2D2D; color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: #E07A5F;
  border-color: #fff;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248,245,242,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D2D2D;
  line-height: 1.2;
}
.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  color: #888;
  letter-spacing: 0.02em;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a:not(.nav-cta) {
  font-size: 0.9rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
  position: relative;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E07A5F;
  transition: width 0.3s ease;
}
.nav a:not(.nav-cta):hover { color: #2D2D2D; }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #E07A5F;
  background: rgba(224,122,95,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: #E07A5F; color: #fff; }
.nav-close { display: none; }

/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #2D2D2D;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, #F8F5F2 0%, #FDF0EC 50%, #F8F5F2 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/8985455/pexels-photo-8985455.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: 0.08;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,122,95,0.1);
  border: 1px solid rgba(224,122,95,0.25);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #E07A5F;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #E07A5F;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: #2D2D2D;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.15rem;
  color: #666;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #F8F5F2;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: rgba(224,122,95,0.2);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(224,122,95,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}
.service-card:hover .service-icon { background: #E07A5F; }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2D2D2D;
}
.service-card p { font-size: 0.92rem; color: #777; line-height: 1.7; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border: 4px solid #fff;
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about-stat {
  position: absolute;
  top: -20px;
  left: -16px;
  background: #E07A5F;
  color: #fff;
  padding: 16px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(224,122,95,0.35);
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.about-stat-label {
  font-size: 0.75rem;
  opacity: 0.85;
  font-weight: 500;
}
.about-content .section-desc { margin-bottom: 24px; }
.about-text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #444;
}

/* ── Why Us ── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(160deg, #2D2D2D 0%, #3a3a3a 100%);
  color: #fff;
}
.why-us .section-title { color: #fff; }
.why-us .section-desc { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.35s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(224,122,95,0.4);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(224,122,95,0.4);
  margin-bottom: 16px;
  line-height: 1;
}
.why-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #E07A5F 0%, #c9664a 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #F8F5F2;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(224,122,95,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  margin-bottom: 4px;
}
.contact-detail div div:last-child {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}
.contact-detail a { color: #E07A5F; font-weight: 500; transition: color 0.2s; }
.contact-detail a:hover { color: #c9664a; }
.contact-desc { font-size: 0.95rem; color: #666; margin-bottom: 36px; line-height: 1.8; }

/* ── Contact Form ── */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.form-title {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: #2D2D2D;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e4e0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #2D2D2D;
  background: #F8F5F2;
  transition: all 0.2s ease;
  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.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.active { display: block; }
.success-icon { margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 8px; color: #2D2D2D; }
.form-success p { color: #888; font-size: 0.92rem; }

/* ── Map ── */
.map-section { height: 320px; background: #ddd; }
.map-section iframe { width: 100%; height: 100%; }

/* ── Footer ── */
.site-footer {
  background: #2D2D2D;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.logo-footer .logo-text { color: #fff; }
.logo-footer .logo-sub { color: rgba(255,255,255,0.5); }
.footer-tagline { font-size: 0.88rem; margin-top: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links ul li, .footer-contact ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: #E07A5F; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #E07A5F; }
.footer-contact svg { flex-shrink: 0; opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── Mobile Nav Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(248,245,242,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay.open .nav {
  flex-direction: column;
  gap: 24px;
}
.nav-overlay.open .nav a:not(.nav-cta) {
  font-size: 1.3rem;
  color: #2D2D2D;
}
.nav-overlay.open .nav-close {
  display: block;
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #2D2D2D;
  padding: 4px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: 85vh; padding: 100px 20px 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: 10px; bottom: -30px; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 90px 16px 50px; }
  .about-img-accent { display: none; }
  .about-stat { left: 0; }
}
