:root{
  --bg: #07131f;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);

  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.35);

  --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;
  color: var(--text);
  line-height:1.6;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(90,170,255,.25) 0%, rgba(7,19,31,0) 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(0,255,200,.10) 0%, rgba(7,19,31,0) 55%),
    linear-gradient(180deg, #06101b 0%, #07131f 55%, #050b13 100%);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(6,16,27,.62);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}
.brand-text strong{
  display:block;
  letter-spacing:.2px;
}
.brand-text span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}
.nav{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}
.nav a{
  color:var(--muted);
  font-size:14px;
}
.nav a:hover{ color:var(--text); text-decoration:none; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  font-weight:650;
  letter-spacing:.2px;
}
.btn:hover{ text-decoration:none; background: rgba(255,255,255,.14); }
.btn-small{ padding:10px 14px; }
.btn-ghost{
  background: transparent;
  box-shadow:none;
}
.btn-ghost:hover{ background: rgba(255,255,255,.08); }

/* Hero */
.hero{
  padding:64px 0 34px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:28px;
  align-items:start;
}
.kicker{
  margin:0 0 10px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color: var(--muted);
}
h1{
  margin:0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.04;
  letter-spacing:-.02em;
}
.subhead{
  margin:0 0 22px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 16px;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.trust{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:14px;
}
.trust li{
  padding-left:18px;
  position:relative;
}
.trust li:before{
  content:"•";
  position:absolute;
  left:0;
  color: rgba(255,255,255,.75);
}

/* Cards */
.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h2{ margin:0 0 6px; font-size:18px; }
.muted{ color:var(--muted); }
.tiny{ font-size:12px; }


.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

.steps {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.steps li strong {
  display: block;
  margin-bottom: 4px;
}

.steps li span {
  color: var(--muted);
  font-size: 15px;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link:hover .card {
  transform: translateY(-1px);
}

.card {
  transition: transform 120ms ease;
}


/* Contact layout */
.contact{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}


@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }
}

/* Form styling (forces vertical stack) */
.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* Make inputs full-width and not inline */
.form input,
.form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline: none;
}

/* If any global CSS is forcing inputs into a row, this overrides it */
.form input {
  min-width: 0;
}

.form input:focus,
.form textarea:focus {
  border-color: rgba(255,255,255,.30);
}

/* Optional: make the button full width (looks more premium) */
.form button.btn {
  width: 100%;
  justify-content: center;
}

/* Header logo in the brand badge */
.brand-mark {
  overflow: hidden;              /* keeps logo inside rounded badge */
}

  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius: 16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}
  padding: 6px;                  /* creates a clean margin inside the badge */
  border-radius: 12px;           /* matches the badge shape */
}
>
/* Boat artwork at bottom of consult card */
.consult-photo {
  margin-top: 14px;
  width: 100%;
  height: auto;
  display: block;

  /* The key: contain its visual weight */
  max-height: 180px;             /* adjust 160–220 based on taste */
  object-fit: cover;
  object-position: center;

  border-radius: 14px;
  opacity: 0.92;
  border: 1px solid rgba(255,255,255,.12);
}

.consult-photo {
  filter: saturate(0.92) contrast(0.98);
}

/* No Fixed Bridges concept hero */
.nf-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.nf-art img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: 16px;
  display: block;

  /* soften bright artwork on dark UI */
  filter: saturate(0.94) contrast(0.96);
  border: 1px solid rgba(255,255,255,.12);
}

/* Mobile: stack, art below text */
@media (max-width: 900px) {
  .nf-hero {
    grid-template-columns: 1fr;
  }

  .nf-art img {
    max-height: 220px;
  }
}

