:root {
  --ink: #10100f;
  --muted: #68645f;
  --paper: #f6f4ef;
  --panel: #fffcf7;
  --line: #d8d3ca;
  --rust: #b4412e;
  --ochre: #d99b2b;
  --teal: #0d5c61;
  --plum: #352135;
  --shadow: 0 24px 70px rgba(16, 16, 15, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(246, 244, 239, 0.82);
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 64px);
  position: sticky;
  top: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
  z-index: 10;
}

.site-header[data-elevated="true"] {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(23, 19, 15, 0.08);
}

.brand,
.main-nav,
.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
}

.brand {
  font-size: 14px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--panel);
  display: inline-flex;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.main-nav {
  color: var(--muted);
  font-size: 13px;
  gap: clamp(14px, 3vw, 34px);
  justify-content: center;
  text-transform: uppercase;
}

.main-nav a,
.text-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--rust);
}

.icon-link {
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: grid;
  font-size: 13px;
  font-weight: 700;
  height: 42px;
  place-items: center;
  width: 42px;
}

main {
  overflow: hidden;
}

.hero {
  align-items: end;
  background: #a74236;
  color: var(--panel);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(20px, 5vw, 70px);
  min-height: calc(100vh - 72px);
  padding: clamp(92px, 12vw, 150px) clamp(18px, 4vw, 64px) 0;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, rgba(16, 16, 15, 0.5), rgba(16, 16, 15, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-art {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.42fr);
  min-height: 580px;
  position: relative;
}

.canvas,
.artwork,
.featured-image {
  background-blend-mode: multiply;
  overflow: hidden;
  position: relative;
}

.canvas::before,
.artwork::before,
.featured-image::before,
.canvas::after,
.artwork::after,
.featured-image::after {
  content: "";
  position: absolute;
}

.canvas-large {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 48% 22%, rgba(247, 243, 237, 0.92) 0 6%, transparent 7%),
    radial-gradient(ellipse at 48% 28%, #4f241d 0 7%, transparent 8%),
    linear-gradient(115deg, transparent 0 34%, rgba(23, 19, 15, 0.54) 35% 43%, transparent 44%),
    linear-gradient(140deg, #d7a646 0 18%, #963f2b 19% 49%, #185e66 50% 76%, #f0d9a5 77%);
  box-shadow: var(--shadow);
  max-width: 520px;
  width: 78%;
}

.canvas-large::before {
  background:
    radial-gradient(ellipse at center, rgba(247, 243, 237, 0.95) 0 42%, rgba(247, 243, 237, 0) 44%),
    linear-gradient(90deg, rgba(21, 72, 75, 0.86), rgba(166, 70, 45, 0.72));
  height: 48%;
  left: 24%;
  top: 26%;
  transform: rotate(-7deg);
  width: 48%;
}

.canvas-large::after {
  background: rgba(23, 19, 15, 0.72);
  bottom: 14%;
  height: 24%;
  left: 28%;
  transform: skewX(-18deg);
  width: 46%;
}

.canvas-small {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(circle at 58% 25%, #f4e2bf 0 8%, transparent 9%),
    linear-gradient(145deg, #214f53 0 28%, #e0a239 29% 54%, #7b2d36 55% 78%, #f3dec1 79%);
  bottom: 2%;
  box-shadow: var(--shadow);
  max-width: 250px;
  position: absolute;
  right: 0;
  width: 38%;
}

.canvas-small::before {
  background: rgba(23, 19, 15, 0.62);
  height: 52%;
  left: 24%;
  top: 30%;
  transform: rotate(18deg);
  width: 38%;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

.hero-portrait {
  align-self: end;
  display: flex;
  justify-content: center;
  min-height: 0;
  position: relative;
  z-index: 1;
}

.hero-portrait img {
  display: block;
  height: min(78vh, 820px);
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.eyebrow,
.section-kicker {
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
}

h1 {
  font-size: clamp(58px, 10.5vw, 138px);
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(38px, 7vw, 86px);
  margin-bottom: 22px;
}

h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-copy p,
.featured-copy p,
.about p,
.contact p,
.announcement p,
.tiles p {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
}

.hero-copy p {
  color: rgba(255, 252, 247, 0.84);
}

.button {
  border-radius: 0;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  text-transform: uppercase;
}

.button-primary {
  background: var(--ink);
  color: var(--panel);
}

.button-secondary {
  border: 1px solid var(--ink);
}

.hero .button-primary {
  background: var(--panel);
  color: var(--ink);
}

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

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.announcement,
.featured,
.works,
.studio-note,
.about,
.statement,
.collector-note,
.tiles,
.contact {
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 64px);
}

.announcement {
  align-items: start;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--panel);
  display: grid;
  gap: clamp(18px, 4vw, 56px);
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr) auto;
}

.announcement > .section-kicker {
  white-space: nowrap;
}

.announcement p {
  color: var(--muted);
  margin-bottom: 0;
}

.announcement h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 56px);
  margin-bottom: 12px;
}

.announcement .text-link {
  color: var(--ink);
}

.featured {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
}

.featured-image {
  aspect-ratio: 5 / 6;
  background:
    radial-gradient(circle at 48% 19%, #f8e2bd 0 9%, transparent 10%),
    radial-gradient(ellipse at 47% 45%, rgba(21, 73, 74, 0.95) 0 20%, transparent 21%),
    linear-gradient(120deg, #e0ab3d 0 28%, #a6482e 29% 48%, #f6dfb9 49% 68%, #203f46 69%);
  box-shadow: none;
  min-height: 520px;
}

.featured-image::before {
  background: rgba(23, 19, 15, 0.7);
  bottom: 9%;
  height: 32%;
  left: 26%;
  transform: rotate(-11deg);
  width: 42%;
}

.photo-work {
  background-position: center;
  background-size: cover;
}

.photo-work::before,
.photo-work::after {
  display: none;
}

.featured-work-image {
  background-image: url("images/new-works-extracted/new-work-01.jpg");
}

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

.details div {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-note {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 0;
}

.art-grid,
.tiles {
  display: grid;
  column-gap: 24px;
  row-gap: clamp(44px, 7vw, 86px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.art-card {
  background: var(--paper);
  border: 0;
  border-top: 1px solid var(--line);
}

.art-card div:last-child {
  padding: 18px 0 0;
}

.art-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.art-status {
  color: var(--rust) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}

.price {
  color: var(--ink) !important;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.4;
  margin-top: 12px !important;
}

.artwork {
  aspect-ratio: 1 / 1.18;
}

.artwork-one {
  background:
    radial-gradient(circle at 55% 22%, #f4d19e 0 8%, transparent 9%),
    linear-gradient(135deg, #8f3127 0 24%, #1c6167 25% 54%, #d69b31 55% 78%, #f1d8b0 79%);
}

.artwork-two {
  background:
    radial-gradient(circle at 41% 20%, #f7dfb7 0 9%, transparent 10%),
    linear-gradient(150deg, #183e5f 0 31%, #f1cf7e 32% 50%, #4d3148 51% 72%, #d8643d 73%);
}

.artwork-three {
  background:
    radial-gradient(circle at 50% 24%, #f6dec0 0 8%, transparent 9%),
    linear-gradient(120deg, #f2c55b 0 22%, #2d6b60 23% 47%, #12100e 48% 62%, #be5132 63%);
}

.artwork-four {
  background:
    radial-gradient(circle at 47% 21%, #ffe3b4 0 8%, transparent 9%),
    linear-gradient(140deg, #653452 0 24%, #d58e2e 25% 53%, #f2dfc6 54% 68%, #1c5d61 69%);
}

.gallery-work-one {
  background-image: url("images/new-works-extracted/new-work-07.jpg");
}

.gallery-work-two {
  background-image: url("images/new-works-extracted/new-work-18.jpg");
}

.gallery-work-three {
  background-image: url("images/new-works-extracted/new-work-06.jpg");
}

.gallery-work-four {
  background-image: url("images/new-works-extracted/new-work-13.jpg");
}

.gallery-work-five {
  background-image: url("images/new-works-extracted/new-work-14.jpg");
}

.gallery-work-six {
  background-image: url("images/new-works-extracted/new-work-08.jpg");
}

.gallery-work-seven {
  background-image: url("images/new-works-extracted/new-work-21.jpg");
}

.gallery-work-eight {
  background-image: url("images/new-works-extracted/new-work-23.jpg");
}

.artwork::before {
  background: rgba(23, 19, 15, 0.65);
  height: 46%;
  left: 30%;
  top: 34%;
  transform: rotate(9deg);
  width: 36%;
}

.about {
  background: var(--ink);
  color: var(--panel);
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
}

.about h2 {
  margin-bottom: 0;
}

.about p {
  color: rgba(255, 252, 247, 0.74);
}

.statement {
  background: var(--panel);
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: 180px minmax(0, 1fr);
}

.statement h2 {
  font-size: clamp(42px, 7vw, 92px);
  margin-bottom: 28px;
  max-width: 900px;
}

.statement p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  max-width: 980px;
}

.collector-note {
  align-items: end;
  background: var(--plum);
  color: var(--panel);
  display: grid;
  gap: 28px;
  grid-template-columns: 180px minmax(0, 1fr);
}

.collector-note h2 {
  font-size: clamp(34px, 5vw, 68px);
  margin-bottom: 0;
  max-width: 920px;
}

.studio-note {
  background: var(--paper);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: 180px minmax(0, 1fr);
}

.studio-note h2 {
  font-size: clamp(40px, 6vw, 82px);
  max-width: 940px;
}

.studio-note p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  max-width: 920px;
}

.tiles {
  padding-top: clamp(28px, 5vw, 60px);
}

.tiles article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.tiles h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.contact {
  background: var(--teal);
  color: var(--panel);
  text-align: center;
}

.contact p {
  color: rgba(255, 250, 242, 0.82);
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.representation {
  color: var(--panel) !important;
  font-size: 14px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions {
  justify-content: center;
}

.contact .button-primary {
  background: var(--panel);
  color: var(--ink);
}

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

footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 26px clamp(18px, 4vw, 64px);
}

footer p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 920px) {
  .main-nav {
    display: none;
  }

  .hero,
  .featured,
  .studio-note,
  .about,
  .statement,
  .collector-note,
  .announcement {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-portrait img {
    height: auto;
    max-height: 620px;
    width: min(100%, 520px);
  }

  .hero-art {
    grid-template-columns: 1fr 0.72fr;
    min-height: 500px;
  }

  .announcement {
    gap: 18px;
  }

  .announcement > .section-kicker {
    white-space: normal;
  }

  .announcement .text-link {
    justify-self: start;
  }

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

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

  .brand span:last-child {
    max-width: 170px;
  }

  .hero-art {
    min-height: 390px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .art-grid,
  .tiles,
  .details {
    grid-template-columns: 1fr;
  }

  .featured-image {
    min-height: 390px;
  }

  footer {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }
}
