:root{
  --bg:#090b10;
  --panel:#11151d;
  --panel2:#171c26;
  --text:#f7f8fb;
  --muted:#aeb6c5;
  --gold:#d7b56d;
  --gold2:#f4d898;
  --line:#252b36;
  --ok:#4fd49c;
  --radius:22px;
  --shadow:0 18px 50px rgba(0,0,0,.35);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font:16px/1.6 Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.wrap{
  width:min(1180px,92%);
  margin:auto;
}

/* =========================
   TOP BAR
   ========================= */

.top{
  background:#07080c;
  border-bottom:1px solid var(--line);
  font-size:13px;
  color:#d6dae3;
}

.top .wrap{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:7px 0;
}

/* =========================
   NAVIGATION
   ========================= */

.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(16px);
  background:rgba(9,11,16,.92);
  border-bottom:1px solid rgba(255,255,255,.07);
}

.navin{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.08em;
  white-space:nowrap;
}

.mark{
  width:38px;
  height:38px;
  border:1px solid var(--gold);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--gold);
  font-family:Georgia,serif;
  flex:0 0 auto;
}

.links{
  display:flex;
  gap:23px;
  align-items:center;
  font-size:14px;
  color:#d8dde6;
}

.links a:hover{
  color:var(--gold2);
}

/* =========================
   BUTTONS
   ========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 19px;
  border-radius:999px;
  font-weight:750;
  border:1px solid var(--gold);
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:#15100a;
  box-shadow:0 8px 30px rgba(215,181,109,.16);
}

.btn.ghost{
  background:rgba(9,11,16,.35);
  color:var(--text);
  border-color:#5a6270;
  box-shadow:none;
}

/* =========================
   HOMEPAGE HERO
   ========================= */

.hero{
  min-height:680px;
  display:grid;
  align-items:center;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);

  background-image:
    linear-gradient(
      90deg,
      rgba(5,7,11,.98) 0%,
      rgba(5,7,11,.93) 28%,
      rgba(5,7,11,.78) 45%,
      rgba(5,7,11,.48) 63%,
      rgba(5,7,11,.16) 100%
    ),
    url('/assets/img/plano-vip-ride-luxury-car-service-dfw.png');

  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

.hero:before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      0deg,
      rgba(5,7,11,.38) 0%,
      transparent 38%
    );
  pointer-events:none;
}

.hero:after{
  display:none;
  content:none;
}

.hero .wrap{
  position:relative;
  z-index:2;
  padding:70px 0 82px;
}

.eyebrow{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:800;
}

.hero h1{
  font-family:Georgia,'Times New Roman',serif;
  font-weight:500;
  font-size:clamp(48px,5.4vw,76px);
  line-height:1.02;
  max-width:760px;
  margin:18px 0;
  text-wrap:balance;
}

.hero p{
  font-size:18px;
  line-height:1.65;
  color:#e0e4eb;
  max-width:650px;
  margin:0;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.trust{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  margin-top:36px;
  color:#d7dce5;
  font-size:13px;
}

.trust span:before{
  content:'✓';
  color:var(--ok);
  margin-right:7px;
}

/* =========================
   GENERAL SECTIONS
   ========================= */

.section{
  padding:86px 0;
}

.section.alt{
  background:#0d1017;
}

.head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:34px;
}

.head h2{
  font-family:Georgia,serif;
  font-size:clamp(34px,4vw,54px);
  line-height:1.05;
  margin:8px 0;
}

.head p{
  color:var(--muted);
  max-width:580px;
}

/* =========================
   CARDS
   ========================= */

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  background:linear-gradient(180deg,var(--panel2),var(--panel));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:25px;
  box-shadow:var(--shadow);
}

.card h3{
  font-size:21px;
  margin:8px 0;
}

.card p{
  color:var(--muted);
}

.icon{
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(215,181,109,.12);
  border:1px solid rgba(215,181,109,.3);
  display:grid;
  place-items:center;
  color:var(--gold2);
  font-weight:900;
}

.price{
  font-size:27px;
  font-weight:800;
  color:var(--gold2);
}

/* =========================
   SPLIT SECTION
   ========================= */

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:center;
}

/* =========================
   SECONDARY IMAGE
   ========================= */

.luxart{
  width:100%;
  aspect-ratio:4/3;
  border-radius:30px;
  border:1px solid rgba(215,181,109,.30);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#11151d;
}

.luxart img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.luxart:after{
  display:none;
  content:none;
}

/* =========================
   FEATURES
   ========================= */

.feature{
  display:flex;
  gap:14px;
  margin:18px 0;
}

.feature b{
  display:block;
}

.feature span{
  color:var(--muted);
  font-size:14px;
}

/* =========================
   INTERNAL PAGE HERO
   ========================= */

.pagehero{
  padding:80px 0 54px;
  background:
    radial-gradient(
      circle at 80% 15%,
      rgba(215,181,109,.17),
      transparent 25%
    ),
    #0b0e14;
  border-bottom:1px solid var(--line);
}

.pagehero h1{
  font-family:Georgia,'Times New Roman',serif;
  font-weight:500;
  font-size:clamp(42px,6vw,72px);
  line-height:.98;
  max-width:850px;
  margin:18px 0;
}

.pagehero p{
  font-size:19px;
  color:#c7ceda;
  max-width:650px;
}

.crumb{
  font-size:13px;
  color:#98a2b3;
}

/* =========================
   SERVICE AREA LINKS
   ========================= */

.service-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.service-list a{
  padding:16px 18px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:15px;
}

.service-list a:hover{
  border-color:var(--gold);
}

/* =========================
   FORMS
   ========================= */

.form{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.field.full{
  grid-column:1/-1;
}

label{
  font-size:13px;
  color:#cad1dc;
}

input,
select,
textarea{
  width:100%;
  padding:14px 15px;
  border-radius:13px;
  border:1px solid #343c4a;
  background:#0b0e14;
  color:#fff;
  font:inherit;
  outline:none;
}

input:focus,
select:focus,
textarea:focus{
  border-color:var(--gold);
}

textarea{
  min-height:125px;
  resize:vertical;
}

.notice{
  font-size:13px;
  color:var(--muted);
}

.success{
  display:none;
  margin-top:15px;
  padding:13px;
  border:1px solid rgba(79,212,156,.35);
  background:rgba(79,212,156,.08);
  border-radius:12px;
}

/* =========================
   FOOTER
   ========================= */

.footer{
  padding:50px 0 95px;
  border-top:1px solid var(--line);
  color:#acb4c2;
}

.footgrid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:30px;
}

.footer h4{
  color:#fff;
}

.footer a{
  display:block;
  margin:8px 0;
}

/* =========================
   SHARE
   ========================= */

.share{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.share button{
  border:1px solid #3b4351;
  background:#131823;
  color:#fff;
  padding:9px 12px;
  border-radius:999px;
  cursor:pointer;
}

/* =========================
   REVIEWS
   ========================= */

.review{
  border-left:3px solid var(--gold);
  padding-left:18px;
}

/* =========================
   FAQ
   ========================= */

.faq details{
  border-bottom:1px solid var(--line);
  padding:17px 0;
}

.faq summary{
  cursor:pointer;
  font-weight:750;
}

.faq p{
  color:var(--muted);
}

/* =========================
   MOBILE BAR
   ========================= */

.mobilebar{
  display:none;
}

/* =========================
   TABLET / MOBILE
   ========================= */

@media(max-width:850px){

  body{
    padding-bottom:70px;
  }

  .links{
    display:none;
  }

  .top{
    display:none;
  }

  .navin{
    height:60px;
  }

  .brand{
    font-size:14px;
  }

  .nav .btn{
    padding:10px 15px;
    font-size:13px;
  }

  .grid3,
  .split,
  .footgrid{
    grid-template-columns:1fr;
  }

  .service-list{
    grid-template-columns:1fr;
  }

  .form{
    grid-template-columns:1fr;
  }

  .field.full{
    grid-column:auto;
  }

  /* MOBILE HERO */

  .hero{
    min-height:650px;

    background-image:
      linear-gradient(
        180deg,
        rgba(5,7,11,.50) 0%,
        rgba(5,7,11,.60) 28%,
        rgba(5,7,11,.82) 62%,
        rgba(5,7,11,.98) 100%
      ),
      url('/assets/img/plano-vip-ride-luxury-car-service-dfw.png');

    background-size:cover;
    background-position:56% center;
    background-repeat:no-repeat;
  }

  .hero .wrap{
    padding:55px 0 90px;
  }

  .hero h1{
    font-size:clamp(42px,12vw,58px);
    line-height:1.02;
    max-width:95%;
  }

  .hero p{
    font-size:16px;
    line-height:1.6;
    max-width:600px;
  }

  .trust{
    gap:10px 16px;
    margin-top:28px;
  }

  .section{
    padding:58px 0;
  }

  .head{
    display:block;
  }

  .pagehero{
    padding:54px 0 38px;
  }

  .card{
    padding:21px;
  }

  .luxart{
    aspect-ratio:16/11;
    border-radius:22px;
  }

  .mobilebar{
    position:fixed;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    left:0;
    right:0;
    bottom:0;
    z-index:80;
    background:rgba(8,10,15,.97);
    backdrop-filter:blur(15px);
    border-top:1px solid #2a303b;
    padding:7px 5px calc(7px + env(safe-area-inset-bottom));
  }

  .mobilebar a{
    font-size:11px;
    display:grid;
    gap:2px;
    place-items:center;
    color:#d8dde5;
  }

  .mobilebar b{
    font-size:18px;
  }
}

/* =========================
   SMALL PHONES
   ========================= */

@media(max-width:520px){

  .wrap{
    width:min(94%,1180px);
  }

  .brand{
    gap:8px;
    font-size:12px;
    letter-spacing:.05em;
  }

  .mark{
    width:34px;
    height:34px;
  }

  .nav .btn{
    padding:9px 12px;
    font-size:12px;
  }

  .hero{
    min-height:620px;
    background-position:67% center;
  }

  .hero .wrap{
    padding:48px 0 78px;
  }

  .hero h1{
    font-size:clamp(38px,12vw,52px);
    max-width:100%;
  }

  .hero p{
    font-size:15px;
  }

  .actions{
    gap:9px;
  }

  .actions .btn{
    padding:11px 15px;
    font-size:13px;
  }

  .trust{
    font-size:12px;
  }

  .head h2{
    font-size:36px;
  }
}