/* ─────────────────────────────────────────────────────────────
   Cristian Olave Photography — Main Stylesheet
   ───────────────────────────────────────────────────────────── */

:root {
  --ink:    #0d0d0b;
  --paper:  #f5f2eb;
  --warm:   #e8e2d5;
  --accent: #b5401a;
  --mid:    #7a6e60;
  --light:  #c8c0b0;
  --col-gap: clamp(16px, 3vw, 40px);
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
  transition: background 0.4s, border-color 0.4s;
}
.site-header.transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.transparent .logo-lockup { color: var(--paper); }
.site-header.transparent .logo-sub { color: rgba(245,242,235,0.55); }
.site-header.transparent .nav-link { color: rgba(245,242,235,0.85); }
.site-header.transparent .nav-cta {
  background: rgba(245,242,235,0.15);
  border: 1px solid rgba(245,242,235,0.3);
  color: var(--paper);
}

.logo-lockup {
  display: flex; flex-direction: column;
  line-height: 1.05; text-decoration: none; color: var(--ink);
  transition: color 0.4s;
}
.logo-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.08em;
}
.logo-sub {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.25em;
  color: var(--mid); text-transform: uppercase;
  transition: color 0.4s;
}

.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.nav-link {
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  position: relative; padding-bottom: 2px;
  transition: color 0.4s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--accent); }
.nav-cta {
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--paper);
  background: var(--ink); padding: 9px 18px;
  transition: background 0.25s, color 0.25s;
  border: 1px solid var(--ink);
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); }

/* ─── PAGE BAR ─── */
.page-bar {
  margin-top: 72px;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px clamp(20px, 4vw, 60px);
  font-family: 'Courier Prime', monospace;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
}
.page-bar span { opacity: 0.45; }
.page-bar strong { color: var(--accent); letter-spacing: 0.3em; }

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--paper);
  background: var(--accent); padding: 13px 26px;
  display: inline-block; transition: background 0.25s;
}
.btn-primary:hover { background: #8f3014; }
.btn-outline {
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  border: 1px solid var(--ink); padding: 13px 26px;
  display: inline-block; transition: background 0.25s, color 0.25s;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-white {
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--accent);
  background: var(--paper); padding: 13px 26px;
  display: inline-block; transition: background 0.2s, color 0.2s;
}
.btn-white:hover { background: var(--ink); color: var(--paper); }

/* ─── SECTION HELPERS ─── */
.section-label {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent);
}
.section-header {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--ink); padding-bottom: 12px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-link {
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: var(--mid); transition: color 0.2s;
}
.section-link:hover { color: var(--accent); }
.section-rule {
  display: flex; align-items: center; gap: 16px;
  padding: 0 clamp(20px, 4vw, 60px);
  margin: 48px 0 32px;
}
.section-rule::before, .section-rule::after {
  content: ''; flex: 1; height: 1px; background: var(--ink);
}
.section-rule span {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--mid); white-space: nowrap;
}

/* ─── HERO ─── */
.hero {
  position: relative; width: 100vw; height: 100vh;
  overflow: hidden; display: flex; align-items: flex-end;
  margin-top: 0;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.55) contrast(1.1) saturate(0.8);
  transform: scale(1.06);
  animation: heroZoom 12s ease forwards;
}
.hero-placeholder { width: 100%; height: 100%; background: var(--ink); }
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,11,0.1) 0%, rgba(13,13,11,0) 35%, rgba(13,13,11,0.5) 70%, rgba(13,13,11,0.9) 100%);
}
.hero-content {
  position: relative; z-index: 10; width: 100%;
  padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 60px);
  display: grid; grid-template-columns: 1fr auto;
  align-items: flex-end; gap: 40px;
}
.hero-eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.88; letter-spacing: -0.01em; color: var(--paper);
  animation: fadeUp 0.9s 0.5s ease both;
}
.hero-title em {
  display: block; color: transparent;
  -webkit-text-stroke: 1px rgba(245,242,235,0.5); font-style: normal;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 18px); font-style: italic; font-weight: 300;
  color: rgba(245,242,235,0.65); max-width: 420px; margin-top: 16px; line-height: 1.6;
  animation: fadeUp 0.9s 0.7s ease both;
}
.hero-ctas {
  display: flex; gap: 12px; margin-top: 28px;
  animation: fadeUp 0.9s 0.9s ease both;
}
.hero-ctas .btn-primary { background: var(--accent); color: var(--paper); }
.hero-ctas .btn-outline {
  border-color: rgba(245,242,235,0.4); color: var(--paper);
}
.hero-ctas .btn-outline:hover { background: rgba(245,242,235,0.1); border-color: var(--paper); }
.hero-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 20px;
  animation: fadeUp 0.9s 1.1s ease both;
}
.hero-slide-counter {
  font-family: 'Courier Prime', monospace;
  font-size: 11px; letter-spacing: 0.15em; color: rgba(245,242,235,0.4);
}
.hero-slide-counter strong { color: var(--paper); font-weight: 400; }
.hero-dots { display: flex; flex-direction: column; gap: 8px; }
.hero-dot {
  width: 1px; height: 24px; background: rgba(245,242,235,0.25);
  cursor: pointer; transition: background 0.3s, height 0.3s;
  border: none; padding: 0;
}
.hero-dot.active { background: var(--accent); height: 40px; }
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s 1.4s ease both; z-index: 10;
}
.hero-scroll-hint span {
  font-family: 'Courier Prime', monospace;
  font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,242,235,0.4);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(245,242,235,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FEATURED COLLECTION ─── */
.featured {
  background: var(--paper); color: var(--ink);
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px);
}
.featured-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 6px;
}
.featured-main {
  position: relative; overflow: hidden;
}
.featured-main img {
  width: 100%; height: 100%; min-height: 520px; object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 8s ease; display: block;
}
.featured-main:hover img { transform: scale(1.04); }
.featured-main-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 40px);
  background: linear-gradient(to top, rgba(13,13,11,0.92) 0%, transparent 100%);
  color: var(--paper);
}
.featured-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px; display: block;
}
.featured-series-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px); line-height: 0.9;
  letter-spacing: 0.02em; margin-bottom: 12px;
}
.featured-desc {
  font-size: 14px; font-style: italic;
  color: rgba(245,242,235,0.7); line-height: 1.6;
  max-width: 360px; margin-bottom: 20px;
}
.featured-cta {
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--paper);
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
  transition: color 0.2s;
}
.featured-cta:hover { color: var(--accent); }
.featured-thumbs { display: flex; flex-direction: column; gap: 6px; }
.featured-thumb { position: relative; overflow: hidden; }
.featured-thumb img {
  width: 100%; height: 250px; object-fit: cover; display: block;
  filter: saturate(0.8); transition: transform 6s ease, filter 0.4s;
}
.featured-thumb:hover img { transform: scale(1.05); filter: saturate(1); }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--warm); color: var(--ink);
  border-top: 1px solid var(--ink);
  display: grid; grid-template-columns: 0.65fr 1fr;
}
.about-image { position: relative; overflow: hidden; min-height: 380px; max-height: 480px; }
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top; display: block;
  filter: saturate(0.75) contrast(1.05);
}
.about-image-caption {
  position: absolute; bottom: 0; right: 0;
  background: var(--accent); color: var(--paper);
  padding: 8px 14px; font-family: 'Courier Prime', monospace;
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase;
}
.about-content {
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--ink); gap: 0;
}
.about-content .section-label { margin-bottom: 20px; display: block; }
.about-pull {
  font-size: clamp(22px, 3vw, 34px); font-style: italic; font-weight: 300;
  line-height: 1.25; margin-bottom: 24px; color: var(--ink);
}
.about-body { font-size: 15px; line-height: 1.8; color: var(--mid); margin-bottom: 28px; }
.about-body p { margin-bottom: 1em; }

/* ─── SERVICES PREVIEW ─── */
.services-preview {
  background: var(--ink); color: var(--paper);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
}
.services-preview .section-header { border-color: rgba(245,242,235,0.15); }
.services-preview .section-label { color: var(--accent); }
.services-preview .section-link { color: rgba(245,242,235,0.4); }
.services-preview .section-link:hover { color: var(--accent); }
.services-intro {
  font-size: clamp(28px, 4vw, 52px); font-style: italic; font-weight: 300;
  line-height: 1.15; max-width: 700px; margin-bottom: clamp(40px, 6vw, 72px);
}
.services-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245,242,235,0.12);
}
.service-card {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 36px);
  border-right: 1px solid rgba(245,242,235,0.12);
  border-bottom: 1px solid rgba(245,242,235,0.12);
  transition: background 0.3s;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:hover { background: rgba(245,242,235,0.04); }
.service-card-num {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.25em; color: var(--accent);
  margin-bottom: 14px; display: block;
}
.service-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 24px); font-weight: 300;
  margin-bottom: 10px; line-height: 1.2;
}
.service-card-desc {
  font-size: 13px; font-style: italic;
  color: rgba(245,242,235,0.45); line-height: 1.6;
}
.service-card-arrow {
  display: inline-block; margin-top: 16px;
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  transition: letter-spacing 0.2s;
}
.service-card:hover .service-card-arrow { letter-spacing: 0.3em; }

/* ─── PRINTS TEASER ─── */
.prints-teaser {
  background: var(--paper); color: var(--ink);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
}
.prints-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px; margin-top: clamp(32px, 4vw, 48px);
}
.print-card {
  position: relative; overflow: hidden;
  text-decoration: none; color: var(--ink); display: block;
}
.print-card img {
  width: 100%; height: 320px; object-fit: cover; display: block;
  filter: saturate(0.7); transition: transform 6s ease, filter 0.4s;
}
.print-card:hover img { transform: scale(1.06); filter: saturate(1); }
.print-card-info { padding: 14px 0 0; }
.print-card-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; margin-bottom: 2px; }
.print-card-price { font-family: 'Courier Prime', monospace; font-size: 10px; letter-spacing: 0.15em; color: var(--mid); }
.print-card-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--ink); color: var(--paper);
  font-family: 'Courier Prime', monospace;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 8px;
}
.prints-footer {
  text-align: center; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--light);
}
.prints-footer p { font-size: 15px; font-style: italic; color: var(--mid); margin-bottom: 20px; }

/* ─── CONTACT BANNER ─── */
.contact-banner {
  background: var(--accent); color: var(--paper);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.contact-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 80px); line-height: 0.9; letter-spacing: 0.02em;
}
.contact-banner h2 em { display: block; font-style: normal; color: rgba(245,242,235,0.45); }
.contact-banner-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }
.contact-banner p { font-size: 15px; font-style: italic; color: rgba(245,242,235,0.75); max-width: 300px; line-height: 1.6; }

/* ─── COLLECTION MASTHEAD ─── */
.collection-masthead {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px) 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--col-gap); border-bottom: 1px solid var(--ink);
  margin-top: 0;
}
.issue-banner {
  margin-top: 72px;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px clamp(20px, 4vw, 60px);
  font-family: 'Courier Prime', monospace;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 2px solid var(--accent);
}
.issue-banner span { opacity: 0.55; }
.issue-banner strong { opacity: 1; letter-spacing: 0.3em; color: var(--accent); }
.masthead-left {
  padding-bottom: clamp(30px, 5vw, 60px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.series-label {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.masthead-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6.5vw, 88px);
  line-height: 0.9; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 30px;
}
.masthead-meta {
  display: flex; gap: 40px;
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.15em; color: var(--mid); text-transform: uppercase;
  padding-top: 20px; border-top: 1px solid var(--light);
}
.masthead-meta div { display: flex; flex-direction: column; gap: 4px; }
.masthand-meta span { font-size: 9px; }
.masthead-meta strong { color: var(--ink); font-weight: 400; }
.masthead-right { position: relative; overflow: hidden; }
.masthead-hero-img {
  width: 100%; height: clamp(400px, 55vh, 620px);
  object-fit: cover; object-position: center 15%; display: block;
  filter: contrast(1.05) saturate(0.9); transition: transform 8s ease;
}
.masthead-right:hover .masthead-hero-img { transform: scale(1.03); }
.masthead-caption {
  position: absolute; bottom: 0; right: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
}

/* ─── INTRO SPREAD ─── */
.intro-spread {
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid; grid-template-columns: 3fr 2fr;
  gap: clamp(40px, 6vw, 80px); align-items: start; margin-bottom: 60px;
}
.intro-pull-quote {
  font-size: clamp(28px, 4vw, 52px); font-style: italic;
  line-height: 1.2; font-weight: 300; color: var(--ink);
  padding-left: 28px; border-left: 3px solid var(--accent);
}
.intro-body { font-size: 15px; line-height: 1.85; color: var(--mid); }
.intro-body p { margin-bottom: 1.2em; }
.intro-body p:first-child::first-letter {
  font-size: 3.5em; line-height: 0.8; float: left;
  margin-right: 8px; margin-top: 6px;
  font-family: 'Cormorant Garamond', serif; color: var(--accent);
}

/* ─── EDITORIAL GRID ─── */
.editorial-section { padding: 0 clamp(20px, 4vw, 60px); margin-bottom: 80px; }
.spread-full { width: 100%; margin-bottom: 6px; position: relative; overflow: hidden; }
.spread-full img {
  width: 100%; height: auto; display: block;
  filter: contrast(1.05) saturate(0.88); transition: transform 10s ease;
}
.spread-full:hover img { transform: scale(1.02); }
.spread-two { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 6px; align-items: start; }
.spread-three { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 6px; align-items: start; }
.spread-asym { display: grid; grid-template-columns: 2fr 1fr; gap: 6px; margin-bottom: 6px; align-items: start; }
.spread-asym-rev { display: grid; grid-template-columns: 1fr 2fr; gap: 6px; margin-bottom: 6px; align-items: start; }
.img-cell { overflow: hidden; position: relative; }
.img-cell img {
  width: 100%; height: auto; display: block;
  filter: contrast(1.04) saturate(0.88); transition: transform 6s ease, filter 0.4s;
}
.img-cell:hover img { transform: scale(1.02); filter: contrast(1.08) saturate(1); }
.img-tall img { width: 100%; height: auto; }
.img-med img { width: 100%; height: auto; }
.img-short img { width: 100%; height: auto; }
.text-interlude {
  background: var(--ink); color: var(--paper);
  padding: clamp(28px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}
.text-interlude .interlude-label {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.text-interlude p { font-size: clamp(15px, 2vw, 20px); font-style: italic; line-height: 1.6; font-weight: 300; }
.caption-strip {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0 24px; border-bottom: 1px solid var(--light); margin-bottom: 6px;
}
.caption-strip span {
  font-family: 'Courier Prime', monospace;
  font-size: 9.5px; letter-spacing: 0.12em; color: var(--mid); text-transform: uppercase;
}
.caption-strip em { font-style: italic; color: var(--ink); }

/* ─── MORE COLLECTIONS ─── */
.more-section { padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px); }
.more-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px; border-bottom: 2px solid var(--ink); padding-bottom: 12px;
}
.more-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px); letter-spacing: 0.05em;
}
.more-header a {
  font-family: 'Courier Prime', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; color: var(--accent);
}
.more-header a:hover { text-decoration: underline; }
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.collection-card { text-decoration: none; color: var(--ink); display: block; }
.collection-card-img { overflow: hidden; margin-bottom: 12px; position: relative; }
.collection-card-img img {
  width: 100%; height: 260px; object-fit: cover; display: block;
  filter: saturate(0.75); transition: transform 5s ease, filter 0.4s;
}
.collection-card:hover .collection-card-img img { transform: scale(1.06); filter: saturate(1); }
.collection-card-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 6px;
}
.collection-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.04em; margin-bottom: 4px;
  transition: color 0.2s;
}
.collection-card:hover .collection-card-title { color: var(--accent); }
.collection-card-desc { font-size: 13px; color: var(--mid); line-height: 1.5; font-style: italic; }
.collection-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--paper);
  font-family: 'Courier Prime', monospace;
  font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 8px;
}

/* ─── WORK ARCHIVE ─── */
.work-archive { padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 60px); }
.work-archive-header { margin-bottom: clamp(40px, 6vw, 72px); }
.work-archive-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 100px); line-height: 0.9; margin-bottom: 16px;
}
.work-archive-sub { font-size: 16px; font-style: italic; color: var(--mid); max-width: 500px; }
.work-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.work-archive-card { text-decoration: none; color: var(--ink); display: block; }
.work-archive-card-img { overflow: hidden; margin-bottom: 16px; position: relative; }
.work-archive-card-img img {
  width: 100%; height: 340px; object-fit: cover; display: block;
  filter: saturate(0.8); transition: transform 6s ease, filter 0.4s;
}
.work-archive-card:hover .work-archive-card-img img { transform: scale(1.05); filter: saturate(1); }
.work-archive-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.collection-card-year { font-family: 'Courier Prime', monospace; font-size: 9px; letter-spacing: 0.15em; color: var(--light); }
.work-archive-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px; letter-spacing: 0.04em; margin-bottom: 6px;
  transition: color 0.2s;
}
.work-archive-card:hover .work-archive-card-title { color: var(--accent); }
.work-archive-card-desc { font-size: 14px; color: var(--mid); line-height: 1.5; font-style: italic; }

/* ─── ABOUT PAGE ─── */
.split-hero {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  min-height: calc(100vh - 108px); border-bottom: 1px solid var(--ink);
}
.split-photo {
  position: sticky; top: 72px; height: calc(100vh - 72px); max-height: 700px; overflow: hidden;
}
.split-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center; display: block; /* overridden inline per image */
  filter: contrast(1.08) saturate(0.85);
}
.split-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 24px;
  background: linear-gradient(to top, rgba(13,13,11,0.7) 0%, transparent 100%);
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,242,235,0.6);
  display: flex; justify-content: space-between;
}
.split-content {
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px);
  border-left: 1px solid var(--ink);
  display: flex; flex-direction: column;
}
.about-eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.about-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px); line-height: 0.88; letter-spacing: 0.01em; margin-bottom: 8px;
}
.about-tagline {
  font-size: clamp(16px, 1.8vw, 22px); font-style: italic; font-weight: 300;
  color: var(--mid); line-height: 1.4; margin-bottom: 36px;
  padding-bottom: 36px; border-bottom: 1px solid var(--light);
}
.about-locations { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.location-pill {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid); border: 1px solid var(--light); padding: 5px 12px;
  display: flex; align-items: center; gap: 6px;
}
.location-pill::before {
  content: ''; width: 4px; height: 4px; background: var(--accent);
  border-radius: 50%; flex-shrink: 0;
}
.about-sections { display: flex; flex-direction: column; }
.about-section { padding: 28px 0; border-bottom: 1px solid var(--warm); }
.about-section:last-child { border-bottom: none; }
.section-num {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--light); margin-bottom: 10px; display: block;
}
.about-section p { font-size: clamp(15px, 1.4vw, 17px); line-height: 1.85; color: var(--mid); }
.about-section p strong { color: var(--ink); font-weight: 400; }
.pull-quote {
  margin: 40px 0; padding: 28px 28px 28px 24px;
  border-left: 3px solid var(--accent); background: var(--warm);
}
.pull-quote p { font-size: clamp(18px, 2vw, 26px); font-style: italic; font-weight: 300; line-height: 1.3; }
.about-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--ink);
}

/* About page content sections from WordPress editor */
.split-content .wp-block-heading,
.split-content h2 {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--light); margin-bottom: 10px; font-weight: 400;
  padding-top: 28px; border-top: 1px solid var(--warm);
}
.split-content p {
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.85; color: var(--mid);
  margin-bottom: 0; padding-bottom: 28px;
}
.split-content p strong { color: var(--ink); font-weight: 400; }

/* ─── SERVICES PAGE ─── */
.services-page { padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px); }
.services-page-header { margin-bottom: clamp(48px, 7vw, 80px); border-bottom: 1px solid var(--ink); padding-bottom: 32px; }
.services-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px); line-height: 0.9; margin-bottom: 16px;
}
.services-page-title em { display: block; color: var(--accent); font-style: normal; }
.services-page-sub { font-size: 16px; font-style: italic; color: var(--mid); max-width: 500px; }
.services-full-list { display: flex; flex-direction: column; }
.service-full-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: clamp(24px, 4vw, 56px); align-items: start;
  padding: clamp(32px, 4vw, 56px) 0; border-bottom: 1px solid var(--light);
}
.service-full-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px; color: var(--light); line-height: 1;
}
.service-full-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 300; margin-bottom: 12px; line-height: 1.2;
}
.service-full-desc { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 20px; }
.service-full-image { overflow: hidden; width: 240px; flex-shrink: 0; }
.service-full-image img { width: 100%; height: 180px; object-fit: cover; filter: saturate(0.7); }

/* ─── CONTACT PAGE ─── */
.contact-page {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 108px);
}
.contact-page-left {
  padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 72px);
  background: var(--warm); border-right: 1px solid var(--ink);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px); line-height: 0.88;
  margin-bottom: 48px; margin-top: 16px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 4px; padding-bottom: 24px; border-bottom: 1px solid var(--light); }
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-label {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent);
}
.contact-detail-value { font-size: 17px; text-decoration: none; color: var(--ink); transition: color 0.2s; }
a.contact-detail-value:hover { color: var(--accent); }
.contact-page-right {
  padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-form-label {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px;
}

/* WPForms styling */
.wpforms-form .wpforms-field-label {
  font-family: 'Courier Prime', monospace !important;
  font-size: 9px !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important; color: var(--mid) !important;
  margin-bottom: 6px !important;
}
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea {
  border: 1px solid var(--light) !important; border-radius: 0 !important;
  background: var(--paper) !important; color: var(--ink) !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 16px !important; padding: 12px 16px !important;
  width: 100% !important; transition: border-color 0.2s !important;
}
.wpforms-form input:focus, .wpforms-form textarea:focus {
  outline: none !important; border-color: var(--accent) !important;
}
.wpforms-form textarea { min-height: 140px !important; }
.wpforms-form .wpforms-submit {
  font-family: 'Courier Prime', monospace !important;
  font-size: 10px !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  background: var(--accent) !important; color: var(--paper) !important;
  border: none !important; padding: 13px 26px !important;
  cursor: pointer !important; transition: background 0.25s !important;
  border-radius: 0 !important;
}
.wpforms-form .wpforms-submit:hover { background: #8f3014 !important; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink); color: var(--paper);
  padding: clamp(40px, 5vw, 64px) clamp(20px, 4vw, 60px) clamp(24px, 3vw, 40px);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
}
.site-footer .logo-lockup { color: var(--paper); }
.site-footer .logo-sub { color: rgba(245,242,235,0.35); }
.footer-brand p {
  font-size: 13px; color: rgba(245,242,235,0.4);
  font-style: italic; margin-top: 14px; line-height: 1.7; max-width: 240px;
}
.footer-col h4 {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  text-decoration: none; color: rgba(245,242,235,0.45);
  font-size: 14px; font-style: italic; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--paper); }
.footer-bottom {
  grid-column: 1 / -1; border-top: 1px solid rgba(245,242,235,0.1);
  padding-top: 20px; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-bottom span {
  font-family: 'Courier Prime', monospace;
  font-size: 9px; letter-spacing: 0.15em;
  color: rgba(245,242,235,0.25); text-transform: uppercase;
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 1; }
.reveal.ready { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.ready.in { opacity: 1; transform: translateY(0); }
.reveal.ready.in.d1 { transition-delay: 0.1s; }
.reveal.ready.in.d2 { transition-delay: 0.2s; }
.reveal.ready.in.d3 { transition-delay: 0.3s; }

/* ─── WOOCOMMERCE ─── */
.co-woo-wrapper {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
  margin-top: 72px;
}
.woocommerce ul.products {
  display: grid !important; grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important; list-style: none !important;
}
.woocommerce ul.products li.product a img {
  filter: saturate(0.8); transition: filter 0.4s, transform 5s ease;
}
.woocommerce ul.products li.product:hover a img { filter: saturate(1); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 18px !important; font-style: italic !important;
}
.woocommerce ul.products li.product .price {
  font-family: 'Courier Prime', monospace !important;
  font-size: 11px !important; letter-spacing: 0.15em !important; color: var(--mid) !important;
}
.woocommerce a.button, .woocommerce button.button {
  font-family: 'Courier Prime', monospace !important;
  font-size: 9px !important; letter-spacing: 0.2em !important;
  text-transform: uppercase !important; border-radius: 0 !important;
  background: var(--ink) !important; color: var(--paper) !important;
  transition: background 0.25s !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--accent) !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .prints-grid { grid-template-columns: repeat(2, 1fr); }
  .work-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 900px) {
  .collection-masthead { grid-template-columns: 1fr; }
  .masthead-right { order: -1; }
  .intro-spread { grid-template-columns: 1fr; }
  .spread-three { grid-template-columns: 1fr 1fr; }
  .artist-statement { grid-template-columns: 1fr; }
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .services-strip { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-image { min-height: 320px; }
  .about-content { border-left: none; border-top: 1px solid var(--ink); }
  .services-row { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n) { border-right: 1px solid rgba(245,242,235,0.12); }
  .service-card:nth-child(2n) { border-right: none; }
  .contact-banner { flex-direction: column; align-items: flex-start; }
  .split-hero { grid-template-columns: 1fr; min-height: auto; }
  .split-photo { position: relative; top: auto; height: 60vw; min-height: 320px; }
  .split-content { border-left: none; border-top: 1px solid var(--ink); }
  .contact-page { grid-template-columns: 1fr; }
  .contact-page-left { border-right: none; border-bottom: 1px solid var(--ink); }
  .service-full-item { grid-template-columns: 60px 1fr; }
  .service-full-image { display: none; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-nav .nav-link:not(.nav-cta) { display: none; }
  .prints-grid { grid-template-columns: 1fr 1fr; }
  .services-row { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .collections-grid { grid-template-columns: 1fr; }
  .spread-two, .spread-asym, .spread-asym-rev { grid-template-columns: 1fr; }
  .spread-three { grid-template-columns: 1fr; }
  .work-archive-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .about-ctas { flex-direction: column; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}



/* ─── MASONRY GALLERY ─── */
.collection-gallery {
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 60px) !important;
}
.masonry-gallery {
  column-count: 4 !important;
  column-gap: 8px !important;
  width: 100% !important;
}
.masonry-item {
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  page-break-inside: avoid !important;
  margin-bottom: 8px !important;
  cursor: pointer !important;
  display: inline-block !important;
  width: 100% !important;
  overflow: hidden !important;
}
.masonry-item img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  filter: saturate(0.85);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.masonry-item:hover img {
  filter: saturate(1);
  transform: scale(1.02);
}

@media (max-width: 1100px) { .masonry-gallery { column-count: 3 !important; } }
@media (max-width: 700px)  { .masonry-gallery { column-count: 2 !important; } }
@media (max-width: 420px)  { .masonry-gallery { column-count: 1 !important; } }

/* ─── INTRO SINGLE COLUMN ─── */
.intro-single {
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: 48px;
}
.intro-pull-quote-full {
  font-size: clamp(22px, 3.5vw, 48px);
  font-style: italic;
  line-height: 1.2;
  font-weight: 300;
  color: var(--ink);
  padding-left: 28px;
  border-left: 3px solid var(--accent);
  max-width: 820px;
}
.intro-body-full {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: var(--mid);
  columns: 2;
  column-gap: 48px;
  max-width: 1000px;
}
.intro-body-full p { margin-bottom: 1.2em; break-inside: avoid; }
@media (max-width: 700px) { .intro-body-full { columns: 1; } }

/* ─── INTRO STACKED ─── */
.intro-stacked {
  padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 100px);
  margin-bottom: 0;
}
.intro-pull-quote-full {
  font-size: clamp(22px, 3vw, 42px);
  font-style: italic;
  line-height: 1.2;
  font-weight: 300;
  color: var(--ink);
  padding-left: 28px;
  border-left: 3px solid var(--accent);
  margin-bottom: 40px;
  max-width: 820px;
}
.intro-body-cols {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: var(--mid);
  columns: 2;
  column-gap: clamp(24px, 4vw, 56px);
}
.intro-body-cols p { margin-bottom: 1.2em; break-inside: avoid; }
.intro-body-rest { margin-top: 0; }
.intro-read-more-wrap { margin-top: 24px; }
.intro-toggle {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  border-bottom: 1px solid var(--accent);
  padding: 0 0 2px;
  cursor: pointer;
  margin-top: 20px;
  transition: opacity 0.2s;
}
.intro-toggle:hover { opacity: 0.7; }
@media (max-width: 700px) {
  .intro-body-cols { columns: 1; }
}

/* ─── MASTHEAD PULL QUOTE ─── */
.masthead-pull-quote {
  font-size: clamp(16px, 1.6vw, 22px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--mid);
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-top: 32px;
  max-width: 420px;
}

/* ─── MASTHEAD STATEMENT PREVIEW ─── */
.masthead-statement-preview {
  margin-top: clamp(32px, 5vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--light);
}
.masthead-statement-preview p {
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 16px;
}
.masthead-read-more {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: none;
  border: none;
  border-bottom: 1px solid var(--accent);
  padding: 0 0 2px;
  cursor: pointer;
  transition: opacity 0.2s;
  display: inline-block;
}
.masthead-read-more:hover { opacity: 0.7; }

/* ─── COLLECTION GALLERY SPACING ─── */
.collection-masthead {
  margin-bottom: 0;
}
.collection-gallery {
  padding-top: clamp(80px, 12vw, 140px) !important;
  margin-top: clamp(20px, 4vw, 48px);
  border-top: 1px solid var(--light);
}
