/* ===== 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: #1a1a1a;
  background: #FAF6F1;
  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; }

/* ===== COLORS ===== */
:root {
  --terracotta: #C04020;
  --terracotta-dark: #9E3218;
  --terracotta-light: #D4624A;
  --sand: #F4E4C1;
  --sand-light: #FAF6F1;
  --sand-dark: #D4C4A1;
  --navy: #1B2A3D;
  --navy-light: #2C3E50;
  --neutral: #6B7280;
  --neutral-light: #9CA3AF;
  --white: #FFFFFF;
  --border: #E8E0D4;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 700; }
.text-terracotta { color: var(--terracotta); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.25s ease; border: 2px solid transparent;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-terracotta {
  background: var(--terracotta); color: var(--white); border-color: var(--terracotta);
}
.btn-terracotta:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }
.btn-outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 246, 241, 0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: 0.08em; color: var(--navy); }
.logo-accent { color: var(--terracotta); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--navy); transition: color 0.2s; }
.nav-links a:hover { color: var(--terracotta); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 2px; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/8985665/pexels-photo-8985665.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,42,61,0.88) 0%, rgba(27,42,61,0.7) 50%, rgba(192,64,32,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.hero-badge {
  display: inline-block; padding: 8px 20px; border-radius: 50px;
  background: rgba(244,228,193,0.15); border: 1px solid rgba(244,228,193,0.3);
  color: var(--sand); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem); color: var(--white); margin-bottom: 24px;
  line-height: 1.08;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.8);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--sand); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terracotta); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 16px;
}
.section-sub { font-size: 1.1rem; color: var(--neutral); max-width: 560px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--white); }
.services .section-label, .services .section-title, .services .section-sub { text-align: center; }
.services .section-sub { margin: 0 auto 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--sand-light); border: 1px solid var(--border); border-radius: 12px;
  padding: 36px 28px; transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: 0 20px 40px rgba(192,64,32,0.1);
  border-color: var(--terracotta-light);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--terracotta); display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 20px;
}
.service-card h3 { font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; color: var(--neutral); line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--sand-light); }
.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 20px 50px rgba(0,0,0,0.12); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -40px; right: -40px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15); border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 240px; object-fit: cover; }
.about-accent-box {
  position: absolute; top: -24px; left: -24px; background: var(--terracotta);
  color: var(--white); padding: 20px 24px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 4px; box-shadow: 0 12px 30px rgba(192,64,32,0.3);
}
.about-accent-box .accent-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-accent-box .accent-text { font-size: 0.8rem; opacity: 0.85; }
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-content > p { color: var(--neutral); margin-bottom: 16px; font-size: 1.02rem; }
.about-checklist { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.about-checklist li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--navy); }
.about-checklist svg { color: var(--terracotta); flex-shrink: 0; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--navy); }
.why-us .section-label { color: var(--sand); }
.why-us .section-title { color: var(--white); text-align: center; 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: 12px; padding: 36px 24px; transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--terracotta); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--white); }
.gallery .section-label, .gallery .section-title { text-align: center; }
.gallery .section-title { margin-bottom: 56px; }
.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, var(--terracotta) 0%, var(--terracotta-dark) 100%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn-outline-light { border-color: rgba(255,255,255,0.6); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--sand-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-sub { color: var(--neutral); font-size: 1.02rem; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 10px; background: var(--white);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--terracotta); flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--neutral); margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 1rem; color: var(--navy); }
.contact-item a:hover { color: var(--terracotta); }
.contact-item p { font-size: 1rem; color: var(--navy); line-height: 1.7; }

/* Form */
.contact-form-wrap { background: var(--white); border-radius: 16px; padding: 40px; border: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.contact-form h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.form-note { font-size: 0.9rem; color: var(--neutral); 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.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.95rem; font-family: 'Inter', sans-serif; background: var(--sand-light);
  color: var(--navy); 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: var(--terracotta); box-shadow: 0 0 0 3px rgba(192,64,32,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 14px 18px; border-radius: 8px; background: #ECFDF5; color: #065F46;
  font-weight: 500; font-size: 0.95rem;
}
.form-success svg { color: #10B981; flex-shrink: 0; }

/* ===== MAP ===== */
.map-section { height: 380px; background: var(--sand-dark); }
.map-section iframe { filter: grayscale(30%); }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); 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 p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 4px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--terracotta-light); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white); margin-bottom: 4px; }
.footer-contact a { font-size: 0.9rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--terracotta-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-align: center; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; background: rgba(250,246,241,0.98);
    backdrop-filter: blur(12px); flex-direction: column; padding: 32px 24px;
    gap: 20px; border-bottom: 1px solid var(--border);
    transform: translateY(-120%); transition: transform 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-float { right: 16px; bottom: -24px; }
  .about-accent-box { left: 16px; top: -16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}
