:root{
  /* Backgrounds – lighter, marine-forward */
  --bg: #0b1d2b;
  --panel: rgba(255,255,255,.08);
  --panel2: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.18);

  /* Text */
  --text: rgba(255,255,255,.94);
  --muted: rgba(255,255,255,.72);

  /* Effects */
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0,0,0,.28);

  --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(
      1400px 700px at 25% 40%,
      rgba(120,190,255,.18) 0%,
      rgba(120,190,255,.10) 35%,
      rgba(11,29,43,0) 70%
    ),
    radial-gradient(
      1100px 600px at 80% 55%,
      rgba(0,210,200,.14) 0%,
      rgba(0,210,200,.08) 40%,
      rgba(11,29,43,0) 70%
    ),
    linear-gradient(
      180deg,
      #0b1d2b 0%,
      #0f2a3d 45%,
      #0f2a3d 55%,
      #0b1d2b 100%
    );

  background-repeat: repeat;
}



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

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}
.site-header{
  background: rgba(6,16,27,.52);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

/* 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);
  overflow:hidden;
}

.brand-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;

}
.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,.10),
    rgba(255,255,255,.05)
  );
  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;
}


@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 img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
/* 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;
  }
}


.consult-headshot{
  margin-top: 14px;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 14px;
  display:block;
  border:1px solid rgba(255,255,255,.12);
}


.nf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.nf-art-card {
  padding: 0;
  overflow: hidden;
}

.nf-art {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  filter: saturate(0.94) contrast(0.96);
}

@media (max-width: 900px) {
  .nf-row { grid-template-columns: 1fr; }
  .nf-art { max-height: 220px; }
}

/* Wide lifestyle hero image */
.wide-hero {
  padding-top: 24px;
  padding-bottom: 24px;
}

.wide-hero-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}

.wide-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* subtle dark-to-transparent gradient */
  background: linear-gradient(
    180deg,
    rgba(5,8,15,.55) 0%,
    rgba(5,8,15,.15) 35%,
    rgba(5,8,15,.15) 65%,
    rgba(5,8,15,.55) 100%
  );
}


.wide-hero-image {
  width: 100%;
  height: auto;
  max-height: 360px;        /* adjust 320–420 if needed */
  object-fit: cover;
  display: block;

  /* soften highlights on dark UI */
  filter: saturate(0.95) contrast(0.97);
}

/* Tighten spacing between hero and wide lifestyle image */
.hero {
  padding-bottom: 28px; /* was larger */
}

.wide-hero {
  padding-top: 12px;    /* tighten gap below Consult with Ian */
}

.hero-art {
  width: 100%;
  height: auto;
  max-height: 240px;   /* ⬅️ key change (try 200–260 range) */
  object-fit: cover;
  display: block;

  filter: saturate(0.95) contrast(0.97);
}
/* Pull the yacht wrap up so it feels attached to the main hero */
.hero {
  padding-bottom: 20px; /* tighten space after “Consult with Ian” */
}

.yacht-wrap {
  padding-top: 0;
  margin-top: -22px;   /* pulls the right-wrapped yacht card upward */
}

/* Mobile: don't overlap / keep it clean */
@media (max-width: 900px) {
  .yacht-wrap {
    margin-top: 0;
    padding-top: 12px;
  }
}


.hero-art-card{
  padding: 0;
  overflow: hidden;
}

.hero-art{
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.97);
}

@media (max-width: 900px){
  .hero-art{ max-height: 220px; }
}

/* Subtle section divider */
.soft-divider{
  height: 1px;
  margin: 18px 0 32px; /* top | sides | bottom */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255,255,255,.18),
    rgba(255,255,255,0)
  );
}
/* Brand text refinement */
.brand-text strong{
  display:block;
  font-weight: 500;              /* ↓ from bold */
  letter-spacing: .02em;
  font-size: 15px;
}

.brand-text span{
  display:block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: .14em;         /* elegant spacing */
  text-transform: uppercase;
  color: var(--muted);
}
.brand-text strong::after{
  content:"";
  display:block;
  width: 28px;
  height: 1px;
  margin-top: 6px;
  background: rgba(255,255,255,.35);
}


/* External trust link (Zillow) */
.external-proof{
  margin-top: 10px;
  font-size: 13px;
}

.external-proof a{
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.25);
}

.external-proof a:hover{
  color: var(--text);
  border-bottom-color: rgba(255,255,255,.5);
}
/* License attribution (ultra-subtle, compliance-safe) */
.license-attribution{
  margin: 6px 0 2px;
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--muted);
}

/* Make the contact form column narrower (desktop) */
@media (min-width: 900px){
  #contact .contact{
    grid-template-columns: 1fr 640px; /* left text | form column */
    gap: 32px;
    align-items: start;
  }

  #contact .card{
    max-width: 640px;
    margin-left: 0; /* no auto-centering needed now */
  }
}

/* Google Form embed */
.gform-embed{
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}

.gform-embed iframe{
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
}

/* ----------------------------
   Mobile polish
---------------------------- */
@media (max-width: 900px){

  /* 1) Header/nav: less busy */
  .header-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
  }

  .nav{
    width: 100%;
    gap: 10px;
  }

  /* keep only key links on mobile */
  .nav a{ display: none; }
  .nav a[href="#experience"],
  .nav a[href="#contact"]{ display: inline-flex; }

  /* make the CTA look like a primary action */
  .nav a.btn{
    margin-left: auto;
  }

  /* 2) Hero: stack instead of thin wrap */
  .hero{
    padding: 44px 0 22px;
  }

  .hero-inner{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ensure the right-side hero card fills width */
  .hero-inner > a.card-link,
  .hero-inner > .card-link{
    width: 100%;
  }

  /* if your Consult card lives inside the hero grid */
  .hero-inner .card{
    width: 100%;
  }

  /* 3) Brand: tighten */
  .brand-text strong{
    font-size: 14px;
  }
  .brand-text span{
    font-size: 11px;
  }
}

.process-stack{
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.process-item h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
}

.process-item p{
  margin: 0;
  max-width: 70ch;
}

/* Luxury Process Hero */
.process-hero{
  padding: 22px;
}

.process-hero-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 18px;
}

.process-title{
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.01em;
}

.process-lead{
  margin: 0;
  max-width: 78ch;
}

.process-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.process-pill{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding: 16px;
}

.process-pill-top{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}


.process-pill h3{
  display:block;
  margin:0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.35;
}


.process-pill p{
  margin:0;
  font-size: 14px;
  line-height: 1.55;
}

/* Mobile: single column + tighter header */
@media (max-width: 900px){
  .process-hero-head{
    align-items:flex-start;
    flex-direction: column;
  }
  .process-grid{
    grid-template-columns: 1fr;
  }
}
.process-num{
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  min-width: 28px;
}
