:root{
  --bg: #0b0f17;
  --card: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 14px 50px rgba(0,0,0,0.55);
  --radius: 18px;
  --max: 940px; /* Option A margin strategy */
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(122,167,255,0.18), transparent 55%),
    radial-gradient(900px 520px at 85% 20%, rgba(159,231,200,0.14), transparent 55%),
    radial-gradient(900px 520px at 60% 95%, rgba(122,167,255,0.10), transparent 55%),
    var(--bg);
  line-height: 1.45;
}

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

.wrap{
  max-width: var(--max);
  margin:0 auto;
  padding:48px 18px 56px;
}

/* =========================
   HEADER
   ========================= */
.header{
  margin-bottom: 22px;
}

.top-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.logo-kicker{
  letter-spacing:0.10em;
  font-weight: 650;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.top-actions{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: nowrap; /* one line on desktop */
}

/* Headline: calmer, tighter */
h1{
  margin:0;
  font-size: clamp(28px, 3.0vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.principal{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}

.sub{
  margin: 14px 0 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 78ch;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  font-size: 13.5px;
  color: var(--text);
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
}

.btn.primary{
  border-color: rgba(122,167,255,0.55);
  background: rgba(122,167,255,0.14);
}

/* =========================
   MAIN GRID
   ========================= */
.grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-top: 18px;
}

.card{
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card .pad{
  padding: 18px 18px 16px;
}

.kicker{
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.list li{ margin: 8px 0; }

/* Hero image: slightly less dominant */
.hero-image{
  aspect-ratio: 16 / 11;
  width: 100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.02) contrast(1.02);
}

.caption{
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
}

.spacer{ height:14px; }
.spacer-sm{ height:10px; }

.availability{
  margin:0;
  color: var(--muted);
}

.contact-note{
  margin:0;
  color: rgba(255,255,255,0.62);
}

/* =========================
   FOOTER
   ========================= */
.footer{
  margin-top: 28px;
  display:flex;
  gap: 16px;
  align-items:center;
  justify-content:space-between;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-left{
  display:flex;
  align-items:center;
  gap: 10px;
}

.footer-logo{
  height: 22px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(100%) brightness(1.3);
}

.footer-text{
  white-space: nowrap;
}

.links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.links a{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .top-row{
    flex-direction: column;
    align-items: flex-start;
  }
  .top-actions{
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .grid{
    grid-template-columns: 1fr;
  }
  .footer-text{
    white-space: normal;
  }
}
