:root {
  --ink: #171717;
  --muted: #67615d;
  --paper: #f8f4ee;
  --white: #fffdfa;
  --line: #ded4c7;
  --red: #9e111a;
  --red-dark: #5f090f;
  --charcoal: #272727;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(222, 212, 199, 0.75);
  background: rgba(248, 244, 238, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 14px;
  font-weight: 800;
}

nav a:hover {
  color: var(--red);
}

section {
  padding: 88px clamp(20px, 5vw, 64px);
}

section[id] {
  scroll-margin-top: 90px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  min-height: calc(100vh - 83px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.hero p,
.profile p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 900;
}

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

.button.secondary {
  border-color: var(--ink);
}

.hero-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: min(68vh, 680px);
  object-fit: cover;
  object-position: center top;
}

.services {
  background: var(--white);
}

.section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
}

.service-grid span {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.service-grid p {
  color: var(--muted);
}

.profile {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.62fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.profile > div {
  max-width: 680px;
}

.profile img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact {
  color: var(--white);
  background: var(--charcoal);
}

.contact .eyebrow {
  color: #ffb3b8;
}

.contact p {
  max-width: 620px;
  color: rgba(255, 253, 250, 0.72);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

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

  .hero {
    min-height: 0;
  }

  .hero-image img {
    height: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 18px;
  }

  section {
    padding: 64px 18px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
