@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --rose: #CEB5B1;
  --rose-deep: #B08D88;
  --green: #3F4C43;
  --green-deep: #2C362F;
  --green-soft: #6B7A70;
  --bg: #FAF8F4;
  --bg-alt: #F1ECE3;
  --text: #2A2825;
  --text-soft: #6B6560;
  --white: #FFFFFF;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
ul{ list-style:none; }

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

:focus-visible{ outline: 2px solid var(--rose-deep); outline-offset: 3px; }

/* ---------- NAV ---------- */
header{
  position: sticky; top:0; z-index:100;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(63,76,67,0.1);
}

nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 32px; max-width:1180px; margin:0 auto;
  position: relative;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:52px; width:auto; }
.brand-text{ font-family: var(--font-display); font-weight:500; font-size:1.05rem; color:var(--green); line-height:1.2; }
.brand-text small{ display:block; font-family:var(--font-body); font-weight:500; font-size:0.68rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--rose-deep); }

.nav-links{ display:flex; gap:32px; font-size:0.94rem; font-weight:500; }
.nav-links a{ color: var(--text-soft); transition: color 0.2s ease; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active{ color: var(--green); border-bottom-color: var(--rose); }

.nav-cta{
  background: var(--green); color: var(--white);
  padding: 11px 24px; border-radius: 100px; font-size:0.9rem; font-weight:600;
  transition: background 0.2s ease, transform 0.2s ease; white-space:nowrap;
}
.nav-cta:hover{ background: var(--green-deep); transform: translateY(-1px); }

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width:42px; height:42px; align-items:center; justify-content:center;
  flex-shrink:0;
}
.nav-toggle svg{ width:26px; height:26px; stroke:var(--green); }

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

  .nav-links{
    display:flex;
    position:absolute;
    top:100%; left:0; right:0;
    flex-direction:column; gap:0;
    background: var(--bg);
    border-bottom: 1px solid rgba(63,76,67,0.12);
    box-shadow: 0 16px 24px -12px rgba(63,76,67,0.15);
    max-height:0;
    overflow:hidden;
    transition: max-height 0.32s ease;
    padding: 0 24px;
  }
  .nav-links.open{ max-height:420px; padding:10px 24px 18px; }
  .nav-links li{ width:100%; }
  .nav-links a{
    display:block; padding:14px 4px; font-size:1rem;
    border-bottom:1px solid rgba(63,76,67,0.08);
  }
  .nav-links li:last-child a{ border-bottom:none; }

  .nav-cta{ display:none; }
  .nav-links .nav-cta-mobile{
    display: block;
    background: var(--green); color: var(--white); text-align:center;
    padding: 13px; border-radius: 100px; font-size:0.92rem; font-weight:600;
    margin-top:10px; border-bottom:none;
  }
}
.nav-links .nav-cta-mobile{ display:none; }

/* ---------- PAGE HERO (interior pages) ---------- */
.page-hero{
  padding: 64px 0 56px;
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(63,76,67,0.08);
}

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-size:0.78rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
  color: var(--green-soft); margin-bottom:18px;
}
.eyebrow::before{ content:""; width:28px; height:1px; background: var(--rose-deep); }

.page-hero h1{
  font-family: var(--font-display); font-weight:500;
  font-size: clamp(2.2rem, 4.5vw, 3.1rem); color: var(--green); line-height:1.12; margin-bottom:16px;
}
.page-hero p{ color: var(--text-soft); font-size:1.08rem; max-width:600px; }

/* ---------- GENERIC SECTION ---------- */
section{ padding: 96px 0; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

h2{
  font-family: var(--font-display); font-weight:500;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem); color: var(--green); line-height:1.16; margin-bottom:16px;
}
.section-head p{ color: var(--text-soft); font-size:1.05rem; }

/* ---------- BUTTONS ---------- */
.btn-primary{
  background: var(--green); color: var(--white);
  padding: 16px 32px; border-radius:100px; font-weight:600; font-size:0.98rem;
  display:inline-block; transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover{ background: var(--green-deep); transform: translateY(-2px); }

.btn-ghost{
  color: var(--green); font-weight:600; font-size:0.98rem; padding:16px 8px;
  border-bottom:1px solid var(--green); transition: opacity 0.2s ease; display:inline-block;
}
.btn-ghost:hover{ opacity:0.6; }

.btn-outline{
  display:inline-block;
  border: 1.5px solid var(--green); color: var(--green);
  padding: 14.5px 30px; border-radius:100px; font-weight:600; font-size:0.98rem;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.btn-outline:hover{ background: var(--green); color: var(--white); transform: translateY(-2px); }

/* ---------- HOME HERO ---------- */
.home-hero{
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--bg);
}
.hero-bg{ position:absolute; top:0; bottom:0; left:42%; right:0; z-index:0; overflow:hidden; }
.hero-bg-mobile{ display:none; }
.hero-bg-img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:0; transition: opacity 1.4s ease;
}
.hero-bg-img.active{ opacity:1; }
.hero-gradient{
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(90deg,
    var(--bg) 0%,
    var(--bg) 42%,
    rgba(250,248,244,0.6) 50%,
    transparent 62%);
}
.hero-content{
  position:relative; z-index:2;
  max-width: 560px;
  padding: 56px 5vw 56px 6vw;
}
.home-hero h1{
  font-family: var(--font-display); font-weight:500; font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height:1.12; color: var(--green); letter-spacing:-0.01em; margin-bottom:16px;
}
.home-hero h1 em{ font-style:italic; color: var(--rose-deep); font-weight:500; }
.home-hero .lead{ font-size:1.02rem; color: var(--text-soft); max-width:480px; margin-bottom:24px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; align-items:center; }

.hero-stats{ display:flex; gap:32px; margin-top:52px; padding-top:28px; border-top:1px solid rgba(63,76,67,0.14); flex-wrap:wrap; }
.stat-num{ font-family: var(--font-display); font-size:1.8rem; color: var(--green); font-weight:500; }
.stat-label{ font-size:0.82rem; color: var(--text-soft); margin-top:2px; }

@media (max-width: 860px){
  .home-hero{
    display:block;
    min-height:auto;
  }
  .hero-bg-desktop{ display:none; }
  .hero-bg-mobile{
    display:block;
    position:relative;
    left:0; right:0; top:0; bottom:auto;
    width:100%;
    height:280px;
    z-index:0;
  }
  .hero-gradient{
    display:block;
    position:absolute;
    left:0; right:0; top:0;
    height:280px;
    background: linear-gradient(180deg,
      transparent 0%,
      transparent 45%,
      rgba(250,248,244,0.75) 78%,
      var(--bg) 100%);
    z-index:1;
  }
  .hero-content{
    position:relative;
    z-index:2;
    background: var(--bg);
    padding: 32px 24px 56px;
    max-width:100%;
  }
}

.photo-frame{
  position: relative;
}
.photo-frame img{
  width:100%; height:100%; object-fit:cover; display:block;
  -webkit-mask-image: radial-gradient(ellipse 96% 96% at center, black 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 96% 96% at center, black 78%, transparent 100%);
}

/* Ornament used as a small decorative accent near headings/sections */
.ornament-accent{
  width: 64px;
  height: auto;
  opacity: 0.9;
  margin-bottom: 18px;
}
.ornament-accent.light{ filter: brightness(0) invert(1) opacity(0.85); }

.ornament-watermark{
  position:absolute;
  width: 340px;
  opacity: 0.08;
  pointer-events:none;
  z-index:0;
}

/* ---------- CARDS / GRIDS ---------- */
.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }

.card{
  background: var(--white); border:1px solid rgba(63,76,67,0.1); border-radius:18px; padding:34px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: 0 20px 40px -22px rgba(63,76,67,0.28); border-color:transparent; }

.card-icon{
  width:52px; height:52px; border-radius:14px; background: var(--bg-alt);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.card-icon svg{ width:24px; height:24px; stroke: var(--green); }

.card h3{ font-family: var(--font-display); font-size:1.22rem; font-weight:500; color: var(--green); margin-bottom:10px; }
.card p{ color: var(--text-soft); font-size:0.94rem; }

.bg-alt{ background: var(--bg-alt); }

/* value list */
.values{ display:grid; gap:26px; margin-top:32px; }
.value-item{ display:flex; gap:16px; align-items:flex-start; }
.value-icon{
  width:44px; height:44px; border-radius:12px; background: var(--green); flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.value-icon svg{ width:21px; height:21px; stroke: var(--white); }
.value-title{ font-weight:600; color: var(--green); margin-bottom:3px; }
.value-text{ color: var(--text-soft); font-size:0.94rem; }

/* visual block used for image placeholders */
.visual-block{ border-radius:18px; overflow:hidden; position:relative; }
.visual-block svg{ width:100%; height:100%; display:block; }

/* team */
.team-card{ text-align:center; }
.team-photo{
  aspect-ratio:1/1; border-radius:18px; margin-bottom:18px; overflow:hidden;
  background: linear-gradient(150deg, var(--rose) 0%, var(--green) 100%);
}
.team-name{ font-family: var(--font-display); font-size:1.15rem; color: var(--green); font-weight:500; }
.team-role{ font-size:0.86rem; color: var(--rose-deep); font-weight:600; margin-top:2px; margin-bottom:10px; }
.team-bio{ font-size:0.9rem; color: var(--text-soft); }

/* testimonials (dark) */
.testimonials{ background: var(--green); color: var(--white); position:relative; overflow:hidden; }
.testimonials::before{
  content:"";
  position:absolute;
  width: 420px; height: 420px;
  left: -40px; top: -60px;
  background-image: url('../assets/ornament.png');
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.05;
  pointer-events:none;
}
.testimonials .container{ position:relative; z-index:1; }
.testimonials .section-head p{ color: rgba(255,255,255,0.68); }
.testimonials h2{ color: var(--white); }
.testimonials .eyebrow{ color: var(--rose); }
.testimonials .eyebrow::before{ background: var(--rose); }

.testi-card{
  background: rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:18px; padding:30px;
}
.testi-carousel{ position:relative; }
.testi-track{
  display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory;
  scroll-behavior:smooth; -webkit-overflow-scrolling:touch;
  padding-bottom:4px; margin:0 -4px; scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{ display:none; }
.testi-track .testi-card{
  flex:0 0 calc((100% - 48px)/3);
  scroll-snap-align:start;
}
.testi-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition: background 0.2s ease;
  z-index:2;
}
.testi-arrow:hover{ background:rgba(255,255,255,0.22); }
.testi-arrow svg{ width:20px; height:20px; stroke:var(--white); }
.testi-arrow.prev{ left:-14px; }
.testi-arrow.next{ right:-14px; }
.testi-google-cta{ text-align:center; margin-top:40px; }
.btn-outline-light{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(255,255,255,0.35); color:var(--white);
  padding:14px 28px; border-radius:100px; font-weight:600; font-size:0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.btn-outline-light:hover{ background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }

@media (max-width: 860px){
  .testi-track .testi-card{ flex:0 0 100%; }
  .testi-arrow{ width:38px; height:38px; }
  .testi-arrow.prev{ left:2px; }
  .testi-arrow.next{ right:2px; }
  .testi-arrow svg{ width:16px; height:16px; }
}
.testi-quote{ font-family: var(--font-display); font-style:italic; font-size:1.02rem; line-height:1.5; margin-bottom:22px; }
.testi-author{ display:flex; align-items:center; gap:14px; }
.testi-avatar{
  width:38px; height:38px; border-radius:50%; background: var(--rose);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:600; color: var(--green-deep);
}
.testi-name{ font-weight:600; font-size:0.9rem; }
.testi-role{ font-size:0.78rem; color: rgba(255,255,255,0.58); }

/* faq */
.faq-item{ border-bottom:1px solid rgba(63,76,67,0.12); padding:22px 0; }
.faq-item summary{ cursor:pointer; font-weight:600; color: var(--green); font-size:1.02rem; list-style:none; display:flex; justify-content:space-between; align-items:center; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-size:1.4rem; color: var(--rose-deep); font-weight:400; }
.faq-item[open] summary::after{ content:"–"; }
.faq-item p{ color: var(--text-soft); margin-top:12px; font-size:0.95rem; }

/* CTA band */
.cta-band{
  background: var(--bg-alt); border-radius:24px; padding:56px 48px; text-align:center;
}
.cta-band h2{ margin-bottom:14px; }
.cta-band p{ color: var(--text-soft); max-width:520px; margin: 0 auto 28px; }

/* ---------- CONTACT ---------- */
.contact-info-item{ display:flex; gap:18px; padding:20px 0; border-bottom:1px solid rgba(63,76,67,0.1); }
.contact-info-item:last-child{ border-bottom:none; }
.contact-info-item svg{ width:22px; height:22px; stroke: var(--rose-deep); flex-shrink:0; margin-top:2px; }
.contact-label{ font-size:0.8rem; color: var(--text-soft); margin-bottom:2px; }
.contact-value{ font-weight:600; color: var(--green); }

form{ background: var(--white); border-radius:20px; padding:38px; border:1px solid rgba(63,76,67,0.1); }
.form-row{ margin-bottom:18px; }
label{ display:block; font-size:0.85rem; font-weight:600; color: var(--green); margin-bottom:8px; }
input, textarea, select{
  width:100%; padding:13px 16px; border-radius:10px; border:1px solid rgba(63,76,67,0.18);
  background: var(--bg); font-family:inherit; font-size:0.95rem; color: var(--text);
}
textarea{ resize:vertical; min-height:90px; }
.form-submit{
  width:100%; background: var(--green); color: var(--white); padding:15px; border-radius:10px;
  font-weight:600; margin-top:6px; transition: background 0.2s ease;
}
.form-submit:hover{ background: var(--green-deep); }

.map-block{ border-radius:18px; overflow:hidden; aspect-ratio:16/11; }

/* ---------- FOOTER ---------- */
footer{
  background: var(--green-deep); color: rgba(255,255,255,0.65); padding:52px 0 28px; font-size:0.9rem;
  position: relative; overflow: hidden;
}
footer::after{
  content:"";
  position:absolute;
  width: 260px; height: 260px;
  right: -60px; bottom: -70px;
  background-image: url('../assets/ornament.png');
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.06;
  pointer-events:none;
}
footer .container{ position:relative; z-index:1; }
.footer-social{ display:flex; gap:12px; margin-top:18px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  background: rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover{ background: var(--rose); transform: translateY(-2px); }
.footer-social svg{ width:18px; height:18px; fill: var(--white); }

.footer-simple{ max-width: 640px; }
.footer-simple img{ height:40px; width:auto; filter: brightness(0) invert(1); opacity:0.92; margin-bottom:14px; }
.footer-simple p{ margin-bottom: 4px; }
.footer-simple .footer-divider{ height:1px; background: rgba(255,255,255,0.12); margin: 20px 0; border:none; }
.footer-simple a{ color: inherit; text-decoration: underline; text-underline-offset:2px; }
.footer-simple a:hover{ color: var(--rose); }
.footer-simple strong{ color: var(--white); }
.footer-links-line{ font-size:0.88rem; }
.footer-links-line a{ margin: 0 2px; }
.footer-grid{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:32px; padding-bottom:30px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.footer-brand img{ height:40px; width:auto; filter: brightness(0) invert(1); opacity:0.92; }
.footer-brand-text{ font-family: var(--font-display); color: var(--white); font-size:1.1rem; }
.footer-links{ display:flex; gap:48px; flex-wrap:wrap; }
.footer-col h4{ color: var(--white); font-size:0.85rem; margin-bottom:14px; }
.footer-col ul{ display:grid; gap:10px; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{ padding-top:22px; display:flex; justify-content:space-between; font-size:0.8rem; flex-wrap:wrap; gap:10px; }

/* ---------- WHATSAPP FLOAT BUTTON ---------- */
.whatsapp-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover{
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.whatsapp-float svg{ width: 30px; height: 30px; fill: white; }

@media (max-width: 860px){
  .whatsapp-float{ width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .whatsapp-float svg{ width: 26px; height: 26px; }
}

/* ---------- WHATSAPP CHAT POPUP ---------- */
.wa-popup{
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 290px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  padding: 16px 18px;
  z-index: 998;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.wa-popup.visible{ opacity:1; transform:translateY(0) scale(1); pointer-events:auto; }
.wa-popup-close{
  position:absolute; top:10px; right:12px; cursor:pointer;
  background:none; border:none; color:var(--text-soft); font-size:16px; line-height:1;
  padding:2px;
}
.wa-popup-header{ display:flex; gap:10px; align-items:center; margin-bottom:10px; padding-right:16px; }
.wa-popup-avatar{ position:relative; width:44px; height:44px; flex-shrink:0; }
.wa-popup-avatar img{ width:100%; height:100%; border-radius:50%; object-fit:cover; }
.wa-popup-online{
  position:absolute; bottom:0; right:0; width:11px; height:11px;
  background:#25D366; border-radius:50%; border:2px solid var(--white);
}
.wa-popup-name{ font-weight:700; font-size:0.9rem; color:var(--text); line-height:1.2; }
.wa-popup-role{ font-size:0.72rem; color:var(--text-soft); margin-top:1px; }
.wa-popup-bubble{
  background: var(--bg-alt); border-radius:12px; padding:12px 14px;
  font-size:0.86rem; color:var(--text); cursor:pointer; line-height:1.45;
  transition: background 0.2s ease, min-height 0.15s ease;
}
.wa-popup-bubble:hover{ background:#EAE3D6; }
.wa-typing{ display:flex; gap:4px; align-items:center; padding:4px 0; }
.wa-typing span{
  width:7px; height:7px; border-radius:50%; background:var(--text-soft); opacity:0.5;
  animation: wa-bounce 1.2s infinite ease-in-out;
}
.wa-typing span:nth-child(2){ animation-delay:0.15s; }
.wa-typing span:nth-child(3){ animation-delay:0.3s; }
@keyframes wa-bounce{
  0%, 60%, 100%{ transform: translateY(0); opacity:0.5; }
  30%{ transform: translateY(-4px); opacity:1; }
}

@media (max-width: 860px){
  .wa-popup{ width: calc(100% - 36px); right:18px; bottom:82px; }
}
@media (prefers-reduced-motion: reduce){
  .wa-typing span{ animation:none; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
}
.reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px){
  .home-hero-inner, .grid-2{ grid-template-columns:1fr; }
  .hero-visual{ max-width:320px; margin:0 auto; }
  .grid-3{ grid-template-columns:1fr; }
  section{ padding:64px 0; }
  .home-hero{ padding:56px 24px 80px; }
  .footer-grid, .footer-bottom{ flex-direction:column; }
  .cta-band{ padding:40px 26px; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
  html{ scroll-behavior:auto; }
}
