/* =============================================
   ESTEVEZ ARTS — Main Stylesheet
   Palette: #0d0c0b | #c8b97a | #ede8dc | #6e6660
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #0d0c0b;
  --black2: #111008;
  --gold: #c8b97a;
  --gold-dim: rgba(200,185,122,0.18);
  --cream: #ede8dc;
  --grey: #6e6660;
  --grey-mid: #8a8070;
  --grey-dark: #3a3530;
  --border: rgba(200,185,122,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Raleway', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(13,12,11,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  transition: padding 0.3s;
}
.nav.scrolled { padding: 0.8rem 3rem; }
.nav-logo {
  font-family: var(--serif); font-size: 17px; font-weight: 300;
  letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #b8b0a0; font-weight: 400; transition: color 0.3s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 0.5px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.lang-toggle {
  background: transparent; border: 0.5px solid var(--border);
  color: var(--grey-mid); font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.2em; padding: 5px 10px; cursor: pointer;
  transition: all 0.3s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav {
  background: transparent; border: 0.5px solid var(--gold);
  color: var(--gold); font-family: var(--sans); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 20px; cursor: pointer; transition: all 0.3s; display: inline-block;
}
.btn-nav:hover { background: var(--gold); color: var(--black); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 0.5px; background: var(--gold); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 999; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); }
.mobile-menu .mobile-cta {
  display: inline-block; box-sizing: border-box; margin-top: 1rem;
  border: 0.5px solid var(--gold); color: var(--gold);
  padding: 13px 28px; font-size: 11px; letter-spacing: 0.2em; text-indent: 0.2em;
}
/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--black);
  border: none; padding: 13px 32px; font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; font-weight: 500; transition: all 0.3s;
}
.btn-primary:hover { background: #ddd0a0; }
.btn-ghost {
  display: inline-block; background: transparent; color: var(--gold);
  border: 0.5px solid rgba(200,185,122,0.5); padding: 13px 32px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; cursor: pointer; font-weight: 400; transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(200,185,122,0.08); }
/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding: 0 3rem 5rem; overflow: hidden;
}
.hero:hover .hero-img { transform: scale(1.0); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.eyebrow {
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; font-weight: 400;
}
.hero-title {
  font-family: var(--serif); font-size: clamp(56px, 10vw, 100px);
  font-weight: 300; line-height: 0.95; color: var(--cream);
  margin-bottom: 0.6rem; letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-tagline {
  font-family: var(--serif); font-size: clamp(16px, 2.5vw, 22px);
  font-style: italic; color: var(--grey-mid); margin-bottom: 1rem;
  font-weight: 300; letter-spacing: 0.05em;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-line {
  width: 0.5px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.2s ease infinite;
}
.scroll-text {
  font-size: 8px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--grey); writing-mode: vertical-rl;
}

@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }/* ---- SECTIONS ---- */
.section { padding: 6rem 3rem; }
.section-label {
  font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem; font-weight: 400;
}
.section-label.centered { text-align: center; }
.section-title {
  font-family: var(--serif); font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 300; color: var(--cream); line-height: 1.1; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.centered { text-align: center; }
.section-desc.centered { text-align: center; margin-left: auto; margin-right: auto; }
/* ---- SELECTED WORKS ---- */
.selected-works { background: var(--black2); padding-top: 2.5rem; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}
.work-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4; background: #1a1815;
}
.work-item.work-large { grid-column: span 2; aspect-ratio: 16/9; }
.work-item img { transition: transform 0.7s ease, filter 0.4s; filter: brightness(0.8); }
.work-item:hover img { transform: scale(1.05); filter: brightness(0.95); }
.work-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  transform: translateY(6px); opacity: 0; transition: all 0.4s;
  display: flex; flex-direction: column; gap: 4px;
}
.work-item:hover .work-info { opacity: 1; transform: translateY(0); }
.work-cat { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.work-title { font-family: var(--serif); font-size: 15px; color: var(--cream); font-weight: 300; }
/* ---- WHAT WE CREATE ---- */
.what-we-create { background: var(--black); }
.what-we-create .section-desc { max-width: 680px; }
/* ---- WHAT WE CREATE — 3 principles (compact, non-duplicate of nav) ---- */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 1.5rem; }
.principle { background: var(--black); padding: 2.4rem 2rem; }
.principle-num { display: none; }
.principle-name { font-family: var(--serif); font-size: 23px; font-weight: 400; color: var(--cream); margin-bottom: 0.6rem; }
.principle-desc { font-size: 12px; line-height: 1.75; color: #b8b1a4; font-style: italic; letter-spacing: 0.03em; }

@media (max-width: 900px) {.principles { grid-template-columns: 1fr; }
}/* ---- FULLSCREEN EMOTIONAL ---- */
.fullscreen-img {
  position: relative; height: 85vh; overflow: hidden;
}
.fullscreen-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.45); }
.fullscreen-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(13,12,11,0.3) 0%, rgba(13,12,11,0.1) 100%);
}
.fullscreen-quote { text-align: center; max-width: 600px; padding: 2rem; }
.fullscreen-quote p {
  font-family: var(--serif); font-size: clamp(22px, 3.5vw, 38px);
  font-style: italic; color: var(--cream); line-height: 1.4;
  font-weight: 300; margin-bottom: 1.2rem;
}
.fullscreen-quote cite { font-size: 11px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; font-style: normal; }
/* ---- ABOUT PREVIEW ---- */
.about-preview { background: var(--black2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: sepia(0.2) brightness(0.85); }
.about-body { font-size: 13px; color: var(--grey); line-height: 1.85; margin-bottom: 1.2rem; letter-spacing: 0.03em; }
.about-text .btn-ghost { margin-top: 1rem; }
/* ---- CTA ---- */
.cta-section {
  padding: 7rem 3rem;
  background: linear-gradient(135deg, var(--black2) 0%, var(--black) 60%, #13100a 100%);
  border-top: 0.5px solid var(--border); text-align: center;
}
.cta-title {
  font-family: var(--serif); font-size: clamp(32px, 5vw, 60px);
  font-weight: 300; color: var(--cream); margin: 1rem auto 1rem;
  line-height: 1.1;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 11px; color: var(--grey); letter-spacing: 0.1em; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* ---- FOOTER ---- */
.footer {
  padding: 2.5rem 3rem; border-top: 0.5px solid var(--border);
  background: #0a0908; display: grid;
  grid-template-columns: auto 1fr auto; align-items: center;
  grid-template-rows: auto auto; gap: 0.8rem 2rem;
}
.footer-logo { font-family: var(--serif); font-size: 14px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-nav a { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); transition: color 0.3s; }
.footer-nav a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 1.2rem; justify-content: flex-end; }
.footer-social a { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); transition: color 0.3s; }
.footer-social a:hover { color: var(--cream); }
.footer-copy { font-size: 10px; color: var(--gold); letter-spacing: 0.08em; grid-column: 1/-1; text-align: center; }
/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 12rem 3rem 5rem; background: var(--black2);
  border-bottom: 0.5px solid var(--border);
}
.page-hero .eyebrow { margin-bottom: 0.8rem; }
.page-hero .section-title { font-size: clamp(38px, 6vw, 70px); margin-bottom: 0; }
/* ---- PORTFOLIO LAYOUTS ---- */
.portfolio-section { padding: 4rem 3rem 6rem; }
.portfolio-project { margin-bottom: 5rem; }
.project-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.project-title { font-family: var(--serif); font-size: 20px; color: var(--cream); margin-bottom: 2rem; font-weight: 300; }
.photo-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.photo-grid-full { width: 100%; }
.photo-grid-3 img { aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.85); transition: filter 0.4s; cursor: pointer; }
.photo-grid-3 img:hover { filter: brightness(1); }
.photo-grid-full img { width: 100%; max-height: 70vh; object-fit: cover; filter: brightness(0.85); }
/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; padding: 4rem 3rem 6rem; }
.contact-info h3 { font-family: var(--serif); font-size: 22px; color: var(--cream); margin-bottom: 1.5rem; font-weight: 300; }
.contact-info p { font-size: 13px; color: var(--grey); line-height: 1.8; margin-bottom: 1rem; }
.contact-info a { color: var(--gold); }
.contact-links { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.contact-link { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-mid); transition: color 0.3s; }
.contact-link:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-mid); }
.form-input, .form-textarea {
  background: transparent; border: 0.5px solid var(--border);
  color: var(--cream); font-family: var(--sans); font-size: 13px;
  padding: 12px 14px; outline: none; transition: border-color 0.3s;
  font-weight: 300; letter-spacing: 0.03em;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey-dark); }
.form-submit {
  background: var(--gold); color: var(--black); border: none;
  padding: 14px 32px; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer;
  font-weight: 500; transition: background 0.3s; align-self: flex-start;
}
.form-submit:hover { background: #ddd0a0; }
.form-success { display: none; font-size: 15px; color: var(--cream); letter-spacing: 0.04em; line-height: 1.6; margin-top: 1.2rem; padding: 1.1rem 1.4rem; border: 1px solid var(--gold); background: rgba(200,185,122,0.07); border-radius: 2px; }
/* ---- ABOUT PAGE ---- */
.about-page { padding: 4rem 3rem 6rem; }
.about-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; margin-bottom: 5rem; }
.about-page-img { aspect-ratio: 3/4; object-fit: cover; object-position: top; filter: sepia(0.15) brightness(0.85); }
.about-page-text h3 { font-family: var(--serif); font-size: 28px; color: var(--cream); font-weight: 300; margin-bottom: 1.5rem; }
.about-page-text p { font-size: 13.5px; color: #d6d0c5; line-height: 1.9; margin-bottom: 1.2rem; }
/* ---- LIGHTBOX ---- */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.96); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; width: auto; height: auto; }
.lightbox-close { position: fixed; top: 1.5rem; right: 2rem; font-size: 28px; color: var(--gold); cursor: pointer; background: none; border: none; font-family: var(--serif); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); font-size: 28px; color: var(--gold); cursor: pointer; background: none; border: none; font-family: var(--serif); padding: 1rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links, .nav-right .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 0 1.5rem 4rem; }
  .section { padding: 4rem 1.5rem; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .work-item.work-large { grid-column: span 2; aspect-ratio: 4/3; }
  .services-grid { grid-template-columns: 1fr; }
  .nocturnos-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .moon-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .about-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-facts { grid-template-columns: 1fr; }
  .about-fact { border-right: none; border-bottom: 0.5px solid var(--border); }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer-nav, .footer-social { justify-content: center; }
  .photo-grid-3 { grid-template-columns: 1fr 1fr; }
  .photo-grid-2, .photo-grid-2r { grid-template-columns: 1fr; }
  .paintings-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-section { padding: 3rem 1.5rem 4rem; }
  .page-hero { padding: 9rem 1.5rem 3rem; }
  .bespoke-intro { padding: 3rem 1.5rem; }
  .bespoke-text-block { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {.works-grid { grid-template-columns: 1fr; }
.work-item.work-large { grid-column: span 1; aspect-ratio: 4/3; }
.hero-title { font-size: 52px; }
}/* ---- V2 OVERRIDES ---- */

/* Hero: show full moon {
  object-fit: contain !important;
  object-position: center center !important;
  background: #0d0c0b;
}
/* Featured works: smaller, 3-col uniform grid */
.works-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 4px !important;
}
.work-item { aspect-ratio: 4/5 !important; display: block; }
.work-item.work-large { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }
/* Anchor targets clear the fixed nav when jumped to from the homepage */
.portfolio-project[id] { scroll-margin-top: 100px; }
/* Main+detail side-by-side layout */
.main-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  align-items: start;
}
.main-detail-grid img { width: 100%; object-fit: cover; }
.main-detail-grid .main-img { aspect-ratio: 4/3; }
.main-detail-grid .detail-img { aspect-ratio: 3/4; }
/* Rough boards: each work shown large and whole, one per row (like the triptych) */
.roughboards-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
.roughboards-stack img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  background: var(--black);
  filter: brightness(0.9);
  transition: filter 0.4s, transform 0.5s;
  cursor: pointer;
}
.roughboards-stack img:hover { filter: brightness(1); transform: scale(1.01); }
/* Murals: project images never stretch vertically beyond viewport */
.mural-grid-full img { max-height: 75vh; width: 100%; object-fit: cover; object-position: center; }
.photo-grid-3 img { height: 320px; object-fit: cover; }
.mural-row-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-bottom: 3px; }
.mural-row-4 img { width: 100%; height: 360px; object-fit: cover; }


@media(max-width:900px) {.main-detail-grid { grid-template-columns: 1fr; }
.works-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media(max-width:760px) {.mural-row-4 { grid-template-columns: 1fr 1fr; }
.mural-row-4 img { height: 280px; }
.fullscreen-img img { object-position: right center; }
}/* ---- V3 FIXES ---- */

/* Hero: use cover for mural/atmospheric hero {
  object-fit: cover !important;
  object-position: center 30% !important;
}
/* Moon detail pair: side by side {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}
/* ---- V3 FIXES ---- */

/* Hero: landscape image {
  object-fit: cover !important;
  object-position: center 30% !important;
  filter: brightness(0.5) sepia(0.1) !important;
}
/* Moon series: 4 across — larger {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 3px;
}
/* Madrid mural: natural height {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  background: #0d0c0b;
}
/* ---- PAINTING SERIES — two large works on top { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
/* Hero personal quote (below the buttons) */
.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: #f6f3ec;
  max-width: 460px;
  margin-top: 2.6rem;
  padding-left: 16px;
  border-left: 1px solid var(--gold);
}
/* ---- V5: SPLIT HERO (two columns on desktop, full-bleed on mobile) ---- */
.hero-split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: stretch;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}
.hero-split .hero-media { position: relative; overflow: hidden; background: #0d0c0b; }
.hero-split .hero-split-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 18% center;
  filter: brightness(0.92);
}
.hero-split .hero-split-overlay { display: none; }
.hero-split .hero-content {
  position: relative; z-index: 2;
  align-self: center; max-width: 560px;
  padding: 0 4rem;
}
.hero-split .scroll-hint { display: none; }


@media (max-width: 900px) {.hero-split {
    display: flex; align-items: flex-end;
    position: relative; min-height: 88vh;
    padding: 0 1.5rem 4rem;
  }
.hero-split .hero-media { position: absolute; inset: 0; }
.hero-split .hero-split-img { filter: brightness(0.7); object-position: 30% center; }
.cat-nav { flex-wrap: nowrap !important; font-size: 10.5px !important; letter-spacing: 0.04em !important; gap: 1.5rem !important; }
.cat-nav a { white-space: nowrap; }
.hero-split .hero-split-overlay {
    display: block; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(13,12,11,0.95) 0%, rgba(13,12,11,0.4) 45%, rgba(13,12,11,0.1) 100%);
  }
.hero-split .hero-content { padding: 0; max-width: 460px; align-self: flex-end; }
.hero-split .eyebrow { letter-spacing: 0.16em; font-size: 9px; margin-bottom: 1.5rem; }
.hero-split .hero-tagline { margin-top: 1.9rem !important; margin-bottom: 2.3rem !important; }
.hero-split .hero-quote { margin-top: 1.9rem; }
.hero-split .scroll-hint { display: flex; }
}/* ---- V4: CLEAN CANVAS LAYOUTS ---- */
/* Orientation-aware rows so works are shown whole, not cropped or mismatched */
.cv-row {
  display: grid;
  gap: 4px;
  align-items: start;
  margin-bottom: 0;
}
.cv-row img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  transition: filter 0.4s, transform 0.6s;
  cursor: pointer;
}
.cv-row img:hover { filter: brightness(1); transform: scale(1.02); }
/* Single work, kept to a calm, readable size (not full-bleed) */
.cv-single { max-width: 480px; }
.cv-single img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
  transition: filter 0.4s, transform 0.6s;
  cursor: pointer;
}
.cv-single img:hover { filter: brightness(1); transform: scale(1.02); }


@media(max-width:900px) {.cv-row { grid-template-columns: 1fr !important; }
.cv-single { max-width: 100%; }
}/* ---- HISTORICAL ARCHIVE (About) ---- */
.archive-list { margin-top: 2.5rem; border-top: 0.5px solid var(--border); }
.archive-item {
  display: grid; grid-template-columns: 110px 1fr auto;
  gap: 1.8rem; align-items: baseline;
  padding: 1.5rem 0.4rem; border-bottom: 0.5px solid var(--border);
  transition: background 0.35s, padding 0.35s; color: inherit;
}
a.archive-item:hover { background: rgba(200,185,122,0.05); padding-left: 1rem; }
.archive-tag { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.archive-name { font-family: var(--serif); font-size: 20px; color: var(--cream); display: block; margin-bottom: 0.35rem; font-weight: 300; transition: color 0.3s; }
.archive-desc { font-size: 12.5px; color: var(--grey); line-height: 1.7; letter-spacing: 0.02em; }
.archive-arrow { color: var(--grey-dark); font-size: 15px; transition: color 0.3s, transform 0.3s; }
a.archive-item:hover .archive-name { color: var(--gold); }
a.archive-item:hover .archive-arrow { color: var(--gold); transform: translate(3px,-3px); }

@media (max-width: 720px) {.archive-item { grid-template-columns: 1fr auto; gap: 0.4rem 1rem; }
.archive-tag { grid-column: 1 / -1; }
}