/* ===== 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: #3D2B2B;
  background: #FDF6F0;
  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; }
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; line-height: 1.2; color: #2A1F1F; }
.skip-link { position: absolute; top: -100%; left: 16px; background: #7B2D3B; color: #fff; padding: 8px 16px; border-radius: 8px; z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 16px; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2B;
  --burgundy-light: #A84457;
  --blush: #F5D5C8;
  --blush-light: #FDE8DF;
  --cream: #FDF6F0;
  --cream-dark: #F5E6D3;
  --text: #3D2B2B;
  --text-light: #6B5555;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(123,45,59,0.08);
  --shadow-md: 0 8px 30px rgba(123,45,59,0.12);
  --shadow-lg: 0 20px 60px rgba(123,45,59,0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header.light { color: #fff; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 16px;
  background: rgba(123,45,59,0.08); padding: 6px 16px; border-radius: 100px;
}
.section-tag.light { color: var(--blush-light); background: rgba(255,255,255,0.15); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-subtitle { font-size: 1.1rem; color: var(--text-light); }
.section-subtitle.light { color: rgba(255,255,255,0.8); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); white-space: nowrap;
}
.btn-primary { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn-secondary:hover { background: var(--burgundy); color: #fff; transform: translateY(-2px); }
.btn-nav { background: var(--burgundy); color: #fff; border-color: var(--burgundy); padding: 10px 22px; font-size: 0.88rem; }
.btn-nav:hover { background: var(--burgundy-dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--burgundy); border-color: #fff; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,246,240,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123,45,59,0.08); transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 1.15rem; color: var(--burgundy); }
.logo-accent { color: var(--burgundy-light); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu a { padding: 8px 16px; border-radius: 100px; font-weight: 500; font-size: 0.9rem; color: var(--text); transition: all 0.2s ease; }
.nav-menu a:hover { background: rgba(123,45,59,0.08); color: var(--burgundy); }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 24px; height: 2px; background: var(--burgundy); border-radius: 2px; transition: all 0.3s ease; }
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
  background: linear-gradient(135deg, #FDF6F0 0%, #FDE8DF 50%, #F5D5C8 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.blob-1 { width: 600px; height: 600px; background: var(--blush); top: -200px; right: -100px; animation: blobFloat 8s ease-in-out infinite; }
.blob-2 { width: 400px; height: 400px; background: #F5C0B0; bottom: -100px; left: -100px; animation: blobFloat 10s ease-in-out infinite reverse; }
.blob-3 { width: 250px; height: 250px; background: var(--blush-light); top: 40%; left: 40%; animation: blobFloat 6s ease-in-out infinite; }
@keyframes blobFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.05); } }

.hero-container { 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(123,45,59,0.1); color: var(--burgundy);
  padding: 8px 20px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(123,45,59,0.15);
}
.hero-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 24px; line-height: 1.1; }
.hero-title-accent { color: var(--burgundy); font-style: italic; }
.hero-description { font-size: 1.15rem; color: var(--text-light); margin-bottom: 36px; max-width: 520px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.hero-visual { position: relative; }
.hero-image-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image-wrapper img { width: 100%; height: 640px; object-fit: cover; }
.hero-float-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: var(--white); padding: 16px 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); animation: floatCard 4s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 20%; left: -40px; animation-delay: 0s; }
.hero-float-card.card-2 { bottom: 20%; right: -40px; animation-delay: 2s; }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card-icon { width: 44px; height: 44px; background: rgba(123,45,59,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--burgundy); flex-shrink: 0; }
.hero-float-card strong { display: block; font-size: 1.1rem; color: var(--burgundy); }
.hero-float-card span { font-size: 0.8rem; color: var(--text-light); }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-md); padding: 40px 32px;
  border: 1px solid rgba(123,45,59,0.06); transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--burgundy-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: rgba(123,45,59,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.3s ease; }
.service-card:hover .service-icon { background: var(--burgundy); }
.service-card:hover .service-icon svg { stroke: #fff; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--white); }
.about-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-stack { position: relative; }
.about-image-stack img:first-child { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-image-stack img:last-child {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-experience-badge {
  position: absolute; top: -20px; left: -20px;
  background: var(--burgundy); color: #fff;
  padding: 24px; border-radius: var(--radius-md); text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge .exp-number { display: block; font-family: 'DM Serif Display', serif; font-size: 2.5rem; line-height: 1; }
.about-experience-badge .exp-label { font-size: 0.8rem; opacity: 0.9; margin-top: 4px; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-text { color: var(--text-light); margin-bottom: 16px; font-size: 1.02rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 0.95rem; }
.about-feature .check-icon { flex-shrink: 0; }
.about-content > .btn { margin-top: 8px; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.why-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
  padding: 40px 28px; text-align: center; transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-6px); }
.why-number { font-family: 'DM Serif Display', serif; font-size: 3rem; color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 12px; }
.why-card p { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; aspect-ratio: 520/380; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,31,31,0.8) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 32px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-family: 'DM Serif Display', serif; font-size: 1.3rem; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-content { max-width: 560px; }
.cta-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.cta-text { font-size: 1.05rem; color: var(--text-light); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-text { color: var(--text-light); margin-bottom: 40px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-detail { display: flex; gap: 20px; }
.contact-icon { width: 56px; height: 56px; background: rgba(123,45,59,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--burgundy); margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.contact-detail p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.contact-detail a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(123,45,59,0.3); text-underline-offset: 3px; transition: color 0.2s; }
.contact-detail a:hover { color: var(--burgundy); }

/* Form */
.contact-form-wrapper {
  background: var(--cream); border-radius: var(--radius-lg); padding: 48px;
  border: 1px solid rgba(123,45,59,0.06);
}
.form-title { font-size: 1.5rem; margin-bottom: 8px; }
.form-subtitle { color: var(--text-light); margin-bottom: 32px; font-size: 0.95rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--text); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid rgba(123,45,59,0.12);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--text); background: var(--white); 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(--burgundy); box-shadow: 0 0 0 4px rgba(123,45,59,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #B8A0A0; }
.form-success {
  display: flex; align-items: center; gap: 12px;
  background: rgba(26,122,58,0.08); border: 1px solid rgba(26,122,58,0.2);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 20px;
  color: #1A7A3A; font-size: 0.95rem;
}
.form-success strong { display: block; }

/* ===== FOOTER ===== */
.footer { background: #2A1F1F; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-accent { color: var(--blush); }
.footer-desc { margin-top: 16px; font-size: 0.92rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { color: #fff; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blush); }
.footer-col address { font-style: normal; font-size: 0.92rem; line-height: 1.7; }
.footer-col p { font-size: 0.92rem; margin-bottom: 8px; }
.footer-col a:hover { color: var(--blush); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer-bottom a { color: var(--blush); transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-float-card.card-1 { left: 0; }
  .hero-float-card.card-2 { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-container { grid-template-columns: 1fr; gap: 60px; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: flex; justify-content: center; }
  .about-content { text-align: center; }
  .about-features { max-width: 500px; margin: 32px auto; }
  .about-content > .btn { margin: 8px auto 0; }
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .contact-info .section-title { text-align: center; }
  .contact-info .section-tag { display: flex; justify-content: center; }
  .contact-text { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 80px; left: 0; right: 0; background: rgba(253,246,240,0.98);
    backdrop-filter: blur(20px); flex-direction: column; padding: 24px;
    gap: 4px; border-bottom: 1px solid rgba(123,45,59,0.08);
    transform: translateY(-120%); opacity: 0; transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; }
  .nav-menu a { padding: 14px 20px; width: 100%; border-radius: var(--radius-sm); }
  .nav-toggle { display: block; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-image-wrapper img { height: 400px; }
  .hero-float-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .about-image-stack img:last-child { right: 0; bottom: -20px; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
}
