:root{
  --bg:#000000;
  --card:rgba(17,24,36,.70);
  --text:#ffffff;
  --muted:rgba(255,255,255,.82);
  --border:rgba(255,255,255,.12);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

.wrap{
  max-width:1024px;
  margin:0 auto;
  padding:22px 18px;
}

/* ===== Masthead ===== */
.masthead{
  padding:8px 0 10px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.masthead-row{
  display:flex;
  align-items:center;
  gap:18px;
}

.masthead-mark{
  width:220px;
  height:auto;
  display:block;
  flex-shrink:0;

  /* REMOVE all filters for video */
  filter:none;
}
.logo-video{
  width:220px;
  height:auto;
  object-fit:cover;

  /* Crop bottom watermark */
  transform: scale(1.08);
  clip-path: inset(0 0 10% 0);

  background:#000;
}

.masthead-copy{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.masthead-name{
  margin:0;
  font-weight:500;
  font-size:clamp(44px, 5.6vw, 88px);
  line-height:1;
}

.masthead-tagline{
  margin:0;
  font-size:clamp(16px, 1.8vw, 20px);
  line-height:1.35;
  opacity:.85;
}

/* ===== Intro ===== */
.intro{
  margin:18px 0;
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
}

.availability{
  margin:6px 0 14px;
  opacity:.7;
}

/* ===== Section spacing ===== */
.section{ margin-top:34px; }

/* ===== Section label ===== */
.section-label{
  display:inline-block;
  padding:14px 20px;
  border-radius:18px;
  background:var(--card);
  border:1px solid var(--border);
  font-size:18px;
  font-weight:700;
}

/* ===== Cards / Grid ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:14px;
}

@media (max-width:900px){
  .grid{ grid-template-columns:1fr; }
}

.card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:18px;
  padding:18px;
}

.card h2{
  margin:0 0 8px;
  font-size:18px;
}

.card p{
  margin:0;
  line-height:1.6;
  color:var(--muted);
}

/* ===== CTA buttons ===== */
.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0 10px;
}

/* --- 3-up CTA row (LinkedIn / CV / Summary) --- */
.cta-row--3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin:18px 0 22px;
}

.cta-row--3 .btn{
  width:100%;
  justify-content:flex-start;
}

@media (max-width:900px){
  .cta-row--3{ grid-template-columns:1fr; }
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:12px;
  border:1px solid rgba(110,231,255,.35);
  background:rgba(110,231,255,.12);
  color:var(--text);
  text-decoration:none;
  font-weight:700;
}

.btn.ghost{
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
}

.btn img{
  width:22px;
  height:22px;
  object-fit:contain;
  flex:0 0 22px;
}

/* ===== About Me ===== */
.about-lead{
  margin:0 0 16px;
  font-size:16px;
}

.about-copy p{
  margin:0 0 14px;
  text-align:justify;
  line-height:1.7;
}

/* ===== Contact ===== */
.contact-actions{
  display:flex;
  gap:12px;
}

.contact-actions .btn{
  min-width:180px;
}

/* ===== Footer ===== */
.footer{
  padding:28px 0 10px;
  font-size:13px;
  opacity:.82;
  text-align:center;
}

.visit-counter{
  margin-top:16px;
  font-size:13px;
  opacity:.8;
  text-align:center;
  color:rgba(255,255,255,.82);
}

#gc-views{
  display:inline-block;
  margin-left:6px;
  padding:2px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-weight:700;
  min-width: 18px;
}

/* ===== CONTACT FORM ===== */
.contact p{ margin:0 0 14px; color:var(--muted); }

.form{ margin-top:16px; }

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

@media (max-width:860px){
  .form-grid{ grid-template-columns:1fr; }
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:12px;
}

.field label{
  font-size:13px;
  opacity:.85;
}

.field input,
.field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
  font:inherit;
}

.field textarea{
  resize:vertical;
  min-height:140px;
}

.field input:focus,
.field textarea:focus{
  border-color:rgba(255,255,255,.25);
}

/* Honeypot MUST stay hidden */
.hidden{
  position:absolute !important;
  left:-10000px !important;
  top:auto !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}

/* Success message default hidden */
.form-success{
  display:none;
  margin:14px 0 10px;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
  font-weight:600;
}
/* ===== Rotate-to-landscape prompt (mobile only) ===== */
.rotate-prompt{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  backdrop-filter:blur(4px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.rotate-card{
  background:rgba(17,24,36,.9);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:22px 26px;
  text-align:center;
  color:#fff;
  max-width:260px;
}

.rotate-card p{
  margin:10px 0 0;
  font-size:15px;
  line-height:1.4;
  opacity:.9;
}

.rotate-icon{
  font-size:34px;
  display:block;
  opacity:.85;
}

