:root{
  --primary:#3F6F5C;
  --secondary:#D8C3A5;
  --bg:#F3F3F3;
  --text:#333333;
  --muted:#666666;
  --card:#ffffff;
  --shadow:0 10px 25px rgba(0,0,0,.06);
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 35%, #ffffff 100%);
  line-height:1.6;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.small{font-size:.95rem; color:var(--muted)}
.kicker{
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--primary);
  font-size:.78rem;
}
h1,h2,h3{
  font-family:"Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing:.02em;
  margin:0 0 10px 0;
}
h1{font-size: clamp(2rem, 3.4vw, 3.1rem); line-height:1.15}
h2{font-size: clamp(1.6rem, 2.4vw, 2.2rem)}
h3{font-size: 1.25rem}
p{margin:0 0 12px 0}
ul{margin:10px 0 0 18px; padding:0}
li{margin:8px 0}

header{
  position:sticky; top:0; z-index:40;
  background: rgba(255,255,255,.86);
  backdrop-filter:saturate(130%) blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.logo{
  width:38px;height:38px;border-radius:12px;
  background: radial-gradient(circle at 30% 30%, var(--secondary), #fff 55%) ,
              linear-gradient(135deg, var(--primary), #2f5445);
  box-shadow: var(--shadow);
}
.brand b{font-family:"Playfair Display", serif; font-size:1.1rem}
.brand span{display:block; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-top:2px}

.menu{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.menu a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  color:var(--text);
}
.menu a:hover{background:rgba(63,111,92,.08)}
.menu .cta{
  background:var(--primary);
  color:white;
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
  box-shadow:0 10px 18px rgba(63,111,92,.18);
}
.menu .cta:hover{filter:brightness(1.03)}

.hero{
  padding:56px 0 26px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
.hero-card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:30px;
  border:1px solid rgba(0,0,0,.05);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  text-decoration:none;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(0,0,0,.08);
}
.btn.primary{background:var(--primary); color:white; border-color:transparent}
.btn.ghost{background:transparent}
.btn.secondary{background:var(--secondary); border-color:transparent}
.badges{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.badge{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px 14px;
  background:rgba(216,195,165,.22);
  border:1px solid rgba(216,195,165,.35);
  border-radius:16px;
}
.badge svg{flex:0 0 20px; margin-top:2px; opacity:.85}
.badge b{display:block; font-size:.95rem}
.badge span{display:block; font-size:.9rem; color:var(--muted)}

.section{padding:44px 0}
.section.alt{background: linear-gradient(180deg, rgba(216,195,165,.15), rgba(255,255,255,.0));}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:18px;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
  border:1px solid rgba(0,0,0,.05);
}
.card .icon{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  background:rgba(216,195,165,.30);
  border:1px solid rgba(216,195,165,.45);
  margin-bottom:12px;
}
.card h3{margin-bottom:8px}
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  margin-top:18px;
}
.callout{
  background:rgba(63,111,92,.07);
  border:1px solid rgba(63,111,92,.18);
  border-radius:var(--radius);
  padding:18px;
}
.footer{
  padding:30px 0;
  border-top:1px solid rgba(0,0,0,.06);
  color:var(--muted);
  font-size:.95rem;
}
.footer a{color:var(--muted)}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:16px;
}
hr.soft{border:0; height:1px; background:rgba(0,0,0,.08); margin:18px 0}

/* Contact */
.form{
  display:grid; gap:12px; margin-top:12px;
}
.field label{display:block; font-weight:700; font-size:.92rem; margin-bottom:6px}
.field input,.field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:white;
  font:inherit;
}
.field textarea{min-height:120px; resize:vertical}
.note{font-size:.9rem; color:var(--muted)}

/* WhatsApp floating button */
.wa-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:60;
  text-decoration:none;
  background:var(--primary);
  color:white;
  padding:12px 14px;
  border-radius:999px;
  box-shadow:0 16px 28px rgba(63,111,92,.22);
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:900;
}
.wa-fab svg{width:18px;height:18px}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .menu{gap:8px}
}



/* Ultra PRO animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-visible { animation: fadeUp .75s ease forwards; }
.reveal.delay-1.is-visible { animation-delay: .12s; }
.reveal.delay-2.is-visible { animation-delay: .22s; }
.reveal.delay-3.is-visible { animation-delay: .32s; }

/* Photo frame */
.photo-frame{
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 26px;
  padding: 14px;
  background: radial-gradient(circle at 30% 25%, rgba(216,195,165,.65), rgba(255,255,255,.0) 55%),
              linear-gradient(135deg, rgba(63,111,92,.22), rgba(216,195,165,.18));
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 22px 48px rgba(0,0,0,.14);
}
.photo-frame img{
  display:block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}



/* Profile caption under photo */
.profile-caption{
  margin-top:16px;
  text-align:center;
}
.profile-badge{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(63,111,92,.12);
  color:#3F6F5C;
  font-weight:700;
  font-size:.8rem;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.profile-sub{
  margin-top:6px;
  font-size:.95rem;
  color:#666;
  font-weight:600;
}



/* Logo under photo */
.profile-logo{
  margin-top:14px;
  display:flex;
  justify-content:center;
}
.profile-logo img{
  width:58px;
  height:auto;
  opacity:.9;
  filter:grayscale(100%);
}



/* Logo FIX - remove white box feel */
.profile-logo img{
  mix-blend-mode: multiply;
  background: transparent;
}



/* Responsive Google Map embed */
.map-embed{
  margin-top:12px;
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.map-embed iframe{
  width:100%;
  height:320px;
  border:0;
  display:block;
}
