:root {
  --forest: #234236;
  --forest-deep: #132b24;
  --linen: #f5f0e6;
  --cream: #fff9f0;
  --sage: #a8b59a;
  --bark: #6b5844;
  --gold: #b89b5e;
  --ink: #22342d;
  --muted: #6f665d;
  --line: rgba(35, 66, 54, 0.18);
  --shadow: 0 24px 70px rgba(22, 31, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Source Sans 3", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 240, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-mark span,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
}

.brand-mark span {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  color: var(--bark);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav a,
.text-link {
  text-decoration-color: rgba(184, 155, 94, 0.55);
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: 84svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background: var(--forest-deep);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(19, 43, 36, 0.92), rgba(19, 43, 36, 0.62) 43%, rgba(19, 43, 36, 0.08)),
    linear-gradient(0deg, rgba(19, 43, 36, 0.72), transparent 45%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  width: min(720px, 100%);
  color: var(--cream);
  padding-bottom: clamp(14px, 4vh, 44px);
}

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

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

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 10vw, 7.8rem);
  line-height: 0.88;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5.8vw, 5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1.04;
}

.lede {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
}

.text-link {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.intro-band {
  display: grid;
  place-items: center;
  min-height: 28svh;
  padding: 48px 24px;
  background: var(--linen);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.intro-band p {
  max-width: 860px;
  margin: 0;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1.05;
}

.section {
  padding: clamp(68px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 56px;
}

.section-heading p:last-child {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-work {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto clamp(56px, 8vw, 104px);
}

.feature-work figure {
  margin: 0;
}

.feature-work img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 540px;
}

.feature-copy p {
  color: var(--muted);
}

.work-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.work-details div {
  min-width: 0;
}

dt {
  color: var(--bark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  max-width: 1180px;
  margin: 0 auto;
}

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

.artwork img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  background: var(--linen);
}

.artwork div {
  padding: 18px 0 4px;
}

.artwork h3 {
  margin-bottom: 4px;
  color: var(--forest);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.artwork p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.artist-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  background: var(--forest);
  color: var(--cream);
}

.artist-band .eyebrow {
  color: var(--sage);
}

.artist-text {
  max-width: 760px;
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
}

.artist-text p:last-child {
  margin-bottom: 0;
}

.inquiries {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  background: var(--linen);
}

.inquiries div {
  max-width: 720px;
}

.inquiries p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  color: var(--cream);
  background: var(--forest);
  border: 1px solid var(--forest);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: rgba(255, 249, 240, 0.78);
  background: var(--forest-deep);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 82svh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(19, 43, 36, 0.9), rgba(19, 43, 36, 0.5) 58%, rgba(19, 43, 36, 0.18)),
      linear-gradient(90deg, rgba(19, 43, 36, 0.8), rgba(19, 43, 36, 0.18));
  }

  .section-heading,
  .feature-work,
  .artist-band {
    grid-template-columns: 1fr;
  }

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

  .inquiries,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand-mark span {
    font-size: 0.9rem;
    white-space: normal;
  }

  nav {
    gap: 8px 16px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 78svh;
    padding: 28px 18px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.3rem);
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .work-details {
    grid-template-columns: 1fr;
  }
}
