/* ==============================================
   NERO BLACK COFFEE
   Landing Page — v3 (Motion-Forward)
   ============================================== */

:root {
  /* Colors */
  --black:       #080808;
  --bg:          #0c0c0c;
  --bg-alt:      #101010;
  --espresso:    #110702;
  --wood-dark:   #1e0c04;
  --amber:       #c8722a;
  --amber-light: #e08840;
  --cream:       #f0e9dc;
  --text:        #a89f92;
  --text-dim:    #504840;
  --white:       #ffffff;

  /* Type */
  --script:      'Great Vibes', cursive;
  --serif:       'Cormorant Garamond', serif;
  --sans:        'DM Sans', sans-serif;

  /* Layout */
  --nav-h:       78px;
  --announce-h:  36px;
  --pad:         120px;
  --wrap:        1240px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --r:           3px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
}
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; }

/* ── Grain overlay (full page) ─────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
}

/* ── Preloader ─────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.preloader-name {
  font-family: var(--script);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  display: block;
  opacity: 0;
  transform: translateY(40px);
  letter-spacing: 2px;
}
.preloader-line {
  width: 0;
  height: 1px;
  background: var(--amber);
}
.preloader-counter {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.3);
  opacity: 0;
}

/* ── Scroll Progress ───────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--amber);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ── Custom Cursor ─────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s var(--ease), background 0.2s;
  will-change: transform;
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1px solid rgba(200,114,42,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out),
              border-color 0.3s, border-radius 0.4s var(--ease-out);
  will-change: transform;
}
/* Link hover — expand */
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: rgba(200,114,42,0.7);
}
body.cursor-hover .cursor-dot { transform: translate(-50%, -50%) scale(0); }

/* Card hover — rounded square */
body.cursor-card .cursor-ring {
  width: 64px; height: 64px;
  border-radius: 14px;
  border-color: rgba(200,114,42,0.5);
}
body.cursor-card .cursor-dot { transform: translate(-50%, -50%) scale(0); }

/* Text input — vertical bar */
body.cursor-text .cursor-ring {
  width: 3px; height: 28px;
  border-radius: 2px;
  border-color: var(--amber);
}
body.cursor-text .cursor-dot { transform: translate(-50%, -50%) scale(0); }

/* ── Utilities ─────────────────────────────────── */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 52px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: var(--r);
  border: none;
  cursor: none;
  transition: all 0.28s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--amber);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--amber-light);
  box-shadow: 0 12px 30px rgba(200,114,42,0.28);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn.w-full { width: 100%; text-align: center; }

/* Section labels */
.eyebrow {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.display-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}
.rule {
  width: 36px;
  height: 1px;
  background: var(--amber);
}
.rule.center { margin: 0 auto; }

/* Scroll reveal — marker class, GSAP handles the rest */
/* No-JS fallback: everything is visible */

/* ==============================================
   ANNOUNCEMENT BAR
   ============================================== */
.announce-bar {
  height: var(--announce-h);
  background: var(--espresso);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announce-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  will-change: transform;
}
.announce-track span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding-right: 64px;
}
.announce-track span em {
  font-style: normal;
  color: var(--amber);
}

/* ==============================================
   NAVBAR
   ============================================== */
.navbar {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), box-shadow 0.3s;
  will-change: transform;
}
.navbar.scrolled {
  top: 0;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 52px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; height: 50px; }
.logo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(200,114,42,0.4);
  padding: 9px 22px;
  border-radius: var(--r);
  transition: all 0.25s var(--ease);
  will-change: transform;
}
.nav-cta:hover {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all 0.28s var(--ease);
  transform-origin: center;
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: calc(var(--announce-h) + var(--nav-h));
}
body.scrolled-past .hero { margin-top: var(--nav-h); }

.hero-bg {
  position: absolute;
  inset: -12%;
  background: url('../images/IMG_2759.JPG') center 35% / cover no-repeat;
  will-change: transform;
  filter: brightness(0.75);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, rgba(5,5,5,0.5) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(8,8,8,0.82) 100%);
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  will-change: transform;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,114,42,0.35) 0%, transparent 70%);
  top: -15%; right: -10%;
  animation: glowDrift1 14s ease-in-out infinite alternate;
}
.glow-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(107,58,31,0.3) 0%, transparent 70%);
  bottom: 5%; left: -8%;
  animation: glowDrift2 18s ease-in-out infinite alternate;
}
@keyframes glowDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, 40px) scale(1.2); }
}
@keyframes glowDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}
.hero-eyebrow {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 30px;
  opacity: 0;
}
.hero-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 30px;
}
.hero-script {
  font-family: var(--script);
  font-size: clamp(6rem, 14vw, 12rem);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 0.92;
}
/* Individual chars from split */
.hero-script .char {
  display: inline-block;
  will-change: transform, opacity;
}
.hero-sub-label {
  font-family: var(--sans);
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  letter-spacing: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  margin-top: 14px;
}
.hero-sub-label .char {
  display: inline-block;
  will-change: transform, opacity;
}
.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 54px;
  letter-spacing: 0.3px;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.hero-scroll-text {
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(200,114,42,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ==============================================
   MARQUEE DIVIDER
   ============================================== */
.marquee-section {
  overflow: hidden;
  background: var(--espresso);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 20px 0;
}
.marquee-track {
  display: flex;
  width: max-content;      /* size the box to its content, not to the viewport —
                              required for xPercent:-50 to line up with the
                              duplicated-content boundary for a seamless loop. */
  gap: 0;
  white-space: nowrap;
  will-change: transform;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.marquee-item strong {
  color: var(--amber);
  font-weight: 400;
}
.marquee-dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ==============================================
   SERVICES
   ============================================== */
.services {
  padding: var(--pad) 0;
  background: var(--bg-alt);
}
.section-head {
  text-align: center;
  margin-bottom: 72px;
}
.section-head .rule { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
  perspective: 1000px;
}
.s-card {
  background: var(--bg-alt);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.s-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
/* Cursor-following glow (injected by JS) */
.s-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  background: radial-gradient(
    circle 250px at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(200,114,42,0.06),
    transparent 70%
  );
}
.s-card:hover { background: rgba(255,255,255,0.02); }
.s-card:hover::before { transform: scaleX(1); }
.s-card:hover .s-card-glow { opacity: 1; }

.s-icon {
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: block;
  filter: grayscale(0.3);
}
.s-card h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.s-card p {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.78;
}

/* ==============================================
   MANIFESTO
   ============================================== */
.manifesto {
  position: relative;
  padding: calc(var(--pad) * 0.9) 0;
  background: var(--wood-dark);
  overflow: hidden;
}
/* Fade the bottom of the manifesto into the next section's dark bg.
   The parallax on .manifesto-bg translates the image up ~15%, exposing
   the wood-dark color as a brown band at the bottom. This gradient blends
   that band smoothly into the shop section's --bg color. */
.manifesto::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  background: url('../images/IMG_5580.jpg') center / cover no-repeat;
  opacity: 0.08;
  filter: grayscale(1);
  will-change: transform;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 52px;
}
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.manifesto-quote em {
  color: var(--amber);
  font-style: italic;
}
/* Word-by-word reveal (JS splits into .word spans) */
.manifesto-quote .word {
  display: inline-block;
  will-change: opacity;
}
.manifesto-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ==============================================
   ABOUT
   ============================================== */
.about {
  padding: var(--pad) 0;
  background: var(--bg);
  overflow: hidden;
}
.about-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  align-items: center;
}
/* Photos */
.about-photos {
  position: relative;
  height: 640px;
}
.a-photo {
  position: absolute;
  border-radius: var(--r);
  overflow: hidden;
}
.a-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
.a-photo:hover img { transform: scale(1.04); }
.a-photo-main {
  top: 0; left: 0;
  width: 74%; height: 80%;
}
.a-photo-secondary {
  bottom: 0; right: 0;
  width: 54%; height: 54%;
  border: 5px solid var(--bg);
  box-shadow: -10px -10px 40px rgba(0,0,0,0.5);
}
/* Floating badge */
.a-badge {
  position: absolute;
  top: 42%; left: 68%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(200,114,42,0.4);
  animation: badgeFloat 6s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-12px); }
}
.a-badge-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
}
.a-badge-text {
  font-size: 0.45rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  text-align: center;
}

/* Text side */
.about-text .eyebrow { margin-bottom: 16px; }
.about-text .display-title { margin-bottom: 22px; }
.about-text .rule { margin-bottom: 32px; }
.about-body {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 18px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-block { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ==============================================
   GALLERY — Horizontal scroll on desktop
   ============================================== */
.gallery {
  background: var(--bg-alt);
  overflow: hidden;
}
.gallery .container {
  padding-top: var(--pad);
}
.gallery .section-head {
  margin-bottom: 48px;
}
.gallery-track {
  display: flex;
  gap: 24px;
  padding: 24px 5vw 80px;
  flex-wrap: nowrap;
  will-change: transform;
}
.g-item {
  flex: 0 0 42vw;
  height: 60vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.4s;
  filter: brightness(0.88);
  will-change: transform;
}
.g-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 50%);
  transition: opacity 0.4s;
}
.g-item:hover .g-overlay { opacity: 0.3; }

/* ==============================================
   CONTACT
   ============================================== */
.contact {
  position: relative;
  padding: var(--pad) 0;
  overflow: hidden;
}
.contact-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/IMG_2747.jpg') center / cover no-repeat;
  opacity: 0.06;
  filter: grayscale(1);
}
.contact-bg-color {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0702 0%, #080401 100%);
  opacity: 0.97;
}
.contact .container { position: relative; z-index: 1; }
.contact-sub {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-top: 18px;
  line-height: 1.7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  margin-top: 68px;
}

/* Info column */
.c-info { display: flex; flex-direction: column; gap: 38px; }
.c-item { display: flex; align-items: flex-start; gap: 20px; }
.c-icon-wrap {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.c-item:hover .c-icon-wrap {
  border-color: rgba(200,114,42,0.3);
  transform: scale(1.1);
}
.c-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 5px;
}
.c-val {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.c-val:hover { color: var(--amber); }

/* Form */
.c-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.c-form input,
.c-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 15px 20px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.c-form input::placeholder,
.c-form textarea::placeholder { color: var(--text-dim); }
.c-form input:focus,
.c-form textarea:focus {
  border-color: rgba(200,114,42,0.45);
  box-shadow: 0 0 0 3px rgba(200,114,42,0.08);
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background: #040404;
  padding: 72px 0 36px;
}

/* Large background text */
.footer-wordmark {
  text-align: center;
  overflow: hidden;
  margin-bottom: 56px;
}
.footer-wordmark span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  letter-spacing: -2px;
  line-height: 0.9;
  pointer-events: none;
  user-select: none;
  will-change: -webkit-text-stroke-color;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 32px;
}
.footer-logo-wrap { height: 52px; }
.footer-logo-wrap .logo-img { height: 100%; opacity: 0.6; }

.footer-links { display: flex; gap: 36px; }
.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-social { display: flex; align-items: center; gap: 20px; }
.footer-social a {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--text-dim);
}
.footer-slogan {
  font-size: 0.62rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.5;
}

/* ==============================================
   ACCESSIBILITY HELPERS
   ============================================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* When any dialog is open: lock body scroll, hide the custom cursor (so it
   doesn't sit on top of form inputs / payment buttons), AND restore the OS
   cursor — the existing `body { cursor: none }` global rule must be undone
   inside the dialog or the user is left with no cursor at all (visible bug
   on macOS, hidden but present on Windows). */
body.ui-locked { overflow: hidden; cursor: auto; }
body.ui-locked button,
body.ui-locked .btn,
body.ui-locked .nav-cta,
body.ui-locked a { cursor: auto; }
body.ui-locked button:not([disabled]),
body.ui-locked .btn:not([disabled]),
body.ui-locked .nav-cta,
body.ui-locked a[href] { cursor: pointer; }
body.ui-locked .cursor-dot,
body.ui-locked .cursor-ring { display: none; }

/* ==============================================
   NAV CART BUTTON
   ============================================== */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-left: 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
  transition: border-color 0.25s var(--ease), color 0.25s, transform 0.2s var(--ease);
  flex-shrink: 0;
}
.nav-cart:hover {
  border-color: rgba(200,114,42,0.55);
  color: var(--amber);
}
.nav-cart svg { display: block; }
.nav-cart-count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--amber);
  color: var(--black);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease-out);
  pointer-events: none;
}
.nav-cart.has-items .nav-cart-count { transform: scale(1); }
.nav-cart.bump { animation: cartBump 0.45s var(--ease-out); }
@keyframes cartBump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* ==============================================
   SHOP SECTION
   ============================================== */
.shop {
  position: relative;
  padding: var(--pad) 0;
  background: var(--bg);
  overflow: hidden;
}
.shop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(200,114,42,0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(107,58,31,0.05), transparent 60%);
  pointer-events: none;
}
.shop > .container { position: relative; }
.shop-sub {
  max-width: 560px;
  margin: 26px auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Product card */
.p-card {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: border-color 0.35s var(--ease), box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  will-change: transform;
}
.p-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.p-card:hover {
  border-color: rgba(200,114,42,0.32);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,114,42,0.10);
}
.p-card:hover::before { transform: scaleX(1); }

.p-media {
  position: relative;
  background: var(--espresso);
  overflow: hidden;
}
.p-media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,114,42,0.16), transparent 55%),
    linear-gradient(135deg, #1a0d05 0%, #080402 100%);
  transition: transform 0.7s var(--ease-out);
}
.p-card:hover .p-media-placeholder { transform: scale(1.04); }
.p-monogram {
  font-family: var(--script);
  font-size: clamp(3.4rem, 5.5vw, 4.6rem);
  color: rgba(255,255,255,0.92);
  line-height: 1;
  letter-spacing: 2px;
}
.p-monogram-tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200,114,42,0.85);
}
.p-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-body {
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-name {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
}
.p-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.p-opt + .p-opt { margin-top: 4px; }
.p-opt-label {
  display: block;
  font-size: 0.54rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  opacity: 0.85;
}
.p-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.p-chip {
  flex: 1 1 auto;
  min-width: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 10px;
  border-radius: 2px;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.p-chip:hover {
  border-color: rgba(200,114,42,0.4);
  color: var(--white);
}
.p-chip.is-active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
  font-weight: 500;
}

.p-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.p-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--amber);
  letter-spacing: 0.5px;
}
.p-add {
  padding: 11px 22px;
  font-size: 0.6rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.p-add:disabled { opacity: 0.55; cursor: default; }

/* ==============================================
   CART DRAWER
   ============================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(4,4,4,0.66);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 950;
  width: min(440px, 92vw);
  background: #0a0a0a;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  will-change: transform;
  box-shadow: -30px 0 80px -20px rgba(0,0,0,0.6);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 30px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.cart-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.cart-close,
.modal-close {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  width: 36px; height: 36px;
  border-radius: var(--r);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}
.cart-close:hover,
.modal-close:hover {
  color: var(--amber);
  border-color: rgba(200,114,42,0.5);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,114,42,0.3) transparent;
}
.cart-body::-webkit-scrollbar { width: 5px; }
.cart-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

.cart-empty {
  padding: 70px 30px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
}
.cart-empty[hidden] { display: none; }

.cart-items { display: flex; flex-direction: column; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: flex-start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  width: 64px; height: 64px;
  border-radius: 4px;
  background:
    radial-gradient(circle at 30% 30%, rgba(200,114,42,0.18), transparent 60%),
    linear-gradient(135deg, #1a0d05 0%, #080402 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--script);
  font-size: 1.8rem;
  color: rgba(255,255,255,0.9);
  line-height: 1;
}
.cart-item-info { min-width: 0; }
.cart-item-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--white);
  line-height: 1.25;
}
.cart-item-opts {
  font-size: 0.6rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.cart-qty-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  width: 26px; height: 26px;
  font-size: 0.85rem;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
}
.cart-qty-btn:hover { color: var(--amber); background: rgba(200,114,42,0.08); }
.cart-qty-val {
  font-size: 0.74rem;
  color: var(--white);
  min-width: 26px;
  text-align: center;
  line-height: 26px;
}
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cart-item-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--amber);
}
.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.55rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: #d96b4a; }

.cart-foot {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 30px 26px;
  background: rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
}
.cart-free {
  color: var(--amber);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cart-row-total,
.cart-total-row {
  border-top: 1px dashed rgba(255,255,255,0.10);
  padding-top: 12px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--white);
}
.cart-row-total span:last-child,
.cart-total-row .cart-total {
  color: var(--amber);
  font-size: 1.35rem;
}
.cart-fine {
  margin-top: 12px;
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}
#cartCheckout:disabled { opacity: 0.4; cursor: not-allowed; }

/* ==============================================
   CHECKOUT MODAL
   ============================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 960;
  background: rgba(4,4,4,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  position: fixed;
  z-index: 970;
  top: 50%; left: 50%;
  width: min(620px, 94vw);
  max-height: 88vh;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.65);
  transform: translate(-50%, -48%) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.modal.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
}

.modal-inner {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 44px 44px 36px;
}
.modal-inner::-webkit-scrollbar { width: 5px; }
.modal-inner::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

.modal-step[hidden] { display: none; }

.modal-head { margin-bottom: 26px; }
.modal-step-dot {
  display: inline-block;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.modal-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.1;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-form label {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.modal-form .optional { color: rgba(255,255,255,0.25); letter-spacing: 1.5px; text-transform: none; font-size: 0.62rem; }
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  margin-top: 6px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  letter-spacing: 0.1px;
  text-transform: none;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: rgba(200,114,42,0.45);
  box-shadow: 0 0 0 3px rgba(200,114,42,0.08);
}
.modal-form input.is-invalid,
.modal-form select.is-invalid {
  border-color: rgba(217,107,74,0.6);
  box-shadow: 0 0 0 3px rgba(217,107,74,0.08);
}
.modal-form textarea { resize: vertical; min-height: 64px; }
.modal-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(200,114,42,0.7) 50%),
                    linear-gradient(135deg, rgba(200,114,42,0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { grid-template-columns: 1.6fr 1fr 1fr; }
.form-error {
  background: rgba(217,107,74,0.08);
  border-left: 2px solid rgba(217,107,74,0.6);
  color: #e08e74;
  font-size: 0.78rem;
  padding: 10px 14px;
  border-radius: var(--r);
  margin: 4px 0;
}
.form-fine {
  text-align: center;
  font-size: 0.55rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* Review block */
.review {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r);
  padding: 22px;
  margin-bottom: 22px;
}
.review-h {
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: 500;
}
.review > .review-h:first-child,
.done > .review-h:first-of-type { margin-top: 0; }
.review-addr {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.review-items { display: flex; flex-direction: column; gap: 4px; }
.review-items li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
}
.review-items li .ri-name { color: var(--white); }
.review .cart-total-row { margin-top: 12px; margin-bottom: 0; }

/* Pay step */
.pay-box { min-height: 160px; margin-bottom: 8px; }
.pay-status {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
  min-height: 1.2em;
}
.back-btn {
  margin-top: 12px;
  font-size: 0.6rem;
  padding: 12px 22px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Success step */
.done { text-align: left; }
.done-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
}
.done-line strong { color: var(--amber); font-style: normal; font-weight: 400; }
.done-id-label {
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.done-id {
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  color: var(--amber);
  margin-bottom: 26px;
  word-break: break-all;
}
.done-total { margin-top: 12px; margin-bottom: 0; }
.done-actions {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(217,107,74,0.05);
  border: 1px solid rgba(217,107,74,0.18);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.done-actions[hidden] { display: none; }
.done-actions .btn { width: 100%; padding: 13px 20px; font-size: 0.62rem; }
.done-copied {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  text-align: center;
  margin: 4px 0 0;
}
.done-fail {
  background: rgba(217,107,74,0.10);
  border: 1px solid rgba(217,107,74,0.32);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.done-fail strong { color: #e08e74; display: block; margin-bottom: 4px; font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; }
.done-refund {
  margin-top: 26px;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
  text-align: center;
}
.done-close {
  margin-top: 18px;
  width: 100%;
}

/* Footer privacy link */
.footer-privacy {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-privacy:hover { color: var(--amber); }

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
  :root { --pad: 90px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; gap: 22px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-photos { height: 440px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-wordmark span { font-size: clamp(4rem, 12vw, 8rem); }
  .g-item { flex: 0 0 55vw; }
}

@media (max-width: 768px) {
  :root { --pad: 72px; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .about-inner { padding: 0 24px; }
  .manifesto-inner { padding: 0 24px; }

  /* Cursor off on touch devices */
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  .btn { cursor: pointer; }
  .nav-cta { cursor: pointer; }

  .nav-links {
    position: fixed;
    top: calc(var(--announce-h) + var(--nav-h));
    left: 0; right: 0;
    background: rgba(6,6,6,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: none;
  }
  .nav-links.open { display: flex; }
  .navbar.scrolled .nav-links { top: var(--nav-h); }
  .nav-links li { text-align: center; }
  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 0.75rem;
  }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; gap: 1px; }

  .p-card { grid-template-columns: 1fr; }
  .p-media { aspect-ratio: 4 / 3; }
  .p-body { padding: 24px 22px 22px; }

  .nav-cart { width: 38px; height: 38px; margin-left: 8px; }

  .cart-drawer { width: 100vw; border-left: none; }
  .cart-head { padding: 22px 22px 16px; }
  .cart-item { padding: 16px 22px; }
  .cart-foot { padding: 18px 22px 22px; }

  .modal {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    top: 0; left: 0;
    border-radius: 0;
    border: none;
    transform: translateY(20px);
  }
  .modal.is-open { transform: translateY(0); }
  .modal-inner { padding: 64px 22px 28px; }
  .modal-form .form-row,
  .modal-form .form-row-3 { grid-template-columns: 1fr; }

  /* Gallery - vertical on mobile */
  .gallery-track {
    flex-direction: column;
    gap: 16px;
    padding: 24px 24px 60px;
  }
  .g-item {
    flex: none;
    width: 100%;
    height: 280px;
  }

  .about-photos { height: 340px; }
  .a-photo-main { width: 78%; height: 84%; }
  .a-badge { width: 70px; height: 70px; }
  .a-badge-num { font-size: 1.2rem; }
  .about-stats { flex-wrap: wrap; gap: 24px; }

  .footer-main {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .form-row { grid-template-columns: 1fr; }

  .hero {
    margin-top: calc(var(--announce-h) + var(--nav-h));
  }

  .scroll-progress { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .a-photo-secondary { display: none; }
  .a-photo-main { width: 100%; height: 100%; position: relative; }
  .about-photos { height: 280px; }
  .a-badge { display: none; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}
