/* ── 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: #fff;
  line-height: 1.6;
  -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; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── Tokens ── */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2B;
  --blush: #F4E4E0;
  --blush-light: #FBF7F5;
  --cream: #FFF9F8;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(123,45,59,0.08);
  --shadow-lg: 0 12px 48px rgba(123,45,59,0.12);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--burgundy); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius);
  z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; color: var(--text); }
.eyebrow { font-family: var(--sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--burgundy); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 32px; border-radius: 50px;
  font-family: var(--sans); font-size: 0.9375rem; font-weight: 500;
  transition: all 0.3s ease; white-space: nowrap;
}
.btn-primary { background: var(--burgundy); color: var(--white); border: 2px solid var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-light:hover { background: var(--white); color: var(--burgundy); border-color: var(--white); }
.btn-secondary { background: var(--blush); color: var(--burgundy); border: 2px solid var(--blush); }
.btn-secondary:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.btn-full { width: 100%; }

/* ── Section ── */
.section { padding: 100px 0; }
.section-alt { background: var(--blush-light); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-eyebrow { margin-bottom: 16px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.0); transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled { background: rgba(255,255,255,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-icon { color: var(--burgundy); }
.logo-text { font-family: var(--serif); font-weight: 700; font-size: 1.125rem; color: var(--text); }
.site-header.scrolled .logo-text { color: var(--text); }
.logo-light .logo-text { color: var(--white); }
.site-header.scrolled .logo-light .logo-text { color: var(--text); }

/* ── Nav ── */
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 0.9375rem; font-weight: 500; color: var(--text); transition: color 0.2s; }
.main-nav a:hover { color: var(--burgundy); }
.nav-cta { background: var(--burgundy); color: var(--white) !important; padding: 10px 24px; border-radius: 50px; }
.nav-cta:hover { background: var(--burgundy-dark); }

/* ── Hamburger ── */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; }
.hamburger::before { transform: translateY(-7px); }
.hamburger::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: 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(92,31,43,0.82) 0%, rgba(123,45,59,0.65) 50%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 80px; max-width: 780px; }
.hero-eyebrow { font-family: var(--sans); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.hero-headline { font-family: var(--serif); font-size: clamp(2.25rem, 5.5vw, 4.5rem); font-weight: 900; line-height: 1.08; color: var(--white); margin-bottom: 24px; }
.hero-sub { font-size: 1.1875rem; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 560px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; align-items: center; gap: 24px; }
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--white); }
.trust-label { font-size: 0.8125rem; color: rgba(255,255,255,0.7); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.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.6); font-size: 0.75rem; letter-spacing: 0.15em; 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); } }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 32px;
  border: 1px solid rgba(123,45,59,0.08); transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon { color: var(--burgundy); margin-bottom: 20px; }
.service-title { font-size: 1.375rem; margin-bottom: 12px; }
.service-desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius); overflow: hidden; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 6px solid var(--white);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -24px; left: -24px;
  background: var(--burgundy); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius); text-align: center;
}
.about-badge-num { display: block; font-family: var(--serif); font-size: 2.25rem; font-weight: 900; line-height: 1; }
.about-badge-label { font-size: 0.8125rem; opacity: 0.85; }
.about-body { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-stats { display: flex; gap: 24px; margin: 32px 0 40px; align-items: center; }
.stat { text-align: center; flex: 1; }
.stat-num { display: block; font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--burgundy); }
.stat-label { font-size: 0.8125rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 48px; background: rgba(123,45,59,0.15); }

/* ── Process ── */
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.process-step { background: var(--white); border-radius: var(--radius); padding: 40px 28px; text-align: center; border: 1px solid rgba(123,45,59,0.08); }
.step-number { font-family: var(--serif); font-size: 3rem; font-weight: 900; color: var(--blush); line-height: 1; margin-bottom: 16px; }
.step-title { font-size: 1.25rem; margin-bottom: 12px; }
.step-desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; }
.process-arrow { text-align: center; font-size: 1.5rem; color: var(--burgundy); padding: 0 4px; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto; gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-wide { grid-column: span 7; }
.gallery-item:not(.gallery-item-wide) { grid-column: span 5; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white); font-size: 0.875rem; font-weight: 500;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 32px;
  border: 1px solid rgba(123,45,59,0.08); position: relative;
}
.testimonial-quote { color: var(--blush); margin-bottom: 20px; }
.testimonial-text { font-size: 1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; }
.testimonial-footer { border-top: 1px solid rgba(123,45,59,0.1); padding-top: 20px; }
.testimonial-location { font-size: 0.875rem; font-weight: 600; color: var(--burgundy); }

/* ── CTA Banner ── */
.cta-banner { position: relative; padding: 100px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(92,31,43,0.9) 0%, rgba(123,45,59,0.8) 100%); }
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-headline { font-size: clamp(2rem, 4vw, 3.25rem); color: var(--white); margin-bottom: 20px; }
.cta-sub { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-body { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { color: var(--burgundy); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.9375rem; margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 0.9375rem; color: var(--text-muted); }
.contact-item a:hover { color: var(--burgundy); }
.form-title { font-size: 1.5rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(123,45,59,0.15);
  border-radius: var(--radius); font-family: var(--sans); font-size: 0.9375rem;
  color: var(--text); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy { font-size: 0.8125rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ── Success State ── */
.form-success { text-align: center; padding: 48px 24px; }
.success-icon { color: var(--burgundy); margin: 0 auto 20px; }
.success-title { font-size: 1.75rem; margin-bottom: 12px; }
.success-text { color: var(--text-muted); margin-bottom: 24px; }

/* ── Footer ── */
.site-footer { background: #1a1a1a; color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { font-size: 0.9375rem; margin-top: 16px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { font-family: var(--sans); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9375rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.9375rem; margin-bottom: 8px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8125rem; }

/* ── Animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  .main-nav {
    position: fixed; inset: 0; top: auto;
    background: var(--white); z-index: 1000;
    flex-direction: column; justify-content: center;
    transform: translateX(100%); transition: transform 0.4s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 24px; text-align: center; }
  .main-nav a { font-size: 1.25rem; }
  .hero-content { padding-top: 60px; }
  .hero-trust { gap: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { right: 0; bottom: -24px; }
  .about-badge { top: -16px; left: -16px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 12; }
  .gallery-item:not(.gallery-item-wide) { grid-column: span 6; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-divider { display: none; }
  .gallery-item-wide, .gallery-item:not(.gallery-item-wide) { grid-column: span 12; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; }
}
