/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #3D2B1F;
  background: #FDF8F3;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #C0603A; color: #fff; padding: 8px 16px;
  border-radius: 0 0 8px 8px; z-index: 1000; font-weight: 700;
}
.skip-link:focus { top: 0; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; color: #3D2B1F; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: #C0603A; margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: #C0603A; border-radius: 2px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-title--center { text-align: center; }
.section-lead { font-size: 1.1rem; color: #6B4C3B; max-width: 640px; }
.section-lead--center { text-align: center; margin: 0 auto 48px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.95rem; border: 2px solid transparent;
  cursor: pointer; transition: all 0.3s ease; white-space: nowrap;
}
.btn-primary { background: #C0603A; color: #fff; border-color: #C0603A; }
.btn-primary:hover { background: #A84E2D; border-color: #A84E2D; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,96,58,0.3); }
.btn-secondary { background: transparent; color: #C0603A; border-color: #C0603A; }
.btn-secondary:hover { background: #C0603A; color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #C0603A; border-color: #C0603A; }
.btn-outline:hover { background: #C0603A; color: #fff; transform: translateY(-2px); }
.btn-nav { background: #C0603A; color: #fff; padding: 10px 22px; font-size: 0.85rem; }
.btn-nav:hover { background: #A84E2D; }
.btn-full { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,248,243,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(61,43,31,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.4rem; font-weight: 700; color: #3D2B1F; }
.primary-nav ul { display: flex; align-items: center; gap: 32px; }
.primary-nav a { font-weight: 600; font-size: 0.9rem; color: #6B4C3B; transition: color 0.2s; }
.primary-nav a:not(.btn):hover { color: #C0603A; }

/* Nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger { display: block; width: 24px; height: 2px; background: #3D2B1F; border-radius: 2px; transition: all 0.3s; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253,248,243,0.98); backdrop-filter: blur(12px);
    padding: 24px; border-bottom: 1px solid rgba(192,96,58,0.1);
    transform: translateY(-120%); transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(61,43,31,0.1);
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav ul { flex-direction: column; gap: 20px; }
  .primary-nav a:not(.btn) { font-size: 1.1rem; }
}

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
  background: linear-gradient(135deg, #FDF8F3 0%, #F5E6D3 50%, #EDD5C0 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 2px 2px, #C0603A 1px, transparent 0);
  background-size: 32px 32px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,96,58,0.1); color: #C0603A;
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.05em; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 24px; color: #3D2B1F;
}
.hero-title .accent { color: #C0603A; }
.hero-sub { font-size: 1.15rem; color: #6B4C3B; margin-bottom: 36px; max-width: 520px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #C0603A; }
.stat-label { font-size: 0.8rem; color: #6B4C3B; }
.stat-divider { width: 1px; height: 40px; background: rgba(192,96,58,0.2); }

/* Hero images */
.hero-img-group {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 1; pointer-events: none;
}
.hero-img { border-radius: 24px; object-fit: cover; box-shadow: 0 20px 60px rgba(61,43,31,0.15); }
.hero-img-1 { position: absolute; width: 400px; height: 520px; right: 8%; opacity: 0.95; }
.hero-img-2 { position: absolute; width: 320px; height: 400px; right: 38%; bottom: -40px; opacity: 0.85; border-radius: 20px; }
.hero-img-float {
  position: absolute; width: 200px; height: 200px; right: 22%; top: 10%;
  border-radius: 50%; overflow: hidden; border: 4px solid rgba(253,248,243,0.8);
  box-shadow: 0 12px 32px rgba(61,43,31,0.12);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1024px) {
  .hero-img-group { display: none; }
  .hero-inner { max-width: 100%; }
}
@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}

/* ─── ABOUT ─── */
.about { padding: 100px 0; background: #FDF8F3; }
.about-inner { max-width: 1100px; }
.about-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.about-card {
  background: #fff; border-radius: 20px; padding: 36px;
  box-shadow: 0 4px 20px rgba(61,43,31,0.06);
  border: 1px solid rgba(192,96,58,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(61,43,31,0.1); }
.about-icon { margin-bottom: 16px; }
.about-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #3D2B1F; }
.about-card p { font-size: 0.95rem; color: #6B4C3B; line-height: 1.7; }

@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; }
  .about { padding: 60px 0; }
}

/* ─── SERVICES ─── */
.services { padding: 100px 0; background: linear-gradient(180deg, #F5E6D3 0%, #FDF8F3 100%); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(61,43,31,0.06);
  border: 1px solid rgba(192,96,58,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(61,43,31,0.1); }
.service-num {
  font-family: 'Playfair Display', serif; font-size: 3rem;
  font-weight: 700; color: rgba(192,96,58,0.1); line-height: 1;
  margin-bottom: 12px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #3D2B1F; }
.service-card p { font-size: 0.9rem; color: #6B4C3B; line-height: 1.7; }

@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 60px 0; }
}

/* ─── GALLERY ─── */
.gallery { padding: 100px 0; background: #FDF8F3; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 48px;
}
.gallery-item { border-radius: 16px; overflow: hidden; aspect-ratio: 3/2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 0; background: linear-gradient(135deg, #C0603A 0%, #A84E2D 100%); color: #fff; }
.testimonials .section-label { color: rgba(255,255,255,0.7); }
.testimonials .section-label::before { background: rgba(255,255,255,0.5); }
.testimonials .section-title { color: #fff; }
.testimonials .section-lead { color: rgba(255,255,255,0.8); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.testimonial-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border-radius: 20px; padding: 32px; border: 1px solid rgba(255,255,255,0.15);
  position: relative; transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.quote-mark { position: absolute; top: 20px; right: 24px; }
.testimonial-card p { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.9); margin-bottom: 20px; margin-top: 16px; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.6); }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 60px 0; }
}

/* ─── CTA ─── */
.cta { padding: 80px 0; background: #F5E6D3; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-text .section-title { margin-bottom: 12px; }
.cta-text p { font-size: 1.05rem; color: #6B4C3B; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ─── CONTACT ─── */
.contact { padding: 100px 0; background: #FDF8F3; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item dt { flex-shrink: 0; width: 44px; height: 44px; background: rgba(192,96,58,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-item dd { margin: 0; }
.contact-item a { font-weight: 600; color: #3D2B1F; transition: color 0.2s; }
.contact-item a:hover { color: #C0603A; }
.contact-item p { font-size: 0.95rem; color: #6B4C3B; line-height: 1.6; }

/* Form */
.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 8px 32px rgba(61,43,31,0.08);
  border: 1px solid rgba(192,96,58,0.08);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; color: #3D2B1F; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 2px solid rgba(192,96,58,0.15); background: #FDF8F3;
  font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: #3D2B1F;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #C0603A; box-shadow: 0 0 0 4px rgba(192,96,58,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #B8978A; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: #B8978A; margin-top: 12px; text-align: center; }

/* Success state */
.form-success { text-align: center; padding: 32px; }
.form-success h4 { font-size: 1.3rem; margin: 12px 0 8px; color: #3D2B1F; }
.form-success p { color: #6B4C3B; }
.contact-form.hidden { display: none; }
.form-success.hidden { display: none; }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 480px) {
  .contact-form-wrap { padding: 24px; }
  .contact { padding: 60px 0; }
}

/* ─── FOOTER ─── */
.footer { background: #3D2B1F; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; max-width: 300px; }
.footer-links h4, .footer-contact h4 { color: #fff; font-family: 'Nunito', sans-serif; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #E8A87C; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: #E8A87C; 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; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px;
  border-radius: 50%; background: #C0603A; color: #fff; border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(192,96,58,0.3); opacity: 0;
  transform: translateY(16px); transition: all 0.3s ease; z-index: 50;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #A84E2D; transform: translateY(-2px); }

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