/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #3D2B1F;
  background: #FFFAF5;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  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: 'DM Serif Display', Georgia, serif; line-height: 1.25; color: #2C1810; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C1694F;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #6B4F3F;
  max-width: 560px;
}
.accent-italic {
  font-style: italic;
  color: #C1694F;
}
.centered { text-align: center; }
.centered .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: #C1694F;
  color: #fff;
  border-color: #C1694F;
  box-shadow: 0 4px 15px rgba(193, 105, 79, 0.35);
}
.btn-primary:hover {
  background: #A8553A;
  border-color: #A8553A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 105, 79, 0.45);
}
.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: #C1694F;
  border-color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: #FFFAF5;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193, 105, 79, 0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(61, 43, 31, 0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 40px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #2C1810;
  font-weight: 400;
}
.nav-logo svg { flex-shrink: 0; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-menu a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: #5D4037;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C1694F;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-menu a:not(.btn):hover { color: #C1694F; }
.nav-menu a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3D2B1F;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #C1694F 0%, #D4956A 25%, #E8C4A0 50%, #D4A574 75%, #B85A3C 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,250,245,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #F5E6D3;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}
.hero-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}
.hero-image-accent {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid rgba(255,255,255,0.15);
  pointer-events: none;
}
.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  z-index: 2;
}
.hero-image::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  z-index: 2;
}

/* ===== ABOUT ===== */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(61, 43, 31, 0.12);
}
.about-img-main img { width: 100%; height: 560px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(61, 43, 31, 0.15);
  border: 5px solid #FFFAF5;
}
.about-img-float img { width: 260px; height: 300px; object-fit: cover; display: block; }
.about-stat {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #C1694F;
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(193, 105, 79, 0.35);
}
.about-stat .stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  line-height: 1.2;
}
.about-stat .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}
.about-text p {
  color: #5D4037;
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #F5E6D3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #2C1810;
  margin-bottom: 4px;
}
.about-feature span {
  font-size: 0.92rem;
  color: #6B4F3F;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFFAF5 0%, #FDF0E6 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  border: 1px solid rgba(193, 105, 79, 0.08);
  box-shadow: 0 4px 20px rgba(61, 43, 31, 0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(193, 105, 79, 0.12);
  border-color: rgba(193, 105, 79, 0.15);
}
.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #2C1810;
}
.service-card p {
  color: #6B4F3F;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== EXPERIENCE ===== */
.experience { padding: 100px 0; }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.experience-intro {
  font-size: 1.05rem;
  color: #5D4037;
  margin-bottom: 36px;
  line-height: 1.8;
}
.steps { display: flex; flex-direction: column; gap: 28px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #C1694F, #D4956A);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
}
.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #2C1810;
}
.step-content p {
  font-size: 0.92rem;
  color: #6B4F3F;
  line-height: 1.7;
}
.experience-visual { position: relative; }
.experience-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(61, 43, 31, 0.12);
}
.experience-img img { width: 100%; height: 680px; object-fit: cover; }
.experience-quote {
  position: absolute;
  bottom: -30px;
  left: -30px;
  right: -30px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 15px 40px rgba(61, 43, 31, 0.12);
  border: 1px solid rgba(193, 105, 79, 0.08);
}
.experience-quote svg { margin-bottom: 12px; }
.experience-quote p {
  font-size: 0.95rem;
  color: #5D4037;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
}
.quote-attr {
  font-size: 0.85rem;
  color: #C1694F;
  font-weight: 600;
  font-style: normal;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #C1694F 0%, #A8553A 50%, #8B4428 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 12px;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-intro {
  font-size: 1.02rem;
  color: #5D4037;
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #F5E6D3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: #2C1810;
  margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: #6B4F3F;
  line-height: 1.6;
}
.contact-detail a:hover { color: #C1694F; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 25px rgba(61, 43, 31, 0.08); }
.contact-form-wrap { }
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(61, 43, 31, 0.08);
  border: 1px solid rgba(193, 105, 79, 0.08);
}
.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-card > p {
  color: #6B4F3F;
  font-size: 0.95rem;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3D2B1F;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E8D5C4;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #3D2B1F;
  background: #FFFAF5;
  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: #C1694F;
  box-shadow: 0 0 0 3px rgba(193, 105, 79, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B89780; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 {
  font-size: 1.4rem;
  color: #2C1810;
  margin-bottom: 8px;
}
.form-success p { color: #6B4F3F; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer {
  background: #2C1810;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong {
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #D4956A; }
.footer-links span { font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 480px; }
  .hero-image img { height: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-images { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: 1fr; gap: 60px; }
  .experience-visual { max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 245, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(193, 105, 79, 0.1);
    box-shadow: 0 10px 30px rgba(61, 43, 31, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-menu a:not(.btn) { font-size: 1.05rem; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .hero-image { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-img-float { right: -10px; bottom: -20px; }
  .about-stat { left: -10px; top: -10px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .experience-quote { position: relative; bottom: auto; left: auto; right: auto; margin-top: 20px; }
  .experience-img img { height: 400px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .about, .services, .experience, .contact { padding: 64px 0; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
}
