:root{
  --bg: #eef3f0;
  --ink: #2e3331;
  --muted: #6f7d76;
  --accent: #95bba3;     /* greenish highlight */
  --accent-strong: #7aa792;
  --panel: rgba(255,255,255,.76);
  --panel-border: rgba(0,0,0,.08);
  --glow: rgba(163, 226, 188, .55);
  --warn: #e55050;
  --shadow-lg: 0 20px 40px rgba(0,0,0,.18);
  --radius: 8px;
  --space: 14px;
}

/* Reset-ish */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--ink);
  font: 13px/1.6 Verdana, Segoe UI, Tahoma, sans-serif; /* era-correct */
  background: radial-gradient(1200px 1000px at 20% 60%, #ffffff 0%, #f5faf7 40%, #eaf0ec 70%, #e4ebe6 100%);
  overflow-x:hidden;
}

/* Left hero with bloom/fade */
.hero{
  position: fixed;
  inset: 0 auto 0 0;
  width: min(58vw, 980px);
  background: #cde0d6 url('assets/hero.jpg') center left / cover no-repeat;
  filter: saturate(1.05) contrast(1.02) brightness(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 800px at 40% 55%, rgba(255,255,255,.3), transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.8) 70%, rgba(255,255,255,1) 100%);
  box-shadow: inset 0 0 200px rgba(255,255,255,.45), inset 0 -80px 120px rgba(0,0,0,.15);
  backdrop-filter: blur(0.5px);
  pointer-events:none;
}

/* Subtle scanlines + noise like reactor */
.scanlines{
  position: fixed; inset:0; pointer-events:none; z-index:50;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.07) 0 1px, transparent 1px 2px),
    radial-gradient(1200px 600px at 20% 60%, rgba(255,255,255,.25), transparent 60%);
  mix-blend-mode: overlay;
  opacity:.35;
  animation: drift 12s linear infinite;
}
@keyframes drift{
  0%{ transform: translateY(-6%) }
  100%{ transform: translateY(6%) }
}

/* HUD */
.hud{
  position: fixed;
  top:10px; right: 18px; left: min(52vw, 900px);
  display:flex; justify-content: space-between; align-items:center; gap:8px;
  padding: 6px 10px;
  color: var(--muted);
  z-index:100;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:inherit;}
.brand__mark{width:28px; height:28px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.1)); border-radius:50%}
.contact-line{display:flex; align-items:center; gap:10px; font-size:12px}
.contact-line a{color:var(--muted); text-decoration:none}
.contact-line a:hover{color:var(--accent-strong)}
.sep{opacity:.5}
.hud__btn{
  display:grid; place-items:center;
  width:26px; height:26px; border:0; border-radius:50%;
  background: linear-gradient(#fff,#eef7f2);
  box-shadow: 0 2px 8px rgba(0,0,0,.15), inset 0 1px 0 #fff;
  cursor:pointer;
}

/* Right content column sits beside hero */
.content{
  position: relative;
  z-index:1;
  padding: 80px 24px 60px;
  margin-left: min(58vw, 980px);
  max-width: 950px;
}

.panel{
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(8px) saturate(120%);
}
.panel h2, .panel h3{
  font-family: "Exo 2", Verdana, sans-serif;
  color:#4b5b53;
  letter-spacing:.4px;
  margin:0 0 8px 0;
}

/* About */
.about{ padding: 16px 18px; margin-bottom: 16px; }
.about p{ margin:0; color:#58665f }

/* Grid: 3 columns of thumbs + News panel */
.grid{
  display:grid; gap: 16px;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) 1.1fr;
  align-items:start;
}
.column h3{ margin:0 0 8px 4px; font-weight:600; font-size:14px; }
.thumbs{ list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.thumb{
  position:relative; display:block; overflow:hidden; border-radius: 8px;
  aspect-ratio: 3/2; background: #dfe8e3;
  box-shadow: 0 10px 18px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.8);
  border:1px solid rgba(0,0,0,.08);
}
.thumb img{ width:100%; height:100%; object-fit:cover; filter: saturate(1.02) contrast(1.02); transition: transform .3s ease, filter .3s ease }
.thumb::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), transparent 20%, transparent 80%, rgba(0,0,0,.08));
  mix-blend-mode: screen; pointer-events:none;
}
.thumb:hover img{ transform: scale(1.04); filter: saturate(1.15) brightness(1.05) }
.thumb--icon{ display:grid; place-items:center; background: linear-gradient(180deg,#f3f8f5,#e5efe9); }
.thumb--icon svg{ width:42%; height:42%; opacity:.9 }

.news{ padding: 12px 14px; }
.news h3{ margin-bottom: 8px; }
.news__list{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.news__list li{
  position:relative; padding:8px 10px 8px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(246,252,248,.85));
  border:1px solid rgba(0,0,0,.08);
  border-radius: 6px; box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.news time{
  display:block; font-weight:700; color:#56665e; margin-bottom:2px;
}
.news p{ margin:0; color:#5f6e67 }
.news a{ color: var(--warn); text-decoration: none; font-weight:700 }
.news a:hover{ text-decoration: underline }

/* Contact chip */
.contact-chip{
  margin-top: 16px;
  display: inline-grid;
  gap:6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(243,249,246,.9));
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 8px 18px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.85);
  color:#5f6d66;
}
.contact-chip h3{ margin:0; font-size:13px; letter-spacing:.3px; }
.contact-chip address{ font-style:normal; line-height:1.5 }
.contact-chip a{ color:#587a69; text-decoration:none }
.contact-chip a:hover{ text-decoration:underline }

/* Responsive */
@media (max-width: 1080px){
  .hero{ width: 54vw }
  .hud{ left: min(48vw, 880px) }
  .content{ margin-left: 54vw }
}

@media (max-width: 880px){
  .hero{ position:absolute; width:100%; height:46vh; }
  .hud{ left: 16px; right: 16px; mix-blend-mode: normal; }
  .content{ margin-left: 0; padding-top: calc(46vh + 16px); }
  .grid{ grid-template-columns: 1fr; }
  .news{ order: 2 }
}

/* Accessibility tweaks */
@media (prefers-reduced-motion: reduce){
  .scanlines{ animation: none }
  .thumb img{ transition: none }
}