:root {
  --ink: #130b0d;
  --blackberry: #241018;
  --cherry: #c51c3f;
  --cherry-dark: #8f102b;
  --leaf: #426d4a;
  --cream: #fff4eb;
  --blush: #f4c9c9;
  --muted: #c9aaa8;
  --paper: #f8eadc;
  --line: rgba(255, 244, 235, .18);
  --shadow: 0 24px 70px rgba(5, 0, 2, .35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(19, 11, 13, .78);
  border-bottom: 1px solid rgba(255, 244, 235, .1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cherry);
  box-shadow: 12px 4px 0 var(--cherry-dark);
  flex: 0 0 auto;
  margin-right: 12px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 21px;
  height: 10px;
  left: 13px;
  top: -9px;
  border-radius: 100% 0;
  background: var(--leaf);
  transform: rotate(-18deg);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  font-size: 14px;
  font-weight: 650;
}

nav a {
  color: rgba(255, 244, 235, .82);
  text-decoration: none;
}

.nav-cta {
  border: 1px solid rgba(255, 244, 235, .28);
  border-radius: 999px;
  padding: 8px 13px;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(19, 11, 13, .96), rgba(36, 16, 24, .86) 48%, rgba(15, 8, 10, .74)),
    radial-gradient(circle at 74% 28%, rgba(197, 28, 63, .36), transparent 28rem),
    var(--ink);
}

.hero-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.frame,
.studio-table {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 244, 235, .18);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.frame::before {
  content: "";
  position: absolute;
  inset: clamp(14px, 2vw, 24px);
  border: 1px solid rgba(255, 244, 235, .32);
}

.frame-one {
  width: min(34vw, 440px);
  aspect-ratio: 4 / 5;
  right: clamp(26px, 8vw, 130px);
  top: clamp(120px, 16vh, 190px);
  background:
    radial-gradient(circle at 36% 38%, rgba(197, 28, 63, .88), transparent 18%),
    linear-gradient(135deg, transparent 0 38%, rgba(255, 244, 235, .86) 39% 43%, transparent 44%),
    #1b0c12;
}

.frame-two {
  width: min(22vw, 280px);
  aspect-ratio: 1 / 1.24;
  right: clamp(250px, 31vw, 520px);
  top: clamp(180px, 25vh, 290px);
  background:
    radial-gradient(circle at 62% 42%, rgba(66, 109, 74, .78), transparent 18%),
    radial-gradient(circle at 42% 62%, rgba(244, 201, 201, .78), transparent 14%),
    #f8eadc;
}

.frame-three {
  width: min(18vw, 220px);
  aspect-ratio: 1 / 1;
  right: clamp(24px, 4vw, 70px);
  bottom: clamp(120px, 18vh, 210px);
  background:
    linear-gradient(120deg, transparent 0 26%, rgba(197, 28, 63, .9) 27% 36%, transparent 37%),
    repeating-linear-gradient(90deg, rgba(255, 244, 235, .12) 0 1px, transparent 1px 14px),
    #261019;
}

.studio-table {
  width: min(44vw, 580px);
  height: 13vh;
  right: 0;
  bottom: 0;
  border-right: 0;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(255, 244, 235, .14), rgba(255, 244, 235, .03)),
    #2e1915;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 11, 13, .9), rgba(19, 11, 13, .58) 48%, rgba(19, 11, 13, .22)),
    linear-gradient(0deg, rgba(19, 11, 13, .86), transparent 42%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  padding: 140px 0 clamp(42px, 8vw, 86px);
  margin-left: clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blush);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .91;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 244, 235, .84);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.45;
}

.hero-actions,
.shop-band {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--cherry);
  color: white;
  box-shadow: 0 12px 34px rgba(197, 28, 63, .28);
}

.button.secondary {
  border: 1px solid rgba(255, 244, 235, .32);
  color: var(--cream);
  background: rgba(255, 244, 235, .07);
}

.intro,
.collection,
.shop-band,
.about {
  padding: clamp(54px, 9vw, 104px) clamp(18px, 7vw, 96px);
}

.intro {
  background: var(--paper);
  color: #2c1718;
}

.intro p {
  max-width: 980px;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(27px, 4vw, 54px);
  line-height: 1.08;
}

.collection {
  background: linear-gradient(180deg, var(--blackberry), var(--ink));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 760px);
  gap: 24px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading h2,
.shop-band h2,
.about h2 {
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
}

.art-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}

.art-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 3.6vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 244, 235, .055);
  box-shadow: var(--shadow);
}

.art-card.large {
  grid-row: span 2;
  min-height: 676px;
}

.art-swatch {
  min-height: 190px;
  border-radius: 6px;
  border: 1px solid rgba(255, 244, 235, .14);
}

.large .art-swatch {
  flex: 1;
}

.swatch-ink {
  background:
    radial-gradient(circle at 24% 22%, rgba(197, 28, 63, .9), transparent 16%),
    radial-gradient(circle at 68% 72%, rgba(66, 109, 74, .6), transparent 18%),
    linear-gradient(135deg, #090608, #2b111b 38%, #f8eadc 39%, #f8eadc 42%, #12080c 43%);
}

.swatch-bloom {
  background:
    radial-gradient(circle at 50% 48%, #c51c3f 0 12%, transparent 13%),
    radial-gradient(circle at 38% 38%, #f4c9c9 0 9%, transparent 10%),
    radial-gradient(circle at 62% 62%, #426d4a 0 10%, transparent 11%),
    #211018;
}

.swatch-paper {
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(197, 28, 63, .72) 33% 36%, transparent 37%),
    repeating-linear-gradient(90deg, rgba(36, 16, 24, .12) 0 1px, transparent 1px 16px),
    #f8eadc;
}

.art-type {
  margin: 0 0 9px;
  color: var(--blush);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.art-card h3 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.03;
}

.art-card p:last-child {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.shop-band {
  justify-content: space-between;
  background: var(--cherry-dark);
  color: white;
}

.shop-band > div,
.shop-band > p {
  max-width: 560px;
}

.shop-band > p {
  color: rgba(255, 244, 235, .86);
  line-height: 1.6;
}

.shop-band .button.primary {
  background: var(--cream);
  color: var(--cherry-dark);
  box-shadow: none;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 6vw, 72px);
  background: var(--paper);
  color: #2c1718;
}

.about .eyebrow {
  color: var(--cherry-dark);
}

.about-copy p:last-child {
  max-width: 660px;
  color: #654447;
  font-size: 18px;
  line-height: 1.7;
}

.notes {
  align-self: start;
  padding: 24px;
  border: 1px solid rgba(44, 23, 24, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .45);
}

.notes p {
  margin: 0 0 12px;
  font-weight: 750;
}

.notes ul {
  margin: 0;
  padding-left: 18px;
  color: #654447;
  line-height: 1.9;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 7vw, 96px);
  background: #090507;
  color: rgba(255, 244, 235, .72);
}

footer p {
  margin: 0;
  font-weight: 750;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 96svh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(19, 11, 13, .92), rgba(19, 11, 13, .56) 72%, rgba(19, 11, 13, .22));
  }

  .frame-one {
    width: 56vw;
    right: -8vw;
    top: 150px;
  }

  .frame-two {
    width: 34vw;
    right: 40vw;
    top: 210px;
  }

  .frame-three {
    width: 30vw;
    right: 8vw;
    bottom: 170px;
  }

  .studio-table {
    width: 72vw;
  }

  .hero-overlay {
    margin: 0 auto;
    padding-top: 170px;
  }

  .section-heading,
  .art-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .art-card.large {
    min-height: 430px;
  }

  .art-card {
    min-height: 360px;
  }

  .shop-band {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  nav {
    gap: 8px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 7px 10px;
  }

  .brand {
    font-size: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }
}
