:root {
  --ink: #111111;
  --paper: #f5f1e8;
  --mist: #ebe6db;
  --sand: #e4ddd0;
  --muted: #6e685e;
  --white: #ffffff;
  --font-script: "Great Vibes", cursive;
  --font-display: "Bodoni Moda", Georgia, serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Brand wordmark (logo typography) */
.brand-luce {
  display: block;
  font-family: var(--font-script);
  font-size: 1.15em;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand-magnifica {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.15em;
}

/* Announcement */
.announce {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.announce a {
  color: var(--sand);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.announce a:hover {
  border-color: var(--sand);
}

/* Header — cream, matches logo */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.35rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav__link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
  transition: color 0.3s var(--ease);
}

.nav__link:first-child {
  justify-self: start;
}

.nav__link:last-child {
  justify-self: end;
}

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

.nav__brand img {
  width: clamp(72px, 14vw, 96px);
  height: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

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

.btn--light {
  background: var(--paper);
  color: var(--ink);
}

.btn--light:hover {
  background: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--dark {
  background: var(--ink);
  color: var(--paper);
}

.btn--dark:hover {
  background: #2a2a2a;
}

.text-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
  transition: opacity 0.3s var(--ease);
}

.text-link:hover {
  opacity: 0.65;
}

/* Hero — full bleed */
.hero {
  position: relative;
  min-height: calc(100vh - 2.4rem - var(--header-h));
  min-height: calc(100svh - 2.4rem - var(--header-h));
  display: grid;
  place-items: end center;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 12s var(--ease) forwards;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.12) 38%, rgba(17, 17, 17, 0.78) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  text-align: center;
  padding: 0 1rem 5.5rem;
}

.hero__title {
  margin-bottom: 0.35rem;
}

.hero__logo-wrap {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 1s var(--ease) 0.2s forwards;
}

.hero__logo {
  width: clamp(220px, 48vw, 360px);
  height: auto;
  margin: 0 auto;
}

.hero__brand-text {
  display: none;
  margin-bottom: 1rem;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.4s forwards;
}

.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin: 1.25rem 0 2rem;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.5s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.7s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  animation: scrollDot 1.6s var(--ease) infinite;
}

/* Sections shared */
.section-head {
  margin-bottom: 2.75rem;
}

.section-head--center {
  text-align: center;
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.section-head h2,
.story__copy h2,
.instagram h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.story__copy h2 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.15em;
}

.section-cta {
  margin-top: 3rem;
  text-align: center;
}

/* Bestsellers */
.bestsellers {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}

.product__link {
  display: block;
}

.product__media {
  position: relative;
  overflow: hidden;
  background: var(--mist);
  aspect-ratio: 1 / 1.15;
  margin-bottom: 0.9rem;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product:hover .product__media img {
  transform: scale(1.05);
}

.product__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
}

.product h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.product__price {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Story */
.story {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 70vh;
  background: var(--ink);
  color: var(--paper);
}

.story__visual {
  min-height: 50vh;
  overflow: hidden;
}

.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 50vh;
}

.story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4.5rem);
  background:
    linear-gradient(160deg, #1a1a1a 0%, #111111 60%, #1c1916 100%);
}

.story__copy .eyebrow {
  color: var(--sand);
}

.story__copy .text-link {
  color: var(--paper);
}

.story__copy p:not(.eyebrow) {
  margin-top: 1.25rem;
  max-width: 34rem;
  color: rgba(245, 241, 232, 0.78);
  font-weight: 300;
  font-size: 1.02rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  background: var(--ink);
  padding: 0.35rem;
}

.gallery__item {
  overflow: hidden;
  min-height: 280px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* Reviews */
.reviews {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.reviews__track {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.review {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.review:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.review p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.review cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Community / Instagram */
.instagram {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 1.5rem;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.88)),
    var(--community-bg, none) center / cover no-repeat;
}

.instagram__inner {
  max-width: 640px;
  margin: 0 auto;
}

.instagram h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.5rem;
}

.instagram h2 .brand-luce {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  color: var(--paper);
}

.instagram h2 .brand-magnifica {
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  color: var(--paper);
}

.instagram p:not(.eyebrow) {
  margin: 1rem auto 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

.instagram .eyebrow {
  color: var(--sand);
}

/* Footer */
.footer {
  background: var(--paper);
  color: var(--muted);
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.footer__brand {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer__brand img {
  width: 140px;
  margin: 0 auto;
}

.footer__wordmark {
  margin-bottom: 0.75rem !important;
  color: var(--ink);
}

.footer__wordmark .brand-luce {
  font-size: 2.4rem;
}

.footer__wordmark .brand-magnifica {
  font-size: 0.95rem;
}

.footer > p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-bottom: 2rem;
}

.footer__links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

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

.footer__copy {
  font-size: 0.72rem;
  color: rgba(17, 17, 17, 0.4);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Animations */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0.2;
    transform: translateY(10px);
  }
}

/* Responsive */
@media (min-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.25rem;
  }

  .reviews__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .review {
    border-top: none;
    border-bottom: none;
    border-left: 1px solid rgba(17, 17, 17, 0.12);
    padding: 0 0 0 1.5rem;
  }

  .review:first-child {
    border-left: none;
    padding-left: 0;
  }

  .gallery {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 420px;
  }

  .gallery__item,
  .gallery__item img {
    min-height: 100%;
    height: 100%;
  }
}

@media (min-width: 960px) {
  .story {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 78vh;
  }

  .story__visual,
  .story__visual img {
    min-height: 100%;
    height: 100%;
  }

  .hero {
    place-items: end start;
  }

  .hero__content {
    text-align: left;
    padding: 0 0 5.5rem 6vw;
    margin-right: auto;
    margin-left: 0;
  }

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

  .hero__logo {
    margin: 0;
  }

  .hero__scroll {
    left: auto;
    right: 2.5rem;
    transform: none;
  }
}

@media (max-width: 560px) {
  .nav__link {
    display: none;
  }

  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__img {
    transform: none;
  }

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

/* ── WordPress / theme extras ── */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
  transition: color 0.3s var(--ease);
}

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

.nav__left {
  justify-self: start;
}

.nav__right,
.nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.luce-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.72);
  transition: color 0.3s var(--ease);
}

.luce-cart-link:hover {
  color: var(--ink);
}

.luce-cart-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.3rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.65rem;
  letter-spacing: 0;
}

.luce-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.luce-content {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.luce-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.luce-entry__media {
  margin-bottom: 2rem;
  overflow: hidden;
}

.luce-entry__media img {
  width: 100%;
}

.luce-entry__content {
  font-size: 1.05rem;
  color: rgba(17, 17, 17, 0.85);
}

.luce-entry__content p {
  margin-bottom: 1.25rem;
}

.luce-entry__content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__menu a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

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

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 560px) {
  .nav__left,
  .nav__link,
  .luce-cart-link__label {
    display: none;
  }

  .nav__right,
  .nav__actions {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav {
    position: relative;
  }
}
