/* ── 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: #fefefe;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Custom Properties ── */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5e2230;
  --blush: #F2D0D9;
  --blush-light: #FDF0F3;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-600: #555;
  --neutral-800: #222;
  --white: #fff;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--blush-light);
  border: 1px solid var(--blush);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--neutral-800);
  margin-bottom: 16px;
}
.section-sub, .contact-desc {
  font-size: 1.05rem;
  color: var(--neutral-600);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  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-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 8px 20px; font-size: .875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; padding: 14px 24px; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254,254,254,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-200);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--neutral-800);
}
.logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn) {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--neutral-600);
  transition: var(--transition);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover { color: var(--burgundy); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--white) 50%, #fdf6f7 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(123,45,59,.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(242,208,217,.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-card { padding-right: 20px; }
.hero-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--white);
  border: 1px solid var(--blush);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  color: var(--neutral-800);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--neutral-600);
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: float 4s ease-in-out infinite;
}
.stat-card--top { top: -20px; right: -20px; animation-delay: 0s; }
.stat-card--bottom { bottom: 40px; left: -30px; animation-delay: 2s; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--neutral-600); margin-top: 4px; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Services ── */
.services { padding: 100px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--white);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-light);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 10px;
}
.service-card p { font-size: .9375rem; color: var(--neutral-600); line-height: 1.65; }

/* ── About ── */
.about { padding: 100px 0; background: var(--neutral-50); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-accent-box {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-accent-box .accent-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-accent-box .accent-label { font-size: .8rem; opacity: .85; margin-top: 4px; }
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text { font-size: 1rem; color: var(--neutral-600); margin-bottom: 16px; }
.about-features { margin: 28px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--neutral-800);
}
.feature-item svg { flex-shrink: 0; }

/* ── Gallery ── */
.gallery { padding: 100px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123,45,59,.3), transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img { height: 100%; }

/* ── Testimonials ── */
.testimonials { padding: 100px 0; background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%); }
.testimonials .section-tag { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: var(--blush); }
.testimonials .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.quote-mark { margin-bottom: 16px; }
.testimonial-card p {
  font-size: .9375rem;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blush);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: .9375rem; color: var(--white); }
.testimonial-author span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ── Contact ── */
.contact { padding: 100px 0; background: var(--neutral-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush-light);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.contact-row strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--burgundy);
  margin-bottom: 2px;
}
.contact-row span, .contact-row a {
  font-size: .9375rem;
  color: var(--neutral-600);
}
.contact-row a:hover { color: var(--burgundy); }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.form-note { font-size: .875rem; color: var(--neutral-600); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--neutral-800);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--neutral-200);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: var(--neutral-800);
  background: var(--neutral-50);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,45,59,.1);
}
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success svg { margin: 0 auto 12px; color: var(--burgundy); }
.form-success h4 { font-size: 1.25rem; color: var(--neutral-800); margin-bottom: 8px; }
.form-success p { font-size: .9375rem; color: var(--neutral-600); }

/* ── Map ── */
.map-section { height: 380px; }

/* ── Footer ── */
.site-footer { background: var(--neutral-800); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: .9375rem; line-height: 1.65; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9375rem; transition: var(--transition); }
.footer-links a:hover { color: var(--blush); }
.footer-contact p { font-size: .9375rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a:hover { color: var(--blush); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .hero-card { padding-right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-grid { gap: 32px; }
  .stat-card--top { right: 0; }
  .stat-card--bottom { left: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { right: -10px; bottom: -20px; }
  .about-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 12px 16px; }
  .stat-number { font-size: 1.25rem; }
}
