:root {
  --color-paper: #f3ede4;
  --color-paper-deep: #e6dbcb;
  --color-ink: #1f1916;
  --color-muted: #665c54;
  --color-accent: #8d6a43;
  --color-border: rgba(31, 25, 22, 0.12);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 24px 60px rgba(31, 25, 22, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--color-ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(141, 106, 67, 0.16), transparent 32%),
    linear-gradient(180deg, #f7f2ea 0%, var(--color-paper) 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 56px;
}

.brand,
.site-nav a,
.eyebrow,
.approach-steps span {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand {
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  font-size: 0.75rem;
  text-decoration: none;
  color: var(--color-muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: stretch;
  min-height: 68vh;
}

.hero-copy,
.hero-panel,
.services-grid article,
.approach-steps article,
.contact-section {
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 42px;
  background: rgba(255, 252, 247, 0.72);
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 0.72rem;
  color: var(--color-accent);
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 8vw, 6.4rem);
}

.intro,
.contact-copy,
.services-grid p,
.approach-steps p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.intro {
  max-width: 36rem;
  margin: 28px 0 34px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--color-ink);
  color: #f9f4ee;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: 32px;
  background:
    linear-gradient(160deg, rgba(141, 106, 67, 0.08), rgba(255, 255, 255, 0.64)),
    var(--color-paper-deep);
}

.hero-panel p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
}

.section {
  padding-top: 88px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
}

.services-grid,
.approach-steps {
  display: grid;
  gap: 18px;
}

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

.services-grid article,
.approach-steps article {
  padding: 28px 24px;
  background: rgba(255, 250, 244, 0.8);
}

.services-grid h3,
.approach-steps h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.services-grid p,
.approach-steps p {
  margin: 0;
}

.section-contrast {
  position: relative;
}

.section-contrast::before {
  content: "";
  position: absolute;
  inset: 42px -32px -24px;
  z-index: -1;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(230, 219, 203, 0.65), rgba(255, 255, 255, 0));
}

.approach-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.approach-steps span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.72rem;
  color: var(--color-accent);
}

.contact-section {
  padding: 36px;
  background:
    linear-gradient(160deg, rgba(255, 252, 247, 0.9), rgba(230, 219, 203, 0.72)),
    var(--color-paper);
}

.contact-copy {
  max-width: 40rem;
  margin: 24px 0 28px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.text-link {
  color: var(--color-muted);
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

@media (max-width: 1000px) {
  .hero,
  .section-heading,
  .services-grid,
  .approach-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 800px) {
  .page-shell {
    width: min(100% - 32px, 720px);
    padding-bottom: 56px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 36px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-copy,
  .hero-panel,
  .services-grid article,
  .approach-steps article,
  .contact-section {
    border-radius: 22px;
  }

  .hero-copy,
  .hero-panel,
  .contact-section {
    padding: 28px;
  }

  .section {
    padding-top: 64px;
  }
}
