/* ---------- Base ---------- */
:root{
  --bg: #2d5f94;          /* plain blue background */
  --bg-deeper: #274f7a;   /* slightly darker for depth */
  --card: rgba(255,255,255,0.10);
  --card-strong: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.75);
  --line: rgba(255,255,255,0.18);
  --shadow: 0 10px 30px rgba(0,0,0,0.18);
  --radius: 18px;
  --maxw: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

html{
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deeper) 100%);
  background-attachment: fixed;
}

body{
  margin: 0;
  background: transparent;
  color: var(--text);
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  line-height: 1.55;
}




a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--maxw), calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Topbar ---------- */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(18, 32, 48, 0.22);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 18px;
  white-space: nowrap;
}

.nav{
  display: flex;
  gap: 14px;
  flex: 1;
  justify-content: center;
}
.nav a{
  font-size: 14px;
  color: var(--muted);
}
.nav a:hover{ color: var(--text); }

.cta{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
  font-size: 14px;
}
.cta:hover{ text-decoration: none; background: rgba(255,255,255,0.14); }

/* ---------- Hero layout ---------- */
.hero{
  padding: 34px 0 0;
}

.layout{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0 22px;
}


/* Make right column span both rows, and contact sit under left column */
.left{
  grid-column: 1;
  grid-row: 1;
}

.right{
  grid-column: 2;
  grid-row: 1 / span 2; /* spans down so contact can appear beside it */
}

.contact--inline{
  grid-column: 1;
  grid-row: 2;
}



/* Left column typography similar to PDF poster */
.name{
  margin: 0;
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 0.98;
  font-style: italic;
  letter-spacing: 0.2px;
  text-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.role{
  margin: 8px 0 22px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.text{
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  max-width: 65ch;
}

.lead{
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-top: 0;
}

.highlight{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
}

.contact-blurb{
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.small{ margin: 0 0 10px; color: var(--muted); }

.contact-lines{
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ---------- Right column cards ---------- */
.right{
  display: grid;
  gap: 16px;
}

/* Image cards – clean, centered, calm */
.card{
  padding: 10px;                 /* frame thickness */
  background: var(--card-strong);
}

.card > img.img{
  width: 100%;
  height: 400px;         /* keep frame height */
  object-fit: contain;   /* <- no cropping */
  object-position: center;
  background: rgba(0,0,0,0.12); /* optional: makes letterbox look intentional */
  border-radius: calc(var(--radius) - 6px);
}



figure{ margin: 0; }

figcaption{
  padding: 10px 14px 12px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
}

/* Placeholder image blocks */
.img-placeholder{
  height: 280px;
  background:
    radial-gradient(120px 120px at 30% 30%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(160px 140px at 70% 60%, rgba(255,255,255,0.14), transparent 60%),
    rgba(0,0,0,0.20);
}
.img-placeholder--tall{
  height: 360px;
}

/* Audio block */
.audio{
  padding: 14px 14px 10px;
}
.audio h2{
  margin: 0 0 10px;
  font-size: 18px;
  font-style: italic;
}
.audio-row{
  display: grid;
  gap: 6px;
  margin: 10px 0 14px;
}
.audio-label{
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
}

audio{
  width: 100%;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}

.audio-note{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Contact section ---------- */
.contact{
  padding: 0;                 /* was 34px 0 40px */
  border-top: none;           /* was border-top */
  background: transparent;    /* was rgba(0,0,0,0.10) */
}

.contact--inline{
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}


.contact__inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.contact__copy h2{
  margin: 0 0 10px;
  font-size: 26px;
  font-style: italic;
}

.contact__direct{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.pill{
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
}
.pill__label{
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

/* Form */
.form{
  padding: 16px;
}
.form__row{
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.form__row.two{
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label{
  font-size: 13px;
  color: var(--muted);
}

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(10, 18, 28, 0.18);
  color: var(--text);
  outline: none;
  font: inherit;
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,0.55); }

input:focus, select:focus, textarea:focus{
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.10);
}

.button{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.95);
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
}
.button:hover{ background: rgba(255,255,255,0.18); }

.form__fineprint{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}
.footer__links{
  display: flex;
  gap: 12px;
}
.footer__links a{ color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 920px){
  .layout{ grid-template-columns: 1fr; }
  .right{ grid-row: auto; grid-column: 1; }
  .contact--inline{ grid-column: 1; }
  .contact__inner{ grid-template-columns: 1fr; }
  .nav{ display: none; }
    /* Only the landscape image: avoid tall fixed box that causes letterboxing */
  .card > img.img--landscape{
    height: auto;           /* <-- key change */
    max-height: 260px;      /* safety cap so it doesn't get huge */
    object-fit: contain;    /* no cropping */
    background: transparent;
  }
}
