/* ---------- Base ---------- */
:root{
  --bg: #0b0f14;
  --surface: #0f1520;
  --card: rgba(255,255,255,0.06);
  --card-2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 16px 40px rgba(0,0,0,0.35);

  --accent: #ffcc66;
  --accent-2: #9fe7ff;

  --radius: 18px;
  --radius-lg: 26px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(159,231,255,0.20), transparent 55%),
    radial-gradient(1000px 700px at 85% 0%, rgba(255,204,102,0.18), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(122,255,191,0.10), transparent 55%),
    var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }
.note{
  margin-top: 14px;
  color: var(--muted);
}
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* Accessibility */
.skip-link{
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus{ left: 12px; z-index: 999; }

/* ---------- Header ---------- */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,0.65);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand__mark{
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(255,204,102,0.25);
}
.brand__text{ white-space: nowrap; }

.nav{
  display: none;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.nav a{
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
}
.nav a:hover{
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.06);
}

.header__actions{
  display: flex;
  gap: 10px;
  align-items: center;
}

/* show nav on larger screens */
@media (min-width: 920px){
  .nav{ display: flex; }
}

/* ---------- Pills & Buttons ---------- */
.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-weight: 650;
}
.pill--ghost{
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}
.pill--primary{
  background: linear-gradient(135deg, rgba(255,204,102,0.20), rgba(159,231,255,0.12));
  border-color: rgba(255,204,102,0.35);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}
.btn:hover{
  text-decoration: none;
  transform: translateY(-1px);
  transition: transform 120ms ease;
}
.btn--primary{
  background: linear-gradient(135deg, rgba(255,204,102,0.28), rgba(159,231,255,0.12));
  border-color: rgba(255,204,102,0.40);
}
.btn--secondary{
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.btn--full{ width: 100%; }

/* ---------- Hero ---------- */
.hero{
  padding: 54px 0 18px 0;
}
.hero__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  margin: 0 0 14px 0;
  color: var(--muted);
}
.badge strong{ color: var(--text); }
.dot{
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255,204,102,0.15);
}

.hero h1{
  margin: 0 0 10px 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: -0.4px;
}
.lead{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero__stats{
  margin-top: 18px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
.stat{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.stat__num{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,204,102,0.18);
  border: 1px solid rgba(255,204,102,0.25);
}
.stat__text{ color: var(--muted); }

.hero__media{
  display: grid;
  gap: 12px;
}
.hero__image{
  height: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255,204,102,0.20), rgba(159,231,255,0.10)),
    url("../assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
}
.hero__card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.hero__card-title{
  font-weight: 800;
  margin-bottom: 12px;
}
.hero__card-row{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__card-row:first-of-type{ border-top: 0; padding-top: 0; }
.hero__card-row a{ color: var(--text); text-decoration: underline; }

@media (min-width: 980px){
  .hero__grid{
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }
  .hero h1{ font-size: 46px; }
  .hero__stats{ grid-template-columns: 1fr 1fr; }
}

/* ---------- Sections ---------- */
.section{
  padding: 36px 0;
}
.section--alt{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section__head{
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.section__head h2{
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.2px;
}
.section__cta{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Cards & Grids ---------- */
.grid{
  display: grid;
  gap: 12px;
}
.grid--cards{
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.card--soft{
  background: rgba(255,255,255,0.03);
}
.card h3{
  margin: 8px 0 6px 0;
  font-size: 18px;
}
.card p{
  margin: 0;
  color: var(--muted);
}
.card__icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}

/* ---------- Gallery ---------- */
.gallery{
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.shot{
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.shot__img{
  height: 210px;
  background-size: cover;
  background-position: center;
}
.shot__img--ph{
  background:
    linear-gradient(135deg, rgba(255,204,102,0.16), rgba(159,231,255,0.10)),
    radial-gradient(500px 200px at 10% 30%, rgba(255,255,255,0.12), transparent 60%);
}
.shot figcaption{
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- About ---------- */
.about{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.ticks{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.tick{
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}
.mini{
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.mini__item{
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.mini__label{ color: var(--muted); font-size: 13px; }
.mini__value{ font-weight: 750; margin-top: 4px; }

.about__box{
  border: 1px solid rgba(255,204,102,0.30);
  background: linear-gradient(135deg, rgba(255,204,102,0.12), rgba(159,231,255,0.06));
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
}
.about__box h3{ margin: 0 0 6px 0; }
.about__box p{ margin: 0 0 12px 0; }

@media (min-width: 980px){
  .about{
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
  }
}

/* ---------- Contact ---------- */
.contact{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px){
  .contact{
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 14px 0;
}

.info-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.info-row:first-of-type{ border-top: 0; padding-top: 0; }
.info-row__label{ color: var(--muted); font-size: 13px; }
.info-row__value a{ text-decoration: underline; }

.form{
  display: grid;
  gap: 12px;
}
.form__grid{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  .form__grid{ grid-template-columns: 1fr 1fr; }
}
.field{
  display: grid;
  gap: 6px;
  font-size: 14px;
}
.field span{ color: var(--muted); }
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  font: inherit;
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(255,204,102,0.55);
  box-shadow: 0 0 0 4px rgba(255,204,102,0.12);
}

/* honeypot hidden */
.hp{ display: none; }

/* ---------- Map ---------- */
.map{
  margin-top: 12px;
}
.map__placeholder{
  height: 220px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255,255,255,0.22);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
  text-align: center;
  padding: 14px;
}

/* ---------- Footer ---------- */
.footer{
  padding: 26px 0 90px 0; /* leave space for floating button on mobile */
}
.footer__inner{
  display: grid;
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 18px;
}
.footer__brand{
  font-weight: 900;
  letter-spacing: 0.2px;
}
.footer__links{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__links a{
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
}
.footer__links a:hover{
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.06);
}
.footer__copy{
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 900px){
  .footer__inner{
    grid-template-columns: 1fr auto auto;
    justify-content: space-between;
  }
  .footer{ padding-bottom: 26px; }
}

/* ---------- Floating call button (mobile) ---------- */
.fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,204,102,0.45);
  background: linear-gradient(135deg, rgba(255,204,102,0.26), rgba(159,231,255,0.10));
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow);
  z-index: 60;
}
.fab:hover{ text-decoration: none; transform: translateY(-1px); transition: transform 120ms ease; }
@media (min-width: 920px){
  .fab{ display: none; }
}
