@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #f0ebe3;
  --cream-dark: #e8e0d5;
  --cream-mid: #ede8e0;
  --forest: #1c2b22;
  --forest-mid: #243020;
  --terracotta: #9b4f2e;
  --terracotta-light: #b85c35;
  --sand: #c9a97a;
  --sand-light: #d4b88a;
  --dark: #1a1a18;
  --text: #2c2c2a;
  --text-mid: #4a4a46;
  --text-light: #7a7a74;
  --white: #ffffff;
  --border: #d8d0c4;
  --shadow: 0 2px 16px rgba(28,43,34,0.08);
  --shadow-lg: 0 8px 40px rgba(28,43,34,0.12);
  --radius: 8px;
  --transition: all 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  color: var(--dark);
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* NAV */
.site-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.logo-name span { color: var(--terracotta); }
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--dark); }

.nav-cta {
  background: var(--dark);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--forest); }

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

/* HERO */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand-light) 60%, var(--cream-dark) 100%);
  opacity: 0.5;
  border-radius: 0 0 0 120px;
}

/* diagonal texture line */
.hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: 20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  transform: rotate(15deg);
}

.hero-left {
  padding: 80px 64px 80px 0;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.78rem;
  color: var(--text-mid);
  background: rgba(255,255,255,0.6);
}

.badge svg { width: 13px; height: 13px; stroke: var(--text-mid); fill: none; stroke-width: 2; }

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--dark);
}

.hero-lead {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--terracotta-light); transform: translateY(-1px); }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 13px 24px;
  font-size: 0.9rem;
  color: var(--text);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}
.btn-phone:hover { border-color: var(--text-mid); }
.btn-phone svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* HERO RIGHT — review card */
.hero-right {
  position: relative;
  z-index: 1;
  padding: 80px 0 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
}

.review-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 20px;
}

.review-points { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.review-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.review-point svg {
  width: 18px; height: 18px;
  stroke: var(--terracotta);
  fill: none; stroke-width: 2;
  flex-shrink: 0; margin-top: 1px;
}

.review-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

.review-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.review-stat span { font-size: 0.78rem; color: var(--text-light); }

/* SERVICES SECTION */
.services-section {
  padding: 100px 0;
  background: var(--cream);
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label svg { width: 14px; height: 14px; stroke: var(--terracotta); fill: none; stroke-width: 2; }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 60px;
  max-width: 580px;
  color: var(--dark);
}

.services-grid { display: flex; flex-direction: column; gap: 16px; max-width: 680px; margin-left: auto; }

.service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: var(--transition);
}
.service-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }

.service-icon-wrap {
  width: 44px; height: 44px;
  background: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-icon-wrap svg { width: 20px; height: 20px; stroke: var(--white); fill: none; stroke-width: 1.5; }

.service-item h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 6px; color: var(--dark); }
.service-item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* HOW IT WORKS */
.process-section {
  background: var(--forest);
  padding: 100px 0;
  color: var(--white);
}

.process-section .section-label { color: var(--sand); }
.process-section .section-label svg { stroke: var(--sand); }

.process-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.15;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.process-step {
  padding: 40px 40px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.process-step:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 40px; }
.process-step:not(:first-child) { padding-left: 40px; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 20px;
}
.process-step p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.65; }

/* LOCATIONS */
.locations-section { padding: 100px 0; background: var(--cream-mid); }
.locations-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.locations-icon {
  width: 60px; height: 60px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.locations-icon svg { width: 28px; height: 28px; stroke: var(--white); fill: none; stroke-width: 1.5; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.location-circle {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
  background: rgba(255,255,255,0.5);
  transition: var(--transition);
  padding: 8px;
  line-height: 1.3;
}
.location-circle:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* CONTACT / FORM SECTION */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-left h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.15;
}
.contact-left p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-group label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}
.field-group input,
.field-group select,
.field-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--terracotta); background: var(--white); }
.field-group textarea { resize: vertical; min-height: 120px; }

.field-full { grid-column: 1 / -1; }

.btn-submit {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 16px 32px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 8px;
}
.btn-submit:hover { background: var(--forest); }

/* FOOTER */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-inner a { color: rgba(255,255,255,0.5); }
.footer-inner a:hover { color: var(--white); }

/* FORM SUCCESS */
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success h3 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { color: var(--text-mid); }

/* WHATSAPP */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 0;
  text-decoration: none;
  filter: drop-shadow(0 4px 16px rgba(37,211,102,0.45));
  transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-icon {
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.whatsapp-icon svg { width: 28px; height: 28px; fill: white; }
.whatsapp-pulse {
  position: absolute; top: 0; left: 0; width: 56px; height: 56px;
  border-radius: 50%; background: #25D366;
  animation: wpulse 2.5s ease-out infinite; z-index: -1;
}
.whatsapp-label {
  background: #25D366; color: white; font-size: 0.82rem; font-weight: 500;
  padding: 0 14px 0 10px; border-radius: 0 28px 28px 0; height: 40px;
  display: flex; align-items: center; white-space: nowrap;
  margin-left: -18px; padding-left: 22px;
  opacity: 0; max-width: 0; overflow: hidden;
  transition: all 0.3s ease; pointer-events: none;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; max-width: 180px; pointer-events: auto; }
@keyframes wpulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* LOCATION PAGE */
.loc-hero { background: var(--cream); padding: 64px 0 48px; border-bottom: 1px solid var(--border); }
.loc-hero h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; margin-bottom: 12px; }
.breadcrumb { font-size: 0.78rem; color: var(--text-light); margin-bottom: 16px; display: flex; gap: 8px; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--terracotta); }

.loc-layout { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; padding: 64px 0; }
.sidebar-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 90px; }
.sidebar-form-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.sidebar-form-card p { font-size: 0.83rem; color: var(--text-light); margin-bottom: 20px; }

.content-prose h2 { font-size: 1.6rem; font-weight: 400; margin: 36px 0 14px; }
.content-prose h3 { font-size: 1.15rem; font-weight: 500; margin: 24px 0 10px; }
.content-prose p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.content-prose ul { padding-left: 20px; color: var(--text-mid); font-size: 0.93rem; line-height: 1.8; margin-bottom: 14px; }
.content-prose ul li { margin-bottom: 5px; }

/* CTA STRIP */
.cta-strip { background: var(--forest); padding: 72px 0; text-align: center; }
.cta-strip h2 { color: var(--white); font-size: 2rem; font-weight: 400; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { display: none; }
  .hero-left { padding: 64px 0 32px; }
  .hero-right { padding: 0 0 64px; }
  .services-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { margin-left: 0; }
  .locations-layout { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .loc-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; background: var(--cream);
    padding: 80px 32px; z-index: 999; gap: 24px;
  }
  .mobile-toggle { display: flex; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 28px 0; border-right: none !important; padding-left: 0 !important; }
  .locations-grid { grid-template-columns: repeat(4, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 0 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 16px; right: 16px; }
  .whatsapp-label { display: none; }
}
