/* ============================================
   JEFF SIEVERS PHOTOGRAPHY — Global Styles
   ============================================ */

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

:root {
  --black:      #080808;
  --deep:       #111111;
  --charcoal:   #1a1a1a;
  --smoke:      #242424;
  --gold:       #c8a97e;
  --gold-light: #e2c9a0;
  --cream:      #f2ead8;
  --white:      #fafafa;
  --gray:       #777;
  --gray-light: #555;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --max-width: 1320px;
  --nav-h: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---- PLACEHOLDERS (gradient fills shown until real photos added) ---- */
.placeholder-landscape { background: linear-gradient(135deg, #0d2010 0%, #1e4a28 40%, #3a7048 70%, #c8a97e 100%) !important; }
.placeholder-wildlife  { background: linear-gradient(135deg, #1a0f05 0%, #4a2a10 40%, #8a5520 70%, #c8a97e 100%) !important; }
.placeholder-macro     { background: linear-gradient(135deg, #0a0d1a 0%, #1a2040 40%, #2a3a6a 70%, #6a8ac8 100%) !important; }
.placeholder-alt       { background: linear-gradient(135deg, #1a0a0a 0%, #3a1a1a 40%, #6a2a2a 70%, #c87e7e 100%) !important; }
.placeholder-portrait  { background: linear-gradient(160deg, #1a1a0d 0%, #2a2a1a 50%, #3a3a2a 100%) !important; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; }
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.eyebrow, .section-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 14px 38px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background var(--transition), transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
}
.btn-ghost:hover { color: var(--gold); }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95) 0%, transparent 100%);
  transition: background 0.5s, height 0.3s;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid rgba(200,169,126,0.12);
  height: 64px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
}
.logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.7);
  transition: color 0.3s;
  padding-bottom: 4px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: -20px;
  background: rgba(17,17,17,0.98);
  border: 1px solid rgba(200,169,126,0.12);
  padding: 12px 0;
  list-style: none;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}
.dropdown a:hover { color: var(--gold); background: rgba(200,169,126,0.06); }
.dropdown a::after { display: none; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 22s ease-in-out infinite alternate;
  filter: saturate(1.1);
}
.hero-gradient-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, #1c3a20 0%, transparent 55%),
    radial-gradient(ellipse at 25% 75%, #0d1e30 0%, transparent 50%),
    linear-gradient(140deg, #080808 0%, #101a10 50%, #0a0f18 100%);
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 50%, rgba(8,8,8,0.15) 100%),
    linear-gradient(to right, rgba(8,8,8,0.5) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px 90px;
  max-width: 860px;
  animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
.hero .eyebrow { animation: fadeUp 1.2s 0.1s both; }
.hero-title {
  margin-bottom: 24px;
  animation: fadeUp 1.2s 0.2s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(242,234,216,0.8);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeUp 1.2s 0.3s both;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp 1.2s 0.4s both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 1.2s 0.6s both;
}
.scroll-bar {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.35; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.1); }
}
.hero-scroll-indicator span {
  font-size: 0.52rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--deep);
  padding: 80px 52px;
  border-top: 1px solid rgba(200,169,126,0.1);
  border-bottom: 1px solid rgba(200,169,126,0.1);
}
.intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}
.intro-inner .section-label { flex-shrink: 0; }
.intro-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  border-left: 1px solid rgba(200,169,126,0.3);
  padding-left: 60px;
}

/* ---- FEATURED GRID ---- */
.featured-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 480px 320px;
  gap: 4px;
  background: var(--black);
}
.grid-large { grid-row: 1 / 3; }
.grid-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition), filter 0.5s;
  filter: saturate(1.05);
}
.grid-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.25) brightness(1.05);
}
.grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  opacity: 0;
  transition: opacity 0.4s;
}
.grid-item:hover .grid-overlay { opacity: 1; }
.grid-label {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.grid-link {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
}
.grid-link:hover { color: var(--gold); }

/* ---- QUOTE ---- */
.quote-section {
  background: var(--charcoal);
  padding: 100px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 28rem;
  color: rgba(200,169,126,0.04);
  line-height: 1;
  pointer-events: none;
}
.quote-inner { position: relative; z-index: 1; }
blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
blockquote cite {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ---- ABOUT TEASER ---- */
.about-teaser {
  background: var(--deep);
  padding: 120px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-teaser-img {
  position: relative;
}
.about-teaser-img img {
  width: 88%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  position: relative;
  z-index: 1;
  filter: grayscale(15%);
  transition: filter 0.5s;
}
.about-teaser-img:hover img { filter: grayscale(0%); }
.about-frame {
  position: absolute;
  top: 24px;
  right: 0;
  width: 88%;
  height: 100%;
  border: 1px solid rgba(200,169,126,0.25);
  z-index: 0;
}
.about-teaser-text h2 {
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.about-teaser-text p {
  color: rgba(242,234,216,0.7);
  font-size: 0.95rem;
  margin-bottom: 18px;
  line-height: 1.85;
}
.about-teaser-text .btn-primary { margin-top: 16px; }

/* ---- CONTACT CTA ---- */
.contact-cta {
  background: var(--black);
  padding: 100px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: 'CONNECT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 18vw;
  color: rgba(200,169,126,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}
.contact-cta-inner { position: relative; z-index: 1; }
.contact-cta .section-label { justify-content: center; }
.contact-cta .section-label::before { display: none; }
.contact-cta h2 { margin-bottom: 16px; }
.contact-cta p {
  font-style: italic;
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 36px;
  font-family: var(--font-display);
}

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  padding: 80px 52px 32px;
  border-top: 1px solid rgba(200,169,126,0.12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}
.footer-logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.footer-nav h4, .footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--cream); }
.social-links { display: flex; flex-direction: column; gap: 14px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--gray);
  transition: color 0.3s;
}
.social-link:hover { color: var(--gold); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.65rem; color: rgba(119,119,119,0.6); letter-spacing: 0.1em; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  height: 44vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 0 52px 52px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.3) 60%, rgba(8,8,8,0.5) 100%);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.6);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
}

/* ---- GALLERIES PAGE ---- */
.galleries-page { background: var(--black); padding: 80px 52px 120px; }
.galleries-intro {
  max-width: var(--max-width);
  margin: 0 auto 70px;
}
.galleries-intro p {
  font-style: italic;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 1.1rem;
  max-width: 560px;
  margin-top: 12px;
}
.galleries-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: block;
}
.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition), filter 0.5s;
  filter: saturate(1.05);
}
.gallery-card:hover .gallery-card-img {
  transform: scale(1.07);
  filter: saturate(1.3);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.1) 60%, transparent 100%);
  transition: background 0.4s;
}
.gallery-card:hover .gallery-card-overlay {
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
}
.gallery-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
}
.gallery-card-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(200,169,126,0.12);
  margin-bottom: 4px;
}
.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 10px;
}
.gallery-card-desc {
  font-size: 0.78rem;
  color: rgba(242,234,216,0.55);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s;
  opacity: 0;
}
.gallery-card:hover .gallery-card-desc { max-height: 80px; opacity: 1; }
.gallery-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-card:hover .gallery-card-arrow { opacity: 1; }

/* ---- INDIVIDUAL GALLERY PAGE ---- */
.gallery-page { background: var(--black); padding: 80px 52px 120px; }
.gallery-page-header {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.gallery-page-header p {
  font-style: italic;
  color: var(--gray);
  font-family: var(--font-display);
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.7;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.photo-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--charcoal);
  cursor: pointer;
}
.photo-item.tall { aspect-ratio: 3/4; grid-row: span 1; }
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition), filter 0.4s;
}
.photo-item:hover img { transform: scale(1.05); filter: brightness(1.1) saturate(1.2); }
.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(8,8,8,0.85), transparent);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-item:hover .photo-caption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 20px;
  transition: color 0.3s;
  line-height: 1;
}
.lightbox-nav:hover { color: var(--gold); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%; transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---- ABOUT PAGE ---- */
.about-page { background: var(--black); padding: 80px 52px 120px; }
.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.about-photo-wrap { position: relative; }
.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  position: relative;
  z-index: 1;
}
.about-photo-wrap .about-frame {
  position: absolute;
  top: 28px; right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(200,169,126,0.2);
  z-index: 0;
}
.about-text h2 { margin-bottom: 10px; }
.about-text .tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.about-text p {
  color: rgba(242,234,216,0.72);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.9;
}
.about-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 36px 0;
}
.about-gear h3 {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.about-gear ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-gear li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 16px;
  border-left: 1px solid rgba(200,169,126,0.3);
  letter-spacing: 0.05em;
}

/* ---- CONTACT PAGE ---- */
.contact-page { background: var(--black); padding: 80px 52px 120px; }
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 48px;
}
.contact-detail { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(200,169,126,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item strong {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
  font-weight: 400;
}
.contact-item span {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
}
.contact-form-wrap { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px 42px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  section, .galleries-page, .gallery-page, .about-page, .contact-page { padding-left: 32px; padding-right: 32px; }
  .about-teaser { grid-template-columns: 1fr; gap: 60px; padding: 80px 32px; }
  .about-teaser-img img { width: 60%; }
  .about-frame { width: 60%; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .intro-inner { flex-direction: column; gap: 24px; }
  .intro-inner h2 { border-left: none; padding-left: 0; border-top: 1px solid rgba(200,169,126,0.3); padding-top: 24px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  nav { padding: 0 24px; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s;
    border-bottom: 1px solid rgba(200,169,126,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; border: none; padding: 12px 0 0 16px; background: none; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .grid-large { grid-row: auto; }
  .grid-item { height: 300px; }
  .galleries-cards { grid-template-columns: 1fr; }
  .gallery-card { height: 360px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px 70px; }
  .hero-scroll-indicator { right: 24px; }
  section, .galleries-page, .gallery-page, .about-page, .contact-page { padding-left: 24px; padding-right: 24px; }
  .gallery-page-header { flex-direction: column; gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
}
