* {
  box-sizing: border-box;
}

:root {
  --ink: #101820;
  --ink-soft: #23303b;
  --paper: #f7f5f0;
  --white: #ffffff;
  --gold: #b89655;
  --gold-light: #d8c398;
  --line: #d9d9d3;
  --muted: #66717a;
  --shadow: 0 20px 60px rgba(8, 18, 28, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(16, 24, 32, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--gold-light);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 1.12rem;
}

.brand-text small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.64rem;
  color: #d8dde1;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #e8ecef;
  font-size: 0.94rem;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 11px 17px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: white;
  font-size: 1.7rem;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(9, 17, 25, 0.96), rgba(9, 17, 25, 0.76)),
    radial-gradient(circle at 80% 25%, rgba(184,150,85,0.24), transparent 25%),
    #101820;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(216,195,152,0.18);
  border-radius: 50%;
  right: -150px;
  bottom: -230px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8a6a2f;
}

.hero h1,
.section-title,
.hero-card h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 770px;
  margin: 0 0 24px;
  font-size: clamp(3.25rem, 7vw, 6.4rem);
  line-height: 0.98;
  font-weight: 700;
}

.hero-copy {
  max-width: 680px;
  margin: 0;
  font-size: 1.16rem;
  color: #d6dde2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #101820;
  background: var(--gold-light);
}

.button-primary:hover {
  background: #e1cfa8;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.42);
  background: transparent;
}

.trust-row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: #bac4cb;
  font-size: 0.88rem;
}

.trust-row span::before {
  content: "•";
  margin-right: 10px;
  color: var(--gold);
}

.hero-card {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  padding: 38px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.card-label {
  margin: 0 0 12px;
  color: #775b28;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero-card h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.15;
}

.contact-line {
  display: block;
  margin-top: 14px;
  font-weight: 700;
}

.section {
  padding: 105px 0;
}

.section-alt {
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.section-title {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.08;
}

.body-copy {
  font-size: 1.08rem;
  color: #45515a;
}

.body-copy p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  padding: 38px;
  border: 1px solid #e3e0d8;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .12em;
}

.service-card h3 {
  margin: 15px 0 10px;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: #57636c;
}

.dark-section {
  color: var(--white);
  background: var(--ink);
}

.section-heading.light {
  color: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.13);
  border-left: 1px solid rgba(255,255,255,0.13);
}

.step {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 34px;
  border-right: 1px solid rgba(255,255,255,0.13);
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.step > span {
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.step h3 {
  margin: 2px 0 8px;
}

.step p {
  margin: 0;
  color: #c4ccd1;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.contact-intro {
  color: var(--muted);
}

.contact-details {
  margin-top: 32px;
}

.contact-details a {
  color: #7e602b;
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: var(--paper);
  border: 1px solid #e4e0d7;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: .93rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd2d0;
  background: var(--white);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(184,150,85,.32);
  border-color: var(--gold);
}

.checkbox-row {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 400 !important;
  color: #59646c;
}

.checkbox-row input {
  width: auto;
  margin-top: 5px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

.legal-strip {
  padding: 24px 0;
  background: #eeeae1;
  color: #56616a;
  font-size: .86rem;
}

.legal-strip p {
  margin: 0;
}

.site-footer {
  padding: 60px 0 28px;
  background: #0b1218;
  color: #d4dade;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}

.footer-grid h4 {
  color: var(--white);
  margin: 0 0 15px;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  color: #c3ccd2;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: .84rem;
}

@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    padding: 24px;
    background: #101820;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 95px 0 75px;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-card {
    max-width: 560px;
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-card,
  .service-card,
  .contact-form,
  .step {
    padding: 26px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}
