/* ── 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;
  font-weight: 400;
  line-height: 1.6;
  color: #2D1F24;
  background: #FDF8F6;
  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; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8B3A4A;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #2D1F24;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: #6B5560;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #6B1D2A;
  color: #FDF8F6;
  border: 2px solid #6B1D2A;
}
.btn-primary:hover { background: #551620; border-color: #551620; transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: #FDF8F6;
  border: 2px solid rgba(253,248,246,0.5);
}
.btn-secondary:hover { border-color: #FDF8F6; background: rgba(253,248,246,0.1); }
.btn-white {
  background: #FDF8F6;
  color: #6B1D2A;
  border: 2px solid #FDF8F6;
}
.btn-white:hover { background: #F5E6E0; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: #FDF8F6;
  border: 2px solid rgba(253,248,246,0.6);
}
.btn-outline-white:hover { border-color: #FDF8F6; background: rgba(253,248,246,0.1); }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FDF8F6;
  transition: color 0.3s;
}
.logo-mark { color: #F5C6C0; }
.site-header.scrolled .logo { color: #2D1F24; }
.site-header.scrolled .logo-mark { color: #6B1D2A; }

/* Nav */
.main-nav ul { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(253,248,246,0.85);
  transition: color 0.3s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #F5C6C0;
  transition: width 0.3s;
}
.main-nav a:hover { color: #FDF8F6; }
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 24px;
  border: 1.5px solid rgba(253,248,246,0.4);
  border-radius: 6px;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: rgba(253,248,246,0.1); border-color: rgba(253,248,246,0.8); }

.site-header.scrolled .main-nav a { color: #6B5560; }
.site-header.scrolled .main-nav a:hover { color: #2D1F24; }
.site-header.scrolled .nav-cta { border-color: #6B1D2A; color: #6B1D2A; }
.site-header.scrolled .nav-cta:hover { background: #6B1D2A; color: #FDF8F6; }

/* Hamburger */
.nav-toggle { display: none; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #FDF8F6;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.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); }
.site-header.scrolled .hamburger, .site-header.scrolled .hamburger::before, .site-header.scrolled .hamburger::after { background: #2D1F24; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6B1D2A 0%, #8B3A4A 30%, #A0525D 50%, #C4787A 70%, #D4A0A0 100%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L5 30l25 25 25-25L30 5z' fill='none' stroke='%23ffffff' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,248,246,0.7);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #FDF8F6;
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-title br { display: none; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(253,248,246,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(253,248,246,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

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

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}
.about-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid #D4A0A0;
  border-radius: 12px;
  z-index: -1;
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p { color: #6B5560; margin-bottom: 16px; line-height: 1.75; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid #E8D5D0;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #6B1D2A;
}
.stat-label { font-size: 0.85rem; color: #8B7078; }

/* ── Services ── */
.services { background: #F7EDE9; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: #FDF8F6;
  border-radius: 12px;
  padding: 40px 36px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(107,29,42,0.08);
  border-color: #E8D5D0;
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #6B1D2A, #8B3A4A);
  color: #FDF8F6;
  margin-bottom: 24px;
}
.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #2D1F24;
}
.service-desc { color: #6B5560; line-height: 1.7; }

/* ── Areas ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.area-card {
  border-radius: 12px;
  overflow: hidden;
  background: #FDF8F6;
  border: 1px solid #E8D5D0;
  transition: all 0.3s ease;
}
.area-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(107,29,42,0.08); }
.area-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.area-card:hover img { transform: scale(1.05); }
.area-card-content { padding: 28px; }
.area-name {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #2D1F24;
}
.area-card-content p { color: #6B5560; font-size: 0.95rem; line-height: 1.65; }

/* ── Testimonials ── */
.testimonials { background: #F7EDE9; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: #FDF8F6;
  border-radius: 12px;
  padding: 36px;
  border: 1px solid #E8D5D0;
  position: relative;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: #D4A0A0;
  position: absolute;
  top: 16px;
  left: 28px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #4A3540;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.testimonial-author {
  font-size: 0.85rem;
  color: #8B7078;
  font-style: italic;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6B1D2A 0%, #8B3A4A 50%, #A0525D 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-eyebrow { color: rgba(253,248,246,0.6); }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #FDF8F6;
  margin-bottom: 20px;
}
.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(253,248,246,0.75);
  max-width: 520px;
  margin: 0 auto 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: 60px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { color: #6B5560; margin-bottom: 36px; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #6B1D2A, #8B3A4A);
  color: #FDF8F6;
}
.contact-detail-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8B7078;
  margin-bottom: 2px;
}
.contact-details a { color: #6B1D2A; font-weight: 500; transition: color 0.3s; }
.contact-details a:hover { color: #8B3A4A; }
.contact-details span { color: #4A3540; }

/* Form */
.contact-form-wrap {
  background: #F7EDE9;
  border-radius: 16px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #4A3540;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E8D5D0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #2D1F24;
  background: #FDF8F6;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #6B1D2A;
  box-shadow: 0 0 0 3px rgba(107,29,42,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B8A0A8; }
.form-note {
  font-size: 0.8rem;
  color: #8B7078;
  margin-top: 12px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon { color: #6B1D2A; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2D1F24;
  margin-bottom: 8px;
}
.form-success p { color: #6B5560; }

/* ── Footer ── */
.site-footer {
  background: #2D1F24;
  color: rgba(253,248,246,0.6);
  padding: 60px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; gap: 40px; }
.footer-brand .logo { color: #FDF8F6; }
.footer-brand .logo-mark { color: #F5C6C0; }
.footer-tagline { margin-top: 12px; font-size: 0.9rem; }
.footer-links nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(253,248,246,0.6);
  transition: color 0.3s;
}
.footer-links a:hover { color: #F5C6C0; }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(253,248,246,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(253,248,246,0.6); transition: color 0.3s; }
.footer-bottom a:hover { color: #F5C6C0; }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .services-grid { gap: 20px; }
  .testimonials-grid { gap: 20px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #2D1F24;
    padding: 100px 32px 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 24px; align-items: flex-start; }
  .main-nav a { color: rgba(253,248,246,0.8) !important; font-size: 1.05rem; }
  .main-nav a:hover { color: #FDF8F6 !important; }
  .nav-cta { border-color: rgba(253,248,246,0.3) !important; color: #FDF8F6 !important; }
  .nav-cta:hover { background: rgba(253,248,246,0.1) !important; border-color: rgba(253,248,246,0.6) !important; }

  .hero-title br { display: block; }
  .hero-content { padding: 100px 24px 80px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 400px; }
  .about-accent { display: none; }
  .about-stats { gap: 24px; }

  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .section { padding: 72px 0; }
  .cta-section { padding: 72px 0; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px; }
  .service-card { padding: 28px 24px; }
}
