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

:root {
  --burgundy:    #6B1D2A;
  --burgundy-d:  #4E141F;
  --blush:       #F5E6E0;
  --blush-l:     #FBF5F2;
  --blush-m:     #F0D8CF;
  --cream:       #FDF8F6;
  --text:        #2A1F1F;
  --text-m:      #5C4A4A;
  --text-l:      #8A7070;
  --white:       #FFFFFF;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
  --radius:      8px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,248,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush-m);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(107,29,42,0.07); }

.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-m);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--burgundy);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.nav-toggle-line {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #6B1D2A 0%, #A0343E 25%, #D4726A 50%, #F5C0B0 75%, #F5E6E0 100%);
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 700px;
}

.hero-greeting {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-d);
  border-color: var(--burgundy-d);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107,29,42,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-light {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--blush);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-full { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-m);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--blush-m);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(107,29,42,0.08);
}

.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--burgundy);
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-m);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

.about-text .section-subtitle { margin-bottom: 24px; }

.about-text p {
  font-size: 1rem;
  color: var(--text-m);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-list { margin-top: 24px; }
.about-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9375rem;
  color: var(--text-m);
  margin-bottom: 10px;
}
.about-list li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
}

/* ── WHY ── */
.why { background: var(--blush-l); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-item { padding-top: 8px; }

.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--burgundy);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.why-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 0.9375rem;
  color: var(--text-m);
  line-height: 1.75;
  max-width: 380px;
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-d) 100%);
  padding: 88px 24px;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* ── CONTACT ── */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-intro {
  font-size: 1rem;
  color: var(--text-m);
  margin-bottom: 36px;
  line-height: 1.75;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
}

.contact-item svg {
  width: 22px; height: 22px;
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 0.9375rem;
  color: var(--text-m);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--burgundy); text-decoration: underline; }

/* ── FORM ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--blush-m);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--blush-m);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,29,42,0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-l);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--blush-l);
  border: 1px solid var(--blush-m);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--burgundy);
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  padding: 48px 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  width: 100%;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(253,248,246,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    transition: all 0.35s ease;
  }
  .nav-links.open {
    max-height: 280px;
    border-bottom: 1px solid var(--blush-m);
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
  }
  .nav-links a::after { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 100px 20px 64px; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: no-preference) {
  .service-card, .why-item, .contact-form-wrap {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
