:root {
  --bg: #F5F1E8;
  --bg-2: #fffaf3;
  --text: #1E1E1C;
  --text-soft: #5e5a55;
  --accent: #B56E4A;
  --accent-2: #8A8178;
  --line: rgba(30,30,28,.10);
  --dark: #1E1E1C;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 20px 60px rgba(30,30,28,.08);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #fbf7f1 100%);
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}
h1, h2, h3, .brand-text { font-family: 'Manrope', sans-serif; }
h1 { font-size: clamp(38px, 6vw, 72px); line-height: 1.08; margin: 0 0 18px; letter-spacing: -0.05em; }
h2 { font-size: clamp(36px, 5.2vw, 62px); line-height: 1.04; margin: 0 0 14px; letter-spacing: -0.045em; }
h3 { font-size: 30px; line-height: 1.12; margin: 0 0 10px; letter-spacing: -0.03em; }
p { color: var(--text-soft); font-size: 17px; line-height: 1.7; margin: 0; }
.section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 700;
  transition: .25s ease; border: 1px solid transparent; cursor: pointer;
  font-family: inherit; font-size: 15px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--dark); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-secondary { background: rgba(255,255,255,.7); border-color: var(--line); }
.btn-secondary.dark { background: transparent; border-color: rgba(255,255,255,.25); color: #fff; }
.text-link { color: var(--accent); font-weight: 700; display: inline-flex; margin-top: 12px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 40; backdrop-filter: blur(14px);
  background: rgba(245,241,232,.78); border-bottom: 1px solid rgba(30,30,28,.06);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height: 82px; }
.brand { display:flex; align-items:center; gap:12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 14px; background: rgba(181,110,74,.12);
  display:grid; place-items:center; border:1px solid rgba(181,110,74,.20);
}
.brand-mark svg { width: 24px; height: 24px; fill: var(--text); }
.brand-text { font-weight: 800; font-size: 24px; letter-spacing: -0.04em; }
.brand-text span { color: var(--accent); }
.nav { display:flex; gap:26px; font-weight:600; color: var(--text-soft); }
.nav a:hover { color: var(--text); }

/* HAMBURGER */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; background: transparent; border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer; padding: 10px;
}
.hamburger span {
  display: block; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: 82px; z-index: 39;
  background: rgba(245,241,232,.97); backdrop-filter: blur(16px);
  padding: 32px 20px; flex-direction: column;
  transform: translateY(-8px); opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-link {
  font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--text); padding: 14px 0; border-bottom: 1px solid var(--line); letter-spacing: -0.03em;
}
.mobile-nav-btn { margin-top: 24px; width: 100%; justify-content: center; }

/* HERO */
.hero { padding: 70px 0 36px; }
.hero-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.hero-copy p { max-width: 670px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; margin: 28px 0 24px; }
.hero-kicker { font-family: 'Manrope', sans-serif; font-size: clamp(18px, 2.2vw, 26px); line-height: 1.1; margin-bottom: 18px; color: var(--accent); font-weight: 800; letter-spacing: -0.03em; }

.hero-card {
  margin-top: 24px;
  padding: 28px; border-radius: 28px;
  background: radial-gradient(circle at top right, rgba(181,110,74,.14), transparent 35%), #fff;
  box-shadow: var(--shadow); border: 1px solid rgba(30,30,28,.06);
}
.hero-brand-note { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 20px; }
.hero-brand-note h3 { font-size: 20px; margin-bottom: 8px; }

/* VIDEO FRAME */
.hero-video-frame {
  border-radius: 28px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid rgba(30,30,28,.06);
  background: #000; position: sticky; top: 100px;
}
.hero-video-frame video {
  width: 100%; display: block;
  aspect-ratio: 9/16; object-fit: cover;
}

/* MONOGRAM ROW + STAMP */
.hero-monogram-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0;
}
.monogram-large {
  width: 96px; height: 96px; border-radius: 24px; display:grid; place-items:center;
  background: rgba(181,110,74,.12); border:1px solid rgba(181,110,74,.2);
  flex-shrink: 0;
}
.monogram-large svg { width: 54px; height: 54px; fill: var(--text); }

.stamp-badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 92px; height: 92px; border-radius: 50%;
  border: 3px solid #c0392b; color: #c0392b;
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 22px;
  line-height: 1; text-align: center; transform: rotate(-8deg);
  background: transparent; flex-shrink: 0;
}
.stamp-badge .jusqu-a {
  font-size: 8px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #c0392b; margin-bottom: 2px;
}
.stamp-badge span {
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #c0392b; margin-top: 3px;
}

/* TRUST STRIP */
.trust-strip { background: var(--dark); color: #fff; padding: 20px 0; }
.trust-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; text-align:center; font-weight:600; }

/* RESULTS */
.results { padding-top: 72px; }
.top-badge { display: inline-flex; align-items: center; min-height: 40px; padding: 0 16px; margin-bottom: 16px; border-radius: 999px; background: rgba(192,57,43,.10); border: 1px solid rgba(192,57,43,.30); color: #c0392b; font-weight: 700; }
.results-highlight { display:grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 18px; margin: 30px 0 28px; }
.result-stat { border-radius: 24px; padding: 30px; border:1px solid var(--line); box-shadow: var(--shadow); }
.result-stat .label { display:block; color: var(--text-soft); font-size: 14px; margin-bottom: 14px; }
.result-stat strong { display:block; font-size: clamp(34px,5vw,62px); font-family:'Manrope',sans-serif; line-height: 1; letter-spacing: -.05em; }
.result-stat small { display:block; margin-top: 10px; color: var(--text-soft); font-size: 15px; }
.stat-dark { background: #232321; color: #fff; }
.stat-dark .label, .stat-dark small { color: rgba(255,255,255,.72); }
.stat-accent { background: linear-gradient(135deg, var(--accent), #c98968); color: #fff; }
.stat-accent .label, .stat-accent small { color: rgba(255,255,255,.9); }
.stat-light { background: #fff; }
.real-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.real-card { background:#fff; border-radius: var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.real-copy { padding: 24px; flex: 1; }
.real-img { width: 100%; height: 280px; object-fit: contain; display: block; background: var(--bg); flex-shrink: 0; }

/* SERVICES */
.cards-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.service-card {
  background: #fff; padding: 30px; border-radius: var(--radius); border:1px solid var(--line); box-shadow: var(--shadow);
}
.service-card.featured { border-color: rgba(181,110,74,.35); background: linear-gradient(180deg, #fff, #fff8f2); }
.service-card h3 { font-size: 32px; }
.service-card .price { margin: 18px 0; color: var(--accent); font-weight: 800; font-size: 20px; font-family: 'Manrope', sans-serif; }
.service-card ul { padding-left: 18px; color: var(--text-soft); display:grid; gap: 10px; margin: 0; }

/* ABOUT — full width with icons */
.about { padding-bottom: 46px; }
.about .section-head { margin: 0 auto 40px; text-align: center; }
.pillars-icons {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.pillar-card {
  background: #fff; padding: 28px 24px; border-radius: 22px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 10px;
}
.pillar-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(181,110,74,.10); border: 1px solid rgba(181,110,74,.20);
  display: grid; place-items: center; color: var(--accent); margin-bottom: 4px; flex-shrink: 0;
}
.pillar-icon svg { display: block; }
.pillar-card strong { display: block; font-family: 'Manrope', sans-serif; font-size: 16px; color: var(--text); }
.pillar-card span { color: var(--text-soft); font-size: 15px; line-height: 1.6; }

/* PROCESS */
.process { padding-top: 40px; }
.process-layout { display:grid; grid-template-columns: 1fr .95fr; gap: 24px; align-items: stretch; }
.process-steps { display:grid; gap: 16px; }
.step { display:flex; gap: 18px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: var(--shadow); }
.step span {
  min-width: 48px; height: 48px; border-radius: 14px; display:grid; place-items:center; background: rgba(181,110,74,.12);
  color: var(--accent); font-weight: 800; font-family:'Manrope',sans-serif;
}
.process-img-real {
  width: 100%; height: 100%; min-height: 450px;
  object-fit: cover; border-radius: var(--radius); display: block;
}

/* TESTIMONIALS */
.testimonials-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial-card { background:#fff; border:1px solid var(--line); border-radius: 22px; padding: 24px; box-shadow: var(--shadow); }
.avatar-img {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  display: block; margin-bottom: 18px;
}
.testimonial-card strong { display:block; margin-top: 16px; font-family:'Manrope',sans-serif; }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; display:grid; gap: 14px; }
.faq-list details { background:#fff; border:1px solid var(--line); border-radius: 18px; padding: 20px 22px; box-shadow: var(--shadow); }
.faq-list summary { cursor:pointer; font-weight:700; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list p { margin-top: 12px; }

/* CTA */
.final-cta { padding-top: 30px; }
.cta-box {
  background: #232321; color:#fff; border-radius: 32px; padding: 42px; display:grid; grid-template-columns: 1fr auto; gap: 20px; align-items:center;
}
.cta-box p { color: rgba(255,255,255,.76); }

/* CONTACT */
.contact-grid { display:grid; grid-template-columns: .9fr 1.1fr; gap: 26px; }
.contact-cards { display:grid; gap: 12px; margin-top: 24px; }
.contact-cards a, .contact-form {
  background:#fff; border:1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
}
.contact-cards a { padding: 18px 20px; font-weight: 600; display: flex; align-items: center; }
.contact-form { padding: 22px; }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display:grid; gap: 8px; font-weight: 600; font-size: 14px; margin-bottom: 14px; }
input, textarea {
  width:100%; border:1px solid rgba(30,30,28,.12); border-radius: 14px; background:#fff; padding: 14px 16px; font: inherit;
}
input:focus, textarea:focus { outline: 2px solid rgba(181,110,74,.24); border-color: var(--accent); }
.full { width:100%; }

/* MODAL */
.modal { position: fixed; inset:0; z-index: 90; display:none; }
.modal.show { display:block; }
.modal-backdrop { position:absolute; inset:0; background: rgba(20,20,18,.55); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; width:min(calc(100% - 28px), 880px); margin: 6vh auto 0; background:#fff; border-radius: 30px; box-shadow: 0 40px 100px rgba(0,0,0,.24);
  display:grid; grid-template-columns: .85fr 1.15fr; overflow:hidden;
}
.modal-copy { padding: 34px; }
.modal-close {
  position:absolute; top:14px; right:14px; border:0; background:#fff; width:40px; height:40px; border-radius:50%; cursor:pointer; font-size: 20px; z-index: 2;
}
.modal-video { background: #000; display: flex; align-items: center; }
.modal-video video { width: 100%; display: block; max-height: 70vh; }

/* FOOTER */
.site-footer { padding: 30px 0 50px; }
.footer-inner { display:flex; justify-content:space-between; gap: 24px; align-items:flex-end; border-top:1px solid var(--line); padding-top: 24px; }
.footer-links { display:flex; gap: 20px; color: var(--text-soft); }
.footer-brand { margin-bottom: 10px; }

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 45;
  background: #25D366; color:#fff; padding: 14px 20px; border-radius: 999px;
  box-shadow: var(--shadow); font-weight:700;
  display: flex; align-items: center; gap: 8px;
}
.floating-whatsapp:hover { background: #20c05c; transform: translateY(-1px); }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .nav { display:none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero-grid, .process-layout, .contact-grid, .modal-card, .cta-box { grid-template-columns: 1fr; }
  .results-highlight, .cards-grid, .real-grid, .trust-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .pillars-icons { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 40px; }
  .header-inner { min-height: 74px; }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .pillars-icons { grid-template-columns: 1fr; }
  .brand-text { font-size: 22px; }
  .modal-card { margin-top: 3vh; }
  .cta-box { padding: 28px; }
  .hero-monogram-row { gap: 14px; }
  .stamp-badge { width: 74px; height: 74px; font-size: 18px; }

}
