/* ============================================================
   KASH General Suppliers - shared stylesheet.
   Every page (index.html, transport.html, agro.html, hospitality.html,
   about.html, contact.html, property.html) links this one file, and all
   of them share one header/footer (see partials/ + shared.js) - so a
   change here or to the header/footer only ever needs to be made once.
   ============================================================ */
:root{
  /* Warm cream/beige, not stark white - the page background (--cream) is
     the deepest of the three, --cream-2 a step lighter for alternating
     panels, --white the lightest (still faintly warm, never pure #fff)
     so photo cards lift softly off the page instead of looking pasted on. */
  --cream:#F6EFE1; --cream-2:#EFE5D2; --white:#FFFCF5;
  --navy:#152F4D; --navy-2:#0F2439; --ink-2:#4B5A6B; --muted:#7A8794; --line:#E4DCC7;

  --blue:#1E6CA8; --blue-soft:#E4EEF7;
  --teal:#12958A; --teal-soft:#DDF0ED;
  --gold:#DFA21C; --gold-soft:#FBEED0;
  --coral:#C82E58; --coral-soft:#FAE1E8;

  --shadow-sm:0 1px 3px rgba(21,47,77,.08);
  --shadow-md:0 10px 28px -10px rgba(21,47,77,.22);
  --shadow-lg:0 24px 56px -18px rgba(21,47,77,.32);
}
/* Deliberately single-theme: KASH General Suppliers always renders in
   this warm cream/beige, regardless of the viewer's system or app theme. */

*{box-sizing:border-box; -webkit-tap-highlight-color:transparent;}
html{-webkit-text-size-adjust:100%; scroll-behavior:smooth;}
@media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto;} }
html,body{margin:0;padding:0;}
body{
  background:var(--cream); color:var(--navy);
  font-family:"Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size:16px; line-height:1.6; letter-spacing:-.006em;
  -webkit-font-smoothing:antialiased;
  /* room for the iPhone notch/home-indicator in landscape */
  padding-left:env(safe-area-inset-left); padding-right:env(safe-area-inset-right);
  overflow-x:hidden;
}
::selection{background:var(--teal); color:#fff;}
a{color:inherit;} img,svg{display:block; max-width:100%;} button{font:inherit;}
a,button{touch-action:manipulation;} /* no 300ms tap delay on older mobile browsers */
:focus-visible{outline:2px solid var(--blue); outline-offset:2px; border-radius:6px;}
.wrap{max-width:1260px; margin-inline:auto; padding-inline:clamp(20px,4vw,56px); position:relative;}
h1,h2,h3{margin:0; letter-spacing:-.02em; text-wrap:balance; font-weight:800;}
p{margin:0;}
.script{font-family:"Caveat", cursive; font-weight:700;}
.eyebrow{font-size:.76rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;}

/* ---------------------------------------------------------- logo */
/* The KASH wordmark (logo.png) already reads "KASH" on its own - .word now
   only ever carries the "GENERAL SUPPLIERS" subtitle beside it. */
.logo{display:inline-flex; align-items:center; gap:12px; text-decoration:none; min-width:0; flex-shrink:1;}
.logo-mark{height:34px; width:auto; display:block; flex-shrink:0;}
.logo .word{min-width:0;}
.logo .word small{display:block; font-size:.66rem; font-weight:800; letter-spacing:.1em; color:var(--navy);}

/* ---------------------------------------------------------- buttons */
.btn{
  border-radius:999px; font-weight:700; font-size:.9rem;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:.78em 1.5em; text-decoration:none; cursor:pointer; border:1.5px solid transparent;
  transition:transform .12s ease, box-shadow .15s ease, opacity .15s ease; white-space:nowrap;
}
.btn:hover{transform:translateY(-1px); box-shadow:var(--shadow-sm);}
.btn:active{transform:translateY(0);}
.btn svg{width:15px;height:15px;flex-shrink:0;}
.btn-navy{background:var(--navy); color:var(--cream);}
.btn-gold{background:var(--gold); color:#3A2A05;}
.btn-teal{background:var(--teal); color:#fff;}
.btn-line-navy{background:transparent; color:var(--navy); border-color:var(--navy);}
.btn-sm{padding:.55em 1.15em; font-size:.8rem;}

/* ---------------------------------------------------------- header */
header{
  position:sticky; top:env(safe-area-inset-top,0px); z-index:50;
  background:color-mix(in srgb, var(--cream) 90%, transparent);
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px); border-bottom:1px solid var(--line);
}
.header-row{display:flex; align-items:center; justify-content:space-between; gap:12px; padding-block:14px; flex-wrap:nowrap;}
nav.primary{display:flex; align-items:center; gap:30px; font-size:.9rem; font-weight:700;}
nav.primary a{text-decoration:none; color:var(--navy); display:inline-flex; align-items:center; gap:4px;}
nav.primary a.active{color:var(--blue); position:relative;}
nav.primary a.active::after{content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:var(--blue); border-radius:2px;}
nav.primary svg{width:13px;height:13px;}
@media (max-width:860px){ nav.primary{display:none;} #headerCta{display:none;} }

/* ---------------------------------------------------------- Services dropdown */
.nav-item{position:relative;}
.nav-drop-toggle{
  display:inline-flex; align-items:center; gap:4px; background:none; border:none; cursor:pointer;
  font:inherit; font-weight:700; font-size:.9rem; color:var(--navy); padding:0;
}
.nav-drop-toggle.active{color:var(--blue);}
.nav-drop-toggle svg{width:13px;height:13px; transition:transform .18s ease;}
.nav-item.open .nav-drop-toggle svg{transform:rotate(180deg);}
.nav-drop-menu{
  position:absolute; top:calc(100% + 16px); left:50%; transform:translateX(-50%);
  background:var(--white); border-radius:16px; box-shadow:var(--shadow-lg); border:1px solid var(--line);
  padding:8px; min-width:230px; display:none; z-index:70;
}
.nav-item.open .nav-drop-menu{display:block;}
.nav-drop-menu a{
  display:flex; align-items:center; gap:10px; padding:10px 12px; border-radius:11px;
  font-weight:600; font-size:.86rem; color:var(--navy); text-decoration:none; transition:background .12s ease;
}
.nav-drop-menu a:hover, .nav-drop-menu a.active{background:var(--cream-2);}
.nav-drop-menu a svg{width:17px;height:17px; flex-shrink:0;}

/* mobile menu's own "Services" sub-heading */
.mnav-label{
  font-size:.72rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--muted);
  padding:16px 6px 4px;
}

/* ---------------------------------------------------------- mobile menu */
.menu-btn{
  display:none; width:40px; height:40px; border-radius:10px; border:1.5px solid var(--line);
  background:var(--white); align-items:center; justify-content:center; flex-shrink:0; cursor:pointer;
  margin-left:auto; /* always pinned to the right, however little room the logo has */
}
.menu-btn svg{width:19px;height:19px;}
@media (max-width:860px){ .menu-btn{display:flex;} }
.mobile-nav{
  display:none; position:fixed; inset:0; z-index:60;
  background:rgba(21,47,77,.42); -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px);
}
.mobile-nav.open{display:block;}
.mobile-nav-panel{
  position:absolute; top:0; right:0; bottom:0; width:min(78vw,320px); background:var(--white);
  box-shadow:var(--shadow-lg); padding:18px 22px; padding-top:calc(18px + env(safe-area-inset-top));
  padding-bottom:calc(24px + env(safe-area-inset-bottom));
  display:flex; flex-direction:column; gap:4px;
}
.mobile-nav-close{
  align-self:flex-end; width:40px; height:40px; border-radius:10px; border:1.5px solid var(--line);
  background:transparent; display:flex; align-items:center; justify-content:center; margin-bottom:14px;
}
.mobile-nav-close svg{width:18px;height:18px;}
.mobile-nav-panel a{
  text-decoration:none; color:var(--navy); font-weight:700; font-size:1.05rem;
  padding:14px 6px; border-bottom:1px solid var(--line); min-height:44px; display:flex; align-items:center;
}
.mobile-nav-panel a.active{color:var(--blue);}
.mobile-nav-panel .btn{margin-top:16px;}

/* ---------------------------------------------------------- icon circle */
.icircle{border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.icircle svg{display:block;}

/* ---------------------------------------------------------- breadcrumb (property detail, other inner pages) */
.crumb{display:flex; align-items:center; gap:6px; font-size:.82rem; color:var(--muted); flex-wrap:wrap;}
.crumb a{text-decoration:none; color:var(--muted); font-weight:600;}
.crumb a:hover{color:var(--navy);}
.crumb svg{width:12px;height:12px; flex-shrink:0;}
.back-link{display:inline-flex; align-items:center; gap:6px; font-size:.86rem; font-weight:700; color:var(--navy); text-decoration:none;}
.back-link svg{width:15px;height:15px;}

/* ============================================================ HOME HERO ============================================================ */
.home-hero{padding-block:clamp(40px,7vw,72px) clamp(30px,5vw,48px); overflow:hidden;}
.hero-watermark{
  position:absolute; left:0; top:38%; font-size:clamp(4rem,14vw,11rem); font-weight:800;
  color:var(--navy); opacity:.05; letter-spacing:-.03em; white-space:nowrap; pointer-events:none;
  line-height:1;
}
.home-hero-grid{display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(28px,5vw,56px); align-items:center; position:relative;}
@media (max-width:920px){ .home-hero-grid{grid-template-columns:1fr;} }
.home-hero h1{font-size:clamp(2.3rem,5.6vw,3.4rem); line-height:1.06; margin-top:10px;}
.home-hero .lede{margin-top:16px; color:var(--ink-2); font-size:1rem; max-width:46ch;}
.home-hero .actions{margin-top:26px;}
.home-hero-photo{position:relative; border-radius:26px; overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:6/4.1;}
.home-hero-photo img{width:100%; height:100%; object-fit:cover;}
.tagline-tag{
  position:absolute; top:16px; right:22px; font-size:clamp(1.2rem,2.6vw,1.6rem); color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.35); text-align:right; line-height:1.15;
}

/* division mini-cards */
.div-cards{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:clamp(30px,5vw,52px);}
@media (max-width:860px){ .div-cards{grid-template-columns:1fr;} }
.div-card{background:var(--white); border-radius:20px; box-shadow:var(--shadow-sm); overflow:hidden; text-decoration:none; color:inherit; display:block;}
.div-card .photo{position:relative; aspect-ratio:16/10.5;}
.div-card .photo img{width:100%; height:100%; object-fit:cover;}
.div-card .badge-icon{
  position:absolute; left:16px; bottom:-20px; width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); color:#fff;
}
.div-card .badge-icon svg{width:21px;height:21px;}
.div-card .body{padding:32px 20px 20px;}
.div-card h3{font-size:1.15rem;}
.div-card p{margin-top:8px; font-size:.88rem; color:var(--ink-2);}
.div-card .learn{margin-top:14px; font-size:.85rem; font-weight:700; display:inline-flex; align-items:center; gap:5px;}
.div-card .learn svg{width:14px;height:14px;}

/* trust strip */
.trust-strip{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:clamp(30px,5vw,48px); padding-block:6px;}
@media (max-width:760px){ .trust-strip{grid-template-columns:repeat(2,1fr);} }
.trust-item{display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px;}
.trust-item svg{width:24px;height:24px; color:var(--navy);}
.trust-item b{font-size:.9rem;}
.trust-item span{font-size:.78rem; color:var(--muted);}

/* ============================================================ SECTION HEROES ============================================================ */
.sec-hero{padding-block:clamp(40px,7vw,64px);}
.sec-hero.light{padding-block:clamp(36px,6vw,60px) 0;}
.light-hero-grid{display:grid; grid-template-columns:.95fr 1.05fr; gap:clamp(28px,5vw,56px); align-items:center;}
@media (max-width:920px){ .light-hero-grid{grid-template-columns:1fr;} }
.light-hero-grid h2{font-size:clamp(2.1rem,5vw,3.1rem); line-height:1.06; margin-top:10px;}
.light-hero-grid p.lede{margin-top:14px; color:var(--ink-2); font-size:1rem; max-width:46ch;}
.light-hero-grid .actions{margin-top:24px; display:flex; gap:12px; flex-wrap:wrap;}
.light-hero-photo{position:relative; border-radius:26px; overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:6/4.4;}
.light-hero-photo img{width:100%; height:100%; object-fit:cover;}

section{padding-block:clamp(44px,7vw,72px);}
.section-tight{padding-block:0 clamp(44px,7vw,72px);}

/* ---------------------------------------------------------- category icon strip */
.cat-strip{
  background:var(--white); border-radius:22px; box-shadow:var(--shadow-md);
  padding:clamp(20px,3vw,28px); margin-top:clamp(-38px, -4vw, -30px); position:relative; z-index:2;
  display:grid; grid-template-columns:repeat(6,1fr); gap:14px;
}
@media (max-width:980px){ .cat-strip{grid-template-columns:repeat(3,1fr);} }
@media (max-width:560px){ .cat-strip{grid-template-columns:repeat(2,1fr);} }
.cat-item{display:flex; flex-direction:column; align-items:center; text-align:center; gap:8px; padding:8px 4px;}
.cat-item svg{width:24px;height:24px;}
.cat-item b{font-size:.82rem;}
.cat-item span{font-size:.7rem; color:var(--muted);}

/* ---------------------------------------------------------- product grid */
.grid-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:22px; flex-wrap:wrap;}
.grid-head .eyebrow{color:var(--teal);}
.grid-head h2{font-size:clamp(1.7rem,3.6vw,2.2rem); margin-top:6px;}
.grid-head .all-link{font-size:.86rem; font-weight:700; display:inline-flex; align-items:center; gap:6px; color:var(--teal); text-decoration:none;}
.grid-head .all-link svg{width:14px;height:14px;}

.products{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
@media (max-width:980px){ .products{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .products{grid-template-columns:1fr;} }
.p-card{background:var(--white); border-radius:18px; overflow:hidden; box-shadow:var(--shadow-sm);}
.p-card .photo{position:relative; aspect-ratio:4/3;}
.p-card .photo img{width:100%; height:100%; object-fit:cover;}
.p-badge{position:absolute; top:12px; left:12px; font-size:.68rem; font-weight:700; padding:5px 11px; border-radius:999px; background:#fff; box-shadow:var(--shadow-sm);}
.p-body{padding:16px;}
.p-body h3{font-size:1rem;}
.p-body p{margin-top:5px; font-size:.82rem; color:var(--ink-2); min-height:2.6em;}
.p-price{margin-top:12px; font-size:.86rem; color:var(--ink-2);}
.p-price b{color:var(--navy); font-size:.98rem;}
.p-cta{margin-top:12px; width:100%;}

/* ---------------------------------------------------------- banners (why choose / fleet / comfort) */
.banner{
  border-radius:24px; overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--line);
  display:grid; grid-template-columns:1.15fr 1fr; align-items:stretch; min-height:280px;
}
@media (max-width:860px){ .banner{grid-template-columns:1fr; min-height:0;} }
.banner-copy{background:var(--cream-2); padding:clamp(28px,4vw,40px); display:flex; flex-direction:column; justify-content:center; gap:18px;}
.banner-copy .row1{display:flex; align-items:flex-start; gap:16px;}
.banner-copy .icircle{width:48px;height:48px; box-shadow:var(--shadow-sm);}
.banner-copy .icircle svg{width:23px;height:23px; color:#fff;}
.banner-copy .eyebrow{color:var(--teal);}
.banner-copy h3{font-size:clamp(1.3rem,2.4vw,1.55rem); margin-top:5px; line-height:1.15;}
.banner-copy p.desc{margin-top:2px; font-size:.92rem; color:var(--ink-2); line-height:1.6;}
.banner-facts{display:flex; gap:24px; flex-wrap:wrap; padding-top:18px; border-top:1px solid var(--line);}
.banner-fact{display:flex; flex-direction:column; align-items:flex-start; gap:7px;}
.banner-fact svg{width:20px;height:20px; color:var(--navy);}
.banner-fact b{font-size:.84rem;}
.banner-fact span{font-size:.73rem; color:var(--muted);}
.banner-photo{position:relative; min-height:260px;}
.banner-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.banner-photo::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to right, rgba(0,0,0,.14), transparent 30%);
  pointer-events:none;
}
@media (max-width:860px){ .banner-photo{min-height:200px;} .banner-photo::before{background:linear-gradient(to bottom, rgba(0,0,0,.12), transparent 30%);} }
.banner-photo.split{display:grid; grid-template-columns:1fr 1fr; gap:2px;}
.banner-photo.split img{height:100%;}

/* ---------------------------------------------------------- fleet grid (trucks / cars / tuktuks) */
.fleet-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:760px){ .fleet-grid{grid-template-columns:1fr;} }
.fleet-card{background:var(--white); border:1px solid var(--line); border-radius:18px; overflow:hidden; box-shadow:var(--shadow-sm);}
.fleet-card .photo{position:relative; aspect-ratio:4/3;}
.fleet-card .photo img{width:100%; height:100%; object-fit:cover;}
.fleet-body{display:flex; align-items:center; gap:12px; padding:14px 16px;}
.fleet-body b{display:block; font-size:.92rem;}
.fleet-body span{font-size:.78rem; color:var(--muted);}

/* ---------------------------------------------------------- hospitality search bar */
.search-bar{
  background:var(--white); border-radius:999px; box-shadow:var(--shadow-md);
  padding:8px; margin-top:clamp(-30px,-3vw,-24px); position:relative; z-index:2;
  display:grid; grid-template-columns:1.1fr 1fr 1fr .9fr auto; align-items:center;
}
@media (max-width:860px){ .search-bar{grid-template-columns:1fr 1fr; border-radius:22px; row-gap:4px;} }
.search-field{display:flex; align-items:center; gap:10px; padding:10px 18px; border-right:1px solid var(--line);}
@media (max-width:860px){ .search-field{border-right:none; border-bottom:1px solid var(--line);} }
.search-field:last-of-type{border-right:none;}
.search-field svg{width:17px;height:17px; color:var(--muted); flex-shrink:0;}
.search-field .flabel{font-size:.78rem; font-weight:700;}
.search-field .fvalue{font-size:.76rem; color:var(--muted);}
.search-bar .btn{margin:2px;}
@media (max-width:860px){ .search-bar .btn{grid-column:1/-1; border-radius:16px; margin-top:6px;} }

/* ---------------------------------------------------------- properties grid */
.properties{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:980px){ .properties{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .properties{grid-template-columns:1fr;} }
.prop-card{background:var(--white); border-radius:18px; overflow:hidden; box-shadow:var(--shadow-sm);}
.prop-card .photo{position:relative; aspect-ratio:4/3;}
.prop-card .photo img{width:100%; height:100%; object-fit:cover;}
.prop-body{padding:16px;}
.prop-body h3{font-size:.98rem;}
.prop-loc{margin-top:5px; display:flex; align-items:center; gap:5px; font-size:.78rem; color:var(--muted);}
.prop-loc svg{width:13px;height:13px;}
.prop-meta{display:flex; gap:12px; margin-top:10px; font-size:.75rem; color:var(--ink-2);}
.prop-meta span{display:inline-flex; align-items:center; gap:4px;}
.prop-meta svg{width:14px;height:14px;}
.prop-price{margin-top:12px; font-size:.86rem; color:var(--ink-2);}
.prop-price b{color:var(--navy); font-size:1rem;}
.prop-cta{margin-top:12px; width:100%;}

/* ---------------------------------------------------------- property detail page */
.prop-detail{display:grid; grid-template-columns:1.3fr 1fr; gap:clamp(24px,4vw,44px); align-items:start;}
@media (max-width:920px){ .prop-detail{grid-template-columns:1fr;} }
.prop-detail-photo{border-radius:24px; overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/3;}
.prop-detail-photo img{width:100%; height:100%; object-fit:cover;}
.prop-detail-amenities{display:grid; grid-template-columns:repeat(2,1fr); gap:12px 20px; margin-top:20px;}
.prop-detail-amenities li{display:flex; align-items:center; gap:8px; font-size:.88rem; color:var(--ink-2); list-style:none;}
.prop-detail-amenities svg{width:16px;height:16px; color:var(--teal); flex-shrink:0;}
.prop-detail-card{background:var(--white); border-radius:20px; box-shadow:var(--shadow-md); padding:clamp(22px,3vw,28px); position:sticky; top:96px;}
.prop-detail-card .price{font-size:1.6rem; font-weight:800; color:var(--navy);}
.prop-detail-card .price span{font-size:.85rem; font-weight:600; color:var(--muted);}
.prop-detail-card .btn{width:100%; margin-top:18px;}
.prop-detail-card .note{margin-top:10px; font-size:.78rem; color:var(--muted); text-align:center;}
.prop-not-found{padding-block:clamp(60px,10vw,100px); text-align:center;}

/* ---------------------------------------------------------- simple content pages (About / Contact) */
.page-hero{padding-block:clamp(36px,6vw,56px) clamp(20px,3vw,28px); text-align:center;}
.page-hero .eyebrow{justify-content:center; display:flex;}
.page-hero h1{font-size:clamp(2rem,4.6vw,2.8rem); margin-top:10px;}
.page-hero p{margin-top:12px; color:var(--ink-2); max-width:56ch; margin-inline:auto;}

.contact-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media (max-width:860px){ .contact-grid{grid-template-columns:1fr;} }
.contact-card{background:var(--white); border-radius:20px; box-shadow:var(--shadow-sm); padding:26px; text-align:center;}
.contact-card .icircle{width:48px; height:48px; margin-inline:auto;}
.contact-card .icircle svg{width:22px;height:22px; color:#fff;}
.contact-card h3{margin-top:16px; font-size:1.05rem;}
.contact-card p{margin-top:6px; font-size:.86rem; color:var(--ink-2);}
.contact-card .btn{margin-top:16px; width:100%;}

.value-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:8px;}
@media (max-width:860px){ .value-grid{grid-template-columns:1fr;} }
.value-item{display:flex; flex-direction:column; gap:10px;}
.value-item .icircle{width:44px;height:44px;}
.value-item .icircle svg{width:20px;height:20px; color:#fff;}
.value-item h3{font-size:1.02rem;}
.value-item p{font-size:.88rem; color:var(--ink-2); margin-top:2px;}

/* ---------------------------------------------------------- footer */
footer{background:var(--white); color:var(--ink-2); position:relative; overflow:hidden; margin-top:clamp(40px,6vw,64px); border-top:1px solid var(--line);}
.footer-wave{position:absolute; right:-40px; bottom:-60px; width:340px; height:340px; opacity:.9; pointer-events:none;}
.foot-wrap{padding-block:clamp(34px,5vw,50px) 22px; position:relative; z-index:1;}
.foot-top{display:flex; align-items:flex-start; justify-content:space-between; gap:20px; flex-wrap:wrap; padding-bottom:26px; border-bottom:1px solid var(--line);}
.foot-nav{display:flex; gap:26px; flex-wrap:wrap; font-size:.86rem; font-weight:600;}
.foot-nav a{text-decoration:none; color:var(--navy);}
.foot-social{display:flex; gap:10px;}
.foot-social a{
  width:34px;height:34px;border-radius:50%; border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center; text-decoration:none; color:var(--navy);
}
.foot-social svg{width:15px;height:15px;}
.foot-bottom{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; padding-top:18px; font-size:.78rem; color:var(--muted);}

/* ---------------------------------------------------------- floating contact button */
.fab-contact{
  position:fixed; right:18px; bottom:calc(18px + env(safe-area-inset-bottom)); z-index:55;
  width:56px; height:56px; border-radius:50%; background:var(--teal); color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-lg);
  text-decoration:none; transition:transform .15s ease;
}
.fab-contact:hover{transform:translateY(-2px) scale(1.04);}
.fab-contact svg{width:25px; height:25px;}
body[data-page="contact"] .fab-contact{display:none;} /* already there - no point floating a button to itself */

@media (prefers-reduced-motion:no-preference){
  .fx{opacity:0; animation:rise .55s cubic-bezier(.2,.8,.2,1) forwards;}
  .fx2{animation-delay:.08s;} .fx3{animation-delay:.16s;}
  @keyframes rise{from{opacity:0; transform:translateY(10px);} to{opacity:1; transform:translateY(0);}}
}

/* ============================================================ SMALL PHONES - compact but comfortable, not cramped ============================================================ */
@media (max-width:480px){
  body{font-size:15.5px;}
  .wrap{padding-inline:18px;}
  section{padding-block:clamp(36px,9vw,52px);}
  .section-tight{padding-block:0 clamp(36px,9vw,52px);}

  .logo{gap:8px;}
  .logo-mark{height:27px;}
  .logo .word small{font-size:.6rem;}
  .header-row{padding-block:12px;}
  .btn{padding:.72em 1.25em; font-size:.87rem; gap:7px;}
  .btn-sm{padding:.58em 1.1em; font-size:.8rem;}

  .home-hero{padding-block:28px 22px;}
  .home-hero h1{font-size:2.15rem; margin-top:9px;}
  .home-hero .lede{font-size:.95rem; margin-top:12px;}
  .home-hero .actions{margin-top:20px;}
  .home-hero-photo{border-radius:20px;}
  .hero-watermark{display:none;}
  .tagline-tag{font-size:1.15rem; top:12px; right:16px;}

  .light-hero-grid h2{font-size:2.05rem;}
  .light-hero-grid p.lede{font-size:.95rem;}
  .light-hero-grid .actions{margin-top:18px; gap:10px;}
  .light-hero-photo{border-radius:20px;}

  .div-cards{gap:16px; margin-top:24px;}
  .div-card .body{padding:28px 18px 18px;}
  .div-card h3{font-size:1.1rem;}
  .div-card .badge-icon{width:42px; height:42px; left:14px; bottom:-18px;}
  .div-card .badge-icon svg{width:19px;height:19px;}

  .trust-strip{gap:16px; margin-top:26px;}
  .trust-item svg{width:22px;height:22px;}
  .trust-item b{font-size:.88rem;}
  .trust-item span{font-size:.76rem;}

  .cat-strip{padding:16px; border-radius:18px; gap:12px;}
  .cat-item b{font-size:.8rem;}
  .cat-item span{font-size:.68rem;}

  .grid-head h2{font-size:1.55rem;}
  .products, .properties{gap:16px;}
  .p-body, .prop-body{padding:15px;}
  .fleet-grid{gap:16px;}
  .fleet-body{padding:14px 16px;}

  .banner{border-radius:20px; min-height:0;}
  .banner-copy{padding:24px 20px; gap:16px;}
  .banner-copy h3{font-size:1.28rem;}
  .banner-copy p.desc{font-size:.92rem;}
  .banner-facts{gap:16px 22px; padding-top:16px;}
  .banner-photo{min-height:170px;}

  .search-bar{border-radius:20px; padding:7px;}
  .search-field{padding:11px 14px;}
  .search-field .flabel{font-size:.78rem;}
  .search-field .fvalue{font-size:.74rem;}

  .prop-detail-amenities{grid-template-columns:1fr;}
  .prop-detail-card{position:static;}
  .contact-grid, .value-grid{gap:16px;}

  .foot-top{padding-bottom:20px;}
  .foot-nav{gap:18px; font-size:.85rem;}
  .foot-social a{width:32px;height:32px;}
  .foot-bottom{font-size:.76rem;}
  .footer-wave{width:250px; height:250px; right:-30px; bottom:-40px;}
}
