
:root{
  --wine:#711322;
  --dark:#0d1a31;
  --gold:#b88a32;
  --ink:#171719;
  --muted:#6d6d73;
  --paper:#fdfbf7;
  --line:#e8e1d9;
  --cream:#f5efe8;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font:16px/1.6 "DM Sans",sans-serif;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

/* =========================
   HEADER
   ========================= */

header{
  height:76px;
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(18px,5vw,78px);
  background:rgba(253,251,247,.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.logo{
  display:flex;
  align-items:center;
  width:auto;
  max-width:360px;
  overflow:hidden;
}

.logo img{
  width:auto !important;
  height:54px !important;
  max-width:340px !important;
  object-fit:contain !important;
  object-position:left center !important;
  display:block !important;
}

nav{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:.9rem;
  font-weight:600;
}

nav a:hover{
  color:var(--wine);
}

.outline{
  border:1px solid var(--wine);
  color:var(--wine);
  padding:10px 16px;
  border-radius:999px;
}

.outline:hover{
  background:var(--wine);
  color:white;
}

.menu{
  display:none;
  border:0;
  background:none;
  font-size:1.65rem;
  line-height:1;
  padding:8px;
  cursor:pointer;
}

/* =========================
   HERO
   ========================= */

.hero{
  min-height:calc(100vh - 76px);
  display:grid;
  grid-template-columns:1.08fr .92fr;
  align-items:center;
  gap:6vw;
  padding:75px clamp(22px,6vw,96px);
  background:
    radial-gradient(circle at 95% 0,#eadbc9 0,transparent 32%),
    radial-gradient(circle at 0 100%,#f0dde2 0,transparent 30%);
}

h1,h2,h3{
  font-family:"Playfair Display",serif;
  line-height:1.06;
}

.hero h1{
  font-size:clamp(3.2rem,6.8vw,7rem);
  margin:.1em 0;
}

.eyebrow{
  font-size:.74rem;
  letter-spacing:.19em;
  font-weight:700;
  color:var(--wine);
}

.lead{
  font-size:clamp(1.05rem,1.7vw,1.28rem);
  color:var(--muted);
  max-width:700px;
}

.actions{
  display:flex;
  gap:14px;
  margin-top:30px;
}

.btn,
.ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
}

.btn{
  background:var(--wine);
  color:white;
}

.btn:hover{
  background:#54101b;
}

.ghost{
  border:1px solid var(--line);
  background:white;
}

.meta{
  display:flex;
  flex-wrap:wrap;
  gap:30px;
  margin-top:42px;
  padding-top:22px;
  border-top:1px solid var(--line);
}

.meta span{
  display:flex;
  flex-direction:column;
  color:var(--muted);
  font-size:.8rem;
}

.meta b{
  color:var(--ink);
  font-size:.9rem;
}

.art{
  width:min(470px,100%);
  aspect-ratio:.82;
  border-radius:160px 160px 26px 26px;
  padding:50px;
  color:white;
  background:linear-gradient(155deg,var(--dark),#17243e 58%,var(--wine));
  box-shadow:0 30px 80px rgba(20,26,42,.2);
}

.art .es{
  font:700 7rem/1 "Playfair Display",serif;
  color:#d5aa51;
}

.art>p{
  font-size:.7rem;
  letter-spacing:.18em;
  color:#e3d0a9;
  margin-top:35px;
}

.art h2{
  font-size:2.25rem;
}

.art small{
  display:block;
  margin-top:45px;
  letter-spacing:.1em;
  color:#c6cad3;
}

/* =========================
   CONTENT SECTIONS
   ========================= */

.intro,
.section{
  padding:95px clamp(22px,6vw,96px);
  border-top:1px solid var(--line);
}

.twocol,
.about,
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7vw;
}

.twocol h2,
.section>h2,
.about h2,
.contact h2{
  font-size:clamp(2.3rem,4.6vw,4.8rem);
  margin:.2em 0;
}

.twocol>div{
  color:var(--muted);
  font-size:1.08rem;
}

.twocol a{
  color:var(--wine);
  font-weight:700;
}

/* =========================
   SERVICES
   ========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:40px;
}

.cards article{
  min-height:265px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:22px;
  background:white;
  transition:.25s;
}

.cards article:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 50px rgba(30,20,20,.08);
}

.cards .featured{
  background:var(--wine);
  color:white;
  border-color:var(--wine);
}

.cards span,
.steps b,
.points b{
  font-size:.75rem;
  color:var(--gold);
}

.cards h3{
  font-size:1.55rem;
  margin-top:46px;
}

.cards p{
  color:var(--muted);
}

.cards .featured p{
  color:#efdde1;
}

/* =========================
   PROCESS
   ========================= */

.process{
  background:var(--dark);
  color:white;
}

.process .eyebrow{
  color:#d5aa51;
}

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:40px;
}

.steps>div{
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.26);
}

.steps h3{
  font-size:1.4rem;
}

.steps p{
  color:#b8bfcc;
}

/* =========================
   ABOUT
   ========================= */

.about>div:first-child>p:last-child{
  color:var(--muted);
  font-size:1.08rem;
}

.points>div{
  display:grid;
  grid-template-columns:40px 1fr;
  align-items:center;
  padding:22px 0;
  border-bottom:1px solid var(--line);
}

.points h3{
  margin:0;
}

/* =========================
   CONTACT
   ========================= */

.contact{
  background:var(--cream);
}

.contactbox{
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
}

.contactbox>a:not(.btn),
.contactbox>p{
  margin:0;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:15px 6px;
  border-bottom:1px solid var(--line);
}

.contactbox span{
  color:var(--muted);
}

.full{
  width:100%;
  margin-top:15px;
}

/* =========================
   FLOATING WHATSAPP
   ========================= */

.wa{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:25;
  width:54px;
  height:54px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#1f8c56;
  color:white;
  font-weight:800;
  box-shadow:0 12px 30px #0003;
}

/* =========================
   FOOTER
   ========================= */

footer{
  display:grid;
  grid-template-columns:300px 1fr auto;
  gap:32px;
  align-items:center;
  padding:35px clamp(22px,6vw,96px);
  background:#101829;
  color:#e9eaf0;
}

footer img{
  width:auto !important;
  height:58px !important;
  max-width:280px !important;
  object-fit:contain !important;
  object-position:left center !important;
  background:white;
  border-radius:12px;
  padding:6px;
}

footer p{
  margin:0;
}

footer small{
  display:block;
  margin-top:7px;
  color:#aab1bf;
  font-size:.72rem;
  max-width:720px;
}

footer>span{
  font-size:.78rem;
  color:#aab1bf;
}

/* =========================
   TABLET
   ========================= */

@media(max-width:950px){

  .menu{
    display:block;
  }

  nav{
    display:none;
    position:absolute;
    top:76px;
    left:0;
    right:0;
    padding:22px;
    background:var(--paper);
    flex-direction:column;
    align-items:stretch;
    border-bottom:1px solid var(--line);
  }

  nav.open{
    display:flex;
  }

  .hero{
    grid-template-columns:1fr;
  }

  .art{
    margin:auto;
  }

  .twocol,
  .about,
  .contact{
    grid-template-columns:1fr;
  }

  .cards{
    grid-template-columns:1fr 1fr;
  }

  .steps{
    grid-template-columns:1fr 1fr;
  }

  footer{
    grid-template-columns:1fr;
  }

  footer img{
    width:auto !important;
    max-width:280px !important;
  }
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:600px){

  header{
    height:68px;
    padding:0 18px;
  }

  .logo{
    width:auto !important;
    max-width:235px !important;
    height:68px;
    display:flex;
    align-items:center;
    overflow:hidden;
  }

  .logo img{
    height:42px !important;
    width:auto !important;
    max-width:225px !important;
    object-fit:contain !important;
    object-position:left center !important;
    margin:0 !important;
  }

  .menu{
    display:block;
    font-size:1.75rem;
    margin-left:auto;
  }

  nav{
    top:68px;
  }

  .hero{
    min-height:auto;
    padding:52px 22px 70px;
  }

  .hero h1{
    font-size:3.4rem;
  }

  .actions{
    flex-direction:column;
  }

  .btn,
  .ghost{
    width:100%;
  }

  .meta{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
  }

  .art{
    padding:36px;
    border-radius:115px 115px 22px 22px;
  }

  .art .es{
    font-size:5rem;
  }

  .art h2{
    font-size:1.8rem;
  }

  .intro,
  .section{
    padding:72px 22px;
  }

  .cards,
  .steps{
    grid-template-columns:1fr;
  }

  .contactbox>a:not(.btn),
  .contactbox>p{
    flex-direction:column;
    gap:2px;
  }

  footer{
    padding:30px 22px;
  }

  footer img{
    height:48px !important;
    width:auto !important;
    max-width:235px !important;
  }

  .wa{
    width:50px;
    height:50px;
    right:16px;
    bottom:16px;
  }
}
