
:root{
  --bg: #0b0f14;
  --text: #e9eef5;
  --muted: rgba(233,238,245,.78);

  --panel: #a8c4d6;          /* light blue section under hero */
  --panelText: rgba(0,0,0,.78);

  --shadow: 0 12px 32px rgba(0,0,0,.35);
  --radius: 16px;
  --max: 1100px;

  /* System font stack: fast, local, looks modern */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, sans-serif;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a:focus-visible{
  outline: 3px solid rgba(255,255,255,.45);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Top nav */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10,14,20,.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav{
  width: 100%;
  max-width: none;              /* ← key */
  margin: 0;
  padding: 0px 22px;           /* nice edge padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand img{
  height: 84px;      /* logo size */
  width: auto;
  border-radius: 0; /* remove rounding unless you want it */
  object-fit: contain;
}
.navlinks{
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.navlinks a{
  padding: 8px 10px;
  opacity: .9;
  border-radius: 12px;
  transition: transform 150ms ease, opacity 150ms ease, background 150ms ease;
}
.navlinks a:hover{
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
}
.navlinks a[aria-current="page"]{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* Hero */
.hero{
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: end center;
  padding: 0 18px;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.25)),
    var(--hero-url);
  background-size: cover;
  background-position: center 50%;   /* move image DOWN (shows more bottom/water) */
  transform: scale(1.02);
  filter: saturate(1.5) contrast(1.05);
}
.hero-inner{
  position: relative;
  width: 100%;
  max-width: var(--max);
  padding: 42px 0 46px;
  padding-top: 150px;   /* increase this to move DOWN */
  padding-bottom: 15px;
  text-align: center;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(38px, 5.2vw, 70px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow:
    0 4px 10px rgba(0,0,0,.65),
    0 18px 40px rgba(0,0,0,.35);
}

.hero .subtitle{
  margin: 0 0 14px;
  font-size: clamp(16px, 1.9vw, 22px);
  font-weight: 600;
  color: rgba(255,255,255,.82);
  text-shadow:
    0 4px 10px rgba(0,0,0,.65),
    0 18px 40px rgba(0,0,0,.35);
}

/* Interior page header */
.page-hero{
  padding: 46px 18px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.page-hero-inner{
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero h1{
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
}
.page-hero p{
  margin: 0;
  color: var(--muted);
}

/* Light panel section */
.panel{
  background: var(--panel);
  color: var(--panelText);
  padding: 26px 18px 54px;
}
.panel-inner{
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.panel p{
  margin: 0 auto 22px;
  max-width: 860px;
  font-size: 15px;
  opacity: .9;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.card{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,.2);
  transform: translateY(0);
  transition: transform 180ms ease;
}
.card:hover{ transform: translateY(-4px); }
.card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.card .label{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.30));
}
.pill{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(240,248,255,.22);
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: -0.01em;
  backdrop-filter: blur(10px);
}

/* Content */
.content{
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 18px 60px;
}
.content h2{
  margin: 26px 0 10px;
  letter-spacing: -0.02em;
}
.content p, .content li{
  color: rgba(233,238,245,.88);
}
.content .note{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 14px 16px;
  color: rgba(233,238,245,.84);
}
/* ===== About Page Layout (WilNet) ===== */

.about-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: center;
  padding: 54px 18px 32px;
  overflow: hidden;
}

/* Use a page-specific CSS var for the background image */
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.35)),
    var(--about-bg);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.about-wrap{
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.about-title{
  margin: 0 0 16px;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

/* Two-column block: text panel + photo panel */
.about-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.glass{
  background: rgba(10,14,20,.62);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.about-text{
  padding: 16px 16px 14px;
  color: rgba(233,238,245,.92);
  font-size: 14px;
  line-height: 1.7;
}
.about-text p{
  margin: 0 0 12px;
  color: rgba(233,238,245,.88);
}
.about-text p:last-child{ margin-bottom: 0; }

.about-photo{
  padding: 12px;
  display: grid;
  place-items: center;
}
.about-photo img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  display: block;
}

/* Below-hero strip like your screenshot */
.about-strip{
  background: rgba(10,14,20,.72);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  padding: 14px 18px;
}
.about-strip-inner{
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  color: rgba(233,238,245,.85);
  font-weight: 600;
}
.about-strip-inner a{
  opacity: .9;
}
.about-strip-inner a:hover{
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Media row (static thumbnails for now) */
.media-row{
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 18px 34px;
}
.media-row-inner{
  max-width: var(--max);
  margin: 0 auto;
}
.media-row-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: rgba(233,238,245,.92);
}
.thumb-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.thumb{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  aspect-ratio: 16/9;
}
.thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}
.thumb::after{
  content:"▶";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  font-size: 28px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 10px 30px rgba(0,0,0,.6);
  background: linear-gradient(to bottom, rgba(0,0,0,.12), rgba(0,0,0,.22));
}

/* Mobile */
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
  .thumb-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Footer */
footer{
  padding: 24px 18px;
  color: rgba(233,238,245,.7);
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 900px){
  .cards{ grid-template-columns: 1fr; }
  .hero{ min-height: 54vh; }
  .navlinks{ gap: 6px; }
}

/* Hero title: less bubbly, more command-center */

.hero h1,
.about-title {
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-shadow:
    0 6px 18px rgba(0,0,0,.6),
    0 18px 40px rgba(0,0,0,.4);
}
/* Keep hero cinematic, but don't let it steal the whole fold */
.hero{
  min-height: clamp(650px, 62vh, 40px);
}

.hero-inner{
  padding-top: clamp(90px, 12vh, 150px);
  padding-bottom: 12px;
}
