:root {
  --page-bg: #111111;
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.78);
  --accent: #d6a96c;
  --accent-dark: #9d7442;
  --line: rgba(255, 255, 255, 0.28);
  --control-bg: rgba(11, 11, 11, 0.32);
  --control-border: rgba(255, 255, 255, 0.25);
  --transition-duration: 900ms;
  --content-width: 660px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text-primary);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

/* Responsive site navigation */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 220ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 94px;
  border-bottom: 1px solid transparent;
  color: #ffffff;
  transition:
    height 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.64), rgba(7, 7, 7, 0));
  pointer-events: none;
  transition: opacity 320ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 13, 13, 0.84);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

.site-header__shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - 48px, 1640px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease;
}

.brand__mark svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.brand__text span {
  color: var(--accent);
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  border-color: var(--accent);
  background: rgba(214, 169, 108, 0.14);
  transform: rotate(-5deg) scale(1.04);
}

.brand:focus-visible,
.primary-nav__link:focus-visible,
.header-cta:focus-visible,
.nav-toggle:focus-visible,
.primary-nav__mobile-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.9vw, 34px);
}

.primary-nav__link {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.085em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 240ms ease;
  white-space: nowrap;
}

.primary-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible,
.primary-nav__link.is-active {
  color: #ffffff;
}

.primary-nav__link:hover::after,
.primary-nav__link:focus-visible::after,
.primary-nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.header-cta,
.primary-nav__mobile-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #15110d;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 260ms ease, border-color 260ms ease, color 260ms ease, transform 260ms ease;
}

.header-cta::before,
.primary-nav__mobile-cta::before {
  position: absolute;
  top: -75%;
  left: -40%;
  width: 26%;
  height: 250%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  transform: rotate(18deg);
  transition: left 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.header-cta span,
.header-cta svg,
.primary-nav__mobile-cta {
  position: relative;
  z-index: 1;
}

.header-cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  transition: transform 260ms ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.primary-nav__mobile-cta:hover,
.primary-nav__mobile-cta:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.header-cta:hover::before,
.header-cta:focus-visible::before,
.primary-nav__mobile-cta:hover::before,
.primary-nav__mobile-cta:focus-visible::before {
  left: 120%;
}

.header-cta:hover svg,
.header-cta:focus-visible svg {
  transform: translateX(3px);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.28);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: top 300ms ease, transform 300ms ease, opacity 220ms ease, width 300ms ease;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; width: 15px; }
.nav-toggle span:nth-child(3) { top: 29px; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(7px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.primary-nav__mobile-cta,
.nav-backdrop {
  display: none;
}

.hero-slider,
.category-showcase,
.category-card {
  scroll-margin-top: 88px;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: min(900px, 100svh);
  height: clamp(620px, 46.875vw, 900px);
  overflow: hidden;
  isolation: isolate;
  background: #171717;
}

.slider-track,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition-duration) cubic-bezier(0.22, 1, 0.36, 1),
    visibility var(--transition-duration) linear;
}

.slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.075);
  filter: saturate(0.92) contrast(1.03);
  transition: transform 6.8s cubic-bezier(0.18, 0.72, 0.32, 1);
}

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

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.slide-overlay--left {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.90) 0%, rgba(8, 8, 8, 0.68) 28%, rgba(8, 8, 8, 0.16) 58%, transparent 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52) 0%, transparent 36%);
}

.slide-overlay--balanced {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.86) 0%, rgba(8, 8, 8, 0.56) 31%, rgba(8, 8, 8, 0.08) 61%, rgba(8, 8, 8, 0.22) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, transparent 42%);
}

.slide-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: min(var(--content-width), calc(100% - 48px));
  transform: translateY(-50%);
}

.slide-content--left {
  left: clamp(24px, 7.3vw, 140px);
}

.slide-kicker,
.slide-content h1,
.slide-content h2,
.slide-description,
.cta-button {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(4px);
}

.slide.is-active .slide-kicker,
.slide.is-active .slide-content h1,
.slide.is-active .slide-content h2,
.slide.is-active .slide-description,
.slide.is-active .cta-button {
  animation: contentReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide.is-active .slide-kicker {
  animation-delay: 170ms;
}

.slide.is-active .slide-content h1,
.slide.is-active .slide-content h2 {
  animation-delay: 280ms;
}

.slide.is-active .slide-description {
  animation-delay: 410ms;
}

.slide.is-active .cta-button {
  animation-delay: 540ms;
}

.slide-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: clamp(0.72rem, 0.72vw, 0.88rem);
  font-weight: 750;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.slide-kicker::before {
  width: 42px;
  height: 2px;
  content: "";
  flex: 0 0 auto;
  background: currentColor;
  transform-origin: left;
  animation: lineGrow 900ms 450ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.slide-content h1,
.slide-content h2 {
  max-width: 700px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 4.7vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.slide-description {
  max-width: 590px;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.05vw, 1.25rem);
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 34px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms ease;
}

.cta-button::before {
  position: absolute;
  top: -60%;
  left: -36%;
  width: 28%;
  height: 220%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(18deg);
  transition: left 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button span,
.cta-button svg {
  position: relative;
  z-index: 1;
}

.cta-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 280ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #16110b;
  box-shadow: 0 18px 46px rgba(214, 169, 108, 0.28);
  outline: none;
  transform: translateY(-3px);
}

.cta-button:hover::before,
.cta-button:focus-visible::before {
  left: 118%;
}

.cta-button:hover svg,
.cta-button:focus-visible svg {
  transform: translateX(4px);
}

.cta-button--neon:hover,
.cta-button--neon:focus-visible {
  border-color: #a98cff;
  background: #a98cff;
  box-shadow: 0 18px 48px rgba(118, 79, 255, 0.35);
}

.slider-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--control-border);
  border-radius: 50%;
  background: var(--control-bg);
  color: #fff;
  cursor: pointer;
  opacity: 0.82;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition:
    opacity 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.slider-arrow--prev {
  left: clamp(16px, 2.2vw, 42px);
}

.slider-arrow--next {
  right: clamp(16px, 2.2vw, 42px);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
  outline: none;
}

.slider-arrow--prev:hover,
.slider-arrow--prev:focus-visible {
  transform: translate(-4px, -50%);
}

.slider-arrow--next:hover,
.slider-arrow--next:focus-visible {
  transform: translate(4px, -50%);
}

.slider-footer {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 7.3vw, 140px);
  bottom: clamp(30px, 4vw, 70px);
  left: clamp(24px, 7.3vw, 140px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.slider-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.current-slide {
  min-width: 19px;
  color: var(--accent);
}

.total-slides {
  color: rgba(255, 255, 255, 0.62);
}

.counter-line {
  width: 48px;
  height: 1px;
  background: var(--line);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition:
    width 300ms cubic-bezier(0.16, 1, 0.3, 1),
    background 300ms ease,
    transform 300ms ease;
}

.slider-dot::after {
  position: absolute;
  inset: -8px;
  content: "";
}

.slider-dot:hover,
.slider-dot:focus-visible {
  background: rgba(255, 255, 255, 0.82);
  outline: none;
  transform: scale(1.16);
}

.slider-dot.is-active {
  width: 34px;
  background: var(--accent);
  transform: none;
}

.autoplay-progress {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.autoplay-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), #f5dfbd);
  transform-origin: left;
}

.hero-slider.is-playing .autoplay-progress span {
  animation: progressFill 6s linear forwards;
}

.hero-slider.is-paused .autoplay-progress span {
  animation-play-state: paused;
}

.demo-anchors {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes contentReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes progressFill {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 1100px) {
  .hero-slider {
    min-height: 680px;
    height: 78svh;
  }

  .slide-content {
    width: min(620px, calc(100% - 120px));
  }

  .slider-arrow {
    top: auto;
    bottom: 88px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .slider-arrow--prev {
    right: 82px;
    left: auto;
  }

  .slider-arrow--next {
    right: 24px;
  }

  .slider-arrow--prev:hover,
  .slider-arrow--prev:focus-visible {
    transform: translateX(-3px);
  }

  .slider-arrow--next:hover,
  .slider-arrow--next:focus-visible {
    transform: translateX(3px);
  }
}

@media (max-width: 720px) {
  :root {
    --content-width: 100%;
  }

  .hero-slider {
    min-height: 680px;
    height: 100svh;
    max-height: 860px;
  }

  .slide-image {
    object-position: 62% center;
  }

  .slide:nth-child(2) .slide-image,
  .slide:nth-child(3) .slide-image,
  .slide:nth-child(4) .slide-image {
    object-position: 67% center;
  }

  .slide-overlay--left,
  .slide-overlay--balanced {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.78) 0%, rgba(7, 7, 7, 0.34) 100%),
      linear-gradient(0deg, rgba(4, 4, 4, 0.94) 0%, rgba(4, 4, 4, 0.58) 49%, rgba(4, 4, 4, 0.1) 78%);
  }

  .slide-content {
    top: auto;
    right: 24px;
    bottom: 145px;
    left: 24px;
    width: auto;
    transform: none;
  }

  .slide-kicker {
    margin-bottom: 13px;
    font-size: 0.66rem;
  }

  .slide-kicker::before {
    width: 28px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: clamp(2.45rem, 12vw, 4.15rem);
    line-height: 0.98;
  }

  .slide-description {
    max-width: 520px;
    margin-top: 17px;
    font-size: 0.96rem;
    line-height: 1.56;
  }

  .cta-button {
    min-height: 52px;
    margin-top: 25px;
    padding: 0 21px;
    font-size: 0.73rem;
  }

  .slider-footer {
    right: 24px;
    bottom: 33px;
    left: 24px;
  }

  .slider-arrow {
    display: none;
  }

  .counter-line {
    width: 26px;
  }
}

@media (max-width: 430px) {
  .slide-content {
    bottom: 120px;
  }

  .slide-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .slider-counter {
    display: none;
  }

  .slider-footer {
    justify-content: center;
  }
}


@media (max-width: 1240px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav__link {
    font-size: 0.7rem;
  }

  .header-cta {
    padding-inline: 17px;
  }
}

@media (max-width: 1180px) {
  .site-header,
  .site-header.is-scrolled {
    height: 74px;
  }

  .site-header__shell {
    width: min(100% - 32px, 1640px);
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .primary-nav {
    position: fixed;
    z-index: 102;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 410px);
    height: 100svh;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 116px 34px 38px;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    background:
      radial-gradient(circle at 100% 0%, rgba(214, 169, 108, 0.16), transparent 36%),
      #121212;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    transform: translateX(104%);
    transition: transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .primary-nav::before {
    margin-bottom: 24px;
    color: var(--accent);
    content: "Explore LuxeSeat";
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
  }

  .nav-open .primary-nav {
    transform: translateX(0);
  }

  .primary-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.78);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .primary-nav__link::before {
    order: 2;
    color: rgba(255, 255, 255, 0.34);
    content: "↗";
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 0.9rem;
    transition: color 240ms ease, transform 240ms ease;
  }

  .primary-nav__link::after {
    display: none;
  }

  .primary-nav__link:hover::before,
  .primary-nav__link:focus-visible::before,
  .primary-nav__link.is-active::before {
    color: var(--accent);
    transform: translate(3px, -3px);
  }

  .primary-nav__mobile-cta {
    display: inline-flex;
    width: 100%;
    min-height: 54px;
    margin-top: 30px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    z-index: 104;
    display: block;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 99;
    inset: 0;
    display: block;
    visibility: hidden;
    border: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    opacity: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 320ms ease, visibility 320ms linear;
  }

  .nav-open .nav-backdrop {
    visibility: visible;
    opacity: 1;
  }

  .nav-open {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .site-header__shell {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
  }

  .brand__mark svg {
    width: 21px;
    height: 21px;
  }

  .brand__text {
    font-size: 1.25rem;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-toggle span {
    left: 12px;
  }

  .primary-nav {
    width: min(92vw, 390px);
    padding: 102px 24px 28px;
  }

  .primary-nav__link {
    min-height: 58px;
    font-size: 1.24rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .autoplay-progress {
    display: none;
  }
}


/* Category showcase */
.category-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 150px) clamp(20px, 5vw, 96px);
  background:
    radial-gradient(circle at 12% 12%, rgba(214, 169, 108, 0.12), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(122, 93, 56, 0.1), transparent 28%),
    #f3efe8;
  color: #171411;
}

.category-showcase::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 50%;
  content: "";
}

.category-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1600px);
  margin: 0 auto;
}

.category-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(38px, 4vw, 66px);
}

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

.section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
  color: #8b6537;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 36px;
  height: 2px;
  content: "";
  background: currentColor;
}

.category-heading h2 {
  max-width: 680px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.4vw, 5.35rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.category-heading > p:last-child {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(23, 20, 17, 0.68);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.72;
}

.view-all-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  padding: 14px 0 10px;
  border-bottom: 1px solid rgba(23, 20, 17, 0.32);
  color: #171411;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 250ms ease, color 250ms ease;
}

.view-all-link svg,
.category-card__action svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.view-all-link:hover,
.view-all-link:focus-visible {
  border-color: #8b6537;
  color: #8b6537;
  outline: none;
}

.view-all-link:hover svg,
.view-all-link:focus-visible svg {
  transform: translateX(5px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 28px);
  perspective: 1400px;
}

.category-card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --mouse-x: 50%;
  --mouse-y: 50%;
  min-width: 0;
  transform: perspective(1100px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease-out, filter 350ms ease;
  will-change: transform;
}

.category-card__link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #171411;
  color: #fff;
  box-shadow: 0 24px 70px rgba(43, 33, 22, 0.12);
  text-decoration: none;
  isolation: isolate;
}

.category-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #25211d;
}

.category-card__media::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.02) 35%, rgba(10, 8, 7, 0.88) 100%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.13), transparent 34%);
  transition: opacity 450ms ease;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.015);
  transition: transform 850ms cubic-bezier(0.16, 1, 0.3, 1), filter 450ms ease;
}

.category-card__glow {
  position: absolute;
  z-index: 3;
  top: var(--mouse-y);
  left: var(--mouse-x);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 235, 202, 0.3), transparent 68%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
  mix-blend-mode: screen;
}

.category-card__content {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding: clamp(20px, 2vw, 30px);
  transform: translateZ(42px);
}

.category-card__number {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.category-card__content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 1.65vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.category-card__action {
  display: flex;
  align-items: center;
  gap: 9px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: #e8c99d;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(12px);
  transition:
    max-height 420ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 300ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover,
.category-card:focus-within {
  filter: drop-shadow(0 30px 34px rgba(66, 46, 24, 0.18));
}

.category-card:hover .category-card__media img,
.category-card:focus-within .category-card__media img {
  filter: saturate(1.07) contrast(1.04);
  transform: scale(1.1);
}

.category-card:hover .category-card__glow,
.category-card:focus-within .category-card__glow {
  opacity: 1;
}

.category-card:hover .category-card__action,
.category-card:focus-within .category-card__action {
  max-height: 32px;
  margin-top: 12px;
  opacity: 1;
  transform: translateY(0);
}

.category-card:hover .category-card__action svg,
.category-card:focus-within .category-card__action svg {
  transform: translateX(4px);
}

.category-card__link:focus-visible {
  outline: 3px solid #b58a55;
  outline-offset: 5px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-card:nth-child(2) { transition-delay: 80ms; }
.category-card:nth-child(3) { transition-delay: 160ms; }
.category-card:nth-child(4) { transition-delay: 240ms; }

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

  .category-card__content h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
  }
}

@media (max-width: 720px) {
  .category-showcase {
    padding: 76px 20px 88px;
  }

  .category-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .category-heading > p:last-child {
    margin-top: 17px;
    line-height: 1.6;
  }

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

  .category-card__link {
    border-radius: 20px;
  }

  .category-card__media {
    aspect-ratio: 5 / 5.6;
  }

  .category-card__action {
    max-height: 32px;
    margin-top: 10px;
    opacity: 1;
    transform: none;
  }
}

@media (hover: none) {
  .category-card {
    transform: none !important;
  }

  .category-card__glow {
    display: none;
  }
}


/* Featured product catalogue */
.products-section {
  position: relative;
  padding: 112px 32px 124px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 15%, rgba(214, 169, 108, 0.1), transparent 30%),
    linear-gradient(180deg, #111111 0%, #171513 52%, #111111 100%);
}

.products-section::before {
  position: absolute;
  top: 0;
  right: 5%;
  width: min(42vw, 620px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(214, 169, 108, 0.65), transparent);
}

.products-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1480px);
  margin: 0 auto;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

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

.products-heading h2 {
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5.1rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.products-heading > p:last-child {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.75;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  max-width: 560px;
}

.product-filter {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.product-filter:hover,
.product-filter:focus-visible,
.product-filter.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #17110b;
  transform: translateY(-2px);
}

.product-filter:focus-visible,
.whatsapp-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.15);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.product-card.is-filtered-out {
  display: none;
}

.product-card:hover {
  border-color: rgba(214, 169, 108, 0.48);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.3);
  transform: translateY(-9px);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1.12 / 1;
  overflow: hidden;
  background: #211e1b;
}

.product-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.58));
  pointer-events: none;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.product-card:hover .product-card__media img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.075);
}

.product-card__shine {
  position: absolute;
  z-index: 2;
  top: -40%;
  left: -60%;
  width: 32%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(20deg);
  transition: left 800ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.product-card:hover .product-card__shine {
  left: 130%;
}

.product-card__badge {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 17px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.65);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-card__badge--gaming {
  box-shadow: inset 0 0 0 1px rgba(151, 104, 255, 0.25);
}

.product-card__badge--recliner {
  box-shadow: inset 0 0 0 1px rgba(214, 169, 108, 0.28);
}

.product-card__badge--table {
  box-shadow: inset 0 0 0 1px rgba(100, 181, 170, 0.25);
}

.product-card__body {
  padding: 23px 22px 22px;
}

.product-card__eyebrow {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card__body h3 {
  min-height: 58px;
  margin-top: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.product-card__details {
  min-height: 50px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 21px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-price span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.whatsapp-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: #25d366;
  color: #07180d;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.whatsapp-button:hover {
  background: #39e878;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.24);
  transform: translateY(-2px);
}

.products-note {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

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

  .products-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-filters {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .products-section {
    padding: 82px 20px 92px;
  }

  .products-header {
    margin-bottom: 32px;
  }

  .products-heading h2 {
    font-size: clamp(2.4rem, 13vw, 3.65rem);
  }

  .product-filters {
    gap: 7px;
  }

  .product-filter {
    min-height: 39px;
    padding-inline: 13px;
    font-size: 0.66rem;
  }

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

  .product-card__body h3,
  .product-card__details {
    min-height: 0;
  }

  .product-card__media {
    aspect-ratio: 1.18 / 1;
  }
}

@media (max-width: 390px) {
  .product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .whatsapp-button {
    width: 100%;
  }
}

/* Parallax showroom call to action */
.parallax-cta {
  --parallax-y: 0px;
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(540px, 62vw, 720px);
  place-items: center;
  overflow: hidden;
  padding: 110px 24px;
  text-align: center;
}

.parallax-cta__background,
.parallax-cta__shade {
  position: absolute;
  inset: -12%;
}

.parallax-cta__background {
  z-index: -3;
  background: url("../images/05-premium-showroom.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.12);
  will-change: transform;
}

.parallax-cta__shade {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.7) 72%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.52), rgba(8, 8, 8, 0.82));
}

.parallax-cta::after {
  position: absolute;
  z-index: -1;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.parallax-cta__content {
  width: min(820px, 100%);
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.76);
}

.parallax-cta h2 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.parallax-cta__content > p:not(.section-kicker) {
  width: min(680px, 100%);
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.parallax-cta__button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.parallax-cta__button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 260ms ease;
}

.parallax-cta__button:hover,
.parallax-cta__button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.parallax-cta__button:hover svg,
.parallax-cta__button:focus-visible svg {
  transform: translateX(4px);
}

/* Instagram gallery */
.instagram-section {
  padding: 120px 32px 132px;
  background: #f1eee8;
  color: #171717;
}

.instagram-shell,
.site-footer__shell {
  width: min(100%, 1540px);
  margin: 0 auto;
}

.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 52px;
}

.instagram-header > div {
  max-width: 840px;
}

.instagram-header .section-kicker {
  color: #8b6237;
}

.instagram-header h2 {
  margin-top: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.instagram-header p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(23, 23, 23, 0.62);
  font-size: 0.98rem;
  line-height: 1.75;
}

.instagram-follow {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 999px;
  background: #171717;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.instagram-follow svg,
.instagram-tile__icon,
.footer-socials svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.instagram-follow svg {
  width: 20px;
  height: 20px;
}

.instagram-follow:hover,
.instagram-follow:focus-visible {
  background: #8b6237;
  box-shadow: 0 14px 30px rgba(80, 51, 27, 0.18);
  transform: translateY(-3px);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.instagram-tile {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #d8d2c9;
  color: #ffffff;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 550ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-tile::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  content: "";
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 400ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.instagram-tile__overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  background: linear-gradient(180deg, transparent 42%, rgba(9, 9, 9, 0.72));
  opacity: 0;
  transition: opacity 400ms ease;
}

.instagram-tile__overlay span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.3vw, 2.05rem);
  letter-spacing: -0.035em;
  transform: translateY(15px);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-tile__icon {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  width: 27px;
  height: 27px;
  opacity: 0;
  transform: translateY(-8px) scale(0.9);
  transition: opacity 350ms ease, transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-tile:hover img,
.instagram-tile:focus-visible img {
  filter: brightness(0.76) saturate(1.05);
  transform: scale(1.065);
}

.instagram-tile:hover::before,
.instagram-tile:focus-visible::before {
  opacity: 1;
  transform: scale(0.94);
}

.instagram-tile:hover .instagram-tile__overlay,
.instagram-tile:focus-visible .instagram-tile__overlay,
.instagram-tile:hover .instagram-tile__icon,
.instagram-tile:focus-visible .instagram-tile__icon {
  opacity: 1;
}

.instagram-tile:hover .instagram-tile__overlay span,
.instagram-tile:focus-visible .instagram-tile__overlay span,
.instagram-tile:hover .instagram-tile__icon,
.instagram-tile:focus-visible .instagram-tile__icon {
  transform: translateY(0) scale(1);
}

/* Footer */
.site-footer {
  padding: 88px 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #0c0c0c;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(42px, 6vw, 96px);
  padding-bottom: 72px;
}

.brand--footer {
  width: fit-content;
}

.footer-brand > p {
  max-width: 430px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.footer-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #17110b;
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
}

.footer-column h2 {
  margin-bottom: 9px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column > a:not(.footer-whatsapp) {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
}

.footer-column > a:not(.footer-whatsapp):hover,
.footer-column > a:not(.footer-whatsapp):focus-visible {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-whatsapp {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  margin-top: 5px;
  padding: 0 16px;
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: 999px;
  color: #62e994;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.footer-whatsapp:hover,
.footer-whatsapp:focus-visible {
  background: #25d366;
  color: #07180d;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.73rem;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--accent);
}

@media (max-width: 1050px) {
  .instagram-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .parallax-cta {
    min-height: 600px;
    padding: 90px 24px;
  }

  .parallax-cta::after {
    inset: 16px;
  }

  .parallax-cta h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .instagram-section {
    padding: 88px 20px 96px;
  }

  .instagram-header {
    margin-bottom: 34px;
  }

  .instagram-header h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .instagram-tile__overlay {
    padding: 18px;
  }

  .site-footer {
    padding: 70px 20px 22px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
  }

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

@media (max-width: 480px) {
  .parallax-cta__button,
  .instagram-follow {
    width: 100%;
  }

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

  .instagram-tile {
    aspect-ratio: 1.15 / 1;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-cta__background {
    transform: scale(1.08);
  }
}

/* Dynamic CMS states */
.setup-notice,
.empty-state-front {
  position: absolute;
  z-index: 8;
  inset: 50% auto auto 50%;
  width: min(620px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(14,14,15,.88);
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
}
.setup-notice a { color: var(--accent); font-weight: 800; }

/* Secure CMS additions */
.brand__logo-image{display:block;width:auto;max-width:190px;height:52px;object-fit:contain}.site-header.is-scrolled .brand__logo-image{height:46px}.footer-shell{width:min(100%,1540px);margin:0 auto}.footer-grid{display:grid;grid-template-columns:minmax(280px,1.55fr) repeat(3,minmax(150px,.7fr));gap:clamp(42px,6vw,96px);padding-bottom:72px}.footer-brand-column>p{max-width:430px;margin-top:24px;color:rgba(255,255,255,.5);font-size:.9rem;line-height:1.75}.footer-grid section>h2{margin:0 0 18px;color:#fff;font-size:.72rem;font-weight:900;letter-spacing:.13em;text-transform:uppercase}.footer-links,.footer-contact{display:flex;align-items:flex-start;flex-direction:column;gap:13px}.footer-links a,.footer-contact a{color:rgba(255,255,255,.55);font-size:.86rem;line-height:1.5;text-decoration:none;transition:color .2s ease,transform .2s ease}.footer-links a:hover,.footer-links a:focus-visible,.footer-contact a:hover,.footer-contact a:focus-visible{color:var(--accent);transform:translateX(4px)}.footer-contact p{margin:0;color:rgba(255,255,255,.43);font-size:.82rem;line-height:1.65}.footer-bottom>a{color:rgba(255,255,255,.55);text-decoration:none}.instagram-tile__overlay{font-family:Georgia,"Times New Roman",serif;font-size:clamp(1.15rem,2vw,1.8rem)}
.category-page{background:#f5f2ec;color:#171717}.category-hero{position:relative;isolation:isolate;min-height:620px;display:flex;align-items:flex-end;overflow:hidden}.category-hero>img{position:absolute;z-index:-2;inset:0;width:100%;height:100%;object-fit:cover}.category-hero__overlay{position:absolute;z-index:-1;inset:0;background:linear-gradient(90deg,rgba(8,8,9,.82),rgba(8,8,9,.35) 62%,rgba(8,8,9,.18)),linear-gradient(0deg,rgba(8,8,9,.72),transparent 65%)}.category-hero__content{width:min(100%,1540px);margin:0 auto;padding:190px 32px 86px;color:#fff}.category-hero__content h1{max-width:900px;margin:18px 0 20px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(3.2rem,7vw,7rem);font-weight:500;line-height:.95;letter-spacing:-.055em}.category-hero__content>p:last-child{max-width:720px;color:rgba(255,255,255,.75);font-size:1.05rem;line-height:1.75}.breadcrumbs{display:flex;align-items:center;gap:10px;margin-bottom:28px;color:rgba(255,255,255,.66);font-size:.78rem;font-weight:750;letter-spacing:.08em;text-transform:uppercase}.breadcrumbs a{color:#fff;text-decoration:none}.category-products{padding-top:110px}.category-products .products-heading{max-width:920px}.category-products .products-heading p:last-child{white-space:normal}.pagination{display:flex;align-items:center;justify-content:center;gap:18px;margin-top:58px}.pagination__pages{display:flex;align-items:center;gap:8px}.pagination a,.pagination span{display:grid;min-width:42px;height:42px;place-items:center;border:1px solid rgba(23,23,23,.15);border-radius:999px;color:#171717;font-size:.78rem;font-weight:800;text-decoration:none}.pagination a:hover,.pagination a:focus-visible,.pagination a.is-current{border-color:#171717;background:#171717;color:#fff}.pagination__control{padding:0 18px;width:auto}.pagination .is-disabled{opacity:.42}.category-products .empty-state-front{position:static;width:100%;background:#1b1b1d;transform:none}.category-products .products-grid{min-height:0}
@media(max-width:900px){.footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.footer-brand-column{grid-column:1/-1}.category-hero{min-height:560px}.category-hero__content{padding-top:160px}.pagination{flex-wrap:wrap}}
@media(max-width:560px){.brand__logo-image{max-width:150px;height:44px}.footer-grid{grid-template-columns:1fr}.footer-brand-column{grid-column:auto}.category-hero{min-height:520px}.category-hero__content{padding:150px 20px 64px}.category-hero__content h1{font-size:clamp(2.7rem,14vw,4.2rem)}.pagination{gap:10px}.pagination__pages{order:-1;width:100%;justify-content:center}.pagination a,.pagination span{min-width:38px;height:38px}}
