:root{
  /* Creamy base like your current site */
  --bg: #fbf4e6;          /* cream */
  --panel: #ffffff;
  --card: #ffffff;
  --card2: #fff8ef;

  /* Readable ink */
  --text: #1f2937;        /* dark slate */
  --muted:#4b5563;

  /* Brand splashes (red / blue / yellow) */
  --red: #b91c1c;
  --blue:#1d4ed8;
  --yellow:#f59e0b;

  /* UI tokens */
  --accent: var(--blue);  /* primary action */
  --line: rgba(17,24,39,.12);
  --radius: 18px;
  --shadow: 0 12px 24px rgba(17,24,39,.10);
}

*{ box-sizing:border-box; }

html{
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* space for sticky header */
}

/* extra safety so any anchor target has breathing room */
[id]{
  scroll-margin-top: 90px;
}


body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(245,158,11,.22), transparent 60%),
    radial-gradient(800px 520px at 90% 0%, rgba(29,78,216,.12), transparent 55%),
    var(--bg);
  font-size: 17px;
}

a{ color:inherit; text-decoration:none; }

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px;
}

.logo-wrap{
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.logo-img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


/* Header becomes light + crisp */
header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

/* Little carnival-y badge without going dark */
.logo{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, rgba(245,158,11,.95), rgba(245,158,11,.25)),
    linear-gradient(145deg, rgba(185,28,28,.85), rgba(29,78,216,.70));
  box-shadow: 0 10px 22px rgba(245,158,11,.20);
}

.brand h1{
  font-size: 16px;
  margin:0;
  line-height:1.1;
  letter-spacing:.2px;
}

.brand p{
  margin:0;
  font-size: 14px;
  color: var(--muted);
}

nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.navlink{
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  background: rgba(255,255,255,.65);
}

.navlink:hover{
  color: var(--text);
  border-color: rgba(29,78,216,.35);
  background: rgba(29,78,216,.08);
}

/* Hero becomes light (no more dark gradient) */
.hero{
  margin-top: 24px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,248,239,.92));
  box-shadow: var(--shadow);
}

.hero h2{
  margin:0 0 8px;
  font-size: 30px;
  letter-spacing: -.3px;
}

.hero p{
  margin:0;
  color: var(--muted);
  max-width: 75ch;
  line-height: 1.55;
}

.promotional-photos{
  color: var(--muted);
  line-height: 1.55;
}

.meta{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255,255,255,.75);
}

/* Layout */
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
  header{ position: static; }
}

/* Cards become white, readable */
.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card-header{
  padding: 20px 18px 12px;
  border-bottom: 1px solid var(--line);
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}

.card-header h3{
  margin:0;
  font-size: 18px;
  letter-spacing: .1px;
}

/* Add a tiny color hint to section header text */
.card-header h3::after{
  content:"";
  display:block;
  height:3px;
  width:44px;
  margin-top:10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--blue));
  opacity:.85;
}

.card-header span{
  font-size: 12px;
  color: var(--muted);
}

.section{
  padding: 18px 18px;
  border-bottom: 1px solid var(--line);
}

.section:last-child{ border-bottom:none; }

.section h4{
  margin:0 0 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.asset-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

/* Buttons: blue primary, cream secondary, yellow hover warmth */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(29,78,216,.35);
  background: rgba(29,78,216,.10);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.btn:hover{
  background: rgba(245,158,11,.14);
  border-color: rgba(245,158,11,.35);
}

.btn.secondary{
  border-color: var(--line);
  background: rgba(255,255,255,.65);
  color: var(--muted);
  font-weight: 700;
}

.btn.secondary:hover{
  color: var(--text);
  background: rgba(245,158,11,.12);
  border-color: rgba(245,158,11,.30);
}

/* Thumbs */
.thumbs{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}

.thumb{
  aspect-ratio: 4/3;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,248,239,.80);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  font-size: 12px;
  text-align:center;
  padding: 8px;
}

.thumb.link{
  cursor:pointer;
  transition: transform .08s ease, background .08s ease, border-color .08s ease;
}

.thumb.link:hover{
  transform: translateY(-1px);
  border-color: rgba(29,78,216,.25);
  background: rgba(29,78,216,.06);
  color: var(--text);
}

.tech-image{
  display:block;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow:hidden;
  background: rgba(255,255,255,.85);
}

.tech-image img{
  width: 100%;
  height: auto;
  display:block;
}

.tech-note{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.tech-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.tech-list strong{
  color: var(--text);
}


/* FAQ */
.faq{
  padding: 14px 18px 18px;
}

details{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(255,248,239,.70);
  margin-bottom: 10px;
}

summary{
  cursor:pointer;
  font-weight: 700;
  font-size: 13px;
}

details p{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

/* Thumbs with actual images (main page gallery previews) */
.thumb.thumb-img{
  padding: 0;
  overflow: hidden;
}

.thumb.thumb-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* Helpers used in your HTML */
.muted{
  color: var(--muted);
  font-size: 13px;
}

.contact{
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

footer{
  margin: 18px 0 40px;
  color: var(--muted);
  font-size: 12px;
  text-align:center;
}
