:root {
  --paper: #f8f4ed;
  --white: #fffdf8;
  --ink: #171512;
  --charcoal: #22201c;
  --muted: #70685e;
  --line: rgba(23, 21, 18, 0.14);
  --sage: #65725f;
  --clay: #9d6b45;
  --gold: #b99555;
  --blue: #314858;
  --shadow: 0 28px 90px rgba(23, 21, 18, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0;
  min-width: max-content;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

body.nav-open .menu-toggle span {
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::before {
  transform: rotate(90deg);
}

body.nav-open .menu-toggle span::after {
  transform: translateY(-2px) scaleX(0);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 15, 13, 0.82), rgba(17, 15, 13, 0.44) 58%, rgba(17, 15, 13, 0.18)),
    linear-gradient(0deg, rgba(17, 15, 13, 0.72), transparent 62%);
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 86px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e7c58b;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 84px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 19px;
}

.hero-contact {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(255, 253, 248, 0.84);
  font-size: 14px;
}

.hero-contact a {
  border-bottom: 1px solid rgba(231, 197, 139, 0.54);
  padding-bottom: 2px;
}

.hero-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: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button.primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.button.primary:hover {
  background: var(--clay);
  border-color: var(--clay);
}

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

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

.proof-band {
  width: min(var(--max), calc(100% - 40px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 253, 248, 0.82);
}

.proof-band article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-band article:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.proof-band span {
  color: var(--muted);
}

.section,
.split-section,
.cards-section,
.process-section,
.feature-strip,
.contact-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  padding: 120px 0 76px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.intro-section > p {
  color: var(--muted);
  font-size: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  background: var(--white);
  border-left: 6px solid var(--gold);
  box-shadow: 0 18px 48px rgba(23, 21, 18, 0.08);
}

.service-panel {
  padding: clamp(34px, 6vw, 72px);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--charcoal);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.cards-section {
  padding: 116px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-grid article {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.7);
}

.service-grid p,
.steps p,
.feature-strip p,
.contact-copy p {
  color: var(--muted);
}

.process-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  padding: 86px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.steps article {
  padding: 26px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 21, 18, 0.06);
}

.steps span {
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 700;
}

.feature-strip {
  margin-top: 96px;
  background:
    linear-gradient(120deg, rgba(34, 32, 28, 0.98), rgba(49, 72, 88, 0.9));
  color: var(--white);
}

.feature-strip div {
  max-width: 780px;
  padding: 64px;
}

.feature-strip p {
  color: rgba(255, 253, 248, 0.78);
}

.contact-section {
  padding: 112px 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 64px;
}

.contact-details {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.contact-details a,
.contact-details address {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.contact-details span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-form .wide,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 14px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form button {
  width: fit-content;
}

.site-footer {
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto;
    display: none;
    padding: 26px 20px 34px;
    background: var(--white);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 34px rgba(21, 25, 26, 0.12);
    flex-direction: column;
    align-items: flex-start;
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 54px;
  }

  h1 {
    font-size: 58px;
  }

  .proof-band,
  .intro-section,
  .split-section,
  .process-section,
  .feature-strip,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-band {
    margin-top: 0;
  }

  .proof-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-section {
    padding: 78px 0 58px;
    gap: 20px;
  }

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

  .cards-section {
    padding: 78px 0;
  }

  .process-section {
    padding: 66px 0;
  }

  .feature-strip div {
    padding: 34px 28px;
  }

  .contact-section {
    padding: 78px 0;
    gap: 28px;
  }

  .contact-form {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span {
    font-size: 14px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }

  .service-panel,
  .service-grid article,
  .steps article {
    padding: 24px;
  }
}
