/* ── 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, sans-serif;
  color: #2D2A26;
  background: #FDF8F4;
  line-height: 1.6;
  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', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary { background: #C0603A; color: #fff; border-color: #C0603A; }
.btn-primary:hover { background: #A84E2C; border-color: #A84E2C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,96,58,0.3); }
.btn-secondary { background: transparent; color: #2D2A26; border-color: #2D2A26; }
.btn-secondary:hover { background: #2D2A26; color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: #fff; color: #C0603A; border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Labels ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: #C0603A; margin-bottom: 12px;
}
.section-label::before { content: ''; width: 32px; height: 2px; background: #C0603A; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; color: #2D2A26; }
.section-title--light { color: #fff; }
.section-desc { font-size: 1.1rem; color: #6B6560; max-width: 600px; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,244,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,96,58,0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.15rem; color: #2D2A26; }
.logo-light { color: #fff; }
.logo-mark { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #2D2A26; transition: color 0.2s; }
.nav-links a:hover { color: #C0603A; }
.nav-cta {
  background: #C0603A; color: #fff !important; padding: 10px 20px;
  border-radius: 8px; font-weight: 600; transition: all 0.25s ease;
}
.nav-cta:hover { background: #A84E2C; transform: translateY(-1px); }

/* Mobile toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #2D2A26; border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #FDF8F4; border-bottom: 2px solid #C0603A; padding: 24px; flex-direction: column; gap: 16px; z-index: 999; }
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(192,96,58,0.1); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FDF8F4 0%, #F5E6D3 50%, #EDD5C0 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.geo-circle { position: absolute; border-radius: 50%; }
.geo-circle--1 { width: 400px; height: 400px; background: rgba(192,96,58,0.07); top: -80px; right: -100px; }
.geo-circle--2 { width: 200px; height: 200px; background: rgba(192,96,58,0.05); bottom: 10%; left: 5%; }
.geo-square { position: absolute; border-radius: 16px; background: rgba(192,96,58,0.06); transform: rotate(45deg); }
.geo-square--1 { width: 160px; height: 160px; top: 20%; left: 3%; }
.geo-triangle { position: absolute; width: 0; height: 0; }
.geo-triangle--1 { border-left: 80px solid transparent; border-right: 80px solid transparent; border-bottom: 140px solid rgba(192,96,58,0.05); top: 60%; right: 8%; transform: rotate(-15deg); }
.geo-diamond { position: absolute; border-radius: 8px; background: rgba(192,96,58,0.08); transform: rotate(30deg); }
.geo-diamond--1 { width: 100px; height: 100px; bottom: 25%; right: 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(192,96,58,0.1); color: #C0603A;
  padding: 8px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 20px; color: #2D2A26; line-height: 1.15; }
.hero-sub { font-size: 1.15rem; color: #6B6560; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: #C0603A; }
.stat-label { font-size: 0.82rem; color: #6B6560; }
.stat-divider { width: 1px; height: 40px; background: rgba(192,96,58,0.2); }

.hero-visual { position: relative; }
.hero-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.hero-img-wrap img { width: 100%; height: 620px; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -20px; left: -20px;
  width: 120px; height: 120px; background: #C0603A; border-radius: 16px; z-index: -1;
}
.hero-floating-card {
  position: absolute; bottom: 40px; left: -40px;
  background: #fff; padding: 20px 24px; border-radius: 14px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.hero-floating-card strong { display: block; font-size: 0.9rem; color: #2D2A26; }
.hero-floating-card span { font-size: 0.8rem; color: #6B6560; }

/* ── Services ── */
.services { padding: 100px 0; background: #fff; }
.services .container { text-align: center; }
.services .section-desc { margin: 0 auto 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #FDF8F4; border-radius: 16px; padding: 36px 28px;
  text-align: left; transition: all 0.3s ease;
  border: 1px solid transparent; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: #C0603A; transform: scaleX(0); transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { border-color: rgba(192,96,58,0.15); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(192,96,58,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: rgba(192,96,58,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #2D2A26; }
.service-card p { font-size: 0.95rem; color: #6B6560; line-height: 1.65; }

/* ── About ── */
.about { padding: 100px 0; background: #FDF8F4; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-img-main img { width: 100%; height: 560px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  border-radius: 14px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border: 4px solid #FDF8F4;
}
.about-img-secondary img { width: 240px; height: 200px; object-fit: cover; }
.about-accent-block {
  position: absolute; top: -20px; right: 40px;
  width: 100px; height: 100px; background: #C0603A; border-radius: 16px; z-index: -1;
}
.about-content .section-desc { margin-bottom: 20px; }
.about-content p { color: #6B6560; margin-bottom: 16px; }
.about-values { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.value-item { display: flex; align-items: center; gap: 12px; font-weight: 500; color: #2D2A26; }
.value-check { width: 24px; height: 24px; background: rgba(192,96,58,0.1); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ── Why Us ── */
.why-us { padding: 100px 0; background: #C0603A; position: relative; overflow: hidden; }
.why-us::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(160,70,40,0.95) 0%, rgba(192,96,58,0.95) 100%); }
.why-us .container { position: relative; z-index: 1; }
.why-header { text-align: center; margin-bottom: 60px; }
.why-header .section-label { color: rgba(255,255,255,0.7); }
.why-header .section-label::before { background: rgba(255,255,255,0.5); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 36px 24px; text-align: center;
  transition: all 0.3s ease; backdrop-filter: blur(8px);
}
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.why-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: rgba(255,255,255,0.2); margin-bottom: 16px; }
.why-card h3 { font-size: 1.15rem; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: #FDF8F4; }
.testimonials .container { text-align: center; }
.testimonials .section-desc { margin: 0 auto 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  text-align: left; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease; border: 1px solid rgba(192,96,58,0.06);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(192,96,58,0.1); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testimonial-card p { font-size: 0.95rem; color: #6B6560; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; flex-direction: column; }
.author-name { font-weight: 600; color: #2D2A26; font-size: 0.95rem; }
.author-location { font-size: 0.82rem; color: #C0603A; }

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2D2A26 0%, #3D3830 100%);
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-geo { position: absolute; }
.cta-geo--circle { width: 300px; height: 300px; border-radius: 50%; border: 2px solid rgba(192,96,58,0.2); top: -80px; right: -60px; }
.cta-geo--square { width: 120px; height: 120px; background: rgba(192,96,58,0.08); border-radius: 16px; bottom: 20px; left: 5%; transform: rotate(20deg); }
.cta-geo--triangle { width: 0; height: 0; border-left: 60px solid transparent; border-right: 60px solid transparent; border-bottom: 100px solid rgba(192,96,58,0.1); top: 30%; left: 15%; }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: #fff; margin-bottom: 16px; }
.cta-content p { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info .section-desc { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 48px; height: 48px; background: rgba(192,96,58,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: #C0603A; margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 0.95rem; color: #2D2A26; }
.contact-item a:hover { color: #C0603A; }
.contact-map { border-radius: 12px; overflow: hidden; }

.contact-form-wrap {
  background: #FDF8F4; border-radius: 20px; padding: 40px;
  border: 1px solid rgba(192,96,58,0.08);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 24px; color: #2D2A26; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #2D2A26; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #E8DDD4;
  border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: #2D2A26; background: #fff; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #C0603A;
}
.form-group textarea { resize: vertical; }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success h4 { font-size: 1.3rem; color: #2D2A26; margin: 16px 0 8px; }
.form-success p { color: #6B6560; }

/* ── Footer ── */
.site-footer { background: #2D2A26; color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; line-height: 1.65; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: #C0603A; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-floating-card { left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-img-wrap img { height: 400px; }
  .hero-floating-card { position: relative; bottom: auto; left: auto; margin-top: 16px; display: inline-flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-secondary { right: -10px; bottom: -15px; }
  .about-accent-block { right: 20px; top: -10px; width: 60px; height: 60px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
