/* ============================================================
   Madaket Ventures — minimalist single-scene page
   Photograph + one creatively placed contact form. No copy.
   ============================================================ */

:root{
  --navy: #0b1f33;
  --navy-deep: #071626;
  --gold: #b98a4a;
  --gold-light: #d9a862;
  --paper: #ffffff;
  --ink: #16232f;
  --ink-soft: #4c5a67;
  --border: #e3dfd6;
  --radius: 12px;
}

*{box-sizing:border-box;}
html,body{
  margin:0;
  height:100%;
  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color:var(--ink);
  background:var(--navy-deep);
}
img{max-width:100%;display:block;}

/* ===== Full-bleed scene ===== */
.scene{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px clamp(20px, 4vw, 60px);
}
.scene-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.scene-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 55%;
}
.scene-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, rgba(7,22,38,0.45) 0%, rgba(7,22,38,0.05) 45%, rgba(7,22,38,0.55) 100%);
}

/* ===== Logo + form composition (side by side) ===== */
.duo-stage{
  position:relative;
  z-index:6;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:50px;
  max-width:100%;
}
.stage-logo{
  flex-shrink:1;
  min-width:0;
  width:clamp(280px, 34vw, 460px);
  filter:drop-shadow(0 16px 34px rgba(0,0,0,0.55));
}
.stage-logo img{
  width:100%;
  height:auto;
}

/* ===== Decorative accent ===== */
.accent-line{
  position:absolute;
  z-index:2;
  top:0;
  right:clamp(360px, 34vw, 460px);
  width:1px;
  height:100%;
  background:linear-gradient(180deg, transparent, rgba(255,255,255,0.35), transparent);
  pointer-events:none;
}

/* ===== Floating form dock — creatively placed, like a pinned note
   on the scene rather than a boxed section ===== */
.form-dock{
  position:relative;
  transform:rotate(-1.2deg);
  width:min(390px, 88vw);
  flex-shrink:0;
}
.form-pin{
  position:absolute;
  top:-16px;
  left:38px;
  z-index:7;
  width:36px;
  height:36px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:var(--navy-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  box-shadow:0 6px 14px rgba(0,0,0,0.35);
  transform:rotate(18deg);
}

.contact-form{
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(10px);
  border-radius:var(--radius);
  padding:30px 26px 24px;
  box-shadow:0 35px 70px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.4) inset;
  border:1px solid rgba(255,255,255,0.5);
}
.form-row{
  margin-bottom:16px;
  display:flex;
  flex-direction:column;
}
.form-row label{
  font-size:12.5px;
  font-weight:600;
  color:var(--navy);
  margin-bottom:6px;
  letter-spacing:0.2px;
}
.form-row .optional{
  color:var(--ink-soft);
  font-weight:400;
}
.form-row input,
.form-row textarea{
  border:1.5px solid var(--border);
  border-radius:6px;
  padding:10px 12px;
  font-family:inherit;
  font-size:14px;
  color:var(--ink);
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
  resize:vertical;
}
.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(185,138,74,0.15);
}
.captcha-row{
  background:#f4efe6;
  border:1px dashed var(--border);
  border-radius:8px;
  padding:12px 12px 10px;
}
.captcha-row label{
  display:flex;
  align-items:center;
  gap:7px;
}
.captcha-row label::before{
  content:"\f084";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  color:var(--gold);
}
.captcha-row label::after{
  content:" = ?";
  font-weight:400;
  color:var(--ink-soft);
}

/* Honeypot: visually hidden from real visitors, still present for bots */
.honeypot-row{
  position:absolute !important;
  width:1px; height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
  margin:-1px;
  padding:0;
  border:0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:12px 24px;
  border-radius:6px;
  font-weight:600;
  font-size:14.5px;
  letter-spacing:0.3px;
  cursor:pointer;
  border:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn-primary{
  background:linear-gradient(135deg, var(--gold-light), var(--gold));
  color:var(--navy-deep);
  box-shadow:0 10px 22px rgba(185,138,74,0.35);
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(185,138,74,0.45);
}
.btn-primary:disabled{
  opacity:0.7;
  cursor:not-allowed;
  transform:none;
}
.btn-spinner{
  display:none;
  width:15px;height:15px;
  border:2px solid rgba(11,31,51,0.35);
  border-top-color:var(--navy-deep);
  border-radius:50%;
}
.btn-submit.loading .btn-spinner{
  display:inline-block;
  animation:spin 0.8s linear infinite;
}
.btn-submit.loading .btn-label{opacity:0.7;}
@keyframes spin{to{transform:rotate(360deg);}}

.form-status{
  margin-top:12px;
  margin-bottom:0;
  font-size:13px;
  font-weight:500;
  min-height:18px;
}
.form-status.success{color:#1c7a4a;}
.form-status.error{color:#b3302c;}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .accent-line{display:none;}
  .scene{justify-content:center;padding:50px 20px;}
  .duo-stage{
    flex-direction:column;
    gap:22px;
  }
  .stage-logo{width:clamp(220px, 60vw, 340px);}
  .form-dock{
    transform:rotate(0deg);
    width:min(380px, 90vw);
  }
  .form-pin{left:50%;transform:translateX(-50%) rotate(18deg);}
}
@media (max-width: 480px){
  .scene{padding:40px 16px;}
  .duo-stage{gap:16px;}
  .stage-logo{width:min(190px, 70vw);}
  .contact-form{padding:24px 20px 20px;}
}
