@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root{
  --hl-dark-teal:#1d3c3f;
  --hl-light-bg:#faf9f8;
  --hl-teal:#49b2bc;
  --hl-orange:#aa5238;
  --hl-yellow:#dea54a;
  --hl-light-teal:#98abad;
  --hl-soft-teal:#c6d9d9;
  --hl-cream:#e7cb9c;
  --hl-coral:#d3a79e;
  --bg:#faf9f8;
  --text:#1d3c3f;
  --border:#e6e6e6;
}

*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--text)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input{font:inherit}
.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

.container{max-width:1280px;margin:0 auto;padding:0 16px}
.section{padding:40px 0}
.page{min-height:100vh;background:var(--hl-light-bg)}

.site-header{position:sticky;top:0;z-index:50;background:#fff;box-shadow:0 1px 0 rgba(0,0,0,.06)}
.header-row{display:flex;align-items:center;justify-content:space-between;height:64px;gap:16px}
.logo{display:flex;align-items:center;gap:10px;flex-shrink:0}
.logo-svg{height:32px;width:auto}

.nav{display:none;align-items:center;gap:4px}
.nav-item{position:relative}
.nav-btn{display:flex;align-items:center;gap:6px;padding:8px 12px;border:0;background:transparent;color:var(--hl-dark-teal);font-weight:500;font-size:14px;cursor:pointer}
.nav-btn:hover{color:var(--hl-teal)}
.chev{width:16px;height:16px}
.dropdown{display:none;position:absolute;left:0;top:100%;margin-top:0;width:224px;background:#fff;border:1px solid #f0f0f0;border-radius:12px;box-shadow:0 12px 30px rgba(0,0,0,.12);padding:8px 0}
.dropdown-link{display:block;padding:10px 16px;font-size:14px;color:var(--hl-dark-teal)}
.dropdown-link:hover{background:var(--hl-light-bg);color:var(--hl-teal)}
.nav-item:hover .dropdown{display:block}

.header-actions{display:flex;align-items:center;gap:10px}
.icon-btn{border:0;background:transparent;padding:8px;color:var(--hl-dark-teal);cursor:pointer}
.icon-btn:hover{color:var(--hl-teal)}
.icon{width:20px;height:20px}

.subscribe-btn{display:none;align-items:center;padding:8px 16px;border:1px solid var(--hl-teal);border-radius:999px;color:var(--hl-teal);font-weight:500;font-size:14px}
.subscribe-btn:hover{background:var(--hl-teal);color:#fff}

.signin-btn{display:flex;align-items:center;gap:8px;border:0;background:transparent;color:var(--hl-dark-teal);font-weight:500;font-size:14px;cursor:pointer;padding:8px}
.signin-btn:hover{color:var(--hl-teal)}
.signin-text{display:none}

.search-row{padding:16px 0;border-top:1px solid var(--border)}
.search-wrap{position:relative}
.search-input{width:100%;padding:12px 16px 12px 44px;border:1px solid #e8e8e8;border-radius:999px;outline:none}
.search-input:focus{border-color:transparent;box-shadow:0 0 0 3px rgba(73,178,188,.25)}
.search-icon{position:absolute;left:16px;top:50%;transform:translateY(-50%);width:20px;height:20px;color:#9aa3a3}

.hl-section-title{font-size:18px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--hl-dark-teal);margin:0}
.hl-view-all{display:flex;align-items:center;gap:6px;color:var(--hl-teal);font-weight:600;font-size:14px}
.hl-view-all:hover{text-decoration:underline}
.arrow{width:16px;height:16px}

.section-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:24px}
.divider{border-top:1px solid #e5e5e5;padding-top:24px}

.hover-card{transition:transform .2s, box-shadow .2s}
.hover-card:hover{transform:scale(1.02);box-shadow:0 18px 40px rgba(0,0,0,.12)}

.hero{padding-top:32px;padding-bottom:32px}
.hero-grid{display:grid;grid-template-columns:1fr;gap:24px}
.hero-card{border-radius:18px;overflow:hidden}
.hero-media{position:relative;height:400px;background:linear-gradient(135deg,var(--hl-teal),var(--hl-dark-teal))}
.hero-media img{width:100%;height:100%;object-fit:cover}
.overlay{position:absolute;inset:0}
.overlay-strong{background:linear-gradient(to top,rgba(0,0,0,.6),rgba(0,0,0,0) 55%)}
.overlay-soft{background:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0) 60%)}
.hero-bottom{position:absolute;left:0;right:0;bottom:0;padding:24px}
.hero-bottom.simple{padding:24px}
.hero-box{background:rgba(255,255,255,.95);backdrop-filter:blur(8px);border-radius:14px;padding:20px;max-width:420px}
.hero-title{margin:0 0 10px 0;font-weight:700;line-height:1.2}
.hero-title.dark{color:var(--hl-dark-teal);font-size:22px}
.hero-title.light{color:#fff;font-size:22px}
.hero-sub{margin:0;font-size:14px;line-height:1.5}
.hero-sub.dark{color:rgba(29,60,63,.7)}
.hero-sub.light{color:rgba(255,255,255,.9)}
.hero-card:hover .hero-title.dark{color:var(--hl-teal)}
.hero-card:hover .hero-title.light{color:var(--hl-yellow)}
.pill{position:absolute;top:24px;right:24px;background:var(--hl-teal);color:#fff;padding:10px 14px;border-radius:999px;font-weight:700;font-size:13px}

.grid{display:grid;gap:24px}
.grid.cats{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.grid.two{grid-template-columns:1fr;gap:24px}
.grid.four{grid-template-columns:1fr;gap:24px}

.cat,.cond{display:flex;flex-direction:column;align-items:center;gap:10px}
.cat span,.cond span{text-align:center;font-weight:500;color:var(--hl-dark-teal)}
.cat:hover span,.cond:hover span{color:var(--hl-teal)}
.circle{width:96px;height:96px;border-radius:999px;display:flex;align-items:center;justify-content:center;overflow:hidden;transition:box-shadow .2s}
.bg-yellow{background:var(--hl-yellow)}
.circle img{width:64px;height:64px;object-fit:contain}
.cat:hover .circle{box-shadow:0 12px 30px rgba(0,0,0,.18)}

.cond-circle{width:112px;height:112px;border-radius:999px;overflow:hidden;border:4px solid transparent;transition:border-color .2s}
.cond-circle img{width:100%;height:100%;object-fit:cover}
.cond:hover .cond-circle{border-color:var(--hl-teal)}

.newsletter-banner{background:#e7e5e0;border-radius:18px;padding:24px;display:flex;flex-direction:column;gap:18px;align-items:flex-start}
.nb-left{display:flex;align-items:center;gap:16px;width:100%}
.nb-badge{width:64px;height:64px;background:var(--hl-teal);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.nb-badge span{color:#fff;font-weight:700;font-size:12px;line-height:1.1;text-align:center}
.nb-title{margin:0;color:var(--hl-dark-teal);font-weight:700;font-size:18px}
.nb-sub{margin:4px 0 0 0;color:rgba(29,60,63,.7);font-size:14px}
.nb-mid{width:100%}
.nb-mid p{margin:0;color:rgba(29,60,63,.8);font-size:14px;line-height:1.6}
.nb-form{display:flex;gap:10px;width:100%}
.nb-form input{flex:1;padding:12px 16px;border-radius:999px;border:1px solid #cfcfcf;outline:none}
.nb-form input:focus{border-color:transparent;box-shadow:0 0 0 3px rgba(73,178,188,.25)}
.nb-form button{padding:12px 18px;border:0;border-radius:999px;background:var(--hl-teal);color:#fff;font-weight:600;cursor:pointer}
.nb-form button:hover{background:#3a9aa3}

.hlist{display:flex;gap:16px;align-items:flex-start}
.hlist img{width:128px;height:96px;border-radius:12px;object-fit:cover;flex-shrink:0}
.hlist-title{margin:0 0 8px 0;color:var(--hl-dark-teal);font-weight:700;font-size:16px;line-height:1.25;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.hlist-desc{margin:0;color:rgba(29,60,63,.7);font-size:14px;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.hlist:hover .hlist-title{color:var(--hl-teal)}

.tcard{display:block}
.timg{border-radius:12px;overflow:hidden}
.timg img{width:100%;height:160px;object-fit:cover;transition:transform .3s}
.timg.tall img{height:192px}
.tcard:hover .timg img{transform:scale(1.05)}
.tcard-title{margin:12px 0 0 0;font-weight:600;color:var(--hl-dark-teal);line-height:1.25;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.tcard:hover .tcard-title{color:var(--hl-teal)}

.vmedia{position:relative;border-radius:12px;overflow:hidden}
.vmedia img{width:100%;height:160px;object-fit:cover;transition:transform .3s}
.vcard:hover .vmedia img{transform:scale(1.05)}
.vshade{position:absolute;inset:0;background:rgba(0,0,0,.2)}
.vplay{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}
.vbtn{width:48px;height:48px;border-radius:999px;background:rgba(255,255,255,.9);display:flex;align-items:center;justify-content:center;transition:background .2s,color .2s}
.play{width:18px;height:18px;color:var(--hl-dark-teal);transform:translateX(1px)}
.vcard:hover .vbtn{background:var(--hl-teal)}
.vcard:hover .play{color:#fff}

.spot{position:relative;border-radius:12px;overflow:hidden;display:block}
.spot img{width:100%;height:256px;object-fit:cover;transition:transform .3s}
.spot:hover img{transform:scale(1.05)}
.spot-tag{position:absolute;left:12px;bottom:12px;font-size:12px;font-weight:600;color:rgba(255,255,255,.85);background:rgba(0,0,0,.4);padding:6px 8px;border-radius:8px}

.footer{background:var(--hl-dark-teal);color:#fff}
.footer-main{padding-top:48px;padding-bottom:48px}
.footer-grid{display:grid;grid-template-columns:1fr;gap:28px}
.footer-logo{display:inline-block;margin-bottom:18px}
.social{display:flex;align-items:center;gap:10px}
.social-btn{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:999px;color:#fff;background:transparent;transition:background .2s}
.social-btn:hover{background:rgba(255,255,255,.1)}
.social-btn svg{width:20px;height:20px}

.footer-newsletter .footer-title{margin:0 0 8px 0;font-size:18px;font-weight:700}
.footer-text{margin:0 0 14px 0;color:rgba(255,255,255,.7);font-size:14px;line-height:1.6}
.footer-form{display:flex;gap:10px;flex-wrap:wrap}
.footer-form input{flex:1;min-width:220px;padding:12px 16px;border-radius:999px;border:0;outline:none;color:var(--hl-dark-teal)}
.footer-form input:focus{box-shadow:0 0 0 3px rgba(73,178,188,.35)}
.footer-form button{padding:12px 18px;border:0;border-radius:999px;background:var(--hl-teal);color:#fff;font-weight:700;cursor:pointer}
.footer-form button:hover{background:#3a9aa3}
.footer-mini{margin:10px 0 0 0;color:rgba(255,255,255,.6);font-size:12px}
.footer-mini a{text-decoration:underline}
.footer-mini a:hover{color:#fff}

.footer-links{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.links-col{display:flex;flex-direction:column;gap:10px;font-size:14px}
.links-col a{color:#fff}
.links-col a:hover{color:var(--hl-teal)}

.footer-copy{margin-top:40px;padding-top:28px;border-top:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.6);font-size:14px;line-height:1.6}
.footer-copy a{text-decoration:underline}
.footer-copy a:hover{color:#fff}

.footer-bar{background:#152c2e;padding:16px 0}
.bar-row{display:flex;flex-direction:column;gap:14px;align-items:center;justify-content:space-between}
.bar-brand{display:flex;align-items:center;gap:10px}
.brand-box{width:32px;height:32px;border-radius:10px;background:var(--hl-teal);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:12px}
.bar-brand span{font-weight:700;font-size:14px}
.bar-links{display:flex;align-items:center;gap:10px;font-size:14px}
.bar-links a:hover{color:var(--hl-teal)}
.sep{color:rgba(255,255,255,.4)}
.bar-brands{display:flex;align-items:center;gap:14px;font-size:14px;flex-wrap:wrap;justify-content:center}
.bar-brands a:hover{color:var(--hl-teal)}
.muted{color:rgba(255,255,255,.6)}

::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:var(--hl-light-bg)}
::-webkit-scrollbar-thumb{background:var(--hl-light-teal);border-radius:4px}
::-webkit-scrollbar-thumb:hover{background:var(--hl-teal)}

@media (min-width:640px){
  .grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid.cats{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (min-width:768px){
  .subscribe-btn{display:inline-flex}
  .signin-text{display:inline}
  .newsletter-banner{flex-direction:row;align-items:center;gap:24px}
  .nb-left{width:33.333%}
  .nb-mid{flex:1;text-align:center}
  .nb-form{width:auto}
  .nb-form input{width:260px;flex:0 0 auto}
  .grid.four{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media (min-width:1024px){
  .nav{display:flex}
  .hero-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero-media{height:450px}
  .grid.cats{grid-template-columns:repeat(5,minmax(0,1fr))}
  .grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}
  .bar-row{flex-direction:row}
  .bar-brands{justify-content:flex-end}
  .bar-links{justify-content:center}
  .footer-grid{grid-template-columns:1fr 2fr 1fr}
}

