:root{
  --bg:#0b0f16;
  --card:#111827;
  --muted:#a7b0bf;
  --text:#eaf0ff;
  --line:rgba(255,255,255,.10);

  --accent:#ff3b30;                 /* red */
  --accent-soft:rgba(255,59,48,.18);

  --radius-lg:20px;                 /* big rounded corners */
  --radius-md:14px;
  --radius-sm:12px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(255,59,48,.18), transparent 60%),
    radial-gradient(850px 500px at 85% 20%, rgba(255,120,120,.14), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.6;
}

.container{max-width:1100px;margin:0 auto;padding:0 20px}

/* NAV */
.nav{
  position:sticky; top:0; z-index:10;
  background:rgba(11,15,22,.65);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--text);
  min-width:0;
}

.brand-text{min-width:0}
.brand-title{
  font-weight:800;
  letter-spacing:.2px;
  line-height:1.15;
}

/* If you're using <img class="logo" ...> */
.logo{
  width:44px;
  height:44px;
  object-fit:contain;

  border-radius:var(--radius-sm);
  padding:6px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

/* If you still have the placeholder div.logo-slot, this keeps it nice too */
.logo-slot{
  width:44px;height:44px;
  border-radius:var(--radius-sm);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}

.nav-links{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}
.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-weight:800;
  font-size:14px;
}
.nav-links a:hover{color:var(--text)}

/* HERO */
.hero{padding:64px 0 24px}
.hero-inner{
  display:grid;
  grid-template-columns:1.2fr .9fr;
  gap:26px;
  align-items:center;
}

h1{
  font-size:46px;
  line-height:1.08;
  margin:0 0 14px;
}
.hero-sub{
  font-size:18px;
  color:rgba(234,240,255,.88);
  margin:0 0 18px;
}

.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin:16px 0 10px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:var(--radius-md);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  text-decoration:none;
  font-weight:900;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.btn:hover{background:rgba(255,255,255,.06)}
.btn:active{transform: translateY(1px)}

.btn.primary{
  border-color:rgba(255,59,48,.65);
  background:var(--accent-soft);
  color:#fff;
}
.btn.primary:hover{
  border-color:rgba(255,59,48,.9);
  background:rgba(255,59,48,.24);
}

.chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.chip{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  padding:6px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}

/* Photos */
.hero-right{display:flex;flex-direction:column;gap:10px}
.photo-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:10px;
}

.photo{
  position:relative;
  overflow:hidden;
  height:140px;
  border-radius:var(--radius-lg);

  border:1px solid rgba(255,255,255,.12);
  background-color:rgba(17,24,39,.55);
  background-size:cover;
  background-position:center;

  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.05);

  transition: transform .25s ease, box-shadow .25s ease;
}

.photo:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.08);
}

/* Image hooks — replace filenames if needed */
.ph1{ background-image:url("assets/hero1.jpg"); }
.ph2{ background-image:url("assets/hero2.jpg"); }
.ph3{ background-image:url("assets/hero3.jpg"); }
.ph4{ background-image:url("assets/hero4.jpg"); }

.hero-note{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

/* SECTIONS */
.section{padding:46px 0}
h2{font-size:30px;margin:0 0 12px}
.lead{font-size:18px;color:rgba(234,240,255,.86);margin:0 0 18px}
.subhead{margin:22px 0 10px;font-size:18px}

.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(17,24,39,.62);
  border-radius:var(--radius-lg);
  padding:16px;
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
}
.card-title{font-weight:900;margin-bottom:6px}
.card-text{color:rgba(234,240,255,.86);margin:0 0 10px}
.bullets{margin:0;padding-left:18px;color:rgba(234,240,255,.84)}
.bullets li{margin:6px 0}

.banner{
  margin-top:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(90deg, rgba(255,59,48,.18), rgba(255,140,140,.12));
  border-radius:var(--radius-lg);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.banner-title{font-weight:900}
.banner-text{color:rgba(234,240,255,.86);font-weight:700}

/* FOOTER */
.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  margin-top:10px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-brand{font-weight:900}
.footer-muted{color:var(--muted);font-weight:700;font-size:13px}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
  font-weight:900;
  margin-left:16px;
}
.footer-links a:hover{color:var(--text)}

/* =========================
   RESPONSIVE (TABLET)
   ========================= */
@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
  h1{font-size:38px}
  .grid-2{grid-template-columns:1fr}
  .photo{height:160px}
}

/* =========================
   RESPONSIVE (PHONE)
   ========================= */
@media (max-width: 700px){
  .container{padding:0 16px}

  .nav-inner{
    padding:10px 0;
    gap:10px;
  }

  .logo, .logo-slot{
    width:36px;
    height:36px;
    padding:4px;
    border-radius:10px;
  }

  .brand-title{
    font-size:14px;
    line-height:1.1;
  }

  .nav-links{
    gap:10px;
  }
  .nav-links a{
    font-size:13px;
  }

  .hero{padding:44px 0 18px}
  h1{font-size:34px}
  .hero-sub{font-size:16px}

  .btn{
    padding:10px 12px;
    border-radius:13px;
  }

  .photo-grid{gap:10px}
  .photo{height:150px}

  h2{font-size:26px}
  .lead{font-size:16px}
}
