/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy:   #7B2D3B;
  --burgundy-d: #5E1F2C;
  --blush:      #F5E6E0;
  --blush-l:    #FDF6F3;
  --cream:      #FDF9F7;
  --ink:        #1A1A1A;
  --ink-mid:    #3D3D3D;
  --ink-light:  #6B6B6B;
  --ink-faint:  #9A9A9A;
  --white:      #FFFFFF;
  --line:       rgba(123, 45, 59, 0.12);
  --line-s:     rgba(123, 45, 59, 0.06);
  --font-body:  'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius:     8px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.08);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--burgundy-d); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--burgundy); color: var(--white);
  padding: 0.5rem 1rem; border-radius: var(--radius);
  z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ───────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn--primary:hover { background: var(--burgundy-d); border-color: var(--burgundy-d); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-faint);
}
.btn--ghost:hover { border-color: var(--burgundy); color: var(--burgundy); }
.btn--sm { padding: 0.5rem 1.125rem; font-size: 0.8125rem; }
.btn--white { background: var(--white); color: var(--burgundy); border-color: var(--white); }
.btn--white:hover { background: var(--blush); border-color: var(--blush); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn--full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-s);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; color: var(--ink); }
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.logo-text br:first-of-type { display: none; }

.main-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-mid);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--burgundy); background: var(--blush-l); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--white) 0%, var(--blush-l) 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: var(--burgundy); }
.hero-sub {
  font-size: 1.0625rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-light);
}

.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 640/720;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.badge-label { display: block; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.badge-value { display: block; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--burgundy); }

/* ── Sections ─────────────────────────────────────── */
.section { padding: 6rem 0; }
.section + .section { border-top: 1px solid var(--line-s); }

/* ── Services ─────────────────────────────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line-s);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.service-card:hover { border-color: var(--line); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: var(--blush);
  color: var(--burgundy);
  margin-bottom: 1.125rem;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.service-desc { font-size: 0.9375rem; color: var(--ink-light); line-height: 1.65; }

/* ── About ────────────────────────────────────────── */
.about { background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 560/640; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy .section-sub { margin-bottom: 1.5rem; }
.about-copy p { font-size: 1rem; color: var(--ink-light); line-height: 1.8; margin-bottom: 1rem; }
.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat-value { display: block; font-family: var(--font-display); font-size: 1.375rem; font-weight: 600; color: var(--burgundy); }
.stat-label { display: block; font-size: 0.8125rem; color: var(--ink-faint); margin-top: 0.125rem; }
.stat-divider { width: 1px; height: 40px; background: var(--line); flex-shrink: 0; }

/* ── Why Us ───────────────────────────────────────── */
.why-us { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why-card {
  padding: 2rem;
  border: 1px solid var(--line-s);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush));
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover { border-color: var(--line); box-shadow: var(--shadow-md); }
.why-card:hover::before { opacity: 1; }
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.why-card:hover .why-number { color: var(--burgundy); }
.why-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.why-desc { font-size: 0.9375rem; color: var(--ink-light); line-height: 1.7; }

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  background: var(--burgundy);
  padding: 4.5rem 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.cta-sub { font-size: 1.0625rem; color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── Location ─────────────────────────────────────── */
.location { background: var(--cream); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }
.location-info { display: flex; flex-direction: column; gap: 1.75rem; }
.location-detail { display: flex; gap: 1rem; align-items: flex-start; }
.location-detail svg { flex-shrink: 0; margin-top: 0.125rem; }
.location-label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.25rem; }
.location-detail p { font-size: 0.9375rem; color: var(--ink-mid); line-height: 1.6; }
.location-detail a { color: var(--burgundy); }
.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; }

/* ── Contact ──────────────────────────────────────── */
.contact { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-copy .section-sub { margin-bottom: 1.5rem; }
.contact-direct { margin-top: 2rem; padding: 1.25rem 1.5rem; background: var(--blush-l); border-radius: var(--radius); border: 1px solid var(--line); }
.contact-direct p { font-size: 0.9375rem; color: var(--ink-mid); }
.contact-direct a { font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.8125rem; font-weight: 500; color: var(--ink-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  font-family: var(--font-body);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-faint); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8125rem; color: var(--ink-faint); text-align: center; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.form-success svg { color: var(--burgundy); }
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.form-success p { font-size: 0.9375rem; color: var(--ink-light); }

/* ── Footer ───────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a, .footer-contact a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 2rem; }
  .about-inner { gap: 2rem; }
  .contact-inner { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0.25rem; }
  .main-nav a { padding: 0.75rem 1rem; font-size: 1rem; }

  .hero { min-height: auto; padding-top: 100px; padding-bottom: 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-img-wrap { aspect-ratio: 4/3; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -0.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .services-grid { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 4/3; max-height: 400px; }
  .about-stats { flex-wrap: wrap; }

  .why-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 280px; }

  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.125rem; }
  .hero-headline { font-size: 1.75rem; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
}

/* ── Animations ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .service-card, .why-card { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition); }
  .service-card.visible, .why-card.visible { opacity: 1; transform: translateY(0); }
  .service-card:nth-child(2) { transition-delay: 0.05s; }
  .service-card:nth-child(3) { transition-delay: 0.1s; }
  .service-card:nth-child(4) { transition-delay: 0.15s; }
  .service-card:nth-child(5) { transition-delay: 0.2s; }
  .service-card:nth-child(6) { transition-delay: 0.25s; }
  .service-card:nth-child(7) { transition-delay: 0.3s; }
  .service-card:nth-child(8) { transition-delay: 0.35s; }
}
