:root {
  --bg: #0f131a;
  --surface: #171d27;
  --surface-2: #1b2432;
  --ink: #e9edf4;
  --muted: #a4afc2;
  --primary: #b8995b;
  --accent: #7f8ea6;
  --line: #2a3445;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 5%, #1a2331 0%, var(--bg) 40%), var(--bg);
  line-height: 1.55;
}

.container { width: min(1080px, 92vw); margin: 0 auto; }

.hero {
  padding-bottom: 72px;
  background: linear-gradient(120deg, #111722 0%, #141d2c 55%, #0f131a 100%);
  color: #fff;
  border-bottom: 1px solid #252f40;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
.brand {
  font-family: "Libre Baskerville", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.nav-cta {
  text-decoration: none;
  color: #e8dcc5;
  border: 1px solid rgba(184, 153, 91, 0.65);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(184, 153, 91, 0.08);
}
.hero-content h1 {
  font-family: "Libre Baskerville", serif;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.12;
  margin: 8px 0 16px;
  max-width: 820px;
  letter-spacing: 0.01em;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0.85;
  font-size: 0.78rem;
}
.subcopy { max-width: 760px; color: rgba(255,255,255,0.9); font-size: 1.08rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.hero-tags span {
  background: rgba(184, 153, 91, 0.1);
  border: 1px solid rgba(184, 153, 91, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.88rem;
  color: #e8dcc5;
}

.section { padding: 70px 0; }
.section h2 {
  font-family: "Libre Baskerville", serif;
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #f2f5fb;
}
.section-intro { color: var(--muted); max-width: 760px; margin-top: 10px; }

.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.card h3 { margin-top: 0; font-family: "Libre Baskerville", serif; color: #f1f4fa; }
.card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.card-highlight {
  background: linear-gradient(170deg, #1d2430 0%, #262f3f 100%);
  border-color: #7f6940;
}

.section-alt { background: #121925; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}
.steps { display: grid; gap: 12px; }
.steps div {
  background: #1a2230;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px;
}
.steps strong {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  color: #d0b077;
}

.flow {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.flow div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #171f2b;
  padding: 14px;
}
.flow p { color: var(--muted); margin: 8px 0 0; }

.inquiry-form {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.inquiry-form label,
.inquiry-form fieldset {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  font: inherit;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #141b26;
}
.inquiry-form fieldset { grid-column: span 2; border: 1px solid var(--line); border-radius: 10px; padding: 10px; }
.inquiry-form fieldset label { font-weight: 500; flex-direction: row; align-items: center; }
.inquiry-form textarea,
.inquiry-form button,
#form-status,
.form-note {
  grid-column: span 2;
}
.inquiry-form button {
  border: 0;
  border-radius: 10px;
  padding: 12px;
  background: linear-gradient(120deg, #8f7545, #b8995b);
  color: #131820;
  font-weight: 700;
  cursor: pointer;
}
#form-status { min-height: 22px; margin: 0; color: var(--muted); }
.form-note { margin: 2px 0 0; color: var(--muted); font-size: 0.88rem; }

.footer { border-top: 1px solid var(--line); padding: 20px 0 28px; background: #0d121b; }
.footer-inner { display: flex; justify-content: space-between; color: var(--muted); }

@media (max-width: 860px) {
  .cards,
  .spotlight,
  .flow,
  .inquiry-form { grid-template-columns: 1fr; }
  .inquiry-form fieldset,
  .inquiry-form textarea,
  .inquiry-form button,
  #form-status,
  .form-note { grid-column: auto; }
  .footer-inner { flex-direction: column; gap: 4px; }
}
