:root {
  color-scheme: light;
  --wall: #fbfaf7;
  --paper: #f4f1ec;
  --ink: #151515;
  --muted: #6f6b64;
  --line: rgba(21, 21, 21, 0.14);
  --line-strong: rgba(21, 21, 21, 0.28);
  --green: #39d820;
  --radius: 4px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wall);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1280px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 650;
  text-decoration: none;
}

.button {
  border: 1px solid var(--ink);
  padding: 0 18px;
  background: var(--ink);
  color: var(--wall);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.green {
  border-color: var(--green);
  background: var(--green);
  color: #061007;
}

.text-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  width: min(1280px, calc(100% - 32px));
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(320px, 0.42fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) 0;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.art-text h2,
.cta-band h2 {
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 10vw, 8.7rem);
  font-weight: 520;
}

.hero p,
.page-hero p,
.section-heading p,
.art-text p,
.statement {
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.hero p {
  max-width: 580px;
  margin: 22px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-art {
  display: grid;
  gap: 12px;
}

.hero-art img {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
}

.caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 106px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading h2,
.art-text h2,
.cta-band h2 {
  font-size: clamp(2.2rem, 5.4vw, 5.1rem);
  font-weight: 520;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.artwork {
  grid-column: span 4;
  text-decoration: none;
}

.artwork.large {
  grid-column: span 7;
}

.artwork.medium {
  grid-column: span 5;
}

.artwork.small {
  grid-column: span 3;
}

.artwork img {
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  object-fit: cover;
}

.artwork.square img {
  aspect-ratio: 1;
}

.artwork.portrait img {
  aspect-ratio: 3 / 4;
}

.artwork.landscape img {
  aspect-ratio: 4 / 3;
}

.artwork h2,
.artwork h3 {
  margin: 13px 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
}

.artwork p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.art-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.art-feature img {
  width: 100%;
  border: 1px solid var(--line);
}

.page-hero {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(68px, 11vw, 132px) 0 clamp(34px, 7vw, 76px);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 8vw, 7.6rem);
  font-weight: 520;
}

.page-hero p {
  max-width: 760px;
}

.index-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.index-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.index-row time,
.index-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.index-row h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 520;
  line-height: 1.08;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.contact-panel img {
  width: 100%;
  border: 1px solid var(--line);
}

.contact-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-list a,
.contact-list span {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover,
.text-links a:hover,
.footer-inner a:hover {
  color: var(--ink);
}

.contact-list li + li {
  margin-top: 12px;
}

.store-page,
.simple-page,
.product-page {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.page-title {
  max-width: 940px;
  padding: clamp(54px, 8vw, 96px) 0 clamp(30px, 5vw, 54px);
}

.page-title h1,
.text-page h1,
.detail-copy h1 {
  margin: 0;
  font-weight: 430;
  line-height: 1.02;
  letter-spacing: 0;
}

.page-title h1 {
  font-size: clamp(3rem, 8vw, 7.8rem);
}

.page-title p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.94rem;
}

.collection-tabs a {
  text-decoration: none;
}

.collection-tabs a:hover,
.collection-tabs a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 58px) clamp(20px, 3.6vw, 46px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.product-card {
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.product-card figure,
.detail-image {
  margin: 0;
  background: #fff;
}

.product-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 28vw, 420px);
}

.product-card img {
  width: 100%;
  max-height: clamp(240px, 32vw, 480px);
  object-fit: contain;
}

.product-meta {
  padding-top: 13px;
}

.product-meta h2 {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 430;
  line-height: 1.24;
}

.product-meta p,
.product-meta small {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-meta small {
  display: block;
  line-height: 1.4;
}

.sold-out {
  display: block;
  margin-top: 5px;
  color: #8f3e2b;
  font-size: 0.88rem;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(42px, 8vw, 96px) 0 clamp(70px, 10vw, 130px);
}

.detail-image img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.detail-copy {
  position: sticky;
  top: 96px;
}

.detail-copy h1 {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.detail-price {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.description {
  margin: 26px 0 0;
  color: var(--muted);
}

.description p {
  margin: 0 0 14px;
}

.back-link {
  display: inline-block;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.back-link:hover {
  color: var(--ink);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: start;
  padding: clamp(54px, 9vw, 110px) 0;
}

.about-layout figure {
  margin: 0;
}

.about-layout img {
  width: 100%;
  background: #fff;
}

.text-page {
  max-width: 800px;
  padding: clamp(54px, 9vw, 110px) 0;
}

.about-layout .text-page {
  padding: 0;
}

.text-page.narrow {
  max-width: 640px;
}

.text-page h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.text-page p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.22rem);
}

.text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
}

.text-links a {
  color: var(--muted);
  text-decoration: none;
}

.cta-band {
  background: var(--paper);
}

.cta-band .section {
  border-top: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: flex-end;
}

.footer-inner a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 68px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--wall);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .hero,
  .art-feature,
  .contact-panel,
  .product-detail,
  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .detail-copy {
    position: static;
  }

  .wall-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .artwork,
  .artwork.large,
  .artwork.medium,
  .artwork.small {
    grid-column: span 6;
  }

  .index-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .caption,
  .footer-inner {
    flex-direction: column;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }

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