:root {
  --navy: #0A1020;
  --cream: #F4F1EA;
  --gold: #BFA46A;
  --gold-soft: rgba(191, 164, 106, 0.18);
  --serif: "Bodoni Moda", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 48vh auto;
}

/* ---------- Visual panel (full-bleed image + scrim) ---------- */
.visual {
  position: relative;
  overflow: hidden;
}

.visual__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

/* navy gradient scrim for depth + executive presence */
.visual__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,16,32,0.15) 0%, rgba(10,16,32,0.55) 70%, rgba(10,16,32,0.98) 100%),
    linear-gradient(90deg, rgba(10,16,32,0.35), transparent 45%);
}

.visual__name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  margin: 0;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
  z-index: 1;
}

/* ---------- Content panel ---------- */
.panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 28px 0;
}

.panel__inner {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
}

.tagline {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.002em;
  font-size: clamp(1.55rem, 4.4vw, 3.4rem);
  color: var(--cream);
}
.tagline .t-line { display: block; white-space: nowrap; }
.tagline .accent { color: var(--gold); }

.rule {
  display: block;
  width: 80px;
  height: 2px;
  margin: 26px 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.message {
  margin: 0;
  max-width: 42ch;
  font-size: 1.04rem;
  color: rgba(244, 241, 234, 0.84);
}

/* ---------- Buttons ---------- */
.actions { margin-top: 30px; }

.btn {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .15s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  padding: 15px 38px;
}
.btn--primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn--primary:active { transform: translateY(1px); }

.btn--full { width: 100%; padding: 14px 20px; }

.btn:focus-visible,
.icon:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Notify panel ---------- */
.notify {
  margin: 24px 0 0;
  max-width: 380px;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-soft);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 22px;
  animation: fade-in .28s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input {
  width: 100%;
  padding: 11px 13px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(10, 16, 32, 0.6);
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 4px;
  transition: border-color .2s ease;
}
.field input::placeholder { color: rgba(244, 241, 234, 0.4); }
.field input:focus { border-color: var(--gold); outline: none; }

.form-error {
  margin: 12px 0 0;
  font-size: 0.85rem;
  color: #E0A0A0;
}

.notify__success {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}

/* ---------- Contact ---------- */
.contact {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.contact__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.55);
}

.contact__icons { display: flex; gap: 16px; }

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--cream);
  border: 1px solid var(--gold-soft);
  transition: color .22s ease, border-color .22s ease, background-color .22s ease, transform .15s ease;
}
.icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-soft);
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 48px;
  padding: 22px 0 28px;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 234, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .dot { color: var(--gold); }

/* ---------- Desktop: side-by-side full-height image panel ---------- */
@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 100vh;
  }
  .visual__img { object-position: 50% 18%; }
  .visual__scrim {
    background:
      linear-gradient(90deg, rgba(10,16,32,0.10) 0%, rgba(10,16,32,0.30) 60%, rgba(10,16,32,0.96) 100%),
      linear-gradient(180deg, rgba(10,16,32,0.25), transparent 30%);
  }
  .visual__name {
    bottom: auto;
    top: 40px;
    left: 44px;
    right: auto;
    text-align: left;
  }
  .panel { padding: 56px 64px 0 56px; }
  .panel__inner { margin: 0; max-width: 520px; }
}

@media (min-width: 1200px) {
  .panel { padding-left: 80px; }
  .panel__inner { max-width: 560px; }
}
