/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3D2B1F;
  background: #FDF6EE;
  -webkit-font-smoothing: antialiased;
}
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 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.25; color: #2C1A0E; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { color: #5C4033; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
}
.btn-primary {
  background: #C46A4A; color: #fff; border-color: #C46A4A;
  box-shadow: 0 4px 16px rgba(196,106,74,0.35);
}
.btn-primary:hover { background: #B05A3A; border-color: #B05A3A; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(196,106,74,0.45); }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-md { padding: 12px 24px; font-size: 0.9rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: #fff;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 50px;
  padding: 14px 28px; font-weight: 700; font-size: 0.95rem;
  transition: all 0.3s ease; backdrop-filter: blur(4px);
}
.btn-cta-phone:hover { background: rgba(255,255,255,0.25); border-color: #fff; }

/* ===== SECTION ===== */
.section { padding: 96px 0; }
.section-eyebrow {
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; color: #C46A4A; margin-bottom: 12px;
}
.section-header { max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .section-desc { font-size: 1.05rem; }
.text-center { text-align: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,246,238,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,106,74,0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(61,43,31,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Lora', serif; font-weight: 600; font-size: 1.15rem; color: #2C1A0E; }
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-weight: 600; font-size: 0.9rem; color: #5C4033; transition: color 0.2s; }
.main-nav a:hover { color: #C46A4A; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 24px; height: 2px; background: #3D2B1F; border-radius: 2px; transition: all 0.3s;
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
  background: linear-gradient(135deg, #C46A4A 0%, #D4956A 35%, #E8C4A0 65%, #F5DCC4 100%);
}
.hero-gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 60%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 480px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap { position: relative; }
.hero-image {
  border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(44,26,14,0.3);
  aspect-ratio: 560/640;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: #fff; color: #2C1A0E; font-weight: 700; font-size: 0.85rem;
  padding: 12px 20px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(44,26,14,0.15);
  display: flex; align-items: center; gap: 8px;
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* ===== ABOUT ===== */
.about { background: #FDF6EE; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(44,26,14,0.12); aspect-ratio: 520/620; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-stats {
  position: absolute; bottom: -24px; right: -24px;
  display: flex; gap: 12px;
}
.stat {
  background: #C46A4A; color: #fff; border-radius: 16px; padding: 16px 20px;
  text-align: center; box-shadow: 0 8px 24px rgba(196,106,74,0.3);
}
.stat-number { display: block; font-family: 'Lora', serif; font-weight: 600; font-size: 1.1rem; }
.stat-label { font-size: 0.75rem; opacity: 0.85; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-text .btn { margin-top: 8px; }

/* ===== SERVICES ===== */
.services { background: #F7EDE0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(44,26,14,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(196,106,74,0.08);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,26,14,0.12); }
.service-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(196,106,74,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; }

/* ===== AREAS ===== */
.areas { background: #FDF6EE; }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.areas-content h2 { margin-bottom: 16px; }
.areas-content .section-desc { margin-bottom: 28px; }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.areas-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: #3D2B1F; font-size: 0.95rem;
}
.areas-image-stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.area-img { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 24px rgba(44,26,14,0.1); }
.area-img img { width: 100%; height: 100%; object-fit: cover; }
.area-img--1 { grid-row: 1 / 3; border-radius: 20px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: #F7EDE0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(44,26,14,0.06);
  position: relative; border: 1px solid rgba(196,106,74,0.08);
}
.quote-mark { position: absolute; top: 20px; right: 24px; }
.testimonial-text { font-size: 1rem; line-height: 1.8; color: #5C4033; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-weight: 700; color: #C46A4A; font-size: 0.9rem; }

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, #C46A4A 0%, #D4956A 100%);
  padding: 80px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-content h2 { color: #fff; margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: #FDF6EE; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-desc { margin-bottom: 28px; }
.contact-details { margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-item dt { flex-shrink: 0; margin-top: 2px; }
.contact-item dd { color: #5C4033; font-size: 0.95rem; }
.contact-item a { color: #C46A4A; font-weight: 600; transition: color 0.2s; }
.contact-item a:hover { color: #B05A3A; }
.contact-map { border-radius: 16px; overflow: hidden; }
.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 8px 32px rgba(44,26,14,0.08);
  border: 1px solid rgba(196,106,74,0.1);
}
.contact-form h3 { font-size: 1.4rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; color: #3D2B1F; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #E8D8C8;
  border-radius: 12px; font-family: 'Nunito', sans-serif; font-size: 0.95rem;
  color: #3D2B1F; background: #FDF6EE; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #C46A4A; box-shadow: 0 0 0 3px rgba(196,106,74,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.8rem; color: #8B7355; margin-top: 12px; text-align: center; }
.form-success {
  display: flex; align-items: center; gap: 12px;
  background: rgba(196,106,74,0.1); border-radius: 12px;
  padding: 16px 20px; margin-top: 16px; font-weight: 700; color: #C46A4A;
}

/* ===== FOOTER ===== */
.site-footer { background: #2C1A0E; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #fff; }
.footer-tagline { margin-top: 12px; font-size: 0.9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { color: #fff; font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #E8C4A0; }
.footer-contact address { font-style: normal; font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: #E8C4A0; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-disclaimer { font-size: 0.75rem; opacity: 0.6; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero-badge { left: 50%; transform: translateX(-50%); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 480px; margin: 0 auto; }
  .about-stats { right: 0; }
  .areas-inner { grid-template-columns: 1fr; }
  .areas-image-stack { max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .main-nav { 
    position: fixed; top: 72px; left: 0; right: 0; background: rgba(253,246,238,0.98);
    backdrop-filter: blur(12px); padding: 24px;
    transform: translateY(-120%); transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(44,26,14,0.1); border-radius: 0 0 20px 20px;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 16px; }
  .nav-toggle { display: block; }
  .section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 140px 0 100px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .areas-list { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .about-stats { position: relative; bottom: auto; right: auto; justify-content: center; margin-top: 16px; }
}
