:root {
  --forest:  #09150a;
  --deep:    #0d1a0f;
  --moss:    #3a6644;
  --sage:    #6fa876;
  --fern:    #4b7c5a;
  --cream:   #f0ece0;
  --bark:    #8b7355;
  --amber:   #c8923a;
  --muted:   #5a7a60;
  --sand:    #a0956e;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--forest);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── LEAVES ── */
#leaves-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.leaf {
  position: absolute;
  left: 0; top: 0;
  pointer-events: none;
  will-change: transform;
  transform-origin: center center;
}

/* ── CURSOR ── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 9px; height: 9px;
  background: var(--sage);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(111,168,118,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.cursor-ring.expand { width: 58px; height: 58px; opacity: 0.55; }

/* ── NOISE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.28;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  background: linear-gradient(to bottom, rgba(9,21,10,0.95) 0%, transparent 100%);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.9;
}

.nav-links { display: flex; gap: 40px; list-style: none; }

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width 0.3s;
}

.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(40,90,48,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(18,50,24,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(28,60,32,0.18) 0%, transparent 60%),
    linear-gradient(160deg, #0b1a0d 0%, #09150a 55%, #07120a 100%);
  z-index: 0;
}

/* Organic mist orbs replace the red grid */
.hero-mist {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mist-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
}

.mist-orb:nth-child(1) {
  width: 700px; height: 420px;
  background: radial-gradient(circle, rgba(50,110,60,0.7) 0%, transparent 70%);
  top: 5%; left: -8%;
  animation: mistDrift 28s ease-in-out infinite;
}
.mist-orb:nth-child(2) {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(30,75,42,0.6) 0%, transparent 70%);
  top: 35%; right: -4%;
  animation: mistDrift 34s ease-in-out infinite;
  animation-delay: -10s;
}
.mist-orb:nth-child(3) {
  width: 650px; height: 320px;
  background: radial-gradient(circle, rgba(42,88,52,0.5) 0%, transparent 70%);
  bottom: -5%; left: 25%;
  animation: mistDrift 24s ease-in-out infinite;
  animation-delay: -17s;
}

@keyframes mistDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(28px,-18px) scale(1.06); }
  66%       { transform: translate(-18px,14px) scale(0.94); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 52px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 14vw, 16rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-title span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(111,168,118,0.3);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--sand);
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
  max-width: 480px;
}

.hero-scroll-hint {
  position: absolute;
  right: 52px; bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.hero-scroll-hint span {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--sage), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

.hero-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--moss) 30%, var(--fern) 70%, transparent 100%);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.2s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── CONTENT STACKING — keeps leaves behind all page sections ── */
.about,
.gallery-section,
.marquee-wrap,
.categories,
.strip,
.contact,
footer {
  position: relative;
  z-index: 3;
}

/* ── ABOUT ── */
.about {
  padding: 140px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about::before {
  content: 'ABOUT';
  position: absolute;
  top: 100px; right: 52px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 10rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(111,168,118,0.14);
  pointer-events: none;
  letter-spacing: 0.05em;
}

.about-number {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: var(--sage);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(111,168,118,0.22);
  display: inline-block;
}

.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  color: var(--cream);
}

.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.85;
  color: var(--cream);
  font-weight: 300;
}

.about-text + .about-text { margin-top: 20px; color: var(--sand); }

.about-visual { position: relative; height: 500px; }

.about-card {
  position: absolute;
  border: 1px solid rgba(111,168,118,0.18);
  background: rgba(40,80,48,0.07);
  padding: 32px;
  transition: border-color 0.4s, background 0.4s;
}

.about-card:hover {
  border-color: rgba(111,168,118,0.42);
  background: rgba(40,80,48,0.13);
}

.about-card:nth-child(1) { top: 0; right: 0; width: 75%; height: 55%; }
.about-card:nth-child(2) { bottom: 0; left: 0; width: 65%; height: 45%; }
.about-card:nth-child(3) { top: 40%; right: 5%; width: 40%; height: 35%; z-index: 2; }

.card-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.card-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--cream);
}

.card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 8px;
}

/* ── GALLERY ── */
.gallery-section { padding: 0 0 120px; }

.section-header {
  padding: 80px 52px 60px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1;
}

.section-meta {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  padding: 0 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  cursor: none;
}

.gallery-item:nth-child(1)  { grid-column: 1 / 8;   grid-row: 1; aspect-ratio: 16/9; }
.gallery-item:nth-child(2)  { grid-column: 8 / 13;  grid-row: 1; aspect-ratio: 4/3; }
.gallery-item:nth-child(3)  { grid-column: 1 / 5;   grid-row: 2; aspect-ratio: 3/4; }
.gallery-item:nth-child(4)  { grid-column: 5 / 10;  grid-row: 2; aspect-ratio: 16/10; }
.gallery-item:nth-child(5)  { grid-column: 10 / 13; grid-row: 2; aspect-ratio: 3/4; }
.gallery-item:nth-child(6)  { grid-column: 1 / 6;   grid-row: 3; aspect-ratio: 16/9; }
.gallery-item:nth-child(7)  { grid-column: 6 / 9;   grid-row: 3; aspect-ratio: 4/3; }
.gallery-item:nth-child(8)  { grid-column: 9 / 13;  grid-row: 3; aspect-ratio: 4/3; }
.gallery-item:nth-child(9)  { grid-column: 1 / 13;  grid-row: 4; aspect-ratio: 21/9; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,20,10,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ── STRIP ── */
.strip {
  background: linear-gradient(90deg, var(--moss), var(--fern), var(--moss));
  height: 2px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}

.strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── CATEGORIES ── */
.categories { padding: 0 52px 120px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.cat-item {
  position: relative;
  padding: 52px 40px;
  border: 1px solid rgba(111,168,118,0.08);
  background: rgba(13,26,15,0.6);
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s;
  cursor: none;
}

.cat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--moss), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cat-item:hover { border-color: rgba(111,168,118,0.24); background: rgba(42,80,50,0.09); }
.cat-item:hover::before { transform: scaleX(1); }

.cat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(111,168,118,0.24);
  display: block;
  margin-bottom: 20px;
  transition: -webkit-text-stroke 0.3s;
}

.cat-item:hover .cat-num { -webkit-text-stroke: 1px var(--sage); }

.cat-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 14px;
  display: block;
}

.cat-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.cat-arrow {
  position: absolute;
  top: 40px; right: 40px;
  font-size: 1.4rem;
  color: var(--sage);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s, transform 0.3s;
}

.cat-item:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(111,168,118,0.1);
  border-bottom: 1px solid rgba(111,168,118,0.1);
  padding: 20px 0;
  margin: 60px 0;
  background: rgba(40,80,48,0.05);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.marquee-dot {
  width: 5px; height: 5px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── CONTACT ── */
.contact {
  padding: 120px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid rgba(111,168,118,0.08);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,80,48,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.contact-heading em { display: block; color: var(--sage); font-style: normal; }
.contact-heading { margin-bottom: 28px; }

.contact-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--sand);
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-links { display: flex; flex-direction: column; gap: 16px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 20px 24px;
  border: 1px solid rgba(111,168,118,0.12);
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--moss);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 0;
}

.contact-link:hover { border-color: var(--sage); transform: translateX(4px); }
.contact-link:hover::before { transform: translateX(0); }
.contact-link > * { position: relative; z-index: 1; }

.link-icon { font-size: 1.4rem; width: 36px; text-align: center; }

.link-label {
  flex: 1;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s;
}

.link-arrow { color: var(--muted); transition: color 0.3s, transform 0.3s; }
.contact-link:hover .link-label,
.contact-link:hover .link-arrow { color: var(--cream); }
.contact-link:hover .link-arrow { transform: translateX(4px); }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
}

.form-input {
  background: rgba(13,26,15,0.7);
  border: 1px solid rgba(111,168,118,0.18);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(240,236,224,0.25); }

.form-input:focus {
  border-color: rgba(111,168,118,0.55);
  background: rgba(40,80,48,0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236fa876' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option { background: #0d1a0f; color: var(--cream); }

.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }

.form-submit {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(111,168,118,0.3);
  color: var(--cream);
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  cursor: none;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: border-color 0.3s, color 0.3s;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--moss);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: -1;
}

.form-submit:hover { border-color: var(--sage); }
.form-submit:hover::before { transform: translateX(0); }
.form-submit:disabled { opacity: 0.5; }

.form-status {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  min-height: 1.2em;
}

.form-status.success { color: var(--sage); }
.form-status.error   { color: var(--amber); }

/* ── FOOTER ── */
footer {
  padding: 40px 52px;
  border-top: 1px solid rgba(111,168,118,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(90,122,96,0.5);
  text-transform: uppercase;
}

.footer-accent {
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--moss), var(--sage));
}

.footer-credit {
  font-family: 'Space Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(90,122,96,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-credit:hover { color: var(--sage); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.gallery-item:hover img { transform: scale(1.05); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7,16,9,0.97);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  padding: 60px;
}

.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
  cursor: none;
  padding: 8px;
  transition: color 0.3s;
}

.lightbox-close:hover { color: var(--sage); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(9,21,10,0.6);
  border: 1px solid rgba(111,168,118,0.2);
  color: var(--cream);
  font-size: 1.4rem;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  z-index: 10;
}

.lightbox-arrow:hover {
  background: var(--moss);
  border-color: var(--sage);
  color: var(--cream);
}

.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

.lightbox img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

/* ── LARGE TABLET / iPad Pro (901px–1100px) ── */
@media (min-width: 901px) and (max-width: 1100px) {
  nav { padding: 28px 44px; }
  .nav-logo { font-size: 1.3rem; }
  .nav-links { gap: 36px; }
  .nav-links a { font-size: 0.75rem; }
  .hero { align-items: center; }
  .hero-content { padding: 80px 52px 20px; }
  .hero-scroll-hint { display: none; }
}

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── TOUCH / NO-HOVER DEVICES ── */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .gallery-item, .cat-item, .lightbox-arrow, .lightbox-close,
  .form-submit, .contact-link { cursor: pointer; }
  .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(8,20,10,0.65) 0%, transparent 40%);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  .hero { align-items: center; }
  .hero-content { padding: 80px 28px 20px; }
  .hero-scroll-hint { display: none; }
  .about { grid-template-columns: 1fr; padding: 80px 28px; gap: 40px; }
  .about::before { display: none; }
  .about-visual {
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
  .about-card {
    position: static;
    flex: 1;
    width: auto;
    height: auto;
  }
  .about-card:nth-child(1),
  .about-card:nth-child(2),
  .about-card:nth-child(3) { width: auto; height: auto; }
  .section-header { padding: 60px 28px 40px; }
  .categories { padding: 0 28px 80px; }
  .cat-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; padding: 80px 28px; gap: 48px; }
  .contact-heading { margin-bottom: 20px; }
  footer { padding: 30px 28px; flex-direction: column; gap: 16px; text-align: center; }
  .gallery-item:nth-child(1)  { grid-column: 1 / 13; grid-row: auto; }
  .gallery-item:nth-child(2)  { grid-column: 1 / 13; grid-row: auto; }
  .gallery-item:nth-child(3)  { grid-column: 1 / 7;  grid-row: auto; }
  .gallery-item:nth-child(4)  { grid-column: 7 / 13; grid-row: auto; }
  .gallery-item:nth-child(5)  { grid-column: 1 / 13; grid-row: auto; }
  .gallery-item:nth-child(6)  { grid-column: 1 / 13; grid-row: auto; }
  .gallery-item:nth-child(7)  { grid-column: 1 / 7;  grid-row: auto; }
  .gallery-item:nth-child(8)  { grid-column: 7 / 13; grid-row: auto; }
  .gallery-item:nth-child(9)  { grid-column: 1 / 13; grid-row: auto; }
  .lightbox { padding: 60px 16px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 1.1rem; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ── SMALL MOBILE (≤640px) ── */
@media (max-width: 640px) {
  nav { padding: 18px 20px; }
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    background: rgba(9,21,10,0.97);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: all;
  }

  .nav-links a { font-size: 0.85rem; opacity: 1; }

  .hero { align-items: center; }
  .hero-content { padding: 80px 20px 20px; }
  .hero-scroll-hint { display: none; }

  .about { padding: 60px 20px; }
  .about-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .about-card {
    position: static;
    width: 100%;
    height: auto;
  }
  .about-card:nth-child(1),
  .about-card:nth-child(2),
  .about-card:nth-child(3) { width: 100%; height: auto; }

  .section-header { padding: 50px 20px 32px; flex-direction: column; align-items: flex-start; gap: 12px; }

  /* 2-column gallery grid */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reset all items — must match nth-child specificity to override base grid-row values */
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  /* Full-width hero shots */
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(9) {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
  }

  .categories { padding: 0 20px 60px; }
  .cat-item { padding: 36px 24px; }

  .contact { padding: 60px 20px; }
  .form-submit { align-self: stretch; text-align: center; cursor: pointer; }

  footer { padding: 24px 20px; }

  .lightbox { padding: 60px 8px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-arrow { width: 36px; height: 36px; font-size: 1rem; }
}
