/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ── Focus ────────────────────────────────────────── */
:focus-visible { outline: 2px solid #7B2D3B; outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #7B2D3B; color: #FDEAE8; padding: 8px 16px; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ── Container ────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Lora', Georgia, serif; line-height: 1.25; color: #1e1614; }
em { font-style: italic; }

/* ── Section shared ───────────────────────────────── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-tag { display: inline-block; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #7B2D3B; background: #fdf0f2; border: 1px solid #f9c5ce; border-radius: 100px; padding: 6px 16px; margin-bottom: 16px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.75rem); margin-bottom: 16px; }
.section-desc { font-size: 1.1rem; color: #5c4a47; line-height: 1.7; }

/* Light variants */
.section-tag--light { color: #fce4e8; background: rgba(253,240,242,0.15); border-color: rgba(253,240,242,0.3); }
.section-title--light { color: #FDEAE8; }
.section-desc--light { color: rgba(253,234,232,0.8); }

/* ── Buttons ──────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.95rem; border-radius: 50px; padding: 14px 28px; transition: all 0.25s ease; white-space: nowrap; }
.btn-primary { background: #7B2D3B; color: #FDEAE8; box-shadow: 0 4px 16px rgba(123,45,59,0.3); }
.btn-primary:hover { background: #a52033; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,59,0.4); }
.btn-outline-light { background: transparent; color: #FDEAE8; border: 2px solid rgba(253,234,232,0.6); }
.btn-outline-light:hover { background: rgba(253,234,232,0.1); border-color: #FDEAE8; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Navigation ───────────────────────────────────── */
header.nav-scrolled { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.3s ease, box-shadow 0.3s ease; }
header:not(.nav-scrolled) { background: transparent; }
header.nav-scrolled { background: rgba(253,248,247,0.97); box-shadow: 0 2px 20px rgba(45,34,32,0.08); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 76px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Lora', Georgia, serif; font-weight: 600; font-size: 1.2rem; color: #FDEAE8; transition: color 0.3s; }
header.nav-scrolled .nav-logo { color: #7B2D3B; }
.nav-logo-mark { background: #7B2D3B; color: #FDEAE8; border-radius: 8px; padding: 4px 10px; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.06em; }
.nav-logo-text { font-weight: 500; }
header.nav-scrolled .nav-logo-mark { background: #7B2D3B; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link { font-family: 'Nunito', sans-serif; font-weight: 600; font-size: 0.9rem; color: rgba(253,234,232,0.85); padding: 8px 16px; border-radius: 8px; transition: all 0.2s; }
.nav-link:hover { color: #FDEAE8; background: rgba(253,234,232,0.1); }
header.nav-scrolled .nav-link { color: #5c4a47; }
header.nav-scrolled .nav-link:hover { color: #7B2D3B; background: #fdf0f2; }
.nav-cta-btn { background: #7B2D3B; color: #FDEAE8 !important; border-radius: 50px; padding: 10px 22px; margin-left: 8px; }
.nav-cta-btn:hover { background: #a52033 !important; }
header.nav-scrolled .nav-cta-btn { color: #FDEAE8 !important; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px; border-radius: 8px; transition: background 0.2s; }
.nav-toggle:hover { background: rgba(123,45,59,0.1); }
.hamburger, .hamburger::before, .hamburger::after { display: block; background: #FDEAE8; border-radius: 2px; height: 2px; width: 22px; position: relative; transition: all 0.3s; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
header.nav-scrolled .hamburger { background: #7B2D3B; }
header.nav-scrolled .hamburger::before, header.nav-scrolled .hamburger::after { background: #7B2D3B; }
.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); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; top: 76px; left: 0; right: 0; background: rgba(253,248,247,0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 24px; gap: 4px; box-shadow: 0 12px 32px rgba(45,34,32,0.12); transform: translateY(-120%); opacity: 0; pointer-events: none; transition: all 0.35s ease; }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { color: #5c4a47 !important; width: 100%; text-align: center; padding: 14px; }
  .nav-link:hover { background: #fdf0f2 !important; color: #7B2D3B !important; }
  .nav-cta-btn { margin-left: 0; margin-top: 8px; }
}

/* ── Hero ─────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(61,19,26,0.82) 0%, rgba(123,45,59,0.72) 50%, rgba(92,31,41,0.80) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 820px; padding: 120px 24px 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fce4e8; background: rgba(253,234,232,0.15); border: 1px solid rgba(253,234,232,0.25); border-radius: 100px; padding: 8px 20px; margin-bottom: 28px; backdrop-filter: blur(4px); }
.hero-headline { font-size: clamp(2rem, 5.5vw, 3.75rem); color: #FDEAE8; margin-bottom: 24px; font-weight: 500; line-height: 1.15; }
.hero-headline em { font-style: italic; color: #f9c5ce; }
.hero-accent { display: block; font-size: 0.6em; color: rgba(253,234,232,0.85); margin-top: 8px; font-weight: 400; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(253,234,232,0.88); line-height: 1.75; max-width: 620px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { font-family: 'Nunito', sans-serif; font-size: 0.85rem; color: rgba(253,234,232,0.6); }
.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll-indicator span { display: block; width: 24px; height: 40px; border: 2px solid rgba(253,234,232,0.4); border-radius: 12px; position: relative; }
.hero-scroll-indicator span::after { content: ''; width: 4px; height: 8px; background: rgba(253,234,232,0.7); border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 22px; } }

/* ── Services ─────────────────────────────────────── */
.services { background: #fefdfc; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: #FDEAE8; border-radius: 20px; padding: 36px 28px; transition: all 0.3s ease; border: 1px solid transparent; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(123,45,59,0.12); border-color: #f9c5ce; }
.service-icon { width: 56px; height: 56px; background: #7B2D3B; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: #FDEAE8; margin-bottom: 20px; }
.service-title { font-size: 1.2rem; margin-bottom: 10px; color: #1e1614; }
.service-desc { font-size: 0.95rem; color: #5c4a47; line-height: 1.7; }

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

/* ── About ────────────────────────────────────────── */
.about { background: #fdf0f2; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 48px rgba(45,34,32,0.15); }
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: -32px; right: -24px; border-radius: 20px; overflow: hidden; box-shadow: 0 16px 40px rgba(45,34,32,0.2); border: 4px solid #fdf0f2; }
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }
.about-experience-badge { position: absolute; top: -20px; left: -16px; background: #7B2D3B; color: #FDEAE8; border-radius: 16px; padding: 20px 24px; text-align: center; box-shadow: 0 12px 32px rgba(123,45,59,0.35); }
.exp-number { display: block; font-family: 'Lora', Georgia, serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.exp-label { font-family: 'Nunito', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.85; margin-top: 4px; display: block; }
.about-content .section-title { text-align: left; }
.about-text { font-size: 1.05rem; color: #5c4a47; line-height: 1.8; margin-bottom: 16px; }
.about-values { margin-top: 32px; display: grid; gap: 14px; }
.value-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #2d2220; font-weight: 600; }
.value-check { flex-shrink: 0; width: 22px; height: 22px; background: #7B2D3B; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FDEAE8; margin-top: 2px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: block; text-align: center; }
}
@media (max-width: 540px) {
  .about-img-secondary { right: 0; bottom: -24px; }
  .about-experience-badge { left: 0; top: -16px; }
}

/* ── Why Us ───────────────────────────────────────── */
.why-us { background: #7B2D3B; position: relative; overflow: hidden; }
.why-us::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(253,234,232,0.06) 0%, transparent 70%); border-radius: 50%; }
.why-us::after { content: ''; position: absolute; bottom: -150px; left: -150px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(244,158,142,0.08) 0%, transparent 70%); border-radius: 50%; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; position: relative; z-index: 1; }
.why-card { background: rgba(253,234,232,0.08); border: 1px solid rgba(253,234,232,0.12); border-radius: 20px; padding: 36px 32px; transition: all 0.3s ease; }
.why-card:hover { background: rgba(253,234,232,0.13); transform: translateY(-4px); }
.why-card-num { font-family: 'Lora', Georgia, serif; font-size: 3rem; font-weight: 700; color: rgba(253,234,232,0.15); line-height: 1; margin-bottom: 12px; }
.why-card-title { font-size: 1.25rem; color: #FDEAE8; margin-bottom: 10px; }
.why-card-desc { font-size: 0.95rem; color: rgba(253,234,232,0.75); line-height: 1.75; }

@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ─────────────────────────────────── */
.testimonials { background: #fefdfc; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #FDEAE8; border-radius: 20px; padding: 36px 28px; position: relative; border: 1px solid transparent; transition: all 0.3s ease; }
.testimonial-card:hover { border-color: #f9c5ce; box-shadow: 0 16px 40px rgba(123,45,59,0.1); }
.testimonial-quote-mark { position: absolute; top: 20px; right: 28px; font-family: 'Lora', Georgia, serif; font-size: 5rem; line-height: 1; color: #f9c5ce; opacity: 0.5; pointer-events: none; }
.testimonial-text { font-size: 0.95rem; color: #5c4a47; line-height: 1.8; margin-bottom: 24px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author-avatar { width: 40px; height: 40px; background: #7B2D3B; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FDEAE8; flex-shrink: 0; }
.testimonial-author-name { display: block; font-weight: 700; font-size: 0.9rem; color: #1e1614; }
.testimonial-author-detail { display: block; font-size: 0.8rem; color: #7B2D3B; font-weight: 600; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; } }

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, #5c1f29 0%, #7B2D3B 50%, #a52033 100%); padding: 88px 0; position: relative; overflow: hidden; }
.cta-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 2px 2px, #FDEAE8 1px, transparent 0); background-size: 32px 32px; }
.cta-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(1.8rem, 4vw, 2.5rem); color: #FDEAE8; margin-bottom: 16px; }
.cta-text { font-size: 1.1rem; color: rgba(253,234,232,0.85); line-height: 1.75; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ──────────────────────────────────────── */
.contact { background: #fdf0f2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info .section-title { text-align: left; }
.contact-info .section-tag { display: inline-block; }
.contact-desc { font-size: 1.05rem; color: #5c4a47; line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: grid; gap: 20px; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail-icon { width: 48px; height: 48px; background: #7B2D3B; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #FDEAE8; flex-shrink: 0; }
.contact-detail strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; color: #7B2D3B; margin-bottom: 4px; }
.contact-detail p { margin: 0; font-size: 0.95rem; color: #2d2220; }
.contact-detail a { color: #2d2220; text-decoration: underline; text-decoration-color: rgba(123,45,59,0.3); text-underline-offset: 3px; transition: color 0.2s, text-decoration-color 0.2s; }
.contact-detail a:hover { color: #7B2D3B; text-decoration-color: #7B2D3B; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(45,34,32,0.1); }

/* Form */
.contact-form-wrap { background: #FDEAE8; border-radius: 24px; padding: 40px; border: 1px solid #f9c5ce; }
.form-title { font-size: 1.5rem; margin-bottom: 8px; }
.form-subtitle { font-size: 0.9rem; color: #5c4a47; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 0.85rem; color: #7B2D3B; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: #fefdfc; border: 2px solid #f5c4b8; border-radius: 12px; padding: 12px 16px; font-family: 'Nunito', sans-serif; font-size: 0.95rem; color: #1e1614; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #7B2D3B; box-shadow: 0 0 0 3px rgba(123,45,59,0.12); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #c4a89a; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B2D3B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

/* Form success */
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { width: 72px; height: 72px; background: #7B2D3B; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FDEAE8; margin: 0 auto 20px; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 8px; color: #1e1614; }
.form-success p { font-size: 0.95rem; color: #5c4a47; line-height: 1.6; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info .section-title { text-align: center; }
  .contact-info .section-tag { display: block; text-align: center; }
}
@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ── Footer ───────────────────────────────────────── */
.footer { background: #1e1614; color: rgba(253,234,232,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Lora', Georgia, serif; font-weight: 600; font-size: 1.2rem; color: #FDEAE8; margin-bottom: 16px; }
.footer-logo-mark { background: #7B2D3B; color: #FDEAE8; border-radius: 8px; padding: 4px 10px; font-size: 0.85rem; font-weight: 800; letter-spacing: 0.06em; }
.footer-tagline { font-size: 0.9rem; line-height: 1.75; max-width: 280px; }
.footer-links h4, .footer-contact h4 { font-family: 'Nunito', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: #FDEAE8; margin-bottom: 20px; font-weight: 800; }
.footer-links ul { display: grid; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(253,234,232,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #f9c5ce; }
.footer-contact address { font-style: normal; font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: rgba(253,234,232,0.7); text-decoration: underline; text-decoration-color: rgba(244,158,142,0.3); text-underline-offset: 3px; transition: color 0.2s; }
.footer-contact a:hover { color: #f9c5ce; }
.footer-bottom { border-top: 1px solid rgba(253,234,232,0.1); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(253,234,232,0.4); }
.footer-legal { max-width: 480px; text-align: right; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { text-align: center; max-width: none; }
}

/* ── Scroll Reveal (progressive enhancement) ──────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
}
