/* =========================================================
   TOKENS
========================================================= */
:root{
  --navy-deep:   #0A1B2E;
  --navy:        #10314D;
  --steel:       #2C5170;
  --sand:        #F2ECDE;
  --sand-dark:   #E6DCC6;
  --amber:       #E4A430;
  --amber-dark:  #C4880F;
  --rust:        #B23B22;
  --ink:         #1B1D1F;
  --white:       #FFFFFF;
  --gray:        #5B6470;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 3px;
  --radius-md: 6px;
  --shadow-card: 0 10px 24px rgba(10,27,46,0.14);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3{font-family:var(--font-head);margin:0;letter-spacing:.01em;}
ul{margin:0;padding:0;list-style:none;}
.section{padding:76px 6vw;max-width:1280px;margin:0 auto;}
.section-dark{background:var(--navy-deep);color:var(--white);max-width:none;padding:76px 6vw;}
.section-sand{background:var(--sand);max-width:none;padding:76px 6vw;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* =========================================================
   BUTTONS
========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:var(--radius-sm);
  font-weight:600;
  font-size:.95rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-amber{background:var(--amber);color:var(--navy-deep);}
.btn-amber:hover{background:var(--amber-dark);box-shadow:0 8px 18px rgba(196,136,15,.35);}
.btn-outline{border-color:rgba(255,255,255,.6);color:var(--white);background:transparent;}
.btn-outline:hover{background:rgba(255,255,255,.12);}
.btn-whatsapp{background:#2AA84A;color:var(--white);}
.btn-whatsapp:hover{background:#238f3d;box-shadow:0 8px 18px rgba(35,143,61,.35);}
.btn-lg{padding:16px 32px;font-size:1.02rem;}
.btn-block{width:100%;margin-top:14px;}

/* =========================================================
   TOPBAR + HEADER
========================================================= */
.topbar{background:var(--navy-deep);color:rgba(255,255,255,.85);font-size:.8rem;}
.topbar-inner{max-width:1280px;margin:0 auto;padding:8px 6vw;display:flex;gap:22px;align-items:center;justify-content:space-between;flex-wrap:wrap;}
.topbar-item{white-space:nowrap;}
.topbar-hours{opacity:.75;}
.topbar-contacts{display:flex;gap:18px;}
.topbar-contacts a:hover{color:var(--amber);}

.site-header{background:var(--white);border-bottom:1px solid #E7E2D6;position:sticky;top:0;z-index:50;}
.header-inner{max-width:1280px;margin:0 auto;padding:16px 6vw;display:flex;align-items:center;gap:28px;}
.brand{display:flex;align-items:center;margin-right:auto;}
.brand-logo{height:44px;width:auto;display:block;}
.main-nav{display:flex;gap:26px;font-weight:500;font-size:.94rem;}
.main-nav a:hover{color:var(--rust);}
.nav-toggle{display:none;background:none;border:none;font-size:1.4rem;cursor:pointer;color:var(--navy-deep);}

/* =========================================================
   HERO
========================================================= */
.hero{position:relative;min-height:88vh;display:flex;align-items:flex-end;overflow:hidden;}
.hero-media{position:absolute;inset:0;}
.hero-media img{width:100%;height:100%;object-fit:cover;}
.hero-scrim{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(10,27,46,.55) 0%, rgba(10,27,46,.55) 40%, rgba(10,27,46,.92) 100%);
}
.hero-content{position:relative;z-index:2;color:var(--white);padding:0 6vw 64px;max-width:900px;}
.hero-eyebrow{
  display:inline-block;
  background:var(--rust);
  padding:6px 14px;
  border-radius:2px;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.03em;
  margin-bottom:20px;
}
.hero-title{font-size:clamp(2.6rem,6.5vw,4.6rem);font-weight:700;line-height:1.02;margin-bottom:20px;text-transform:uppercase;}
.hero-sub{font-size:1.12rem;max-width:560px;color:rgba(255,255,255,.9);margin-bottom:32px;}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap;}
.hero-stats{display:flex;gap:40px;margin-top:44px;flex-wrap:wrap;}
.hero-stats div{display:flex;flex-direction:column;}
.hero-stats strong{font-family:var(--font-head);font-size:1.5rem;color:var(--amber);}
.hero-stats span{font-size:.82rem;color:rgba(255,255,255,.75);}

/* =========================================================
   TICKER
========================================================= */
.ticker{background:var(--amber);color:var(--navy-deep);overflow:hidden;white-space:nowrap;padding:11px 0;font-weight:600;font-size:.86rem;letter-spacing:.02em;}
.ticker-track{display:inline-flex;gap:14px;animation:ticker 32s linear infinite;padding-left:100%;}
.ticker .dot{opacity:.55;}
@keyframes ticker{
  0%{transform:translateX(0);}
  100%{transform:translateX(-100%);}
}

/* =========================================================
   SECTION HEADS
========================================================= */
.section-head{max-width:640px;margin-bottom:44px;}
.section-eyebrow{font-size:.8rem;font-weight:700;color:var(--rust);letter-spacing:.03em;margin:0 0 8px;}
.section-head h2{font-size:clamp(1.8rem,3.4vw,2.5rem);color:var(--navy-deep);margin-bottom:10px;}
.section-note{color:var(--gray);font-size:1rem;margin:0;}
.section-head-light h2{color:var(--white);}
.section-head-light .section-note{color:rgba(255,255,255,.7);}

/* =========================================================
   ABOUT
========================================================= */
.about-section{padding-top:64px;}
.about-grid{display:grid;grid-template-columns:1.15fr 0.85fr;gap:48px;align-items:center;}
.about-grid .section-note{color:var(--gray);margin-bottom:26px;}
.about-facts{display:flex;flex-direction:column;gap:14px;}
.about-facts li{display:flex;flex-direction:column;border-left:3px solid var(--amber);padding-left:14px;}
.about-facts strong{font-family:var(--font-head);font-size:1.15rem;color:var(--navy-deep);}
.about-facts span{font-size:.86rem;color:var(--gray);}
.about-media img{width:100%;border-radius:var(--radius-md);box-shadow:var(--shadow-card);}

/* =========================================================
   LISTING GRID (equipment cards)
========================================================= */
.listing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:26px;}
.listing-card{
  background:var(--white);
  border:1px solid #EAE4D6;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  display:flex;flex-direction:column;
  transition:transform .18s ease, box-shadow .18s ease;
}
.listing-card:hover{transform:translateY(-4px);box-shadow:0 16px 30px rgba(10,27,46,.18);}
.listing-featured{border:2px solid var(--amber);}
.listing-media{position:relative;aspect-ratio:4/3;overflow:hidden;background:#eee;}
.listing-media img{width:100%;height:100%;object-fit:cover;}
.ribbon{
  position:absolute;top:12px;left:12px;
  background:var(--navy-deep);color:var(--white);
  font-size:.72rem;font-weight:700;
  padding:5px 11px;border-radius:2px;letter-spacing:.03em;
}
.ribbon-amber{background:var(--amber);color:var(--navy-deep);}
.listing-body{padding:22px;display:flex;flex-direction:column;flex:1;}
.listing-top{display:flex;justify-content:space-between;align-items:baseline;gap:10px;margin-bottom:8px;}
.listing-top h3{font-size:1.2rem;color:var(--navy-deep);}
.year-chip{font-size:.76rem;font-weight:700;color:var(--rust);border:1px solid var(--rust);padding:2px 8px;border-radius:20px;white-space:nowrap;}
.listing-desc{color:var(--gray);font-size:.92rem;margin-bottom:14px;flex:0 0 auto;}
.spec-list{margin-bottom:6px;}
.spec-list li{font-size:.86rem;color:var(--navy);padding:4px 0 4px 20px;position:relative;}
.spec-list li::before{content:"—";position:absolute;left:0;color:var(--amber-dark);font-weight:700;}

/* =========================================================
   GALLERY (photo strip + videos)
========================================================= */
.photo-strip{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:min(78vw,320px);
  gap:14px;
  overflow-x:auto;
  padding-bottom:12px;
  margin-bottom:52px;
  scroll-snap-type:x proximity;
}
.photo-strip figure{margin:0;scroll-snap-align:start;}
.photo-strip img{
  height:230px;width:100%;object-fit:cover;border-radius:var(--radius-md) var(--radius-md) 0 0;
}
.photo-strip figcaption{
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.75);
  font-size:.78rem;
  padding:8px 12px;
  border-radius:0 0 var(--radius-md) var(--radius-md);
}
.video-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;}
.video-card{background:#0d2438;border-radius:var(--radius-md);overflow:hidden;aspect-ratio:9/16;max-height:420px;}
.video-card video{width:100%;height:100%;object-fit:cover;}
.video-note{text-align:center;color:rgba(255,255,255,.55);font-size:.85rem;margin-top:22px;}

/* =========================================================
   WHY US
========================================================= */
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:26px;}
.why-card{padding:26px 22px;border:1px solid #EAE4D6;border-radius:var(--radius-md);background:var(--white);}
.why-icon{font-size:1.7rem;display:block;margin-bottom:14px;}
.why-card h3{font-size:1.05rem;color:var(--navy-deep);margin-bottom:8px;}
.why-card p{color:var(--gray);font-size:.9rem;margin:0;}

/* =========================================================
   RATE TABLE
========================================================= */
.rate-table-wrap{overflow-x:auto;margin-bottom:26px;background:var(--white);border-radius:var(--radius-md);box-shadow:var(--shadow-card);}
.rate-table{width:100%;border-collapse:collapse;min-width:520px;}
.rate-table th{
  background:var(--navy-deep);color:var(--white);
  text-align:left;padding:14px 18px;font-family:var(--font-head);font-weight:500;font-size:.9rem;letter-spacing:.02em;
}
.rate-table td{padding:16px 18px;border-bottom:1px solid #EAE4D6;font-size:.94rem;}
.rate-table tr:last-child td{border-bottom:none;}
.rate-table tr:nth-child(even) td{background:#FAF7EF;}
.terms-list{margin-bottom:28px;}
.terms-list li{font-size:.88rem;color:var(--gray);padding:5px 0 5px 20px;position:relative;}
.terms-list li::before{content:"•";position:absolute;left:2px;color:var(--rust);font-weight:700;}
.terms-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:6px 32px;}

/* =========================================================
   CONTACT
========================================================= */
.section-contact{background:var(--navy);color:var(--white);max-width:none;padding:0;}
.contact-inner{display:grid;grid-template-columns:1.1fr 0.9fr;max-width:1280px;margin:0 auto;}
.contact-info{padding:76px 6vw;}
.contact-info .section-note{color:rgba(255,255,255,.75);margin-bottom:26px;}
.contact-info h2{color:var(--white);}
.contact-lines{display:flex;flex-direction:column;gap:12px;margin-bottom:30px;font-size:1rem;}
.contact-lines a:hover{color:var(--amber);}
.contact-media{position:relative;min-height:320px;}
.contact-media img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}

/* =========================================================
   FOOTER
========================================================= */
.site-footer{background:var(--navy-deep);color:rgba(255,255,255,.6);padding:34px 6vw;font-size:.82rem;}
.footer-inner{max-width:1280px;margin:0 auto;text-align:center;}
.footer-logo{height:40px;width:auto;margin:0 auto 14px;filter:brightness(0) invert(1);opacity:.9;}
.footer-inner p{margin:4px 0;}

/* =========================================================
   FLOATING WHATSAPP
========================================================= */
.whatsapp-float{
  position:fixed;bottom:24px;right:24px;z-index:60;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;color:var(--white);
  display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;box-shadow:0 10px 24px rgba(0,0,0,.3);
  animation:pulse 2.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 10px 24px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.5);}
  50%{box-shadow:0 10px 24px rgba(0,0,0,.3), 0 0 0 12px rgba(37,211,102,0);}
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width:860px){
  .main-nav{
    position:absolute;top:100%;left:0;right:0;
    background:var(--white);
    flex-direction:column;
    padding:16px 6vw 22px;
    border-bottom:1px solid #EAE4D6;
    display:none;
    gap:14px;
  }
  .main-nav.open{display:flex;}
  .nav-toggle{display:block;}
  .header-cta{display:none;}
  .contact-inner{grid-template-columns:1fr;}
  .contact-media{min-height:220px;order:-1;}
  .hero{min-height:78vh;}
  .about-grid{grid-template-columns:1fr;}
  .about-media{order:-1;}
}
@media (max-width:520px){
  .hero-stats{gap:24px;}
  .video-grid{grid-template-columns:repeat(auto-fit,minmax(160px,1fr));}
}
