:root {
  --ink: #172027;
  --muted: #5e6872;
  --paper: #f8f6f0;
  --surface: #ffffff;
  --line: #ded8cc;
  --brand: #7b2636;
  --brand-dark: #501822;
  --accent: #b78a3b;
  --teal: #1f6f68;
  --shadow: 0 18px 45px rgba(23, 32, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 164px;
  padding: 18px clamp(22px, 4vw, 72px);
  background: rgba(248, 246, 240, 0.98);
  border-bottom: 1px solid rgba(222, 216, 204, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(280px, 23vw, 430px);
  height: auto;
  max-height: 132px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--brand);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 32, 39, 0.9) 0%, rgba(23, 32, 39, 0.66) 42%, rgba(23, 32, 39, 0.18) 100%),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1800&q=82") center / cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 84px) 96px;
  color: #fff;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 10vw, 7.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.intro-band div {
  min-height: 142px;
  padding: 28px clamp(18px, 3vw, 40px);
  background: var(--surface);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 8px;
  color: var(--brand);
}

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

.section,
.process,
.contact-section {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

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

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 310px;
  padding: clamp(26px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: var(--teal);
  border-radius: 6px;
  font-size: 1.45rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.service-card p,
.contact-copy p,
.timeline p {
  color: var(--muted);
}

.process {
  background: #ede8dc;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  padding-top: 22px;
  border-top: 3px solid var(--brand);
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 700;
}

.timeline strong {
  display: block;
  font-size: 1.2rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--surface);
}

.contact-copy {
  align-self: start;
}

.contact-copy > p {
  max-width: 560px;
}

.contact-details {
  display: grid;
  gap: 4px;
  margin: 32px 0 24px;
  font-style: normal;
}

.contact-details a {
  color: var(--brand);
  text-decoration: none;
}

.company-meta {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.company-meta div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.company-meta dt {
  color: var(--muted);
}

.company-meta dd {
  margin: 0;
  font-weight: 700;
}

.intake-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-row {
  display: grid;
  gap: 18px;
}

.form-row.two {
  grid-template-columns: repeat(2, 1fr);
}

.form-row.street {
  grid-template-columns: minmax(0, 1fr) 150px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

label span {
  color: var(--muted);
  font-weight: 400;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfc7ba;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(183, 138, 59, 0.25);
  border-color: var(--accent);
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--brand);
  font-weight: 700;
}

.submit-button {
  width: fit-content;
  min-width: 150px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 138px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin-bottom: 64px;
  }

  .intro-band,
  .service-grid,
  .timeline,
  .contact-section,
  .form-row.two,
  .form-row.street {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .main-nav {
    display: none;
  }

  .brand-logo {
    width: min(300px, 86vw);
    max-height: 118px;
  }

  .site-header {
    justify-content: center;
    gap: 10px;
  }

  .hero {
    min-height: 590px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

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

  .button,
  .submit-button {
    width: 100%;
  }

  .company-meta div {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
