:root {
  color-scheme: light;
  --ink: #24211c;
  --muted: #6f675c;
  --paper: #fbf6ec;
  --wash: #f0e4d0;
  --line: #deceb7;
  --clay: #b8583e;
  --moss: #5d754d;
  --water: #287985;
  --peach: #ffe0bd;
  --cream: #fffaf2;
  --shadow: 0 18px 50px rgba(38, 31, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
a {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 249, 238, 0.9);
  border-bottom: 1px solid rgba(36, 33, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
nav a,
.button {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--water);
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(740px, calc(100vh - 36px));
  padding: clamp(72px, 12vw, 150px) clamp(20px, 6vw, 86px) clamp(56px, 8vw, 98px);
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(18, 15, 10, 0.74), rgba(18, 15, 10, 0.36) 56%, rgba(18, 15, 10, 0.08)),
    url("assets/art/crystal-river-spring-manatee.jpg");
  background-position: center;
  background-size: cover;
}

.hero-copy {
  width: min(800px, 100%);
  color: #fffaf0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd489;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 10vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  width: min(650px, 100%);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions,
.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button,
.text-button,
.filter {
  border: 1px solid rgba(36, 33, 28, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 800;
}

.primary {
  color: #181510;
  background: var(--peach);
  border-color: transparent;
}

.secondary {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.5);
}

.shop-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.shop-strip div {
  padding: clamp(22px, 5vw, 42px);
  border-right: 1px solid var(--line);
}

.shop-strip div:last-child {
  border-right: 0;
}

.stat {
  display: block;
  color: var(--water);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 1;
}

.label {
  color: var(--muted);
  font-weight: 750;
}

.feature-band,
.collections,
.gallery-section,
.order-band {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 70px);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--wash);
}

.feature-copy p:not(.eyebrow),
.section-copy,
.order-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.text-button {
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--moss);
  font-weight: 800;
}

.ghost-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: rgba(40, 121, 133, 0.45);
  text-underline-offset: 5px;
}

.feature-art {
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.feature-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collections {
  background: #fffaf2;
}

.section-heading {
  max-width: 760px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.collection-card {
  display: flex;
  min-height: 226px;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
  color: #fff;
  border: 0;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 -150px 85px rgba(0, 0, 0, 0.54);
  text-align: left;
  cursor: pointer;
}

.collection-card h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0;
}

.collection-card p {
  margin: 0;
  line-height: 1.35;
}

.gallery-section {
  background: var(--paper);
}

.gallery-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 38px;
  padding: 0 12px;
  color: var(--muted);
  background: var(--cream);
}

.filter.active {
  color: #fff;
  background: var(--water);
  border-color: var(--water);
}

.gallery-grid {
  column-count: 4;
  column-gap: 18px;
}

.art-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 33, 28, 0.1);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 10px 26px rgba(38, 31, 22, 0.08);
  text-align: left;
  cursor: zoom-in;
}

.art-card img {
  width: 100%;
  aspect-ratio: var(--ratio, 1 / 1);
  object-fit: cover;
}

.art-meta {
  display: grid;
  gap: 7px;
  padding: 14px;
}

.art-meta h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.art-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-badge,
.product-action {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-badge {
  color: #5d3a17;
  background: #ffe8c7;
}

.product-action {
  margin-top: 4px;
  color: var(--water);
  background: #e9f4f3;
}

.order-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 72px);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fffaf2;
}

.lightbox {
  width: min(1120px, calc(100vw - 28px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #11100d;
  color: #fffaf2;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.lightbox::backdrop {
  background: rgba(15, 13, 10, 0.74);
  backdrop-filter: blur(4px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #090806;
}

.lightbox-copy {
  padding: 18px 22px 22px;
}

.lightbox-copy p {
  margin: 0 0 6px;
  color: #ffd489;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox-copy h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 3rem);
}

#lightboxPrice {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 14px;
  padding: 0 10px;
  color: #5d3a17;
  background: #ffe8c7;
  border-radius: 999px;
  font-weight: 800;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .feature-band,
  .gallery-top,
  .order-band {
    grid-template-columns: 1fr;
  }

  .gallery-top {
    display: grid;
    align-items: start;
  }

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

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: 680px;
    padding-top: 84px;
  }

  .shop-strip,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .shop-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .shop-strip div:last-child {
    border-bottom: 0;
  }

  .filters {
    justify-content: flex-start;
  }

  .gallery-grid {
    column-count: 1;
  }
}
