/* =============================================
   LANE SPECIAL — Luxury Coffee CSS
   ============================================= */

:root {
  --cream: #cfdbd5;
  --gold: #f6cc5d;
  --black: #242423;
  --charcoal: #333533;

  /* ── Opacity variants: Black ── */
  --black-10: rgba(36, 36, 35, 0.1);
  --black-35: rgba(36, 36, 35, 0.35);
  --black-48: rgba(36, 36, 35, 0.48);
  --black-88: rgba(36, 36, 35, 0.88);
  --black-92: rgba(36, 36, 35, 0.92);
  --black-94: rgba(36, 36, 35, 0.94);

  /* ── Opacity variants: Cream ── */
  --cream-06: rgba(207, 219, 213, 0.06);
  --cream-07: rgba(207, 219, 213, 0.07);
  --cream-08: rgba(207, 219, 213, 0.08);
  --cream-18: rgba(207, 219, 213, 0.18);
  --cream-20: rgba(207, 219, 213, 0.2);
  --cream-25: rgba(207, 219, 213, 0.25);
  --cream-30: rgba(207, 219, 213, 0.3);
  --cream-38: rgba(207, 219, 213, 0.38);
  --cream-40: rgba(207, 219, 213, 0.4);
  --cream-42: rgba(207, 219, 213, 0.42);
  --cream-50: rgba(207, 219, 213, 0.5);
  --cream-55: rgba(207, 219, 213, 0.55);

  /* ── Opacity variants: Gold ── */
  --gold-45: rgba(246, 204, 93, 0.45);

  --font-display: "Nexa Bold", sans-serif;
  --font-body: "Nexa Light", sans-serif;

  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 100px;
  --section-pad: clamp(80px, 10vw, 160px);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a,
button,
[data-cursor] {
  cursor: none;
}

/* ── Custom Cursor ── */
#cursor {
  position: fixed;
  width: 28px;
  height: 28px;
  background: url("../assets/images/cursor.png") center / contain no-repeat;
  pointer-events: none;
  z-index: 9999;
  left: 0;
  top: 0;
  transition:
    width 0.4s var(--ease-luxury),
    height 0.4s var(--ease-luxury),
    opacity 0.4s;
}

body.cursor-hover #cursor {
  width: 44px;
  height: 44px;
  opacity: 0.5;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  z-index: 1000;
  transition:
    background 0.6s var(--ease-luxury),
    border-color 0.6s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: var(--black-94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--cream-08);
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  display: none;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}

.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
}

.nav-logo-text .sub {
  font-family: var(--font-body);
  font-size: 0.48rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.65;
  transition:
    opacity 0.3s,
    color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease-luxury);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}
.nav-links a:hover::after {
  right: 0;
}

.nav-cta {
  border: 1px solid var(--gold-45) !important;
  color: var(--gold) !important;
  padding: 10px 22px !important;
  opacity: 1 !important;
  transition:
    background 0.4s,
    color 0.4s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-cta::after {
  display: none !important;
}

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    var(--black-88) 0%,
    var(--black-35) 50%,
    var(--black-10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  height: 100%;
  padding-bottom: clamp(32px, 5vw, 64px);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.5em;
  color: var(--cream);
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s var(--ease-luxury) 0.5s forwards;
}

.hero-subline {
  font-family: var(--font-body);
  font-size: clamp(0.55rem, 1vw, 0.75rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream-50);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease-luxury) 0.75s forwards;
}

/* ── Section Base ── */
section {
  padding: var(--section-pad) clamp(24px, 8vw, 120px);
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

/* ── Collection ── */
.collection {
  background: var(--black);
  padding: var(--section-pad) clamp(16px, 4vw, 60px);
}

.collection-intro {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.collection-intro .section-title {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collection-more {
  text-align: center;
  margin-top: clamp(40px, 5vw, 72px);
}

.collection-more a {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--cream-45);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-20);
  padding-bottom: 4px;
  transition:
    color 0.3s,
    border-color 0.3s;
}

.collection-more a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* LV-style editorial grid */
.lv-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 80px;
  gap: 3px;
}

.lv-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury);
}

.lv-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.lv-item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 8;
}
.lv-item:nth-child(2) {
  grid-column: 6 / 10;
  grid-row: 1 / 5;
}
.lv-item:nth-child(3) {
  grid-column: 10 / 13;
  grid-row: 1 / 5;
}
.lv-item:nth-child(4) {
  grid-column: 6 / 10;
  grid-row: 5 / 8;
}
.lv-item:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 5 / 8;
}
.lv-item:nth-child(6) {
  grid-column: 1 / 5;
  grid-row: 8 / 13;
}
.lv-item:nth-child(7) {
  grid-column: 5 / 9;
  grid-row: 8 / 13;
}
.lv-item:nth-child(8) {
  grid-column: 9 / 13;
  grid-row: 8 / 11;
}
.lv-item:nth-child(9) {
  grid-column: 9 / 11;
  grid-row: 11 / 13;
}
.lv-item:nth-child(10) {
  grid-column: 11 / 13;
  grid-row: 11 / 13;
}

.lv-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 1.1s var(--ease-luxury),
    filter 0.6s;
  filter: brightness(0.88);
}

.lv-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.72);
}

.lv-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  background: linear-gradient(to top, var(--black-92) 0%, transparent 100%);
  transform: translateY(8px);
  opacity: 0;
  transition:
    opacity 0.5s var(--ease-luxury),
    transform 0.5s var(--ease-luxury);
}

.lv-item:hover .lv-info {
  opacity: 1;
  transform: translateY(0);
}

.lv-info-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.lv-info-origin {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-55);
  margin-top: 4px;
}

.lv-add-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 9px 20px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  cursor: none;
  transition:
    background 0.3s,
    color 0.3s;
}

.lv-add-btn:hover,
.lv-add-btn.added {
  background: var(--gold);
  color: var(--black);
}

.lv-item:nth-child(9) .lv-info-name,
.lv-item:nth-child(10) .lv-info-name {
  font-size: 0.78rem;
}

.lv-item:nth-child(9) .lv-add-btn,
.lv-item:nth-child(10) .lv-add-btn {
  display: none;
}

/* Cart toast */
.cart-toast {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 14px 32px;
  opacity: 0;
  pointer-events: none;
  z-index: 8000;
  transition:
    opacity 0.4s var(--ease-luxury),
    transform 0.4s var(--ease-luxury);
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Passion block ── */
.passion-block {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.passion-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.48);
  display: block;
}

.passion-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.48);
  display: block;
}

.passion-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 48px clamp(24px, 6vw, 80px);
}

.passion-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.passion-bottom {
  margin-top: auto;
  text-align: left;
  align-self: flex-start;
  max-width: 480px;
}

.passion-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.6rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 12px;
}

.passion-desc {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 0.9vw, 0.85rem);
  color: var(--cream-50);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* ── Footer ── */
footer {
  background: var(--charcoal);
  padding: 80px clamp(24px, 5vw, 80px) 0;
  border-top: 1px solid var(--cream-06);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-brand-logo-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}

.footer-brand-logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-transform: uppercase;
}

.footer-brand-logo-text .sub {
  font-family: var(--font-body);
  font-size: 0.44rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-brand p {
  font-size: 0.78rem;
  color: var(--cream-38);
  line-height: 1.85;
  max-width: 240px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul li a {
  font-size: 0.78rem;
  color: var(--cream-42);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.03em;
}

.footer-col ul li a:hover {
  color: var(--cream);
}

/* Contact inline links */
.footer-contact-line {
  font-size: 0.78rem;
  color: var(--cream-42);
  line-height: 2;
  letter-spacing: 0.03em;
}

.footer-contact-line a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-25);
  transition:
    color 0.3s,
    border-color 0.3s;
}

.footer-contact-line a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Follow us */
.footer-follow {
  padding: 40px 0;
  border-top: 1px solid var(--cream-07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-follow-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream-30);
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-social-icons a {
  color: var(--cream-40);
  text-decoration: none;
  transition:
    color 0.3s,
    transform 0.3s;
  display: flex;
  align-items: center;
}

.footer-social-icons a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--cream-06);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-18);
}

/* ── Animations ── */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s var(--ease-luxury),
    transform 0.9s var(--ease-luxury);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.26s;
}
.reveal-delay-3 {
  transition-delay: 0.4s;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .lv-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 70px;
  }
  .lv-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 8;
  }
  .lv-item:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 5;
  }
  .lv-item:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 5 / 8;
  }
  .lv-item:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 8 / 13;
  }
  .lv-item:nth-child(5) {
    grid-column: 4 / 7;
    grid-row: 8 / 11;
  }
  .lv-item:nth-child(6) {
    grid-column: 4 / 7;
    grid-row: 11 / 13;
  }
  .lv-item:nth-child(7) {
    grid-column: 1 / 4;
    grid-row: 13 / 17;
  }
  .lv-item:nth-child(8) {
    grid-column: 4 / 7;
    grid-row: 13 / 17;
  }
  .lv-item:nth-child(9) {
    grid-column: 1 / 4;
    grid-row: 17 / 20;
  }
  .lv-item:nth-child(10) {
    grid-column: 4 / 7;
    grid-row: 17 / 20;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 72px;
  }
  .nav-links {
    display: none;
  }
  .nav-logo img {
    height: 44px;
  }
  .lv-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .lv-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .lv-item:nth-child(1) {
    grid-column: 1 / 3 !important;
  }
  .lv-item:nth-child(9) .lv-add-btn,
  .lv-item:nth-child(10) .lv-add-btn {
    display: inline-block;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
  body {
    cursor: auto;
  }
  a,
  button,
  [data-cursor] {
    cursor: auto;
  }
  @media (max-width: 768px) {
    #cursor {
      display: none;
    }
  }
}
