:root {
  --ink: #111111;
  --muted: #6b7280;
  --accent: #9a7a2f;
  --paper: #f7f5ef;
  --line: #dedbd1;
}

html,
body {
  background: var(--paper);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
}

.coming-soon {
  background:
    radial-gradient(circle at 83% 18%, rgba(154, 122, 47, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
}

h1 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 span {
  color: var(--accent);
}

.lead {
  max-width: 690px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.brand-card {
  padding: 1.5rem;
}

.brand-logo {
  width: min(100%, 680px);
  filter: contrast(1.03);
}

.icon-box {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255,255,255,.72);
}

.icon-box i {
  font-size: 1.1rem;
}

.btn {
  border-radius: .4rem;
  font-weight: 600;
}

.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.btn-dark:hover {
  background: #292929;
  border-color: #292929;
}

.service-strip span {
  display: inline-block;
  font-size: .88rem;
  font-weight: 600;
  color: #343434;
}

.footer-tagline {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .brand-card {
    max-width: 680px;
    margin: 0 auto;
    padding-bottom: 0;
  }

  .coming-soon {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .display-3 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    width: 100%;
  }

  .service-strip .col-6 {
    margin-bottom: .25rem;
  }
}
