:root {
  color-scheme: light;
  --ink: #34291f;
  --muted: #796e61;
  --paper: #fbf7ef;
  --cream: #f3ebdd;
  --coral: #df755d;
  --yellow: #f2c66d;
  --green: #a6b78a;
  --blue: #91b9c0;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.page-shell {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 88px;
  border-bottom: 1px solid #e7dfd3;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.header-note,
.eyebrow,
.gallery-heading span,
.site-footer {
  color: var(--muted);
  font-size: 12px;
}

.hero {
  display: grid;
  min-height: 565px;
  align-items: center;
  gap: 36px;
  padding-block: 64px 76px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 14vw, 118px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

h1 span {
  color: var(--coral);
  font-style: italic;
}

.intro {
  margin: 28px 0 0;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.supporting-copy {
  max-width: 360px;
  margin: 12px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--coral);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.contact-link span {
  color: var(--coral);
  font-size: 16px;
}

.hero-art {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1 / 0.88;
  justify-self: center;
  overflow: hidden;
  border-radius: 48% 52% 42% 58% / 46% 43% 57% 54%;
  background: #f1e5d2;
}

.sun {
  position: absolute;
  top: 13%;
  right: 15%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
}

.paint-shape {
  position: absolute;
  right: 17%;
  bottom: -4%;
  width: 53%;
  height: 67%;
  transform: rotate(-15deg);
  border-radius: 54% 46% 22% 78% / 44% 42% 58% 56%;
  background: var(--coral);
}

.paint-shape::after {
  position: absolute;
  top: 20%;
  left: -27%;
  width: 60%;
  height: 63%;
  border-radius: 60% 40% 50% 50%;
  background: var(--green);
  content: "";
}

.art-line {
  position: absolute;
  top: 21%;
  left: 24%;
  width: 32%;
  height: 55%;
  transform: rotate(34deg);
  border: 13px solid var(--blue);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 52% 44% 50% 45%;
}

.art-dot {
  position: absolute;
  top: 28%;
  left: 18%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--coral);
}

.art-caption {
  position: absolute;
  bottom: 12%;
  left: 12%;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  transform: rotate(-7deg);
}

.gallery {
  padding-block: 28px 70px;
  border-top: 1px solid #e7dfd3;
}

.gallery-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.gallery-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.gallery-heading span {
  letter-spacing: 0.08em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gallery-card {
  margin: 0;
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25;
  border-radius: 5px;
  object-fit: cover;
}

.gallery-card figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.gallery-card--wide {
  grid-column: 1 / -1;
}

.gallery-card--wide img {
  aspect-ratio: 1.8;
}

.site-footer {
  min-height: 68px;
  border-top: 1px solid #e7dfd3;
}

.site-footer span:last-child span {
  padding-left: 5px;
  color: var(--coral);
}

@media (min-width: 720px) {
  .page-shell {
    width: min(100% - 80px, 1200px);
  }

  .hero {
    grid-template-columns: 1fr 0.95fr;
    gap: 52px;
  }

  .hero-art {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 18px;
  }

  .gallery-card--wide {
    grid-column: auto;
  }

  .gallery-card img,
  .gallery-card--wide img {
    aspect-ratio: 1.15;
  }
}

@media (min-width: 1100px) {
  .hero {
    min-height: 610px;
    padding-block: 76px 90px;
  }

  .gallery {
    padding-bottom: 86px;
  }

  .gallery-grid {
    gap: 24px;
  }
}
