:root{
  --bg:#fbfcfe;
  --surface:#ffffff;
  --text:#0f2430;
  --muted:#4b6573;
  --primary:#103040; /* deep blue from logo */
  --primary-2:#0e3a4d;
  --accent:#c07830;  /* gold */
  --accent-2:#d09050;
  --border: rgba(16,48,64,0.14);
  --shadow: 0 12px 30px rgba(16,48,64,0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1100px;
  --focus: 0 0 0 4px rgba(192,120,48,0.28);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: var(--font);
  color: var(--text);
  background: radial-gradient(1200px 700px at 10% -10%, rgba(192,120,48,0.12), transparent 55%),
              radial-gradient(900px 600px at 100% 0%, rgba(16,48,64,0.10), transparent 55%),
              var(--bg);
  line-height:1.55;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding: 0 20px;}
.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:20px; top:20px; width:auto; height:auto; padding:10px 12px; background:var(--surface); border:1px solid var(--border);
  border-radius:10px; box-shadow: var(--shadow); z-index:9999;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(251,252,254,0.80);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-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;
}
.brand img{width:44px; height:44px; border-radius:14px; box-shadow: 0 8px 18px rgba(16,48,64,0.10);}
.brand .title{display:flex; flex-direction:column; line-height:1.05}
.brand .title strong{font-size: 1.05rem; letter-spacing:0.2px}
.brand .title span{font-size: 0.86rem; color: var(--muted)}

.nav{
  display:flex; gap:18px; align-items:center;
}
.nav a{
  text-decoration:none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover{background: rgba(16,48,64,0.06); color: var(--text)}
.nav a.active{background: rgba(192,120,48,0.14); color: var(--text)}
.header-actions{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration:none;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(16,48,64,0.08);
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 28px rgba(16,48,64,0.10)}
.btn:focus{outline:none; box-shadow: var(--focus), 0 14px 28px rgba(16,48,64,0.10)}
.btn.primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-color: rgba(255,255,255,0.12);
}
.btn.accent{
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1b1b1b;
  border-color: rgba(0,0,0,0.05);
}
.btn.small{padding: 10px 12px; border-radius: 12px; font-size: 0.92rem}
.hamburger{
  display:none;
  background:transparent;
  border:1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}
.hamburger:focus{outline:none; box-shadow: var(--focus)}
.hamburger span{display:block; width:20px; height:2px; background: var(--text); margin:4px 0; border-radius:2px}

/* Hero */
.hero{
  padding: 34px 0 14px;
}
.hero-card{
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow:hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.hero-media{
  position:relative;
  min-height: 380px;
  background: #0b1e28;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  filter: saturate(1.02) contrast(1.02);
}
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(10,22,30,0.78) 0%, rgba(10,22,30,0.36) 55%, rgba(10,22,30,0.10) 100%);
}
.hero-content{
  position:absolute; inset:0;
  display:flex; align-items:flex-end;
}
.hero-copy{
  padding: 26px;
  max-width: 720px;
  color: white;
}
.hero-copy h1{margin:0 0 10px; font-size: clamp(2rem, 3.5vw, 3.1rem); line-height:1.05}
.hero-copy p{margin:0 0 18px; color: rgba(255,255,255,0.86); font-size: 1.05rem}
.hero-cta{display:flex; flex-wrap:wrap; gap:10px}
.badges{
  display:flex; flex-wrap:wrap; gap:14px; align-items:center;
  padding: 16px 22px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16,48,64,0.03), rgba(16,48,64,0.00));
}
.badge{
  display:flex; gap:12px; align-items:center;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.badge img{height:34px; width:auto}
.badge strong{display:block; font-size: 0.95rem}
.badge span{display:block; color: var(--muted); font-size: 0.9rem}

/* Sections */
.section{padding: 24px 0}
.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(16,48,64,0.06);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color: var(--muted)}
.kicker{
  display:inline-flex; align-items:center;
  gap:10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(192,120,48,0.14);
  border: 1px solid rgba(192,120,48,0.22);
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}
.page-title{padding: 28px 0 6px}
.page-title h1{margin:10px 0 6px; font-size: 2.2rem}
.page-title p{margin:0; color: var(--muted); max-width: 70ch}

/* Forms */
.form{
  display:grid; gap:14px;
}
.field{
  display:grid; gap:6px;
}
label{font-weight: 700}
input, select, textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  font: inherit;
}
textarea{min-height: 140px; resize: vertical}
input:focus, select:focus, textarea:focus{outline:none; box-shadow: var(--focus); border-color: rgba(192,120,48,0.55)}
.hint{color: var(--muted); font-size: 0.92rem}
.form-row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form-row-3{display:grid; grid-template-columns: 1fr 1fr 1fr; gap:12px}
.notice{
  border-left: 4px solid rgba(192,120,48,0.7);
  background: rgba(192,120,48,0.08);
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
}
.success, .error{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.success{background: rgba(33,150,83,0.08); border-color: rgba(33,150,83,0.22)}
.error{background: rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.22)}

/* Gallery */
.gallery-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:12px;
}
.gallery-grid a{
  display:block;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(16,48,64,0.06);
}
.gallery-grid img{width:100%; height: 180px; object-fit: cover; display:block}
.lightbox{
  position:fixed; inset:0;
  background: rgba(8,14,18,0.85);
  display:none;
  align-items:center; justify-content:center;
  padding: 22px;
  z-index: 1000;
}
.lightbox.open{display:flex}
.lightbox-inner{
  max-width: min(1100px, 96vw);
  max-height: 88vh;
  position:relative;
}
.lightbox img{
  max-width: 100%;
  max-height: 88vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.20);
}
.lightbox button{
  position:absolute; top:-12px; right:-12px;
  width:44px; height:44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
  color: white;
  font-size: 20px;
  cursor:pointer;
}
.lightbox button:focus{outline:none; box-shadow: 0 0 0 4px rgba(255,255,255,0.18)}

/* Footer */
.footer{
  margin-top: 26px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
}
.footer-inner{
  padding: 18px 0;
  display:flex; flex-wrap:wrap; gap:12px; align-items:center; justify-content:space-between;
}
.footer small{color: var(--muted)}
.footer a{color: var(--muted); text-decoration:none}
.footer a:hover{color: var(--text)}

/* Responsive */
@media (max-width: 980px){
  .grid-3{grid-template-columns: 1fr; }
  .gallery-grid{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 860px){
  .nav{display:none}
  .hamburger{display:inline-block}
  .nav.open{
    display:flex;
    position:absolute;
    right: 20px;
    top: 74px;
    flex-direction:column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  .header-inner{position:relative}
  .hero-media{min-height: 440px}
}
@media (max-width: 560px){
  .form-row, .form-row-3{grid-template-columns: 1fr}
  .hero-copy{padding: 18px}
  .badges{padding: 14px}
  .gallery-grid img{height: 150px}
}
/* Quick facts strip */
.facts { padding-top: 18px; padding-bottom: 18px; }
.facts-row { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.fact { background: rgba(16,48,64,0.06); border: 1px solid rgba(16,48,64,0.12); padding: 10px 12px; border-radius: 999px; font-weight: 600; font-size: 0.95rem; }

/* Steps list */
.steps { margin: 10px 0 0; padding-left: 18px; }
.steps li { margin: 8px 0; }
