/* ===== 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.65;
  color: #1a1a2e;
  background: #FDF8F4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
.headline-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #2D1F3D;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C47A2A;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: #5A4A6A;
  max-width: 560px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--amber {
  background: #C47A2A;
  color: #fff;
  border: 2px solid #C47A2A;
}
.btn--amber:hover { background: #A86520; border-color: #A86520; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,122,42,0.3); }
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; padding: 16px 24px; }
.btn--nav { background: #C47A2A; color: #fff; padding: 10px 22px; font-size: 0.85rem; border-radius: 5px; }
.btn--nav:hover { background: #A86520; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 47, 91, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(107, 47, 91, 0.1); }
.header-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: 700;
  font-size: 1.5rem;
  color: #2D1F3D;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: #6B2F5B;
  color: #C47A2A;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a { font-size: 0.9rem; font-weight: 500; color: #2D1F3D; transition: color 0.2s; }
.nav-desktop a:not(.btn):hover { color: #C47A2A; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #2D1F3D; border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px;
  background: #FDF8F4;
  border-bottom: 1px solid rgba(107,47,91,0.08);
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  box-shadow: 0 16px 48px rgba(107,47,91,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1.1rem; font-weight: 500; color: #2D1F3D; }
.nav-mobile .btn--amber { margin-top: 8px; }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  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(45,31,61,0.82) 0%, rgba(107,47,91,0.72) 50%, rgba(196,122,42,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 800px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8A84C;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(232,168,76,0.4);
  border-radius: 100px;
  background: rgba(232,168,76,0.08);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-headline br { display: none; }
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.trust-item svg { color: #E8A84C; flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  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(6px); } }

@media (max-width: 768px) {
  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .hero-headline br { display: block; }
  .hero-content { padding-top: 100px; }
  .hero-sub { font-size: 1rem; }
}

/* ===== INTRO ===== */
.intro { padding: 120px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image { position: relative; }
.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(107,47,91,0.15);
}
.intro-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: #6B2F5B;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.15;
}
.intro-text .section-tag { margin-bottom: 16px; }
.intro-text .headline-serif {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}
.intro-text p {
  font-size: 1.05rem;
  color: #5A4A6A;
  line-height: 1.8;
  margin-bottom: 16px;
}
.intro-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(107,47,91,0.1);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #6B2F5B;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.8rem; font-weight: 500; color: #5A4A6A; text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 48px; background: rgba(107,47,91,0.15); }

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .intro-image img { height: 360px; }
  .intro-image-accent { width: 120px; height: 120px; bottom: -16px; right: -16px; }
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: #FDF8F4;
  border: 1px solid rgba(107,47,91,0.06);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(107,47,91,0.1);
  border-color: rgba(196,122,42,0.2);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6B2F5B, #8B4570);
  color: #E8A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2D1F3D;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.95rem;
  color: #5A4A6A;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== APPROACH ===== */
.approach { padding: 120px 0; }
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach-text .section-tag { margin-bottom: 16px; }
.approach-text .headline-serif {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}
.approach-text > p {
  font-size: 1.05rem;
  color: #5A4A6A;
  line-height: 1.8;
  margin-bottom: 36px;
}
.approach-list { display: flex; flex-direction: column; gap: 24px; }
.approach-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.approach-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C47A2A;
  flex-shrink: 0;
  margin-top: 7px;
}
.approach-list strong { color: #2D1F3D; }
.approach-list span { font-size: 0.95rem; color: #5A4A6A; line-height: 1.7; }
.approach-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 32px 64px rgba(107,47,91,0.12);
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .approach-image img { height: 360px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: #2D1F3D;
  color: #fff;
}
.testimonials .section-tag { color: #E8A84C; }
.testimonials .headline-serif { color: #fff; }
.testimonials .section-header { margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.testimonial-quote {
  color: #C47A2A;
  margin-bottom: 20px;
  opacity: 0.7;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: #E8A84C;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,31,61,0.88) 0%, rgba(107,47,91,0.78) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-content .section-tag { color: #E8A84C; }
.cta-headline {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .headline-serif {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.contact-desc {
  font-size: 1.05rem;
  color: #5A4A6A;
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6B2F5B, #8B4570);
  color: #E8A84C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2D1F3D;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.95rem;
  color: #5A4A6A;
  line-height: 1.6;
}
.contact-item a { color: #6B2F5B; font-weight: 500; transition: color 0.2s; }
.contact-item a:hover { color: #C47A2A; }

/* FORM */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 24px 64px rgba(107,47,91,0.08);
  border: 1px solid rgba(107,47,91,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2D1F3D;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(107,47,91,0.15);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a2e;
  background: #FDF8F4;
  transition: all 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #6B2F5B;
  box-shadow: 0 0 0 3px rgba(107,47,91,0.1);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A090A8; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(107,47,91,0.06);
  border-radius: 8px;
  color: #6B2F5B;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-success svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== MAP ===== */
.map-section { border-top: 1px solid rgba(107,47,91,0.08); }
.map-container { max-width: 100%; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1225;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-links strong,
.footer-contact strong,
.footer-hours strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #E8A84C;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #E8A84C; }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 4px; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: #E8A84C; }
.footer-hours p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 4px; }
.footer-hours-note { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 8px; font-style: italic; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: #E8A84C; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
