/* Modern, mobile-first styling (no frameworks) */

:root{
  --bg: #111827;
  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.09);
  --text: #e5e7eb;
  --muted: rgba(238,242,255,.75);
  --border: rgba(255,255,255,.12);
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1120px;

  --accent: #7aa7ff;
  --accent2: #a98bff;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 18px 56px;
}

.skip{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--bg);
  color: #000;
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}
.skip:focus{ left: 10px; }

.topbar{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 50;
  
  padding: 16px 0;
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  max-width: var(--max);
}

.brand{
  display: grid;
  grid-template-columns: 14px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
}
.brand__dot{
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(122,167,255,.12);
}
.brand__name{
  font-weight: 700;
  letter-spacing: .2px;
}
.brand__tag{
  grid-column: 2;
  color: var(--muted);
  font-size: .92rem;
  margin-top: -2px;
}

.nav{
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a{
  color: var(--text);
  opacity: .92;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  background: var(--bg);
  text-decoration: none;
}
.nav__cta{
  background: var(--bg);
  border: 1px solid var(--border);
}

.hero{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-areas:
    "copy media"
    "meta media";
  gap: 18px;
  padding-top: 18px;
}

.hero__copy{ grid-area: copy; }
.hero__media{ grid-area: media; display: flex; justify-content: flex-end; align-self: start; }
.meta{ grid-area: meta; }

.kicker{
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .25px;
}

.hero h1{
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 2.9vw, 2.65rem);
  line-height: 1.12;
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.25rem 0;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-weight: 650;
}
.btn:hover{
  text-decoration: none;
  background: var(--bg);
}
.btn--primary{
  background: var(--bg);
}

.meta{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}
.meta__item {
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 16px;
  padding: 12px 14px;
}
.meta__label{
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 4px;
}
.meta__value{
  font-weight: 650;
}

.photoCard{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: var(--shadow);
  max-width: 420px;
  width: 100%;
}
.photoCard img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.grid3{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.section{
  margin-top: 22px;
  padding-top: 4px;
}
.section__head h2{
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 400;
}
.section__head p{
  margin: 0 0 12px;
  color: var(--muted);
}

.card{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.card--soft{
  background: var(--bg);
}

.card h2, .card h3{
  margin: 0 0 10px;
  font-size: 1.12rem;
}
.card p{
  margin: 0;
  color: var(--muted);
}

.services{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li{
  margin: 8px 0;
}

.small{ font-size: .95rem; color: var(--muted); }

.quote{
  margin: 14px 0 0;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius);
  padding: 18px;
}
.quote blockquote{
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.55;
}
.quote figcaption{
  color: var(--muted);
}

.twoUp{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.section--contact .contact{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contactRow{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contactRow:last-child{ border-bottom: none; }
.contactRow__label{ color: var(--muted); }
.contactRow__value{ font-weight: 700; }

.footer{
  margin-top: 24px;
  text-align: center;
  color: rgba(238,242,255,.7);
  font-size: .95rem;
  padding-bottom: 12px;
}
.hero h2 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
}
.hero .meta {
  font-size: 0.95rem;
  line-height: 1.4;
  min-height: 150px;
}
.hero .meta h3,
.hero .meta strong {
  font-size: 0.9rem;
  font-weight: 600;
}
.hero a {
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
}
.hero .meta__label {
  font-size: 1.05rem;
  font-weight: 600;
}
.hero .meta__value {
  font-weight: 400; 
}
.quote blockquote,
.quote blockquote p {
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

/* Responsive */
@media (max-width: 980px){
  .hero{
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "media"
      "meta";
  }
  .hero__media{ justify-content: flex-start; }
  .grid3{ grid-template-columns: 1fr; }
  .services{ grid-template-columns: 1fr; }
  .twoUp{ grid-template-columns: 1fr; }
  .section--contact .contact{ grid-template-columns: 1fr; }
  .meta{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .brand__tag{ display: inline; }
  .nav{ gap: 6px; }
  .nav a{ padding: 8px 8px; }
}
