:root {
  --red: #ae0000;
  --gray-light: #a9a5a2;
  --gray-mid: #807c79;
  --charcoal: #302728;
  --off-white: #f2f1ef;
  --ink: #181515;
  --line: rgba(48, 39, 40, 0.16);
  --soft-line: rgba(242, 241, 239, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
}

p {
  margin: 0;
}

.hero,
.section,
.contact-section,
.site-footer {
  width: 100%;
}

.site-nav,
.hero-layout,
.section-grid,
.services-layout,
.contact-wrap,
.site-footer p {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 56px;
  background:
    linear-gradient(180deg, rgba(169, 165, 162, 0.18), transparent 24%),
    linear-gradient(135deg, var(--off-white) 0%, #ece9e6 100%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--off-white);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.15rem;
}

.brand-copy small {
  color: rgba(24, 21, 21, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

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

.nav-links a {
  font-size: 0.95rem;
  color: rgba(24, 21, 21, 0.82);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: end;
}

.hero-copy {
  padding: 48px 0 24px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--red);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5.7rem);
  max-width: 11ch;
}

.hero-text {
  max-width: 38rem;
  margin-top: 22px;
  font-size: 1.08rem;
  color: rgba(24, 21, 21, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
}

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

.button.secondary {
  background: transparent;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-stats article {
  min-width: 140px;
}

.hero-stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.hero-stats span {
  color: rgba(24, 21, 21, 0.68);
  font-size: 0.92rem;
}

.hero-media img {
  height: min(78vh, 760px);
  object-fit: cover;
  border-radius: 28px;
}

.image-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  width: 100%;
  padding: 0 32px 72px;
}

.band-image {
  margin: 0;
}

.band-image img {
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
}

.band-image.large img {
  height: 520px;
}

.section {
  padding: 0 0 84px;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: start;
}

.section-heading.narrow {
  max-width: 36rem;
}

.section-heading h2,
.service-copy h2,
.story-panel h2,
.contact-intro h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-copy {
  display: grid;
  gap: 18px;
  color: rgba(24, 21, 21, 0.8);
  font-size: 1.04rem;
}

.categories-section {
  background: linear-gradient(180deg, rgba(169, 165, 162, 0.12), transparent 100%);
  padding-top: 76px;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.category-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 90px;
  padding: 0 0;
  border-bottom: 1px solid var(--line);
}

.category-list span {
  color: rgba(24, 21, 21, 0.42);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.category-list h3 {
  font-size: 1.45rem;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.service-copy {
  max-width: 38rem;
}

.service-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(24, 21, 21, 0.8);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.service-photo img {
  height: 640px;
  object-fit: cover;
  border-radius: 28px;
}

.story-section {
  padding-bottom: 96px;
}

.story-panel {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  padding: 64px;
  background: var(--charcoal);
  color: var(--off-white);
  border-radius: 28px;
}

.story-panel .eyebrow {
  color: rgba(242, 241, 239, 0.76);
}

.story-panel h2 {
  max-width: 18ch;
}

.story-panel p:last-child {
  max-width: 48rem;
  margin-top: 22px;
  color: rgba(242, 241, 239, 0.82);
}

.contact-section {
  background: linear-gradient(180deg, rgba(128, 124, 121, 0.16), rgba(48, 39, 40, 0.02));
  padding: 84px 0;
}

.contact-intro {
  max-width: 44rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.contact-card {
  padding: 28px;
  background: rgba(242, 241, 239, 0.8);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.contact-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: rgba(24, 21, 21, 0.78);
}

.site-footer {
  padding: 24px 0 36px;
}

.site-footer p {
  color: rgba(24, 21, 21, 0.6);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  .hero-layout,
  .section-grid,
  .services-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-band {
    grid-template-columns: 1fr;
  }

  .band-image.large img,
  .band-image img,
  .service-photo img {
    height: 360px;
  }

  .category-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav,
  .hero-layout,
  .section-grid,
  .services-layout,
  .contact-wrap,
  .site-footer p {
    width: min(100%, calc(100% - 32px));
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-media img {
    height: 380px;
  }

  .image-band {
    padding: 0 16px 56px;
  }

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

  .categories-section {
    padding-top: 56px;
  }

  .story-panel {
    width: min(100%, calc(100% - 32px));
    padding: 36px 24px;
  }

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