:root {
  --bg: #fcf8f2;
  --bg-deep: #f2e8db;
  --ink: #2b2320;
  --ink-soft: #5f534d;
  --accent: #c6a173;
  --accent-deep: #936f47;
  --jewel: #6e2838;
  --jewel-soft: #9d4f62;
  --card: rgba(255, 255, 255, 0.74);
  --line: rgba(43, 35, 32, 0.14);
  --shadow: 0 18px 44px rgba(53, 31, 17, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 9%, #f8dfb6 0%, transparent 33%),
    radial-gradient(circle at 86% 84%, #f0ddd0 0%, transparent 34%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 120px 120px;
  mix-blend-mode: soft-light;
  opacity: 0.33;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  backdrop-filter: blur(12px);
  background: rgba(252, 248, 242, 0.84);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 1.1rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

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

main {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0 0;
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6.2rem) 0 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  font-family: "DM Serif Display", serif;
}

h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.5rem, 7vw, 5rem);
  max-width: 11ch;
}

h2 {
  margin-top: 0.55rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 16ch;
}

.hero-copy {
  margin: 0.9rem 0 0;
  max-width: 60ch;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 500;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  background: rgba(110, 40, 56, 0.08);
  color: var(--ink);
}

.btn-primary {
  padding: 0.72rem 1.3rem;
  color: #fff;
  background: linear-gradient(120deg, var(--jewel), var(--jewel-soft));
  box-shadow: var(--shadow);
}

.btn-ghost {
  padding: 0.72rem 1.3rem;
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.hero-highlight {
  border: 1px solid var(--line);
  border-top: 4px solid rgba(198, 161, 115, 0.8);
  border-radius: 1rem;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.hero-highlight p {
  margin: 0;
  font-weight: 700;
}

.hero-highlight ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

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

.stats-grid article {
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.65);
}

.stats-grid h3 {
  font-size: 1.8rem;
}

.stats-grid p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
}

.ticker {
  margin: 1.5rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.75rem 1.1rem;
  animation: glide 24s linear infinite;
}

.ticker-track span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--ink-soft);
}

@keyframes glide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33%);
  }
}

.section-head p {
  max-width: 70ch;
  color: var(--ink-soft);
}

.category-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.category-card {
  border: 1px solid var(--line);
  border-top: 4px solid rgba(110, 40, 56, 0.48);
  border-radius: 1rem;
  padding: 0.95rem;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
}

.category-card h3 {
  font-size: 1.28rem;
}

.category-card p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.collection-split {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.collection-block {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 247, 0.7)),
    radial-gradient(circle at 85% 20%, rgba(198, 161, 115, 0.18), transparent 40%);
  box-shadow: var(--shadow);
}

.collection-title {
  font-size: 1.65rem;
}

.collection-grid {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.7rem;
}

.collection-card {
  position: relative;
  border: 1px solid rgba(23, 19, 25, 0.12);
  border-radius: 0.85rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
}

.collection-image {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  display: block;
}

.collection-meta {
  padding: 0.65rem 0.75rem 0.75rem;
}

.collection-meta h4 {
  margin: 0;
  font-size: 1.08rem;
  font-family: "DM Serif Display", serif;
}

.collection-meta p {
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.scarcity {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: rgba(110, 40, 56, 0.92);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.26rem 0.55rem;
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.gallery-head p {
  color: var(--ink-soft);
}

.gallery-count {
  margin: 0;
  font-size: 0.95rem;
}

.gallery-count span {
  color: var(--accent-deep);
  font-weight: 700;
}

.filter-bar {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: rgba(143, 75, 20, 0.5);
}

.filter-btn.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
}

.gallery-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 0.75rem;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item h3 {
  margin-top: 0.56rem;
  font-size: 1.15rem;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0.75rem;
  object-fit: cover;
  display: block;
}

.look-meta {
  margin-top: 0.62rem;
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.btn-order {
  margin-top: 0.65rem;
  width: 100%;
  padding: 0.55rem 0.8rem;
  color: #fff;
  background: linear-gradient(120deg, var(--jewel), var(--jewel-soft));
  font-size: 0.84rem;
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.split p {
  color: var(--ink-soft);
}

.text-link {
  color: var(--accent-deep);
  font-weight: 700;
}

.value-stack {
  display: grid;
  gap: 0.9rem;
}

.value-stack article {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--card);
}

.value-stack h3 {
  font-size: 1.4rem;
}

.value-stack p {
  margin: 0.35rem 0 0;
}

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

.rating-chip {
  margin-top: 0.55rem;
  display: inline-block;
  border: 1px solid rgba(110, 40, 56, 0.36);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.85rem;
  color: var(--jewel);
  background: rgba(110, 40, 56, 0.09);
}

.review-card {
  border: 1px solid var(--line);
  border-top: 4px solid rgba(198, 161, 115, 0.65);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.57);
}

.review-card p {
  margin: 0;
  color: var(--ink-soft);
}

.review-card h3 {
  margin-top: 0.65rem;
  font-size: 1.1rem;
  color: var(--jewel);
}

.visit-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0.9rem;
}

.info-card {
  border: 1px solid var(--line);
  border-top: 4px solid rgba(110, 40, 56, 0.5);
  border-radius: 1rem;
  padding: 1rem;
  background: var(--card);
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 1.3rem;
}

.info-card p {
  margin: 0.35rem 0 0.85rem;
  color: var(--ink-soft);
}

.stars {
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.order-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 12% 22%, rgba(110, 40, 56, 0.16), transparent 45%);
}

.order-shell p {
  color: var(--ink-soft);
}

.order-points {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.order-form label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 19, 25, 0.2);
  border-radius: 0.7rem;
  padding: 0.66rem 0.72rem;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: 2px solid rgba(110, 40, 56, 0.26);
  border-color: rgba(110, 40, 56, 0.46);
}

.order-form .full {
  grid-column: 1 / -1;
}

.order-form .btn-primary {
  border: 0;
  cursor: pointer;
}

.chip-group {
  border: 1px dashed rgba(23, 19, 25, 0.2);
  border-radius: 0.8rem;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.44);
}

.chip-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.chip-row {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  border: 1px solid rgba(23, 19, 25, 0.2);
  border-radius: 999px;
  padding: 0.32rem 0.64rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.chip.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent-deep), var(--jewel-soft));
}

.order-note {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.86rem;
  color: var(--jewel);
}

.faq-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.55);
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
}

.cta {
  margin-top: clamp(2rem, 6vw, 5rem);
  padding: clamp(1.6rem, 5vw, 2.6rem);
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.3)),
    radial-gradient(circle at 20% 20%, rgba(15, 79, 72, 0.22), transparent 40%);
}

.cta .btn-primary {
  margin-top: 1rem;
}

.site-footer {
  margin-top: clamp(3rem, 7vw, 5rem);
  background: linear-gradient(180deg, #5a1018 0%, #430b12 100%);
  color: #f7e7df;
  border-top: 1px solid rgba(255, 228, 214, 0.2);
}

.footer-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.2rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.05fr;
  gap: 1rem 1.2rem;
}

.footer-col h3,
.footer-social h3 {
  margin: 0;
  font-size: 2rem;
  color: #fff5ef;
}

.footer-col p {
  margin: 0.45rem 0 0;
  color: rgba(255, 234, 221, 0.86);
  font-size: 0.95rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0.45rem 0 0;
  display: grid;
  gap: 0.45rem;
}

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

.footer-qr-image {
  width: 100%;
  max-width: 220px;
  border-radius: 0.55rem;
  margin-top: 0.65rem;
  border: 1px solid rgba(255, 233, 218, 0.3);
  background: #fff;
  padding: 0.3rem;
}

.footer-apps {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-pill {
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 233, 218, 0.32);
  border-radius: 999px;
  padding: 0.4rem 0.82rem;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
}

.footer-divider {
  margin: 1rem 0;
  border-top: 1px solid rgba(255, 228, 214, 0.26);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-row a {
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 233, 218, 0.3);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.08);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pay-badge {
  border: 1px solid rgba(255, 233, 218, 0.32);
  border-radius: 0.5rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  color: #fff6f1;
  background: rgba(255, 255, 255, 0.07);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 234, 221, 0.85);
  font-size: 0.86rem;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-policy a {
  color: rgba(255, 234, 221, 0.9);
  text-decoration: none;
  font-size: 0.84rem;
}

.footer-link {
  color: rgba(255, 236, 223, 0.95);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.mobile-sticky-cta a {
  text-align: center;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fff;
  border-radius: 999px;
  padding: 0.64rem 0.4rem;
  background: linear-gradient(120deg, var(--jewel), var(--jewel-soft));
  box-shadow: 0 10px 24px rgba(110, 40, 56, 0.34);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1030px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-split {
    grid-template-columns: 1fr;
  }

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

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

  .hero-grid,
  .split,
  .order-shell,
  .visit-grid {
    grid-template-columns: 1fr;
  }

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

  .order-form {
    grid-template-columns: 1fr;
  }

  .order-form .full {
    grid-column: auto;
  }

  .mobile-sticky-cta {
    display: grid;
  }

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

  .footer-social {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    margin-bottom: 5.5rem;
  }
}

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

@media (max-width: 540px) {
  .stats-grid,
  .category-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

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