:root {
  --ink: #0d1117;
  --navy: #162033;
  --gold: #c8a46b;
  --silver: #a8afb8;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #667085;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Montserrat, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: #1d2734;
  background: var(--paper);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold);
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px;
  z-index: 99;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 17, 23, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.15em;
}
.brand-tag {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-top: -4px;
}
.menu {
  display: flex;
  gap: 28px;
  align-items: center;
  color: #e7e9ed;
  font-size: 0.9rem;
}
.menu a:hover,
.menu a[aria-current="page"] {
  color: var(--gold);
}
.nav-cta {
  border: 1px solid var(--gold);
  padding: 10px 16px;
  border-radius: 2px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 1.7rem;
}
.hero {
  background: radial-gradient(
      circle at 76% 25%,
      rgba(200, 164, 107, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #0d1117 0%, #162033 100%);
  color: #fff;
  min-height: 680px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -8% -36% auto;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(200, 164, 107, 0.18);
  transform: rotate(35deg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  padding: 96px 0;
}
.hero h1,
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin: 18px 0 24px;
}
.hero p {
  max-width: 690px;
  color: #cbd0d8;
  font-size: 1.08rem;
}
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-secondary {
  color: #fff;
}
.hero-mark {
  padding: 38px;
  position: relative;
}
.hero-mark img {
  filter: drop-shadow(0 22px 35px rgba(0, 0, 0, 0.45));
}
.hero-mark:before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(200, 164, 107, 0.2);
  transform: rotate(45deg);
}
section {
  padding: 92px 0;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1;
  margin: 10px 0 24px;
  color: var(--ink);
}
.lede {
  max-width: 760px;
  color: #566170;
  font-size: 1.05rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}
.card {
  background: #fff;
  padding: 34px;
  border: 1px solid #e3e6ea;
  min-height: 255px;
  box-shadow: 0 16px 38px rgba(13, 17, 23, 0.05);
}
.card .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.05;
  margin: 14px 0;
}
.dark {
  background: var(--ink);
  color: #fff;
}
.dark .section-title {
  color: #fff;
}
.dark .lede {
  color: #b8c0cb;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.panel {
  background: linear-gradient(145deg, #172132, #0d1117);
  color: var(--white);
  min-height: 420px;
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}
.panel h3 {
  font-family: var(--serif);
  font-size: 2.5rem;
  margin: 0 0 10px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.checklist li {
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid #dde1e6;
  position: relative;
}
.checklist li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 23px;
  width: 12px;
  height: 2px;
  background: var(--gold);
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d9dde2;
  margin-top: 52px;
}
.stat {
  background: #fff;
  padding: 30px;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ink);
}
.cta {
  background: linear-gradient(135deg, #162033, #0d1117);
  color: #fff;
  text-align: center;
}
.cta .section-title {
  color: #fff;
}
.cta .lede {
  margin-inline: auto;
  color: #c7ced7;
}
.page-hero {
  background: linear-gradient(135deg, #0d1117, #162033);
  color: #fff;
  padding: 100px 0 85px;
}
.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  margin-bottom: 15px;
}
.page-hero p {
  max-width: 760px;
  color: #c5cbd3;
}
.service-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-bottom: 1px solid #d8dde2;
}
.service-row .index {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
}
.service-row h2 {
  font-family: var(--serif);
  font-size: 2.1rem;
  margin: 0 0 10px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}
.contact-card {
  background: #fff;
  padding: 38px;
  border: 1px solid #e0e4e8;
}
.contact-card a {
  color: #20314b;
  font-weight: 700;
}
.contact-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
}
.form {
  display: grid;
  gap: 16px;
}
.form label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccd2d9;
  background: #fff;
  font: inherit;
}
.form textarea {
  min-height: 150px;
}
.fine {
  font-size: 0.78rem;
  color: #667085;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 2rem;
}
.legal p,
.legal li {
  color: #4e5967;
}
footer {
  background: #090c11;
  color: #aeb6c1;
  padding: 55px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr;
  gap: 70px;
}
.footer-brand {
  display: flex;
  gap: 15px;
  align-items: center;
  color: #fff;
}
.footer-brand img {
  width: 64px;
}
.footer h4 {
  color: #fff;
  margin-top: 0;
}
.footer a {
  display: block;
  margin: 7px 0;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 22px;
  font-size: 0.78rem;

  display: flex;
  flex-direction: column;
  gap: 8px;

  align-items: flex-start;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  display: block;
  margin: 0;
}
.footer-statement {
  margin-top: 20px;
  max-width: 360px;

  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 500;
  color: #c9d2df;
}

.footer-statement span {
  display: block;
}

.footer-statement span:first-child {
  margin-bottom: 10px;
}
@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }
  .menu {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #0d1117;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu.open {
    display: flex;
  }
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-mark {
    max-width: 380px;
    margin: auto;
  }
  .grid-3,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-row {
    grid-template-columns: 65px 1fr;
  }
  .nav {
    min-height: 70px;
  }
  .brand-tag {
    display: none;
  }
  section {
    padding: 70px 0;
  }
  .hero-grid {
    padding: 72px 0;
  }
  .hero h1 {
    font-size: 3.7rem;
  }
}
@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }
  .brand-name {
    font-size: 1.2rem;
  }
  .button-row {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-row .index {
    font-size: 2rem;
  }
  .card,
  .contact-card,
  .panel {
    padding: 26px;
  }
}
/* ==========================================
   404 PAGE
========================================== */

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.error-logo {
  width: 120px;
  margin: 0 auto 30px;
}

.error-page .lede {
  margin-inline: auto;
  max-width: 620px;
}
