:root {
  --bg: #f5f0e8;
  --ink: #171512;
  --muted: #716a60;
  --line: rgba(23, 21, 18, 0.16);
  --accent: #8d5d43;
  --mauve: #5a263d;
  --panel: #fffaf1;
  font-family:
    Avenir, "Avenir Next", "Avenir Next LT Pro", Montserrat, ui-sans-serif,
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-underline-offset: 5px;
}

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

.holding-page {
  width: min(720px, calc(100% - 40px));
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 30px;
  margin: 0 auto;
  padding: 24px 0 30px;
}

.topbar,
.summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.topbar {
  justify-content: flex-end;
}

.brand-block {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.mark {
  color: var(--mauve);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.email {
  color: var(--muted);
  font-weight: 760;
}

.hero {
  display: grid;
  gap: clamp(28px, 5vw, 46px);
  align-items: start;
}

.hero-copy {
  padding-top: 26px;
  padding-bottom: 0;
  text-align: center;
}

.hero-copy::before {
  content: "";
  display: block;
  width: min(160px, 34%);
  height: 1px;
  margin: 0 auto 28px;
  background: var(--line);
}

h1,
p,
figure {
  margin-top: 0;
}

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.status {
  max-width: 570px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  line-height: 1.5;
}

.hero-image {
  width: 100%;
  margin-bottom: 0;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: 50% 44%;
}

figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.82rem;
}

.summary {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

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

.service-list p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 820;
  line-height: 1.32;
}

.service-list p:nth-child(even) {
  text-align: right;
}

.contact {
  min-width: 250px;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.contact p {
  margin-bottom: 12px;
}

.contact span {
  color: var(--accent);
  font-weight: 850;
}

.contact a {
  color: var(--ink);
  font-weight: 880;
}

@media (max-width: 920px) {
  .summary {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .holding-page {
    width: min(100% - 28px, 1240px);
    gap: 26px;
    padding-top: 18px;
  }

  .topbar {
    justify-content: flex-end;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.8rem);
  }

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

  .service-list p:nth-child(even) {
    text-align: left;
  }

  .contact {
    min-width: 0;
  }
}
