:root{
  --blue: #0a74ff;
  --text: #0b2140;
  --muted: #6b7280;
  --container-max: 1100px;
}

/* Mobile-first reset */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* Utility container */
.container{
  width:90%;
  max-width:var(--container-max);
  margin:0 auto;
}

/* Top bar */
.top-bar{
  background:#f8fafc;
  color:#0b1220;
  font-size:0.95rem;
  border-bottom:1px solid rgba(11,17,32,0.04);
}
.top-bar-inner{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:8px 0;
}
.top-bar .contact{display:flex;gap:10px;align-items:center;font-size:0.95rem}
.top-bar .sep{opacity:0.5}

/* Header / nav */
.site-header{
  background: white;
  position: sticky;
  top:0;
  z-index:40;
  border-bottom:1px solid rgba(11,17,32,0.06);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

/* Logo - cursive */
.logo{
  font-family: 'Pacifico', cursive;
  font-size:1.45rem;
  color:var(--blue);
  line-height:1;
}

/* Nav */
.primary-menu{display:none; overflow-x:hidden}
.primary-menu ul{
  list-style:none;
  margin:0;
  padding:0;
  /* Default to block on mobile so items stack vertically when the menu is toggled */
  display:block;
}
.primary-menu a{
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  /* Make links full-width on mobile so they stack and are easy to tap */
  display:block;
  padding:12px 8px;
  border-radius:6px;
}
.primary-menu a:hover, .primary-menu a:focus{background:rgba(10,116,255,0.06);color:var(--blue)}
.primary-menu .active{color:var(--blue)}

/* Nav toggle (hamburger) */
.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:transparent;
  border:0;
  padding:8px;
  cursor:pointer;
}
.hamburger{
  width:22px;
  height:2px;
  background:var(--text);
  display:inline-block;
  position:relative;
}
.hamburger::before,
.hamburger::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:var(--text);
  display:block;
}
.hamburger::before{top:-7px}
.hamburger::after{top:7px}

/* Hero */
.hero{
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  /* gradient from top-left blue to bottom-right white */
  background: linear-gradient(135deg, rgba(10,116,255,0.95) 0%, rgba(255,255,255,1) 100%);
  color: white;
  text-align:center;
  padding:56px 0;
}
.hero-inner{max-width:900px}
.hero h1{
  margin:0 0 18px;
  font-size:2rem;
  line-height:1.05;
  text-transform:lowercase;
  letter-spacing:0.02em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(10,20,40,0.25);
}
.btn-primary{
  display:inline-block;
  background:white;
  color:var(--blue);
  padding:12px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 6px 18px rgba(10,20,40,0.12);
}

/* Larger screens */
@media(min-width:768px){
  .nav-toggle{display:none}
  .primary-menu{display:block}
  /* On desktop make the menu items layout horizontally */
  .primary-menu ul{display:flex; gap:20px; align-items:center}
  /* Make links inline on desktop */
  .primary-menu a{display:inline-block; padding:8px 6px}
  .hero{min-height:70vh}
  .hero h1{font-size:3rem}
}

/* Desktop layout tweaks */
@media(min-width:1024px){
  .hero h1{font-size:3.5rem}
}
