:root {
  --charcoal: #111111;
  --white: #ffffff;
  --muted-gold: #c9a24d;
  --rose-gold: #d6a1a1;
  --champagne: #f3ead7;
  --cool-gray: #f7f7f7;
  --dark-gray: #333333;
  --line: #e6e6e6;
  --panel: #ffffff;
  --ink-soft: #1d1b1a;
  --success: #1f6b44;
  --warning: #7e5b0e;
  --danger: #8f2c2c;
  --shadow: 0 16px 44px rgba(17, 17, 17, 0.08);
  --shadow-strong: 0 24px 60px rgba(17, 17, 17, 0.14);
  --gold-glow: rgba(201, 162, 77, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Inter", "Roboto", "Segoe UI", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 100% -10%, rgba(214, 161, 161, 0.2), transparent 32%),
    radial-gradient(circle at 0% 18%, rgba(201, 162, 77, 0.1), transparent 28%),
    linear-gradient(180deg, #fffdfb, #f3f1ec 58%, #f8f6f2 100%);
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(17, 17, 17, 0.03) 0.7px, transparent 0.7px);
  background-size: 4px 4px;
  opacity: 0.32;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.35rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.04);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.7), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--charcoal);
  min-width: 0;
}

.brand-logo-wrap {
  width: auto;
  height: 5rem;
  min-width: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  position: relative;
}

.brand-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 14% -8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.2), transparent 70%);
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.brand-logo {
  width: auto;
  height: 100%;
  max-width: 20rem;
  object-fit: contain;
  display: block;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  color: var(--white);
  background: var(--charcoal);
}

.brand-mark-fallback {
  display: none;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-text strong {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--dark-gray);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: 0;
}

.site-nav a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  transition: background-color 160ms ease, color 160ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--charcoal);
  background: rgba(201, 162, 77, 0.14);
  transform: translateY(-1px);
}

.auth-area {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--charcoal);
  background: var(--white);
  border-radius: 999px;
  padding: 0.38rem 0.92rem;
  color: var(--charcoal);
}

.page-shell {
  width: min(1120px, calc(100% - 2.25rem));
  margin: 2.5rem auto 3.4rem;
  display: grid;
  gap: 2.85rem;
  min-width: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.6rem;
  color: var(--charcoal);
}

h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

h2 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 700;
}

h3 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.lead {
  color: var(--dark-gray);
  font-size: 1.08rem;
  max-width: 38ch;
}

.eyebrow {
  color: #8a6b2f;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.centered-copy {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
}

.centered-copy .eyebrow,
.centered-copy .lead,
.centered-copy .notice,
.centered-copy .muted {
  margin-inline: auto;
}

.hero {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 162, 77, 0.22), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #f4efe6 42%, #fbf8f2 100%);
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 161, 161, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-benefit {
  margin: 0;
  color: var(--charcoal);
  font-weight: 600;
  max-width: 40ch;
}

.hero-slider-wrap {
  align-self: stretch;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-slider {
  position: relative;
  min-height: 470px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--cool-gray);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.18);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: -10% -35%;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-38%);
  animation: glint-drift 10s ease-in-out infinite;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 780ms ease;
}

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

.hero-slide p {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.65rem 0.88rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.74);
  color: var(--white);
  font-size: 0.86rem;
  backdrop-filter: blur(6px);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-price-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.25rem;
}

.price-chip {
  min-width: 170px;
  max-width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
  display: grid;
  gap: 0.18rem;
  position: relative;
  overflow: hidden;
}

.price-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.24) 50%, transparent 70%);
  transform: translateX(-100%);
}

.price-chip.active {
  background: linear-gradient(180deg, #1a1817, #0f0f0f);
  color: var(--white);
  border-color: rgba(201, 162, 77, 0.55);
}

.price-chip.active .price-chip-label {
  color: rgba(255, 255, 255, 0.76);
}

.price-chip strong {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.08rem;
  line-height: 1.1;
}

.price-chip-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-gray);
}

.hero-note-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.hero-note-bar span {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 162, 77, 0.24);
  font-size: 0.82rem;
  font-weight: 600;
  max-width: 100%;
}

.hero-floating-card {
  position: absolute;
  right: 1rem;
  bottom: -1.1rem;
  width: min(290px, calc(100% - 2rem));
  padding: 1.15rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(201, 162, 77, 0.32);
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.16);
}

.hero-floating-card h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.64rem 1.22rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease,
    transform 180ms ease;
}

.cta-button {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-color: #0f0f0f;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: var(--muted-gold);
  border-color: var(--muted-gold);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.cta-button::after,
.ghost-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.22) 50%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.cta-button:hover::after,
.ghost-button:hover::after {
  transform: translateX(120%);
}

.ghost-button {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.ghost-button:hover {
  border-color: var(--muted-gold);
  background: rgba(201, 162, 77, 0.08);
  transform: translateY(-1px);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 77, 0.95) 50%, transparent 100%);
}

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

.value-band-card {
  display: grid;
  gap: 0.34rem;
  padding: 1.2rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(201, 162, 77, 0.18);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
  position: relative;
  overflow: hidden;
}

.value-band-card::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.value-band-card.dark {
  background: linear-gradient(180deg, #1a1817, #121212);
  color: var(--white);
  border-color: rgba(201, 162, 77, 0.48);
}

.value-band-card.dark .value-band-label,
.value-band-card.dark span {
  color: rgba(255, 255, 255, 0.76);
}

.value-band-card strong {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.18rem;
}

.value-band-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a6b2f;
}

.home-section {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.panel-grid,
.membership-grid,
.dashboard-grid,
.cart-layout,
.faq-list,
.product-grid,
.featured-grid,
.testimonial-grid,
.comparison-grid {
  display: grid;
  gap: 1rem;
}

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

.membership-grid,
.dashboard-grid,
.cart-layout,
.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid,
.featured-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

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

.panel {
  background: var(--panel);
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.05);
  min-width: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.section-head h2 {
  margin-bottom: 0;
  position: relative;
  padding-bottom: 0.3rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.4rem;
  height: 2px;
  background: var(--muted-gold);
  box-shadow: 0 0 12px var(--gold-glow);
}

.featured-card {
  display: grid;
  gap: 0.62rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 245, 0.96));
  position: relative;
  overflow: hidden;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(17, 17, 17, 0.1);
}

.featured-art {
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f3f3f3;
  position: relative;
}

.featured-art::after,
.product-card-art::after,
.story-media::after {
  content: "";
  position: absolute;
  inset: -10% -35%;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: translateX(-55%);
  opacity: 0.9;
  transition: transform 800ms ease, opacity 300ms ease;
  pointer-events: none;
}

.featured-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

.featured-card:hover .featured-art img {
  transform: scale(1.045);
}

.featured-card:hover .featured-art::after,
.product-card:hover .product-card-art::after,
.story-block:hover .story-media::after {
  transform: translateX(55%);
}

.comparison-block {
  background:
    radial-gradient(circle at 100% 0%, rgba(201, 162, 77, 0.16), transparent 28%),
    linear-gradient(180deg, #161413, #1d1a18);
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: 24px;
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  color: var(--white);
}

.comparison-block h2,
.comparison-block h3,
.comparison-block p,
.comparison-block li {
  color: var(--white);
}

.compare-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.compare-card.highlight {
  border-color: rgba(201, 162, 77, 0.7);
  background: linear-gradient(180deg, rgba(255, 251, 241, 0.98), rgba(253, 247, 231, 0.98));
}

.compare-card.highlight h3,
.compare-card.highlight li {
  color: var(--charcoal);
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 249, 240, 0.92));
  border: 1px solid rgba(201, 162, 77, 0.2);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
}

.story-media {
  min-height: 0;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.16);
  position: relative;
}

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

.story-copy {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.story-tags span {
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(201, 162, 77, 0.12);
  border: 1px solid rgba(201, 162, 77, 0.24);
  font-weight: 600;
  font-size: 0.88rem;
}

.trust-strip {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-strip li {
  border: 1px solid rgba(201, 162, 77, 0.26);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 240, 0.92));
  text-align: center;
  padding: 0.68rem 0.82rem;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 8px 20px rgba(17, 17, 17, 0.04);
}

.final-cta {
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 162, 77, 0.24), transparent 22%),
    linear-gradient(135deg, #111111, #1b1714 62%, #2b2217);
  color: var(--white);
  border-radius: 26px;
  padding: 2rem 1.6rem;
  display: grid;
  gap: 0.7rem;
  text-align: center;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: -35% -15%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.12) 48%, transparent 61%);
  animation: glint-drift 12s ease-in-out infinite reverse;
  pointer-events: none;
}

.final-cta h2,
.final-cta p {
  color: var(--white);
  margin: 0;
}

.final-cta .ghost-button {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.final-cta .ghost-button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.stars {
  letter-spacing: 0.14em;
  color: var(--muted-gold);
  margin: 0 0 0.55rem;
  text-shadow: 0 0 10px rgba(201, 162, 77, 0.18);
}

.icon-panel .icon-line {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--dark-gray);
  margin: 0 0 0.5rem;
}

.notice {
  padding: 0.82rem 1rem;
  border-radius: 10px;
  border: 1px solid #e7d9b7;
  background: #fff7e8;
  color: var(--warning);
}

.muted {
  color: var(--dark-gray);
}

.clean-list,
.policy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.clean-list li::before,
.policy-list li::before {
  content: "-";
  margin-right: 0.46rem;
  color: var(--muted-gold);
}

.auth-card {
  width: min(540px, 100%);
  margin: 1rem auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06);
}

.stack-form {
  display: grid;
  gap: 0.82rem;
}

.stack-form.compact {
  gap: 0.64rem;
}

label {
  display: grid;
  gap: 0.36rem;
  font-size: 0.92rem;
  font-weight: 600;
}

input,
button,
textarea {
  font: inherit;
}

input,
select,
textarea {
  border: 1px solid #d7d7d7;
  background: var(--white);
  border-radius: 10px;
  padding: 0.56rem 0.72rem;
  color: var(--charcoal);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 162, 77, 0.24);
  border-color: var(--muted-gold);
}

.text-link {
  border: 0;
  background: none;
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.text-link:hover {
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

.pill {
  display: inline-flex;
  min-width: 1.1rem;
  height: 1.1rem;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--charcoal);
  padding: 0 0.2rem;
}

.product-card {
  display: grid;
  gap: 0.5rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 245, 0.96));
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.09);
}

.product-card-art {
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f3f3f3;
  position: relative;
}

.product-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 280ms ease;
}

.product-card:hover .product-card-art img {
  transform: scale(1.045);
}

.product-card h3 {
  margin-bottom: 0;
}

.product-meta {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.checkbox-line input {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

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

.admin-shell {
  display: grid;
  gap: 1rem;
}

.admin-primary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.admin-focus {
  align-self: start;
}

.admin-span-two {
  grid-column: 1 / -1;
}

.admin-list {
  display: grid;
  gap: 0.75rem;
}

.admin-metric-panel {
  margin-top: 0.65rem;
  border: 1px dashed #d8d8d8;
  border-radius: 10px;
  padding: 0.85rem;
  background: #fcfcfc;
}

.admin-collapse {
  padding: 0;
  overflow: hidden;
}

.admin-collapse summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.05rem;
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
}

.admin-collapse summary::-webkit-details-marker {
  display: none;
}

.admin-collapse summary::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
}

.admin-collapse[open] summary {
  border-bottom-color: var(--line);
}

.admin-collapse[open] summary::after {
  content: "-";
}

.admin-collapse .admin-list {
  padding: 1rem;
}

.admin-product {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.8rem;
  align-items: start;
}

.admin-product-media {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  min-height: 100px;
  background: #f3f3f3;
}

.admin-product-media img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  display: block;
}

.admin-product-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.18rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-pill.active {
  background: #e9f8ef;
  color: var(--success);
}

.status-pill.inactive {
  background: #f2f2f2;
  color: var(--dark-gray);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.full {
  width: 100%;
}

.legal {
  max-width: 900px;
  margin-inline: auto;
}

.site-footer {
  width: min(1120px, calc(100% - 2.25rem));
  margin: 1.25rem auto 2rem;
  padding: 2rem 1.6rem 1.2rem;
  border: 1px solid rgba(201, 162, 77, 0.18);
  border-radius: 30px;
  display: grid;
  gap: 1.6rem;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 162, 77, 0.18), transparent 26%),
    linear-gradient(135deg, #111111, #1a1714 55%, #231d17);
  box-shadow: 0 28px 60px rgba(17, 17, 17, 0.18);
}

.footer-brand {
  display: grid;
  gap: 0.45rem;
  max-width: 34rem;
}

.footer-kicker,
.footer-heading {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 162, 77, 0.9);
  font-weight: 700;
}

.footer-brand h2 {
  color: var(--white);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  margin: 0;
  max-width: 18ch;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: 44ch;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-column {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  width: fit-content;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-column-owner {
  justify-self: end;
  text-align: right;
}

.footer-column-owner a {
  justify-self: end;
}

.footer-dashboard-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52) !important;
}

.footer-dashboard-link:hover {
  color: rgba(255, 255, 255, 0.84) !important;
}

.footer-meta {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.9rem;
}

.footer-credit {
  color: rgba(201, 162, 77, 0.92) !important;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit:hover {
  color: var(--white) !important;
  text-decoration: underline;
}

.back-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.2rem;
  z-index: 20;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
  border-radius: 999px;
  padding: 0.48rem 0.86rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.12);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  animation: rise 520ms ease both;
}

.reveal-stagger > * {
  opacity: 0;
  animation: rise 540ms ease both;
}

.reveal-stagger > *:nth-child(1) { animation-delay: 80ms; }
.reveal-stagger > *:nth-child(2) { animation-delay: 150ms; }
.reveal-stagger > *:nth-child(3) { animation-delay: 220ms; }
.reveal-stagger > *:nth-child(4) { animation-delay: 290ms; }

@keyframes rise {
  from {
    transform: translateY(14px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes glint-drift {
  0% {
    transform: translateX(-40%);
    opacity: 0.35;
  }
  45% {
    opacity: 0.9;
  }
  100% {
    transform: translateX(40%);
    opacity: 0.3;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .story-block {
    grid-template-columns: 1fr;
  }

  .value-band {
    grid-template-columns: 1fr;
  }

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

  .story-media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 900px) {
  .membership-grid,
  .dashboard-grid,
  .cart-layout,
  .panel-grid,
  .testimonial-grid,
  .trust-strip,
  .mini-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: auto auto;
    align-items: start;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    padding-top: 0.5rem;
  }

  .site-nav.open {
    display: inline-flex;
  }

  .auth-area {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .brand-logo {
    max-width: 15rem;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 0.9rem;
  }

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

  .admin-primary-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 260px;
  }

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

  .story-media {
    aspect-ratio: 16 / 10;
  }

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

  .footer-column-owner {
    justify-self: start;
    text-align: left;
  }

  .footer-column-owner a {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .site-footer {
    width: min(100%, calc(100% - 1.25rem));
  }

  .price-chip {
    min-width: 0;
    width: 100%;
  }

  .hero-note-bar span {
    width: 100%;
    border-radius: 16px;
  }

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

  .featured-art,
  .product-card-art {
    aspect-ratio: 1 / 1;
  }

  .site-footer {
    padding: 1.5rem 1rem 1rem;
    border-radius: 24px;
  }

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