
:root{
  --wine:#711322;
  --dark:#0d1a31;
  --gold:#b88a32;
  --ink:#171719;
  --muted:#6d6d73;
  --paper:#fdfbf7;
  --line:#e8e1d9;
  --cream:#f5efe8;
  --white:#fff;
}
*{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;overflow-x:hidden}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
h1,h2,h3{font-family:"Playfair Display",serif;line-height:1.06}

/* Header */
header{
  height:82px;position:sticky;top:0;z-index:30;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 clamp(20px,5vw,78px);
  background:rgba(253,251,247,.97);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.logo{display:flex;align-items:center}
.logo img{width:260px;height:auto;max-height:58px;object-fit:contain}
nav{display:flex;align-items:center;gap:18px;font-size:.86rem;font-weight:600}
nav a{padding:8px 0}
.outline{border:1px solid var(--wine);color:var(--wine);padding:9px 14px;border-radius:999px}
.menu{display:none;border:0;background:none;font-size:1.7rem}

/* Hero */
.page-hero{
  position:relative;
  min-height:590px;
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(7,17,33,.92) 0%,rgba(7,17,33,.72) 46%,rgba(7,17,33,.22) 78%,rgba(7,17,33,.08) 100%);
}
.page-hero-content{
  position:relative;z-index:2;
  max-width:760px;
  padding:90px clamp(24px,6vw,96px);
  color:white;
}
.eyebrow{
  display:block;
  font-size:.72rem;
  letter-spacing:.18em;
  font-weight:700;
  color:#e7c97e;
}
.page-hero h1{
  font-size:clamp(3.4rem,6vw,6rem);
  margin:.15em 0 .22em;
}
.page-hero .lead{
  max-width:660px;
  font-size:1.1rem;
  color:#e4e8ee;
}
.hero-actions{display:flex;gap:12px;margin-top:28px}
.btn,.ghost{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 22px;border-radius:12px;font-weight:700;
}
.btn{background:var(--wine);color:white;box-shadow:0 10px 24px rgba(0,0,0,.18)}
.ghost{border:1px solid rgba(255,255,255,.55);color:white;background:rgba(255,255,255,.06)}

/* Cards */
.section{padding:72px clamp(24px,6vw,96px);border-top:1px solid var(--line)}
.section-heading{max-width:760px;margin-bottom:28px}
.section-heading .eyebrow{color:var(--wine)}
.section-heading h2{font-size:clamp(2.2rem,4vw,4rem);margin:.2em 0}
.section-heading p{color:var(--muted)}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.feature-card{
  min-height:265px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:20px;
  background:white;
  display:flex;
  flex-direction:column;
}
.feature-card .number{
  font-size:.76rem;
  color:var(--gold);
  font-weight:700;
}
.feature-card h3{
  margin:42px 0 12px;
  font-size:1.5rem;
}
.feature-card p{
  margin:0;
  color:var(--muted);
  font-size:.94rem;
}

/* About content */
.content-split{
  display:grid;grid-template-columns:1fr 1fr;gap:6vw;align-items:start;
}
.content-split h2{font-size:clamp(2.3rem,4vw,4.2rem);margin:.15em 0}
.copy{color:var(--muted);font-size:1.06rem}

/* CTA */
.cta{
  display:grid;grid-template-columns:1.4fr .6fr;gap:40px;align-items:center;
  background:var(--cream);
}
.cta .eyebrow{color:var(--wine)}
.cta h2{font-size:clamp(2.1rem,4vw,3.8rem);margin:.2em 0}

/* WhatsApp */
.wa{
  position:fixed;right:18px;bottom:18px;z-index:40;
  width:50px;height:50px;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:280px 1fr auto;gap:30px;align-items:center;
  padding:34px clamp(22px,6vw,96px);
  background:#101829;color:#e9eaf0;
}
footer img{
  width:240px;max-height:56px;object-fit:contain;
  background:white;border-radius:10px;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 / iPad */
@media(max-width:1180px){
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .section{padding:56px clamp(24px,5vw,68px)}
  .page-hero{min-height:520px}
  .page-hero-content{padding:70px clamp(24px,5vw,68px)}
  footer{grid-template-columns:1fr}
}

@media(max-width:1000px){
  .menu{display:block}
  nav{
    display:none;position:absolute;top:82px;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}
  .content-split,.cta{grid-template-columns:1fr}
}

/* Mobile */
@media(max-width:650px){
  header{height:74px;padding:0 16px}
  .logo img{width:185px;max-height:50px}
  nav{top:74px}
  .menu{font-size:1.85rem}

  .page-hero{
    min-height:540px;
    background-position:center center;
  }
  .page-hero::before{
    background:linear-gradient(180deg,rgba(7,17,33,.28) 0%,rgba(7,17,33,.48) 38%,rgba(7,17,33,.93) 100%);
  }
  .page-hero-content{
    padding:44px 20px 40px;
    width:100%;
  }
  .page-hero h1{
    font-size:clamp(2.8rem,12vw,3.9rem);
    margin:.14em 0 .22em;
  }
  .page-hero .lead{
    font-size:.98rem;
    line-height:1.55;
  }
  .hero-actions{flex-direction:column}
  .btn,.ghost{width:100%}

  .section{padding:50px 18px}
  .section-heading{margin-bottom:22px}
  .section-heading h2{font-size:2.35rem}

  .feature-grid{grid-template-columns:1fr;gap:12px}
  .feature-card{
    min-height:auto;
    padding:22px 20px;
  }
  .feature-card h3{
    margin:22px 0 10px;
    font-size:1.45rem;
  }
  .feature-card p{font-size:.92rem}

  .wa{width:46px;height:46px;right:12px;bottom:12px}
  footer{padding:28px 20px}
  footer img{width:210px}
}

/* ===== V9 HEADER + HERO FIX ===== */
.logo img{
  width:clamp(270px,24vw,350px) !important;
  height:auto !important;
  max-height:70px !important;
  object-fit:contain !important;
}

/* Less oversized on desktop and iPad */
.page-hero{
  min-height:455px !important;
}
.page-hero-content{
  padding-top:62px !important;
  padding-bottom:62px !important;
}
.page-hero h1{
  max-width:760px;
}

/* Digital Nomad image: keep laptop/view visible and avoid meaningless zoom */
.digital-nomad-hero{
  min-height:430px !important;
  background-position:center 58% !important;
}
.digital-nomad-hero::before{
  background:linear-gradient(90deg,rgba(7,17,33,.91) 0%,rgba(7,17,33,.73) 44%,rgba(7,17,33,.20) 80%,rgba(7,17,33,.05) 100%) !important;
}

/* Tablet */
@media(min-width:651px) and (max-width:1180px){
  .logo img{
    width:290px !important;
    max-height:62px !important;
  }
  .page-hero{
    min-height:420px !important;
  }
  .digital-nomad-hero{
    min-height:400px !important;
    background-position:center 60% !important;
  }
}

/* Mobile */
@media(max-width:650px){
  header{
    height:78px !important;
  }
  .logo img{
    width:220px !important;
    max-height:55px !important;
  }
  nav{
    top:78px !important;
  }
  .page-hero{
    min-height:470px !important;
  }
  .digital-nomad-hero{
    min-height:455px !important;
    background-position:56% center !important;
  }
  .page-hero-content{
    padding:38px 20px 38px !important;
  }
}


/* ===== V10 INTERNAL PAGE ICONS ===== */
.feature-icon{
  width:56px;
  height:56px;
  flex:0 0 56px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#f8ecef;
  color:var(--wine);
  border:1px solid #efdadd;
}
.feature-icon svg{
  width:27px;
  height:27px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.feature-card h3{
  margin:30px 0 12px !important;
}
@media(max-width:650px){
  .feature-icon{
    width:50px;
    height:50px;
    flex-basis:50px;
  }
  .feature-icon svg{
    width:24px;
    height:24px;
  }
  .feature-card h3{
    margin:20px 0 10px !important;
  }
}


/* ===== V11: SMALL, ELEGANT INTERNAL ICONS ===== */
/* Keeps layout intact; only reduces/refines the V10 feature icons. */
.feature-icon{
  width:38px !important;
  height:38px !important;
  min-width:38px !important;
  min-height:38px !important;
  flex:0 0 38px !important;
  display:inline-grid !important;
  place-items:center !important;
  border-radius:10px !important;
  background:#fbf4f5 !important;
  color:var(--wine) !important;
  border:1px solid #eadcdf !important;
  box-shadow:none !important;
  margin:0 0 18px 0 !important;
}
.feature-icon svg{
  width:18px !important;
  height:18px !important;
  max-width:18px !important;
  max-height:18px !important;
  display:block !important;
  fill:none !important;
  stroke:currentColor !important;
  stroke-width:1.65 !important;
  vector-effect:non-scaling-stroke;
}
.feature-card h3{
  margin:4px 0 12px !important;
}
@media(max-width:650px){
  .feature-icon{
    width:34px !important;
    height:34px !important;
    min-width:34px !important;
    min-height:34px !important;
    flex-basis:34px !important;
    border-radius:9px !important;
    margin-bottom:14px !important;
  }
  .feature-icon svg{
    width:16px !important;
    height:16px !important;
    max-width:16px !important;
    max-height:16px !important;
  }
  .feature-card h3{
    margin:3px 0 10px !important;
  }
}


/* ===== V12: NO ICONS — CLEAN PROFESSIONAL CARDS ===== */
/* Remove all visual icon remnants safely */
.feature-icon{
  display:none !important;
}

/* Clean editorial card styling */
.feature-card{
  position:relative;
  padding-top:30px !important;
}

/* Small refined brand accent instead of an icon/number */
.feature-card::before{
  content:"";
  display:block;
  width:26px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--wine),var(--gold));
  margin-bottom:22px;
}

.feature-card h3{
  margin:0 0 12px !important;
}

@media(max-width:650px){
  .feature-card{
    padding-top:22px !important;
  }

  .feature-card::before{
    width:22px;
    height:3px;
    margin-bottom:16px;
  }

  .feature-card h3{
    margin:0 0 10px !important;
  }
}
/* WhatsApp icon */

.wa svg,
.wa-icon{
  width:28px;
  height:28px;
  display:block;
  fill:none;
  stroke:#ffffff;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

@media(max-width:650px){
  .wa svg,
  .wa-icon{
    width:24px;
    height:24px;
  }
}
/* Instagram */

.footer-instagram{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:12px;
  color:#c3cad5;
  font-size:.84rem;
  transition:.2s;
}

.footer-instagram:hover{
  color:#ffffff;
}

.instagram-icon{
  width:18px;
  height:18px;
  flex:0 0 18px;
  display:block;
}
