/* ===== 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;
  color: #3D2B1F;
  background: #FDF6EE;
  line-height: 1.7;
  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; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #C2704E; color: #fff; padding: 8px 16px;
  border-radius: 8px; z-index: 9999; font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(194, 112, 78, 0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(194, 112, 78, 0.1); }
.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-weight: 800; font-size: 1.2rem; color: #3D2B1F;
}
.logo-text:hover { color: #C2704E; }

.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a {
  padding: 8px 16px; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:not(.btn):hover { background: rgba(194, 112, 78, 0.1); color: #C2704E; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 24px; height: 2px; background: #3D2B1F;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; }
.hamburger::after { content: ''; position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 800;
  font-size: 0.95rem; border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer; font-family: 'Nunito', sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(194, 112, 78, 0.25); }
.btn:active { transform: translateY(0); }
.btn-primary { background: #C2704E; color: #fff; border-color: #C2704E; }
.btn-primary:hover { background: #A85A3A; border-color: #A85A3A; }
.btn-outline { background: transparent; color: #C2704E; border-color: #C2704E; }
.btn-outline:hover { background: #C2704E; color: #fff; }
.btn-white { background: #fff; color: #C2704E; border-color: #fff; }
.btn-white:hover { background: #FDF6EE; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #FDF6EE 0%, #F5E6D3 50%, #EDD5C0 100%);
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, #C2704E 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, #C2704E 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(194, 112, 78, 0.12); color: #C2704E;
  padding: 8px 18px; border-radius: 50px;
  font-weight: 800; font-size: 0.85rem; margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  color: #3D2B1F; margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem; color: #6B4F3A;
  margin-bottom: 32px; max-width: 500px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-card-main {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(194, 112, 78, 0.2);
  position: relative;
}
.hero-card-main img { width: 100%; height: 380px; object-fit: cover; }
.hero-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(61, 43, 31, 0.7));
  color: #fff;
}
.hero-card-tag { font-weight: 700; font-size: 0.9rem; }

.floating-cards { position: absolute; inset: 0; pointer-events: none; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(194, 112, 78, 0.15);
  pointer-events: auto; animation: float 4s ease-in-out infinite;
}
.float-card--1 { top: 5%; left: -30px; animation-delay: 0s; }
.float-card--2 { top: 45%; right: -20px; animation-delay: 1.3s; }
.float-card--3 { bottom: 5%; left: 10px; animation-delay: 2.6s; }
.float-card-icon { flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(194, 112, 78, 0.1); border-radius: 12px; }
.float-card strong { display: block; font-size: 0.85rem; color: #3D2B1F; }
.float-card span { font-size: 0.78rem; color: #6B4F3A; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SECTION COMMON ===== */
.section-label {
  display: inline-block; font-weight: 800; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 2px; color: #C2704E;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; color: #3D2B1F; line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: #6B4F3A; max-width: 600px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #fff; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: #FDF6EE; border-radius: 20px; padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(194, 112, 78, 0.08);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(194, 112, 78, 0.12); }
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(194, 112, 78, 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem; font-weight: 800; color: #3D2B1F;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.95rem; color: #6B4F3A; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #FDF6EE; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(194, 112, 78, 0.15); }
.about-img-main img { width: 100%; height: 560px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(194, 112, 78, 0.2);
  border: 5px solid #FDF6EE;
}
.about-img-secondary img { width: 320px; height: 280px; object-fit: cover; }
.about-experience-badge {
  position: absolute; top: -20px; right: 40px;
  background: #C2704E; color: #fff;
  border-radius: 20px; padding: 20px 28px;
  text-align: center; box-shadow: 0 12px 30px rgba(194, 112, 78, 0.3);
}
.badge-number { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.badge-text { font-size: 0.8rem; font-weight: 700; opacity: 0.9; }

.about-content { max-width: 520px; }
.about-body { font-size: 1.02rem; color: #6B4F3A; margin-bottom: 16px; line-height: 1.8; }
.about-features { margin: 28px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.92rem; color: #3D2B1F; }
.feature-check { flex-shrink: 0; }
.about-content > .btn { margin-top: 8px; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: #fff; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden;
  cursor: pointer; aspect-ratio: 7/5;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(61, 43, 31, 0.75));
  color: #fff; font-weight: 800; font-size: 0.95rem;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #C2704E 0%, #A85A3A 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 1px, transparent 1px),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 1; flex-wrap: wrap;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; color: #fff; margin-bottom: 12px;
}
.cta-desc { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 480px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #FDF6EE; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-desc { font-size: 1.02rem; color: #6B4F3A; margin-bottom: 32px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  background: rgba(194, 112, 78, 0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: #C2704E; margin-bottom: 4px; }
.contact-item p { font-size: 0.95rem; color: #3D2B1F; line-height: 1.6; }
.contact-item a { color: #C2704E; font-weight: 700; }
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrap {
  background: #fff; border-radius: 24px; padding: 40px;
  box-shadow: 0 12px 40px rgba(194, 112, 78, 0.08);
  border: 1px solid rgba(194, 112, 78, 0.08);
}
.form-title { font-size: 1.4rem; font-weight: 800; color: #3D2B1F; margin-bottom: 6px; }
.form-sub { font-size: 0.92rem; color: #6B4F3A; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 800; font-size: 0.85rem;
  color: #3D2B1F; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 2px solid rgba(194, 112, 78, 0.2);
  border-radius: 14px; 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: #C2704E;
  box-shadow: 0 0 0 4px rgba(194, 112, 78, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B89B82; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px;
  background: rgba(27, 67, 50, 0.06); border-radius: 12px;
  font-size: 0.92rem; color: #1B4332;
}

/* ===== FOOTER ===== */
.site-footer { background: #3D2B1F; color: rgba(255,255,255,0.7); padding: 60px 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 .logo-text:hover { color: #C2704E; }
.footer-tagline { font-weight: 700; font-size: 0.9rem; color: #C2704E; margin-bottom: 12px; }
.footer-copy { font-size: 0.85rem; opacity: 0.6; }
.footer-links h4, .footer-contact h4 {
  color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-weight: 600; font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: #C2704E; }
.footer-contact p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 4px; }
.footer-contact a { color: #C2704E; font-weight: 700; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0; text-align: center;
  font-size: 0.85rem; opacity: 0.5;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(194, 112, 78, 0.1);
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 16px; border-radius: 12px; }
  .main-nav li:last-child a { margin-top: 8px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; }
  .floating-cards { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; }
  .about-img-secondary { right: -10px; bottom: -20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .container { padding: 0 16px; }
}
