:root {
  color-scheme: light;
  --ink: #1d1b18;
  --muted: #6f6a62;
  --soft: #9c9488;
  --line: #dddcd6;
  --paper: #f6f5f2;
  --paper-deep: #e6e8e1;
  --panel: #fffefa;
  --accent: #6b2746;
  --accent-dark: #4a352b;
  --plum: #561b38;
  --plum-soft: #7c4c65;
  --sage: #68766b;
  --shadow: 0 24px 70px rgba(45, 38, 30, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.8), rgba(246, 245, 242, 0.94)),
    var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(29, 27, 24, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 27, 24, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(246, 245, 242, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 216, 207, 0.7);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  color: var(--plum);
  flex: 0 0 auto;
}

.wordmark {
  width: clamp(152px, 14.8vw, 192px);
  height: auto;
  mix-blend-mode: multiply;
}

nav {
  gap: 6px;
}

nav a {
  padding: 9px 11px;
  border-radius: 999px;
  color: rgba(111, 106, 98, 0.9);
  font-size: 0.82rem;
  font-weight: 450;
  transition: background 180ms ease, color 180ms ease;
}

nav a:hover {
  background: rgba(255, 253, 248, 0.86);
  color: var(--plum);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
  min-height: calc(100svh - 72px);
  padding: 86px 0 74px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 460;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 5.55vw, 5.8rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 18px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  border-color: rgba(86, 27, 56, 0.18);
  background: linear-gradient(180deg, #642342, var(--plum));
  color: #fffdf8;
  box-shadow: 0 10px 24px rgba(86, 27, 56, 0.14);
}

.button-secondary {
  border-color: rgba(29, 27, 24, 0.16);
  background: rgba(255, 253, 248, 0.72);
  color: var(--plum);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  position: absolute;
  inset: 18px -16px -18px 16px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(29, 27, 24, 0.1);
  background: var(--paper-deep);
}

.hero-media img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(29, 27, 24, 0.12);
  box-shadow: var(--shadow);
}

.intro-band {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.48);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 88px);
  padding: 44px 0;
}

.intro-grid p {
  margin-bottom: 0;
  color: var(--accent-dark);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.35vw, 2rem);
  line-height: 1.22;
}

.services {
  padding: 116px 0 100px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 52px;
}

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

.service-card {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.36);
}

.service-index {
  margin-bottom: 76px;
  color: var(--plum-soft);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.18rem;
}

.service-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.about {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(34px, 7vw, 98px);
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.about-kicker {
  position: sticky;
  top: 104px;
  align-self: start;
}

.stat {
  margin: 0;
  color: var(--plum);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.about-copy h2 {
  margin-bottom: 34px;
}

.about-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.contact {
  padding: 38px 0 76px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 28px 56px;
  align-items: end;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(29, 27, 24, 0.14);
  background: var(--panel);
  box-shadow: 0 18px 52px rgba(45, 38, 30, 0.08);
}

.contact-panel .eyebrow {
  grid-row: span 3;
  margin-bottom: 0;
}

.contact-panel h2 {
  max-width: 800px;
}

.contact-panel p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-panel .button {
  justify-self: start;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .about,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-media {
    max-width: 640px;
  }

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

  .about-kicker {
    position: static;
  }

  .contact-panel .eyebrow {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(100% - 28px, 1180px);
    align-items: flex-start;
    padding: 14px 0;
  }

  nav {
    gap: 0;
  }

  nav a {
    padding: 8px 6px;
    font-size: 0.72rem;
  }

  .wordmark {
    width: 142px;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    gap: 36px;
    padding: 54px 0 52px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

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

  .hero-media::before {
    inset: 12px -8px -12px 8px;
  }

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

  .services,
  .about {
    padding: 76px 0;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 36px;
  }

  .service-card {
    min-height: 250px;
    padding: 24px;
  }

  .service-index {
    margin-bottom: 52px;
  }

  .contact {
    padding-bottom: 42px;
  }
}
