/* ===== 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: #2C2C2C;
  background: #F5F0EB;
  line-height: 1.6;
  -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; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 600; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: #B85D45; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1A1A1A; margin-bottom: 16px;
}
.section-title.light { color: #F5F0EB; }
.section-desc { font-size: 1.05rem; color: #5A5A5A; max-width: 560px; }
.section-desc.light { color: #c4bfb8; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.25s ease; border: 2px solid transparent;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary { background: #B85D45; color: #fff; border-color: #B85D45; }
.btn-primary:hover { background: #a04e38; border-color: #a04e38; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,93,69,0.3); }
.btn-outline { background: transparent; color: #1A1A1A; border-color: #1A1A1A; }
.btn-outline:hover { background: #1A1A1A; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #B85D45; border-color: #fff; }
.btn-white:hover { background: #f5f0eb; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 10px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,240,235,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,93,69,0.1);
  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; padding-top: 16px; padding-bottom: 16px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: #1A1A1A; line-height: 1.2; }
.logo-text em { font-style: italic; color: #B85D45; font-weight: 500; }
.logo-light .logo-text { color: #F5F0EB; }
.logo-light .logo-text em { color: #e8a892; }

/* NAV */
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a { font-size: 0.9rem; font-weight: 500; color: #4A4A4A; transition: color 0.2s; position: relative; }
.nav-list a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #B85D45; transition: width 0.25s; }
.nav-list a:hover { color: #B85D45; }
.nav-list a:hover::after { width: 100%; }
.nav-cta {
  background: #B85D45; color: #fff !important; padding: 10px 22px;
  border-radius: 8px; font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #a04e38; color: #fff !important; }

/* HAMBURGER */
.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: #1A1A1A; transition: all 0.3s; border-radius: 2px; }
.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); }

/* ===== HERO ===== */
.hero {
  padding-top: 120px; padding-bottom: 0;
  background: #F5F0EB;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}
.hero-content { padding-right: 16px; }
.hero-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #B85D45; margin-bottom: 20px;
  background: rgba(184,93,69,0.1); padding: 8px 16px; border-radius: 50px;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: #1A1A1A; margin-bottom: 20px; line-height: 1.1;
}
.hero-desc { font-size: 1.1rem; color: #5A5A5A; margin-bottom: 32px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: #fff; border-radius: 12px; padding: 24px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.stat { flex: 1; text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #B85D45; }
.stat-label { font-size: 0.8rem; color: #7A7A7A; margin-top: 4px; display: block; }
.stat-divider { width: 1px; height: 40px; background: #e8e0d8; }

/* HERO IMAGE */
.hero-image { position: relative; }
.hero-img-main { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -40px; left: -40px;
  width: 180px; height: 180px; border-radius: 12px; overflow: hidden;
  border: 6px solid #F5F0EB; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.hero-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: 24px; right: -20px;
  background: #1A1A1A; color: #fff; padding: 12px 20px;
  border-radius: 10px; font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero-wave { margin-top: -1px; }
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ===== SERVICES ===== */
.services { padding: 96px 0; background: #F5F0EB; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff; border-radius: 16px; padding: 36px 28px;
  transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: rgba(184,93,69,0.15); }
.service-icon { margin-bottom: 20px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; color: #1A1A1A; }
.service-card p { font-size: 0.92rem; color: #6A6A6A; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 96px 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: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -32px; right: -32px;
  width: 200px; border-radius: 12px; overflow: hidden;
  border: 5px solid #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience {
  position: absolute; top: -24px; right: 40px;
  background: #B85D45; color: #fff; padding: 24px 28px;
  border-radius: 12px; text-align: center;
  box-shadow: 0 8px 24px rgba(184,93,69,0.3);
}
.about-experience .exp-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; }
.about-experience .exp-text { font-size: 0.8rem; font-weight: 500; opacity: 0.9; line-height: 1.4; }
.about-content .section-desc { margin-bottom: 24px; }
.about-content > p { color: #5A5A5A; margin-bottom: 16px; font-size: 0.95rem; line-height: 1.8; }
.about-values { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 14px; }
.value-item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: #3A3A3A; font-weight: 500; }

/* ===== WHY US ===== */
.why-us { padding: 96px 0; background: #1A1A1A; }
.why-us .section-header { margin-bottom: 56px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px 28px; transition: all 0.3s;
}
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(184,93,69,0.4); transform: translateY(-4px); }
.why-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: rgba(184,93,69,0.4); margin-bottom: 16px; line-height: 1; }
.why-card h3 { font-size: 1.1rem; color: #F5F0EB; margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: #9A9A9A; line-height: 1.7; }

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

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #B85D45 0%, #8B4230 100%);
}
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 480px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-desc { color: #5A5A5A; margin-bottom: 32px; font-size: 0.95rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #B85D45; margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 0.95rem; color: #4A4A4A; line-height: 1.6; }
.contact-item a:hover { color: #B85D45; }
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* FORM */
.contact-form-wrap {
  background: #F5F0EB; border-radius: 16px; padding: 40px;
}
.contact-form-wrap h3 { font-size: 1.5rem; color: #1A1A1A; margin-bottom: 8px; }
.contact-form-wrap > p { color: #6A6A6A; font-size: 0.9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #3A3A3A; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #e0d8d0;
  border-radius: 8px; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  background: #fff; color: #2C2C2C; transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #B85D45;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success h4 { font-size: 1.3rem; color: #1A1A1A; margin: 12px 0 8px; }
.form-success p { color: #6A6A6A; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.site-footer { background: #1A1A1A; color: #9A9A9A; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: #F5F0EB; margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: #8A8A8A; transition: color 0.2s; }
.footer-links a:hover { color: #e8a892; }
.footer-contact p { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.footer-contact a { color: #8A8A8A; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-contact a:hover { color: #e8a892; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); 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.82rem; color: #6A6A6A; }
.footer-bottom a { color: #8A8A8A; transition: color 0.2s; }
.footer-bottom a:hover { color: #e8a892; }

/* ===== 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-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 500px; }
  .hero-img-accent { left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: #F5F0EB; flex-direction: column; padding: 80px 32px 32px;
    gap: 20px; box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
  }
  .nav-list.open { right: 0; }
  .nav-list a { font-size: 1.05rem; }
  .hero { padding-top: 96px; }
  .hero-grid { padding-bottom: 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { width: 160px; right: -16px; bottom: -24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-grid { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .hero-img-accent { width: 120px; height: 120px; bottom: -20px; left: -12px; }
  .hero-badge { right: 0; font-size: 0.78rem; padding: 10px 14px; }
}
