
:root{
  --beige:#f6f3ee; --beige-2:#efe9e2;
  --ink:#0f172a; --muted:#475569; --line:#e6e3de;
  --gold-start:#c9ad64; --gold-end:#e9d79a;
}
*{box-sizing:border-box} html,body{margin:0;padding:0}
body{font-family:Inter,system-ui,Roboto,Helvetica,Arial,sans-serif;color:var(--ink);background:var(--beige)}
.wrap{max-width:1100px;margin:0 auto;padding:0 20px}

/* Header */
.header{position:sticky;top:0;z-index:10;background:linear-gradient(180deg,#fff,rgba(255,255,255,.9));backdrop-filter:saturate(140%) blur(6px);border-bottom:1px solid var(--line)}
.header .wrap{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;padding:12px 0}
.left{justify-self:start}.mid{justify-self:center}.right{justify-self:end}
.logo{height:70px;width:auto;object-fit:contain}
.brand{font-family:'Playfair Display',serif;font-weight:700;font-size:32px;line-height:70px} /* igual de alto que el logo */
.ghost{background:transparent;border:1px solid var(--line);border-radius:10px;padding:8px 12px;cursor:pointer}

/* Hero */
.hero{background:linear-gradient(180deg,var(--beige),var(--beige-2));}
.hero-inner{padding:44px 0 18px;text-align:center}
.hero h1{font-family:'Playfair Display',serif;font-size:32px;margin:0 0 4px}
.sub{color:var(--muted);margin:0 0 12px}
.btn-grad{display:inline-block;padding:14px 22px;border-radius:14px;font-weight:700;text-decoration:none;color:#2b1900;background:linear-gradient(135deg,var(--gold-start),var(--gold-end));box-shadow:0 10px 18px rgba(0,0,0,.08)}
.btn-grad:hover{transform:translateY(-1px);}
.hero-email{margin-top:8px;color:#3f3a33}
.hero-email .email{font-weight:700;cursor:pointer;border-bottom:1px dashed transparent}
.hero-email .email:hover{border-bottom-color:#b4a58a}

/* Intro (más pequeño y compacto, pensado para móvil) */
.intro{padding:12px 0}
.prose{font-size:15px;line-height:1.55;text-align:center;max-width:700px;margin:0 auto;color:#2b2b2b}
.prose p{margin:0 0 4px}

/* Pricing */
.pricing{padding:16px 0 22px}
.section-title{font-family:'Playfair Display',serif;text-align:center;margin:0 0 12px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.card{background:#fff;border:1px solid var(--line);border-radius:16px;padding:20px;box-shadow:0 16px 32px rgba(15,23,42,.06);text-align:center}
.card h3{font-family:'Playfair Display',serif;margin:0 0 8px}
.card .accent{font-weight:700}
.card .small{font-size:12px;color:#6b7280}
.card.featured{border-color:#d6c79a;box-shadow:0 24px 40px rgba(201,173,100,.25)}

/* Contact inline */
.contact-inline{display:flex;justify-content:center;gap:10px;margin-top:12px;color:#3f3a33}
.email{font-weight:700;cursor:pointer;border-bottom:1px dashed transparent}
.email:hover{border-bottom-color:#b4a58a}
.copied{color:#059669;font-weight:700}

/* Before/After */
.ba{padding:10px 0 30px}
.section-title{text-align:center}
.pairs{display:grid;grid-template-columns:1fr;gap:16px}
.pair{display:grid;grid-template-columns:1fr 1fr;gap:14px}
figure{margin:0;background:#fff;border:1px solid var(--line);border-radius:14px;padding:10px;box-shadow:0 12px 28px rgba(15,23,42,.06)}
figure img{width:100%;height:320px;object-fit:cover;border-radius:10px}
figcaption{text-align:center;color:#6b7280;margin-top:6px;font-weight:600}

/* Footer */
.footer{background:#fff;border-top:1px solid var(--line)}
.foot{display:flex;justify-content:space-between;gap:16px;padding:16px 0;color:#6b6b6b}
.admin{color:inherit;text-decoration:none;border-bottom:1px dashed #b4a58a}
.admin:hover{border-bottom-color:#2b1900}

/* Responsive */
@media (max-width:900px){
  .logo{height:60px}
  .brand{font-size:26px;line-height:60px}
  .hero h1{font-size:28px}
  .sub{font-size:14.5px}
  .prose{font-size:13.8px;max-width:600px;line-height:1.45} /* reducción móvil adicional */
  .cards{grid-template-columns:1fr}
  .pair{grid-template-columns:1fr}
  figure img{height:220px}
}
