:root {
  --bg: #f5efe4;
  --bg-deep: #1f1a17;
  --card: rgba(255, 252, 247, 0.72);
  --card-strong: #f8f3eb;
  --ink: #1f1b18;
  --muted: #675d55;
  --line: rgba(31, 27, 24, 0.14);
  --accent: #a64d31;
  --accent-dark: #83351b;
  --gold: #d2a45c;
  --shadow: 0 20px 60px rgba(54, 35, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(210, 164, 92, 0.3), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(166, 77, 49, 0.14), transparent 24%),
    linear-gradient(180deg, #f7f0e5 0%, #efe4d5 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.16;
  pointer-events: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header,
.site-nav,
.brand,
.hero-actions,
.hero-stats,
.section-heading,
.contact-notes {
  display: flex;
  align-items: center;
}

.site-header,
.section-heading,
.contact-card {
  justify-content: space-between;
}

.site-header {
  gap: 24px;
  padding: 18px 22px;
  position: sticky;
  top: 14px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  background: rgba(31, 26, 23, 0.8);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  gap: 14px;
  color: #fff7ef;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand-text strong {
  font-size: 1.3rem;
  text-transform: lowercase;
}

.brand-text small,
.site-nav a,
.hero-text,
.section-lead,
.collection-card p,
.commission-card p,
.commission-card li,
.process-grid p,
.contact-copy p,
.contact-notes span,
label,
input,
select,
textarea,
.form-hint {
  font-size: 0.96rem;
}

.brand-text small,
.site-nav a,
.hero-text,
.section-lead,
.collection-meta,
.collection-card p,
.commission-card p,
.commission-card li,
.process-grid p,
.contact-copy p,
.contact-notes span,
.form-hint {
  color: rgba(255, 247, 239, 0.76);
}

.site-nav {
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: rgba(255, 247, 239, 0.86);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
}

.hero,
.intro-grid,
.collection-grid,
.commission-grid,
.process-grid,
.contact-card,
.payments-grid {
  display: grid;
}

.hero {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 72px 10px 48px;
  align-items: center;
}

.sub-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 56px 10px 36px;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow {
  background: rgba(31, 26, 23, 0.08);
  color: var(--accent-dark);
}

h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.95;
  max-width: 12ch;
}

h2 {
  margin: 10px 0 12px;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 0.95;
}

h3 {
  margin: 12px 0;
  font-size: 2rem;
  line-height: 1;
}

.hero-text,
.section-lead,
.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 58ch;
}

.hero-actions {
  gap: 14px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #c76e50);
  color: white;
  box-shadow: 0 18px 28px rgba(166, 77, 49, 0.24);
}

.button-secondary {
  border-color: rgba(31, 26, 23, 0.16);
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
}

.hero-stats {
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.hero-stats li {
  display: grid;
  gap: 4px;
}

.hero-stats strong {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.hero-stats span {
  color: var(--muted);
}

.hero-art {
  min-height: 560px;
  position: relative;
}

.art-card {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.art-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    radial-gradient(circle at 20% 10%, rgba(255, 233, 209, 0.7), transparent 34%),
    linear-gradient(155deg, #2a241f 0%, #7d4f36 43%, #d7b586 100%);
}

.art-card-tall::before {
  background:
    linear-gradient(180deg, rgba(17, 12, 10, 0.18), rgba(17, 12, 10, 0.35)),
    url("./assets/artwork/IMG_7512.jpeg") center / cover;
}

.art-card-wide::before {
  background:
    linear-gradient(180deg, rgba(17, 12, 10, 0.12), rgba(17, 12, 10, 0.3)),
    url("./assets/artwork/IMG_7790.jpeg") center 28% / cover;
}

.art-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: white;
  font-weight: 700;
}

.art-card-tall {
  inset: 40px 110px 120px 0;
  transform: rotate(-5deg);
}

.art-card-wide {
  inset: 280px 0 20px 160px;
  transform: rotate(8deg);
}

.paint-swatch {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.88;
}

.paint-swatch-rust {
  width: 120px;
  height: 120px;
  top: 0;
  right: 24px;
  background: rgba(166, 77, 49, 0.58);
}

.paint-swatch-cream {
  width: 80px;
  height: 80px;
  left: 24px;
  bottom: 0;
  background: rgba(255, 248, 236, 0.92);
}

.merch-collage {
  min-height: 520px;
  position: relative;
}

.merch-piece {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.merch-piece-one {
  inset: 10px 130px 180px 0;
  transform: rotate(-7deg);
  background-image:
    linear-gradient(180deg, rgba(17, 12, 10, 0.12), rgba(17, 12, 10, 0.32)),
    url("./assets/artwork/IMG_7790.jpeg");
}

.merch-piece-two {
  inset: 170px 0 120px 160px;
  transform: rotate(9deg);
  background-image:
    linear-gradient(180deg, rgba(17, 12, 10, 0.08), rgba(17, 12, 10, 0.3)),
    url("./assets/artwork/IMG_7513.jpeg");
}

.merch-piece-three {
  inset: 310px 110px 0 40px;
  transform: rotate(-4deg);
  background-image:
    linear-gradient(180deg, rgba(17, 12, 10, 0.08), rgba(17, 12, 10, 0.3)),
    url("./assets/artwork/IMG_7495.jpeg");
}

.section {
  padding: 32px 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gateway-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(160deg, rgba(255, 248, 240, 0.72), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.gateway-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gateway-card .button {
  justify-self: flex-start;
}

.intro-panel,
.collection-card,
.commission-card,
.process-grid article,
.contact-card,
.contact-form,
.contact-copy {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.intro-panel,
.collection-card,
.commission-card,
.process-grid article,
.contact-copy,
.contact-form {
  border-radius: 30px;
  padding: 28px;
}

.intro-panel-dark {
  background: linear-gradient(145deg, rgba(31, 26, 23, 0.95), rgba(67, 47, 32, 0.88));
}

.intro-panel-dark h2,
.intro-panel-dark p {
  color: #fff9f1;
}

.section-heading {
  gap: 18px;
  margin-bottom: 24px;
}

.collection-grid,
.commission-grid,
.process-grid {
  gap: 20px;
}

.collection-grid,
.commission-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-card {
  display: grid;
  gap: 18px;
}

.collection-card:nth-child(2),
.commission-card:nth-child(2),
.process-grid article:nth-child(2),
.payments-grid article:nth-child(2) {
  transition-delay: 90ms;
}

.collection-card:nth-child(3),
.commission-card:nth-child(3),
.process-grid article:nth-child(3),
.payments-grid article:nth-child(3) {
  transition-delay: 180ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.collection-visual {
  min-height: 250px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e7d6bd, #7f4c34);
}

.collection-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.collection-visual::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
}

.collection-card h3 {
  margin: 0;
  font-size: 2.1rem;
}

.collection-meta {
  display: flex;
  gap: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.collection-card p,
.commission-card p,
.process-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.collection-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
}

.collection-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.price {
  font-weight: 800;
  font-size: 1.2rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.commission-card {
  min-height: 100%;
}

.commission-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.featured {
  background: linear-gradient(180deg, rgba(166, 77, 49, 0.12), rgba(255, 252, 247, 0.84));
  transform: translateY(-6px);
}

.pill {
  background: rgba(31, 26, 23, 0.08);
  color: var(--ink);
}

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

.process-grid article span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.contact-section {
  padding-bottom: 8px;
}

.payments-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.payment-panel {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 28px;
}

.payment-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.merch-card,
.merch-callout {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 30px;
}

.merch-card {
  padding: 24px;
}

.merch-card-image {
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
}

.merch-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.merch-book-cover {
  background-size: cover;
  background-position: center;
}


.merch-card p {
  color: var(--muted);
  line-height: 1.7;
}

.merch-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
}

.button-paypal {
  background: #ffc439;
  color: #111827;
}

.button-disabled {
  opacity: 0.58;
  pointer-events: none;
}

.contact-card {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  padding: 20px;
  border-radius: 34px;
}

.contact-copy,
.contact-form {
  min-height: 100%;
}

.contact-notes {
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.contact-notes div {
  display: grid;
  gap: 6px;
}

.contact-notes strong {
  font-size: 0.92rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(166, 77, 49, 0.24);
  border-color: rgba(166, 77, 49, 0.4);
}

.full-width {
  grid-column: 1 / -1;
}

.form-hint {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .sub-hero,
  .intro-grid,
  .collection-grid,
  .gateway-grid,
  .commission-grid,
  .process-grid,
  .contact-card,
  .contact-form,
  .payments-grid,
  .merch-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 44px;
  }

  .hero-art {
    min-height: 420px;
    order: -1;
  }

  .merch-collage {
    min-height: 420px;
    order: -1;
  }

  .art-card-tall {
    inset: 20px 80px 120px 0;
  }

  .art-card-wide {
    inset: 220px 0 0 110px;
  }

  .merch-piece-one {
    inset: 0 90px 170px 0;
  }

  .merch-piece-two {
    inset: 150px 0 110px 120px;
  }

  .merch-piece-three {
    inset: 270px 80px 0 30px;
  }

  .featured {
    transform: none;
  }

  .merch-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .site-header,
  .collection-card,
  .commission-card,
  .intro-panel,
  .process-grid article,
  .contact-copy,
  .contact-form,
  .contact-card {
    border-radius: 22px;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

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

  .merch-collage {
    min-height: 340px;
  }

  .art-card-tall {
    inset: 10px 60px 120px 0;
  }

  .art-card-wide {
    inset: 190px 0 0 80px;
  }

  .merch-piece-one {
    inset: 0 70px 150px 0;
  }

  .merch-piece-two {
    inset: 120px 0 90px 95px;
  }

  .merch-piece-three {
    inset: 220px 65px 0 20px;
  }
}
