:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --bg-3: #1c1c1c;
  --text: #f1ece3;
  --text-dim: #b3a98e;
  --accent: #d4c4a8;
  --gold: #c9a961;
  --line: rgba(212, 196, 168, 0.18);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1240px;
  --radius: 4px;
  --t-fast: 200ms ease;
  --t: 320ms cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  position: relative;
  padding-left: 30px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: 0.005em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; margin-bottom: 16px; }
h3 { font-size: 1.5rem; line-height: 1.2; }
p { color: var(--text); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: padding var(--t), background var(--t);
}
.nav.scrolled { padding: 12px 0; background: rgba(10, 10, 10, 0.85); border-bottom: 1px solid var(--line); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav__brand-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t-fast);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t), left var(--t);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: center;
  position: relative;
  z-index: 110;
  border-radius: 50%;
  transition: background var(--t-fast);
}
.nav__toggle:hover, .nav__toggle:active { background: rgba(212, 196, 168, 0.08); }
.nav__toggle span {
  width: 22px; height: 1.5px; background: var(--text);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease, background 200ms ease, width 200ms ease;
}
.nav__toggle.open span { background: var(--accent); width: 24px; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scale(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: 80;
}
.nav__backdrop.open { opacity: 1; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__bg, .hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__bg img {
  animation: heroBgIn 2.4s 0.05s cubic-bezier(.2,.7,.2,1) both,
             kenBurns 28s 2.4s ease-in-out infinite alternate;
  will-change: transform, opacity, filter;
}
@keyframes heroBgIn {
  from { transform: scale(1.18); opacity: 0; filter: blur(12px); }
  to   { transform: scale(1.06); opacity: 1; filter: blur(0); }
}
@keyframes kenBurns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.14) translate(-1.5%, -1.5%); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.45) 40%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}

.hero__content {
  position: relative; z-index: 2;
  padding: 100px 24px 60px;
  max-width: 720px;
}

.hero__logo {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border: 1px solid var(--line);
  opacity: 0;
  animation: logoIn 1s 0.3s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes logoIn {
  from { opacity: 0; transform: scale(0.7); filter: blur(8px); }
  to   { opacity: 1; transform: scale(1); filter: blur(0); }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
}
.hero__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-50deg);
  transform-origin: 50% 100%;
  animation: letterReveal 0.9s cubic-bezier(.2,.7,.2,1) both;
}
.hero__letter:nth-child(1) { animation-delay: 0.65s; }
.hero__letter:nth-child(2) { animation-delay: 0.74s; }
.hero__letter:nth-child(3) { animation-delay: 0.83s; }
.hero__letter:nth-child(4) { animation-delay: 0.92s; }
.hero__letter:nth-child(5) { animation-delay: 1.01s; }
.hero__letter:nth-child(6) { animation-delay: 1.10s; }
.hero__letter:nth-child(7) { animation-delay: 1.19s; }
.hero__letter:nth-child(8) { animation-delay: 1.28s; }
.hero__letter:nth-child(9) { animation-delay: 1.37s; }
@keyframes letterReveal {
  from { opacity: 0; transform: translateY(40px) rotateX(-50deg); }
  to   { opacity: 1; transform: translateY(0) rotateX(0); }
}

.hero__line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent);
  margin: 8px auto 22px;
  animation: lineDraw 0.9s 1.5s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes lineDraw {
  from { width: 0; opacity: 0; }
  to   { width: 80px; opacity: 1; }
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--accent);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.7s cubic-bezier(.2,.7,.2,1) both;
}
.hero__sub {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeUp 1s 1.85s cubic-bezier(.2,.7,.2,1) both;
}
.hero__cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 2s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--t);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: #1a1a1a;
}
.btn--primary:hover { background: var(--text); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,196,168,0.25); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--small { padding: 12px 22px; font-size: 11px; letter-spacing: 0.18em; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 2px; height: 8px;
  background: var(--accent);
  border-radius: 1px;
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ---------- SECTIONS ---------- */
section { padding: clamp(80px, 12vw, 140px) 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 8vw, 80px);
}
.section-head .eyebrow { padding-left: 0; padding-right: 0; }
.section-head .eyebrow::before { display: none; }
.section-head .eyebrow::after {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--accent);
  margin: 16px auto 0;
}
.section-head p { color: var(--text-dim); font-size: 1.05rem; margin-top: 12px; }

/* ---------- ABOUT ---------- */
.about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__text .lead {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 400;
}
.about__text p { color: var(--text-dim); margin-bottom: 16px; font-size: 1rem; }
.about__text strong { color: var(--accent); font-weight: 500; }

.about__values {
  list-style: none;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}
.about__values li {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
}
.about__values span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.about__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__image::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ---------- CATEGORIES ---------- */
.categories { background: var(--bg-2); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; }
.cat-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.cat-card picture {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card__body { padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; }
.cat-card__body h3 { margin-bottom: 4px; color: var(--text); font-size: 1.35rem; }
.cat-card__body p { color: var(--text-dim); font-size: 0.92rem; line-height: 1.55; }
.cat-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 14px; padding-top: 16px;
  border-top: 1px solid var(--line);
  gap: 12px; flex-wrap: wrap;
}
.cat-card__price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- GALLERY ---------- */
.gallery { background: var(--bg); }
.gallery__grid {
  columns: 4;
  column-gap: 14px;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: transform var(--t);
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item img {
  width: 100%; height: auto; display: block;
  transition: transform 1s ease, filter var(--t);
}
.gallery__item:hover img { transform: scale(1.05); filter: brightness(1.1); }
.gallery__item::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,0);
  color: var(--accent);
  font-size: 32px;
  font-weight: 200;
  opacity: 0;
  transition: all var(--t);
  pointer-events: none;
}
.gallery__item:hover::after {
  opacity: 1;
  background: rgba(10,10,10,0.4);
}

/* ---------- CONTACT ---------- */
.contact { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contact__text > p { color: var(--text-dim); margin-bottom: 32px; font-size: 1.05rem; }

.contact__links {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-link {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--t);
}
.contact-link svg { color: var(--accent); flex-shrink: 0; transition: transform var(--t); }
.contact-link span { display: flex; flex-direction: column; gap: 3px; }
.contact-link strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
}
.contact-link em {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.contact-link:hover {
  border-color: var(--accent);
  background: rgba(212, 196, 168, 0.06);
  transform: translateX(4px);
}
.contact-link:hover svg { transform: scale(1.15) rotate(-3deg); }

.contact__note {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.contact__image {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.contact__image img { width: 100%; height: 100%; object-fit: cover; }
.contact__image::after {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ---------- FOOTER ---------- */
.footer { background: #050505; border-top: 1px solid var(--line); padding: 56px 0 32px; }
.footer__inner { display: flex; flex-direction: column; gap: 28px; }
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer__brand p { color: var(--text-dim); font-size: 0.92rem; max-width: 480px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 14px;
}
.footer__social { display: flex; gap: 24px; }
.footer__social a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--t-fast);
}
.footer__social a:hover { color: var(--accent); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: lbFadeIn 250ms ease;
}
.lightbox[hidden] { display: none; }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: lbZoom 320ms cubic-bezier(.2,.7,.2,1);
}
@keyframes lbZoom { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(20,20,20,0.7);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
  z-index: 1001;
}
.lightbox__close { top: 24px; right: 24px; font-size: 32px; line-height: 1; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--accent); color: #111; border-color: var(--accent);
}
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(2px); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .gallery__grid { columns: 3; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__image, .contact__image { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav__backdrop { display: block; }
  .nav__backdrop:not(.open) { pointer-events: none; }

  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(86vw, 380px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    padding: 96px 36px 36px;
    transform: translateX(100%);
    transition: transform 380ms cubic-bezier(.2,.7,.2,1);
    z-index: 90;
    overflow-y: auto;
  }
  .nav__links.open { transform: translateX(0); }

  .nav__links a:not(.nav__social a) {
    padding: 18px 0;
    text-align: left;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 480ms cubic-bezier(.2,.7,.2,1), transform 480ms cubic-bezier(.2,.7,.2,1), color 200ms ease, padding-left 200ms ease;
    position: relative;
  }
  .nav__links a:not(.nav__social a)::after { display: none; }
  .nav__links a:not(.nav__social a)::before {
    content: '';
    position: absolute;
    left: -36px; top: 50%;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 240ms ease;
  }
  .nav__links a:not(.nav__social a):hover,
  .nav__links a:not(.nav__social a):active {
    color: var(--accent);
    padding-left: 6px;
  }
  .nav__links a:not(.nav__social a):hover::before { width: 24px; }
  .nav__links.open a:not(.nav__social a) { opacity: 1; transform: translateX(0); }
  .nav__links.open a:nth-child(1) { transition-delay: 60ms; }
  .nav__links.open a:nth-child(2) { transition-delay: 130ms; }
  .nav__links.open a:nth-child(3) { transition-delay: 200ms; }
  .nav__links.open a:nth-child(4) { transition-delay: 270ms; }

  .nav__social {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 32px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 480ms 380ms ease, transform 480ms 380ms cubic-bezier(.2,.7,.2,1);
  }
  .nav__links.open .nav__social { opacity: 1; transform: translateY(0); }
  .nav__social a {
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-dim);
    transition: all var(--t-fast);
  }
  .nav__social a:hover, .nav__social a:active {
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-2px);
  }

  .nav__toggle { display: flex; }
  body.menu-open { overflow: hidden; }

  .nav__cart { margin-left: auto; margin-right: 4px; }
  .fab-order { display: inline-flex; }
  .fab-order:not(.visible) { transform: translateY(120px); opacity: 0; }
  .fab-order.visible { transform: translateY(0); opacity: 1; }
  body.menu-open .fab-order, body.cart-open .fab-order { display: none; }
  .modal__panel { padding: 28px 20px; }
  .gallery__grid { columns: 2; column-gap: 10px; }
  .gallery__item { margin-bottom: 10px; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .lightbox { padding: 16px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close, .lightbox__nav { width: 42px; height: 42px; font-size: 18px; }
  .hero__logo { width: 84px; height: 84px; }
  section { padding: 80px 0; }
}

@media (max-width: 420px) {
  .nav__brand-text { display: none; }
  .gallery__grid { columns: 2; }
  .hero__cta { flex-direction: column; width: 100%; padding: 0 12px; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- NAV CART BUTTON ---------- */
.nav__cart {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  border: 1px solid transparent;
  transition: all var(--t-fast);
  margin-left: auto;
}
.nav__cart:hover { border-color: var(--line); color: var(--accent); }
.nav__cart-count {
  position: absolute;
  top: 0; right: -2px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--accent);
  color: #111;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #0a0a0a;
}

/* ---------- CART DRAWER ---------- */
.cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: linear-gradient(180deg, #111 0%, #050505 100%);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.7);
  z-index: 200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(.2,.7,.2,1);
}
.cart[hidden] { display: flex; }
.cart.open { transform: translateX(0); }
.cart__head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.cart__head h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--text);
}
.cart__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 26px;
  color: var(--text-dim);
  transition: all var(--t-fast);
}
.cart__close:hover { background: var(--bg-3); color: var(--accent); }

.cart__body {
  flex: 1; overflow-y: auto;
  padding: 20px 28px;
}
.cart__empty {
  text-align: center;
  color: var(--text-dim);
  padding: 60px 0;
  font-size: 1rem;
}
.cart__empty span { display: block; margin-top: 8px; font-size: 0.85rem; }
.cart__empty strong { color: var(--accent); }

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item__img {
  width: 70px; height: 88px;
  object-fit: cover;
  border-radius: var(--radius);
}
.cart-item__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item__name { font-family: var(--serif); font-size: 1.05rem; color: var(--text); line-height: 1.25; }
.cart-item__opts { font-size: 0.78rem; color: var(--text-dim); display: flex; gap: 10px; flex-wrap: wrap; }
.cart-item__opts label { display: flex; flex-direction: column; gap: 4px; }
.cart-item__opts input {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 4px 8px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.78rem;
  width: 100%;
  max-width: 110px;
}
.cart-item__opts input:focus { outline: 1px solid var(--accent); border-color: var(--accent); }
.cart-item__qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-top: 4px;
  width: fit-content;
}
.cart-item__qty button {
  width: 26px; height: 26px;
  color: var(--text);
  font-size: 16px; line-height: 1;
  transition: color var(--t-fast);
}
.cart-item__qty button:hover { color: var(--accent); }
.cart-item__qty span { width: 24px; text-align: center; font-size: 0.85rem; color: var(--text); }
.cart-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item__price {
  font-family: var(--serif);
  color: var(--accent);
  font-size: 1.1rem;
  white-space: nowrap;
}
.cart-item__remove {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--t-fast);
}
.cart-item__remove:hover { color: #ff6b6b; }

.cart__foot {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
}
.cart__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
  font-family: var(--serif);
}
.cart__total span { color: var(--text-dim); font-size: 0.92rem; letter-spacing: 0.06em; }
.cart__total strong { color: var(--accent); font-size: 1.6rem; font-weight: 500; }
.cart__checkout { width: 100%; }
.cart__note { font-size: 0.78rem; color: var(--text-dim); text-align: center; margin-top: 12px; letter-spacing: 0.04em; }

.cart__backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: 199;
}
.cart__backdrop[hidden] { display: block; pointer-events: none; }
.cart__backdrop.open { opacity: 1; }
.cart__backdrop:not(.open) { pointer-events: none; }

/* ---------- MODAL ---------- */
.modal {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  z-index: 1100;
  animation: lbFadeIn 250ms ease;
}
.modal[hidden] { display: none; }
.modal__panel {
  background: linear-gradient(180deg, #181818 0%, #0d0d0d 100%);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: lbZoom 320ms cubic-bezier(.2,.7,.2,1);
}
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 26px;
  color: var(--text-dim);
  transition: all var(--t-fast);
}
.modal__close:hover { background: var(--bg-3); color: var(--accent); }
.modal__head { margin-bottom: 24px; }
.modal__head h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--text); margin-bottom: 6px; }
.modal__head p { color: var(--text-dim); font-size: 0.92rem; }

/* ---------- ORDER FORM ---------- */
.order-form { display: flex; flex-direction: column; gap: 14px; }
.order-form__row { width: 100%; }
.order-form label {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.order-form label span { color: var(--accent); }
.order-form input,
.order-form textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color var(--t-fast);
}
.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.order-form textarea { resize: vertical; min-height: 64px; font-family: var(--sans); }
.order-form .hp { position: absolute; left: -9999px; opacity: 0; }

.order-form__summary {
  background: rgba(212, 196, 168, 0.04);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 3px;
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.order-form__summary strong { color: var(--text); display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.order-form__summary ul { list-style: none; padding: 0; margin: 0; }
.order-form__summary li { padding: 4px 0; display: flex; justify-content: space-between; gap: 12px; }
.order-form__summary li b { color: var(--accent); font-weight: 500; }
.order-form__summary .total { border-top: 1px solid var(--line); padding-top: 8px; margin-top: 6px; color: var(--text); font-weight: 500; }

.order-form__error {
  padding: 12px 16px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff9999;
  border-radius: 3px;
  font-size: 0.88rem;
}
.order-form__submit { margin-top: 6px; width: 100%; }
.order-form__submit:disabled { opacity: 0.5; cursor: not-allowed; }

.order-success { text-align: center; padding: 20px 0; }
.order-success__icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  font-weight: 200;
  animation: successPop 480ms cubic-bezier(.2,.7,.2,1);
}
@keyframes successPop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.order-success h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 8px; color: var(--text); }
.order-success p { color: var(--text-dim); margin-bottom: 24px; }

/* ---------- FAB ---------- */
.fab-order {
  position: fixed;
  bottom: 22px; right: 22px;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--accent);
  color: #111;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(212, 196, 168, 0.3);
  z-index: 90;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.fab-order:active { transform: scale(0.96); }
.fab-order__label { line-height: 1; }
.fab-order__count {
  background: #111;
  color: var(--accent);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: 4px;
}

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