:root {
  --paper: #fff9f1;
  --paper-strong: #fff2df;
  --ink: #2d2a35;
  --muted: #665f6e;
  --coral: #f47d6a;
  --gold: #f0b44b;
  --sky: #79bdd8;
  --leaf: #8bb76d;
  --berry: #d76492;
  --line: rgba(45, 42, 53, 0.12);
  --shadow: 0 22px 60px rgba(90, 65, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Trebuchet MS", "Gill Sans", "Avenir Next", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 125, 106, 0.3), transparent 30%),
    radial-gradient(circle at top right, rgba(121, 189, 216, 0.32), transparent 28%),
    radial-gradient(circle at bottom left, rgba(240, 180, 75, 0.22), transparent 25%),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 52%, #fff4e6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(45, 42, 53, 0.06) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  opacity: 0.35;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.hero {
  padding: 1.75rem 0 2rem;
}

.section-kicker,
.card-label,
.mini-title {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.brand-line {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.95fr);
}

.hero-copy,
.art-card,
.feature-card,
.product-card,
.inquiry-panel,
.cta-panel {
  border: 1px solid rgba(45, 42, 53, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 3vw, 3rem);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.84);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 100, 146, 0.25), transparent 70%);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(139, 183, 109, 0.14);
  color: #395229;
  font-size: 0.95rem;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(139, 183, 109, 0.16);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  margin-top: 1rem;
  font-size: 5.4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.8rem;
}

p {
  margin: 0;
  line-height: 1.65;
  font-size: 1.02rem;
}

.lead {
  max-width: 36rem;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.14rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

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

.button:focus-visible {
  outline: 3px solid rgba(121, 189, 216, 0.5);
  outline-offset: 3px;
}

.button-primary {
  background: var(--ink);
  color: #fff9f1;
  box-shadow: 0 14px 28px rgba(45, 42, 53, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1f1d25;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

input,
textarea,
button {
  font: inherit;
}

.hero-art {
  display: grid;
  gap: 1rem;
}

.art-card {
  border-radius: 24px;
}

.art-card-large {
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 242, 223, 0.98)),
    var(--paper-strong);
}

.art-card-large h2 {
  margin: 0.5rem 0 0.9rem;
  font-size: 2.6rem;
}

.art-card-large p,
.art-card-small p {
  color: var(--muted);
}

.art-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.tile {
  display: block;
  aspect-ratio: 1;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 42, 53, 0.08);
}

.tile-coral {
  background: linear-gradient(145deg, #ffd1c8, var(--coral));
}

.tile-gold {
  background: linear-gradient(145deg, #ffe7b0, var(--gold));
}

.tile-sky {
  background: linear-gradient(145deg, #d9f0ff, var(--sky));
}

.tile-leaf {
  background: linear-gradient(145deg, #dff2d0, var(--leaf));
}

.art-card-small {
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.78);
}

.mini-title {
  margin-bottom: 0.5rem;
  color: var(--berry);
}

.section {
  padding-top: 1.75rem;
}

.section-heading {
  max-width: 46rem;
}

.section-kicker,
.card-label {
  color: var(--berry);
  margin-bottom: 0.6rem;
}

.section-intro h2 {
  max-width: 14ch;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.seller-grid,
.listing-grid,
.product-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

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

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

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

.feature-card {
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.feature-card p,
.seller-card p,
.listing-card p,
.product-card p,
.split-heading > p {
  color: var(--muted);
}

.seller-card,
.listing-card,
.product-card {
  border: 1px solid rgba(45, 42, 53, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.seller-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-height: 19rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.seller-label {
  font-weight: 700;
  color: var(--ink) !important;
}

.listing-details,
.listing-note {
  color: var(--ink) !important;
  font-weight: 700;
}

.listing-note {
  padding-top: 0.15rem;
  font-size: 0.95rem;
}

.listing-status {
  display: inline-flex;
  max-width: 100%;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(45, 42, 53, 0.08);
  color: var(--ink) !important;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
}

.seller-card .button,
.listing-card .button {
  justify-self: start;
  margin-top: 0.3rem;
}

.button-disabled {
  cursor: default;
  color: rgba(45, 42, 53, 0.62);
  background: rgba(45, 42, 53, 0.08);
  border: 1px dashed rgba(45, 42, 53, 0.18);
}

.button-disabled:hover,
.button-disabled:focus-visible {
  transform: none;
}

.split-heading {
  display: grid;
  gap: 1rem;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  max-width: none;
}

.split-heading > p {
  max-width: 34rem;
}

.listing-card {
  display: grid;
  grid-template-rows: 8.5rem 1fr;
  min-height: 24rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.listing-art {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.56), transparent 46%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 18%, transparent 18% 100%),
    var(--accent);
}

.listing-art::before,
.listing-art::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.listing-art::before {
  width: 8rem;
  height: 2.8rem;
  left: -1rem;
  top: 1.15rem;
  border-radius: 14px;
  transform: rotate(-8deg);
}

.listing-art::after {
  width: 10rem;
  height: 3.2rem;
  right: -2rem;
  bottom: 1rem;
  border-radius: 16px;
  transform: rotate(-8deg);
}

.listing-meta {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.25rem;
}

.section-products {
  padding-top: 2rem;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.product-image-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  overflow: hidden;
}

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

.product-content {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 1.4rem;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-details li {
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: rgba(139, 183, 109, 0.14);
  color: #395229;
  font-size: 0.92rem;
  font-weight: 700;
}

.product-order-note {
  color: var(--ink) !important;
  font-weight: 700;
}

.product-gallery {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 42, 53, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.product-gallery picture {
  display: block;
}

.product-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-gallery figcaption {
  padding: 0.45rem 0.55rem 0.55rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-card .button {
  justify-self: start;
}

.section-inquiry {
  padding-top: 2rem;
}

.inquiry-panel {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: start;
  padding: 1.5rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(139, 183, 109, 0.16), rgba(121, 189, 216, 0.14)),
    rgba(255, 255, 255, 0.78);
}

.inquiry-panel .section-heading p:last-child {
  max-width: 34rem;
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  gap: 0.9rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 700;
}

.inquiry-form label span {
  font-size: 0.96rem;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 42, 53, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 9rem;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(121, 189, 216, 0.9);
  box-shadow: 0 0 0 4px rgba(121, 189, 216, 0.2);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(102, 95, 110, 0.76);
}

.form-honeypot {
  display: none;
}

.inquiry-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.accent-coral {
  --accent: var(--coral);
}

.accent-gold {
  --accent: var(--gold);
}

.accent-sky {
  --accent: var(--sky);
}

.accent-leaf {
  --accent: var(--leaf);
}

.accent-berry {
  --accent: var(--berry);
}

.seller-card.accent-coral {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, #ffd8d1, rgba(255, 255, 255, 0.7));
}

.seller-card.accent-gold {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, #ffe8b9, rgba(255, 255, 255, 0.7));
}

.seller-card.accent-sky {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, #d7f0f9, rgba(255, 255, 255, 0.7));
}

.seller-card.accent-leaf {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, #def0d3, rgba(255, 255, 255, 0.7));
}

.seller-card.accent-berry {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, #f0c2d7, rgba(255, 255, 255, 0.7));
}

.section-cta {
  padding-top: 2rem;
}

.cta-panel {
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1.5rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(244, 125, 106, 0.12), rgba(121, 189, 216, 0.16)),
    rgba(255, 255, 255, 0.78);
}

.cta-panel h2 {
  margin-bottom: 0.8rem;
}

.cta-panel p {
  max-width: 42rem;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .seller-grid,
  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .feature-grid,
  .split-heading,
  .product-card,
  .inquiry-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .inquiry-form .button,
  .cta-panel .button {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .seller-grid,
  .listing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --shadow: 0 12px 30px rgba(90, 65, 36, 0.12);
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background:
      linear-gradient(180deg, #fffdf9 0%, var(--paper) 52%, #fff4e6 100%);
  }

  body::before {
    display: none;
  }

  .page-shell {
    width: min(100% - 1rem, 1120px);
  }

  .hero {
    padding-top: 0.85rem;
  }

  .hero-copy,
  .art-card-large,
  .art-card-small,
  .feature-card,
  .product-card,
  .inquiry-panel,
  .seller-card,
  .listing-card,
  .cta-panel {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .hero-copy {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2,
  .art-card-large h2 {
    font-size: 2.1rem;
  }

  .art-row {
    gap: 0.55rem;
  }

  .tile {
    border-radius: 14px;
  }

  p,
  .lead {
    font-size: 1rem;
  }

  .seller-card .button,
  .listing-card .button,
  .product-card .button {
    width: 100%;
  }

  .product-image-frame {
    min-height: 16rem;
  }

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