:root {
  --ink: #171615;
  --muted: #67615a;
  --paper: #f6f2eb;
  --paper-strong: #fffaf1;
  --charcoal: #10100f;
  --charcoal-soft: #1c1a18;
  --line: rgba(23, 22, 21, 0.14);
  --gold: #b99455;
  --gold-light: #e2c78f;
  --forest: #20382f;
  --white: #fff;
  --shadow: 0 24px 80px rgba(16, 16, 15, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 0.22s ease, box-shadow 0.22s ease, min-height 0.22s ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(16, 16, 15, 0.92);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(226, 199, 143, 0.7);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 750;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 14px;
  font-weight: 720;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 560;
}

.nav a,
.header-cta {
  transition: color 0.18s ease;
}

.nav a:hover,
.header-cta:hover {
  color: var(--gold-light);
}

.header-cta {
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.9) 0%, rgba(16, 16, 15, 0.72) 34%, rgba(16, 16, 15, 0.2) 72%),
    linear-gradient(180deg, rgba(16, 16, 15, 0.2) 0%, rgba(16, 16, 15, 0.64) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin: 112px 0 72px;
  padding-left: clamp(18px, 7vw, 92px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 500;
  line-height: 0.96;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.trust-line {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 9px 13px;
  border: 1px solid rgba(226, 199, 143, 0.36);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 680;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 720;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

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

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

.button.primary.light {
  background: var(--paper-strong);
}

.button.secondary.light {
  border-color: rgba(255, 250, 241, 0.32);
}

.intro,
.services,
.pricing,
.approach,
.contact {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 80px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: start;
  background: var(--paper-strong);
}

.intro h2,
.section-heading h2,
.approach h2,
.contact h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 500;
  line-height: 1.06;
}

.intro p,
.approach p,
.contact p {
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 20px);
}

.services {
  background: var(--paper);
}

.section-heading {
  display: grid;
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 250px;
  padding: clamp(24px, 3vw, 36px);
  background: var(--paper-strong);
}

.service-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.22;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing {
  background: var(--paper-strong);
}

.pricing-list {
  border: 1px solid var(--line);
  background: #fffdf8;
  box-shadow: 0 18px 60px rgba(16, 16, 15, 0.08);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 220px);
  gap: 24px;
  align-items: center;
  padding: 22px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 650;
}

.price-row strong {
  justify-self: end;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 500;
  white-space: nowrap;
}

.pricing-note {
  max-width: 840px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.approach {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(28px, 8vw, 96px);
  background: var(--charcoal-soft);
  color: var(--white);
}

.approach p {
  color: rgba(255, 255, 255, 0.72);
}

.principles {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.principles div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(220px, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.principles strong {
  color: var(--gold-light);
  font-size: 16px;
}

.principles span {
  color: rgba(255, 255, 255, 0.75);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 420px);
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
  color: var(--white);
  background: linear-gradient(120deg, rgba(32, 56, 47, 0.94), rgba(16, 16, 15, 0.98)), var(--forest);
}

.contact-main p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  display: grid;
  gap: 9px;
  padding: 30px;
  border: 1px solid rgba(226, 199, 143, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-details strong {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 18px;
}

.contact-details span,
.contact-details a {
  color: rgba(255, 255, 255, 0.76);
}

.contact-details a:hover {
  color: var(--gold-light);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.68);
  background: var(--charcoal);
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .header-cta {
    padding-top: 10px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 16, 15, 0.92), rgba(16, 16, 15, 0.52)),
      linear-gradient(180deg, rgba(16, 16, 15, 0.08), rgba(16, 16, 15, 0.72));
  }

  .intro,
  .approach,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 14px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text strong {
    max-width: 180px;
    font-size: 12px;
  }

  .brand-text span,
  .header-cta {
    font-size: 11px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-top: 108px;
    padding-left: 16px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .button {
    width: 100%;
  }

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

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .price-row strong {
    justify-self: start;
  }

  .principles div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-details {
    padding: 22px;
  }
}
