:root {
  --ink: #0a0a09;
  --paper: #f3efe6;
  --gold: #b99a57;
  --muted: #aaa49a;
  --line: #2a2926
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--ink);
  color: #f4f0e8;
  font-family: Arial,sans-serif
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

.site-header {
  height: 86px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
  background: #090909
}

.brand {
  font: 25px Georgia,serif;
  letter-spacing: .12em;
  margin-right: auto
}

.brand span {
  display: block;
  color: var(--gold);
  font: 8px Arial,sans-serif;
  letter-spacing: .25em;
  margin-top: 5px
}

.site-nav {
  display: flex;
  gap: 25px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .13em
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #444;
  color: white;
  padding: 9px
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: .8fr 1.7fr;
  align-items: stretch
}

.hero-copy {
  padding: 10vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px
}

.hero h1,.display {
  font: clamp(48px,6vw,105px)/.92 Georgia,serif;
  font-weight: 400;
  margin: .25em 0
}

.hero-art {
  position: relative;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 4vw
}

.hero-art img {
  max-height: 72vh;
  box-shadow: 0 25px 70px #000
}

.cta {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 13px 20px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .16em;
  margin-top: 22px;
  width: max-content
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.category-strip a {
  padding: 28px;
  border-right: 1px solid var(--line);
  min-height: 155px
}

.category-strip img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  float: left;
  margin-right: 18px
}

.category-strip h3 {
  font: 20px Georgia;
  margin: 10px 0 5px
}

.section {
  padding: 90px 5vw
}

.section.light {
  background: var(--paper);
  color: #111
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px
}

.section h2 {
  font: clamp(38px,5vw,72px) Georgia;
  margin: 0;
  font-weight: 400
}

.works {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px
}

.work-card img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: contain;
  background: #121212;
  padding: 18px
}

.light .work-card img {
  background: #e7e0d3
}

.work-card h3 {
  font: 25px Georgia;
  font-weight: 400;
  margin: 15px 0 5px
}

.meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em
}

.light .meta {
  color: #676158
}

.inspace {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 50px;
  align-items: center
}

.wall {
  background: #d9d0c1;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px
}

.wall img {
  width: 62%;
  box-shadow: 0 15px 30px #0005;
  border: 10px solid #171717;
  outline: 2px solid #b18d4f
}

.series-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px
}

.quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.quad img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover
}

.object-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center
}

.object-hero img {
  max-height: 650px;
  margin: auto
}

.page-hero {
  padding: 90px 5vw 50px;
  border-bottom: 1px solid var(--line)
}

.page-hero h1 {
  font: clamp(55px,8vw,120px) Georgia;
  margin: 0;
  font-weight: 400
}

.detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 55px;
  padding: 70px 5vw
}

.detail .main-art {
  max-height: 75vh;
  margin: auto;
  object-fit: contain
}

.specs {
  border-top: 1px solid #444;
  margin-top: 30px
}

.specs div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  font-size: 13px
}

.form {
  max-width: 700px
}

.form input,.form textarea {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 1px solid #777;
  color: inherit;
  margin: 7px 0
}

.form textarea {
  min-height: 150px
}

.site-footer {
  padding: 55px 5vw 25px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px
}

.site-footer strong {
  font: 24px Georgia;
  letter-spacing: .15em
}

.site-footer p,.site-footer small {
  color: #999;
  font-size: 12px
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  text-transform: uppercase;
  font-size: 10px
}

.site-footer small {
  grid-column: 1/-1
}

.placeholder-note {
  padding: 12px 5vw;
  background: #16140f;
  color: #c6ad75;
  font-size: 11px;
  text-align: center
}

@media(max-width:800px) {
  .site-header {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding: 20px
  }

  .nav-toggle {
    display: block
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 15px 0
  }

  .site-nav.open {
    display: flex
  }

  .hero,.inspace,.series-layout,.object-hero,.detail {
    grid-template-columns: 1fr
  }

  .hero-copy {
    padding: 60px 6vw
  }

  .hero-art {
    min-height: 55vh
  }

  .category-strip {
    grid-template-columns: 1fr 1fr
  }

  .works {
    grid-template-columns: 1fr
  }

  .section {
    padding: 60px 6vw
  }

  .wall {
    min-height: 340px;
    padding: 45px
  }

  .site-footer {
    grid-template-columns: 1fr
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap
  }

}

/* T. Pol Arts identity */
:root {
  --ink: #050505;
  --paper: #fafaf8;
  --gold: #c99a3d;
  --warm: #f5f2eb;
  --charcoal: #242424
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px
}

.brand-lockup img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%
}

.brand-lockup span {
  display: block;
  margin: 0;
  color: var(--warm);
  font: 16px Georgia,serif;
  letter-spacing: .16em
}

.footer-brand {
  max-width: 360px
}

.footer-logo {
  width: 300px;
  max-width: 100%;
  margin-bottom: 18px
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center
}

.about-grid p {
  font: 18px/1.8 Georgia,serif;
  color: #3b3832
}

.about-logo {
  width: 100%;
  max-width: 520px;
  margin: auto
}

.site-footer small {
  color: #c7a85e
}

.image-rights {
  font-size: 10px;
  letter-spacing: .08em
}

@media(max-width:800px) {
  .brand-lockup img {
    width: 44px;
    height: 44px
  }

  .brand-lockup span {
    font-size: 14px
  }

  .about-grid {
    grid-template-columns: 1fr
  }

  .footer-logo {
    width: 240px
  }

}
