:root{
  --accent: #be1522;
  --bg: #0c0d10;
  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.93);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);
  --shadow: 0 14px 36px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height: 1.55;
  background:
    radial-gradient(900px 440px at 20% 10%, rgba(190,21,34,.18), transparent 60%),
    radial-gradient(800px 460px at 80% 25%, rgba(255,255,255,.06), transparent 60%),
    var(--bg);
}

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.narrow{ width: min(760px, calc(100% - 2rem)); }

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(12,13,16,.90), rgba(12,13,16,.62));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
}

.brand{ display:flex; align-items:center; text-decoration:none; }
.brand-logo{
  height: 34px;
  width: auto;
  display:block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.nav{ display:flex; gap: .25rem; flex-wrap: wrap; justify-content: center; }
.nav-link{
  color: var(--muted);
  text-decoration:none;
  padding: .45rem .65rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .95rem;
}
.nav-link:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.04);
}
.nav-link.is-active{
  color: var(--text);
  border-color: rgba(190,21,34,.45);
  background: rgba(190,21,34,.14);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: .55rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(190,21,34,.45);
  background: rgba(190,21,34,.12);
  color: var(--text);
  text-decoration:none;
  font-weight: 750;
  white-space: nowrap;
}
.dot{
  width: 10px; height:10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(190,21,34,.16);
}
.hide-sm{ display:inline; }

.hero{ padding: 1.2rem 0 1.2rem; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.2rem;
  align-items: start;
}
h1{
  margin: 0 0 .6rem;
  font-size: clamp(1.75rem, 1.15rem + 1.55vw, 2.55rem);
  letter-spacing: -.4px;
  line-height: 1.12;
}
.accent{ color: rgba(255,255,255,.95); }
.lead{
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.lead2{
  margin: .2rem 0 1rem;
  color: rgba(255,255,255,.84);
  font-size: 1.05rem;
}

.chips{
  display:flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: .75rem 0 1rem;
}
.chip{
  padding: .38rem .62rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  font-weight: 650;
  font-size: .92rem;
}

.cta-row{
  display:flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: .85rem 0 1rem;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(190,21,34,.52);
  background: rgba(190,21,34,.16);
  color: var(--text);
  text-decoration:none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
}
.btn:hover{ background: rgba(190,21,34,.22); }
.btn.ghost{
  border-color: var(--line);
  background: rgba(255,255,255,.04);
  font-weight: 750;
}
.btn.ghost:hover{ background: rgba(255,255,255,.07); }

.quickcards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: .75rem;
}
.qcard{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem;
  box-shadow: var(--shadow);
}
.qtitle{
  font-weight: 850;
  margin-bottom: .35rem;
}
.qtext{ color: rgba(255,255,255,.82); font-size: .95rem; }

.hero-right{
  display:grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
.portrait{
  margin:0;
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  box-shadow: var(--shadow);
  min-height: 220px;
}
.portrait img{
  width:100%;
  height: 100%;
  max-height: 410px;
  object-fit: cover;
  object-position: center top;
  display:block;
}
.side-stack{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.shot{
  margin:0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.shot img{
  width:100%;
  height: 160px;
  object-fit: cover;
  display:block;
}

.section{ padding: 1.35rem 0; }
.section.alt{
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.02), transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
h2{
  margin: 0;
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
  letter-spacing: -.2px;
}
.muted{ color: var(--muted); }
.small{ font-size: .92rem; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.card.tight{ padding: .95rem; }

details.card summary{
  cursor: pointer;
  font-weight: 850;
  list-style: none;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
}
details.card summary::-webkit-details-marker{ display:none; }
details.card summary:after{
  content: "＋";
  color: rgba(255,255,255,.78);
  font-weight: 900;
}
details.card[open] summary:after{ content: "–"; }
.card ul, .card ol{ margin: .75rem 0 0 1.1rem; color: rgba(255,255,255,.84); }
.steps{ margin-left: 1.2rem; }
.steps li{ margin-bottom: .35rem; }

.about-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
  align-items: start;
}
.row{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0;
}
.k{ color: var(--muted); font-weight: 700; }
.v{ color: var(--text); font-weight: 800; text-decoration:none; }
a.v:hover{ text-decoration: underline; }

.callout{
  position: sticky;
  top: 86px;
  align-self: start;
}
.callout-inner{
  background: rgba(190,21,34,.12);
  border: 1px solid rgba(190,21,34,.35);
  border-radius: calc(var(--radius) + 6px);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.callout-title{
  font-weight: 900;
  margin-bottom: .55rem;
}
.biglink{
  display:block;
  color: var(--text);
  text-decoration:none;
  font-weight: 900;
  padding: .3rem 0;
}
.biglink:hover{ text-decoration: underline; }
.divider{ height:1px; background: rgba(255,255,255,.18); margin: .65rem 0; }

.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
  align-items: stretch;
}
.contact-rows{ display:grid; gap: .55rem; }
.cr{
  display:flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.cr:last-child{ border-bottom: none; }

.map{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  overflow:hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display:block;
}

.page{ padding: 1.6rem 0 2rem; }

.footer{
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
  background: rgba(0,0,0,.18);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 1rem;
  color: rgba(255,255,255,.72);
}
.footer a{ color: rgba(255,255,255,.82); text-decoration:none; }
.footer a:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid, .contact-grid, .about-grid{ grid-template-columns: 1fr; }
  .callout{ position: static; }
  .portrait img{ max-height: 360px; }
}
@media (max-width: 720px){
  .header-inner{ flex-direction: column; align-items: flex-start; }
  .nav{ width:100%; justify-content:flex-start; }
  .hide-sm{ display:none; }
  .quickcards{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .side-stack{ grid-template-columns: 1fr; }
  .shot img{ height: 170px; }
  .map{ min-height: 260px; }
}
