:root {
  --ink: #161412;
  --text: #292423;
  --muted: #5f5550;
  --surface: #f5f4ef;
  --surface-alt: #ece8e1;
  --line: rgba(22, 20, 18, 0.14);
  --accent: #8d3c24;
  --accent-2: #b85b36;
  --accent-soft: rgba(141, 60, 36, 0.18);
  --white: #fbfaf6;
  --shell: min(calc(100% - 56px), 1180px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: linear-gradient(170deg, var(--surface-alt) 0%, var(--surface) 34%, #f3f1eb 100%);
  font-family: "Satoshi", "Outfit", "Geist", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

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

h1 {
  max-width: 14ch;
  font-size: clamp(2.15rem, 3.95vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 18px;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(22, 20, 18, 0.09);
  background: rgba(245, 244, 239, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 200ms ease, background 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 246, 0.97);
  box-shadow: 0 12px 32px rgba(22, 20, 18, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  min-width: 0;
  overflow: hidden;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(141, 60, 36, 0.24);
}

.brand-name {
  font-size: 1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.site-nav a {
  position: relative;
  padding: 27px 0 24px;
  font-size: 0.92rem;
  font-weight: 760;
  color: rgba(22, 20, 18, 0.7);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-weight: 850;
  font-size: 0.86rem;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  box-shadow: 0 12px 26px rgba(22, 20, 18, 0.2);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(22, 20, 18, 0.16);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
}

.menu-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero,
.section {
  padding: clamp(72px, 8.5vw, 116px) 0;
}

.hero {
  position: relative;
  padding-top: 84px;
  overflow: hidden;
}

.hero-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--accent);
}

.hero-lead {
  max-width: 62ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.contact-note:hover,
.contact-note:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 34px rgba(141, 60, 36, 0.23);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid rgba(22, 20, 18, 0.22);
  background: rgba(255, 255, 255, 0.62);
}

.button-secondary:hover {
  background: var(--white);
  border-color: rgba(141, 60, 36, 0.52);
}

.hero-bullets {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
}

.hero-bullets div {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 20, 18, 0.14);
  border-radius: 12px;
}

.hero-bullets dt {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-bullets dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-media {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(22, 20, 18, 0.24);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 10 / 11;
  object-fit: cover;
  border-radius: 22px;
}

.hero-chip,
.hero-card {
  position: absolute;
  left: 14px;
  right: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(15, 13, 11, 0.83);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-chip {
  top: 16px;
}

.hero-chip strong {
  display: block;
  margin-bottom: 4px;
}

.hero-chip span,
.hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-card {
  bottom: 16px;
}

.hero-card .label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #f4bca6;
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 36px;
}

.section-head p:not(.eyebrow) {
  margin-bottom: 0;
  max-width: 72ch;
  color: var(--muted);
}

.services-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 12px;
}

.service-main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 22px;
  color: var(--white);
  background: var(--ink);
}

.service-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.service-main::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(22, 20, 18, 0), rgba(22, 20, 18, 0.74));
}

.service-main > div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.service-main h3 {
  color: var(--white);
}

.service-main p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article,
.proof article,
.contact-panel,
.site-footer nav,
.contact-note {
  border-radius: 16px;
}

.service-list article {
  min-height: 124px;
  padding: 20px;
  border: 1px solid rgba(22, 20, 18, 0.14);
  background: #f8f7f2;
}

.index-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  border-radius: 999px;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 860;
  border: 1px solid var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.service-list p,
.process-steps p,
.proof-copy p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.process {
  background: #f0ede5;
}

.process-steps {
  width: var(--shell);
  margin: 30px auto 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 18px;
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 820;
}

.proof {
  background: #f7f6f1;
}

.proof-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(270px, 0.9fr);
  gap: 18px;
  align-items: center;
}

.proof-copy p {
  max-width: 54ch;
}

.proof-cards {
  display: grid;
  gap: 12px;
}

.proof article {
  display: grid;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  min-height: 82px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 17px 20px;
  background: var(--white);
  border: 1px solid var(--line);
}

.proof strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.proof span {
  text-align: right;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact {
  padding-bottom: 110px;
}

.contact-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.contact-photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 52px rgba(22, 20, 18, 0.2);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.contact-panel {
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(22, 20, 18, 0.12);
  box-shadow: 0 16px 52px rgba(22, 20, 18, 0.12);
}

.contact-panel p {
  max-width: 56ch;
}

.contact-note {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--ink);
  border: 1px solid rgba(22, 20, 18, 0.22);
  background: #fdfdfb;
  font-weight: 780;
}

address {
  margin-top: 28px;
  color: var(--text);
  font-style: normal;
  line-height: 1.55;
}

.site-footer {
  border-top: 1px solid rgba(22, 20, 18, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  color: rgba(22, 20, 18, 0.72);
  font-size: 0.87rem;
  background: rgba(252, 252, 250, 0.94);
}

.site-footer nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  font-weight: 760;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

@media (max-width: 1120px) {
  .hero-grid,
  .services-grid,
  .proof-grid,
  .contact-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 540px;
    justify-self: center;
  }

  .services-grid {
    gap: 14px;
  }

  .service-main,
  .service-main img {
    min-height: 390px;
  }

  .process-steps,
  .process-steps article {
    gap: 14px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(calc(100% - 40px), 1180px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 74px;
    padding: 0 18px;
  }

  .site-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(22, 20, 18, 0.14);
    border-radius: 20px;
    background: rgba(245, 244, 239, 0.97);
    box-shadow: 0 24px 66px rgba(22, 20, 18, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta,
  .hero-chip,
  .hero-card {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .contact-note {
    width: 100%;
  }

  .hero-media {
    width: 100%;
  }

  .hero-media img {
    aspect-ratio: 16/11;
  }

  .service-main {
    min-height: 360px;
  }

  .service-main img {
    min-height: 360px;
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

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

  .brand-name {
    font-size: 0.92rem;
  }

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

  .proof article {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .proof span {
    text-align: left;
  }

  .hero,
  .section,
  .contact {
    padding-top: 64px;
  }

  .contact-photo img {
    min-height: 300px;
  }

  .contact-panel {
    padding: 26px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
