/* Genevieve redesign — home page */

:root {
  --olive: #6b5a2e;
  --olive-dark: #4a3f22;
  --olive-soft: #8a7848;
  --cream: #f6f0e6;
  --cream-deep: #efe6d6;
  --ink: #2c2618;
  --muted: #6e6454;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

/* Fixed-nav offset for in-page anchors */
#home,
#about,
#selected-works,
#contact {
  scroll-margin-top: 5.5rem;
}

body.gv-home {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.gv-home .font-sans {
  font-family: "Montserrat", system-ui, sans-serif;
}

/* ——— Nav ——— */
.gv-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 90, 46, 0.12);
}

.gv-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gv-nav-logo {
  display: block;
  line-height: 0;
}

.gv-nav-logo img {
  height: 3.5rem;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .gv-nav-logo img {
    height: 4rem;
  }
}

.gv-nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .gv-nav-links {
    display: flex;
  }
}

.gv-nav-links a {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive);
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease;
}

@media (min-width: 900px) {
  .gv-nav-links a {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
  }
}

.gv-nav-links a:hover,
.gv-nav-links a.is-active {
  color: var(--olive-dark);
}

.gv-nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--olive);
}

.gv-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(107, 90, 46, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--olive);
  cursor: pointer;
}

@media (min-width: 768px) {
  .gv-menu-btn {
    display: none;
  }
}

.gv-mobile {
  display: none;
  border-top: 1px solid rgba(107, 90, 46, 0.1);
  background: #fff;
  padding: 0.75rem 1.5rem 1.25rem;
}

.gv-mobile.open {
  display: block;
}

.gv-mobile a {
  display: block;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(107, 90, 46, 0.08);
}

/* ——— Hero fading slideshow ——— */
.gv-hero {
  position: relative;
  margin-top: 5.25rem;
  width: 100%;
  background: var(--cream);
  overflow: hidden;
}

.gv-hero-slides {
  position: relative;
  width: 100%;
  height: min(88vh, 820px);
  min-height: 320px;
  background: var(--cream-deep);
}

.gv-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  pointer-events: none;
  transform: scale(1.03);
  will-change: transform, opacity;
}

/* Opacity only — Ken Burns class is separate so zoom keeps going during fade-out */
.gv-hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.gv-hero-slide.is-zooming {
  z-index: 1;
}

.gv-hero-slide.is-zooming.ken-a {
  animation: gvHeroKenBurnsA 6.8s linear forwards;
}

.gv-hero-slide.is-zooming.ken-b {
  animation: gvHeroKenBurnsB 6.8s linear forwards;
}

/* Outgoing slide stays above until fade finishes, keeps final transform */
.gv-hero-slide.is-fading-out {
  z-index: 2;
  opacity: 0;
}

@keyframes gvHeroKenBurnsA {
  0% {
    transform: scale(1.03) translate(0%, 0%);
  }
  100% {
    transform: scale(1.07) translate(-1%, -0.5%);
  }
}

@keyframes gvHeroKenBurnsB {
  0% {
    transform: scale(1.04) translate(0.5%, 0%);
  }
  100% {
    transform: scale(1.07) translate(-0.6%, 0.4%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gv-hero-slide {
    transition: none;
    transform: scale(1.03);
    animation: none !important;
  }
}

/* ——— Intro split: portrait + brand ——— */
.gv-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  background: #fff;
}

@media (min-width: 900px) {
  .gv-intro {
    grid-template-columns: 1fr 1fr;
    height: min(92vh, 960px);
    min-height: 760px;
    max-height: none;
  }
}

.gv-intro-photo {
  position: relative;
  min-height: 620px;
  height: 680px;
  background: #1a1714;
  overflow: hidden;
}

@media (min-width: 900px) {
  .gv-intro-photo {
    min-height: 0;
    height: 100%;
  }
}

.gv-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 5%;
  display: block;
}

.gv-intro-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.75rem 1.75rem;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 900px) {
  .gv-intro-brand {
    padding: 2.25rem 2.5rem;
    height: 100%;
  }
}

.gv-intro-brand img.logo {
  width: min(360px, 80vw);
  height: auto;
  margin-bottom: 1.85rem;
}

@media (min-width: 900px) {
  .gv-intro-brand img.logo {
    width: min(420px, 38vw);
    margin-bottom: 2rem;
  }
}

.gv-creds {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  line-height: 2.2;
  font-weight: 500;
}

@media (min-width: 768px) {
  .gv-creds {
    font-size: 1.1rem;
    letter-spacing: 0.22em;
  }
}

@media (min-width: 1100px) {
  .gv-creds {
    font-size: 1.2rem;
  }
}

/* ——— Editorial text blocks ——— */
.gv-section {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
}

.gv-section-cream {
  background: var(--cream);
  isolation: isolate;
}

.gv-section-white {
  background: #fff;
}

.gv-narrow {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.gv-h1 {
  font-size: clamp(2.15rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1.15rem;
  line-height: 1.2;
}

.gv-eyebrow {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-soft);
  margin: 0 0 2rem;
  line-height: 1.75;
  font-weight: 500;
}

.gv-body {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.8;
  color: var(--muted);
  font-weight: 400;
  margin: 0 0 1.35rem;
}

.gv-body:last-child {
  margin-bottom: 0;
}

.gv-body-emphasis {
  color: var(--olive-dark);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.55rem);
  line-height: 1.5;
  margin-top: 1.15rem;
  margin-bottom: 1.15rem;
}

/* ——— Two column ——— */
.gv-split {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 900px) {
  .gv-split {
    grid-template-columns: 1fr 1fr;
  }
}

.gv-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 8vw;
  background: #fff;
}

.gv-split-text.cream {
  background: var(--cream);
}

.gv-split-media {
  min-height: 360px;
  background: var(--cream-deep);
}

.gv-split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.gv-h2 {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1.5rem;
  line-height: 1.3;
}

.gv-split-text .gv-body {
  text-align: left;
  max-width: 32rem;
}

/* ——— Quote band ——— */
.gv-quote {
  background: var(--olive);
  color: #fff;
  text-align: center;
  padding: 5.5rem 1.75rem 6rem;
}

@media (min-width: 768px) {
  .gv-quote {
    padding: 7rem 2.5rem 7.5rem;
  }
}

.gv-quote img {
  width: 5.75rem;
  height: auto;
  margin: 0 auto 2.25rem;
  display: block;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .gv-quote img {
    width: 7rem;
    margin-bottom: 2.75rem;
  }
}

.gv-quote p {
  font-style: italic;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  line-height: 1.6;
  max-width: 44rem;
  margin: 0 auto;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

/* ——— Selected works ——— */
.gv-works-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.gv-work {
  margin-bottom: 3.5rem;
}

.gv-work:last-child {
  margin-bottom: 0;
}

.gv-work-img {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
  background: var(--cream-deep);
  cursor: zoom-in;
  overflow: hidden;
  text-align: left;
}

.gv-work-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 72vh;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.gv-work-img:hover img {
  transform: scale(1.03);
}

.gv-work-expand {
  position: absolute;
  left: 0.75rem;
  right: auto;
  bottom: 0.75rem;
  transform: none;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--olive-dark);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  pointer-events: none;
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.gv-work-expand svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .gv-work-expand {
    left: 50%;
    bottom: 1.15rem;
    transform: translateX(-50%);
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  }

  .gv-work-expand svg {
    width: 22px;
    height: 22px;
  }

  .gv-work-img:hover .gv-work-expand {
    transform: translateX(-50%) translateY(-2px);
  }
}

.gv-work-img:hover .gv-work-expand {
  opacity: 1;
  background: #fff;
}

@media (max-width: 767px) {
  .gv-work-img:hover .gv-work-expand {
    transform: translateY(-2px);
  }
}

/* Lightbox */
.gv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gv-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gv-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 10, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: zoom-out;
}

.gv-lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: gvLightboxIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes gvLightboxIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gv-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: min(80vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  background: #1a1714;
}

.gv-lightbox-caption {
  margin-top: 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.gv-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(20, 16, 10, 0.4);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.gv-lightbox-close:hover {
  background: rgba(107, 90, 46, 0.75);
}

body.gv-lightbox-open {
  overflow: hidden;
}

.gv-work-meta {
  max-width: 720px;
  padding: 0 1.5rem;
}

.gv-work-name {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.15rem;
  font-weight: 600;
}

.gv-work-piece {
  margin: 0 0 1.1rem;
}

.gv-work-piece strong {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.gv-work-piece span {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--muted);
  line-height: 1.65;
}

.gv-works-more {
  text-align: center;
  margin-top: 3rem;
}

.gv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--olive);
  padding: 1rem 1.75rem;
  transition: background 0.2s ease;
}

.gv-btn:hover {
  background: var(--olive-dark);
}

.gv-btn-outline {
  background: transparent;
  color: var(--olive);
  border: 1px solid var(--olive);
}

.gv-btn-outline:hover {
  background: var(--olive);
  color: #fff;
}

/* ——— Contact block ——— */
.gv-contact-split .gv-split-text .gv-body,
.gv-contact-split .gv-contact-details {
  text-align: left;
}

.gv-contact-split .gv-h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
}

.gv-contact-lede {
  max-width: 34rem;
  margin: 0 0 0.25rem;
}

.gv-contact-lede p {
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  line-height: 1.35;
  color: var(--muted);
  margin: 0 0 0.15em;
  font-weight: 400;
}

.gv-contact-lede p:last-child {
  margin-bottom: 0;
}

.gv-contact-details {
  margin-top: 2rem;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  line-height: 1.35;
  color: var(--muted);
}

.gv-contact-details p {
  margin: 0 0 0.2em;
  line-height: 1.35;
}

.gv-contact-details p:last-child {
  margin-bottom: 0;
}

.gv-contact-details .name {
  font-style: italic;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.6vw, 1.75rem);
  margin-bottom: 0.35em;
  line-height: 1.3;
}

.gv-contact-split .gv-btn {
  font-size: 0.78rem;
  padding: 1.1rem 1.9rem;
}

.gv-contact-details a {
  color: var(--olive);
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 90, 46, 0.3);
}

.gv-contact-details a:hover {
  border-bottom-color: var(--olive);
}

/* ——— Footer ——— */
.gv-footer {
  background: var(--cream);
  border-top: 1px solid rgba(107, 90, 46, 0.12);
  padding: 3.25rem 1.5rem 3.5rem;
  text-align: center;
}

.gv-footer img {
  height: 4rem;
  width: auto;
  margin: 0 auto 1.35rem;
  display: block;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .gv-footer img {
    height: 4.75rem;
  }
}

.gv-footer p {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.5rem 0;
}

@media (min-width: 768px) {
  .gv-footer p {
    font-size: 0.88rem;
  }
}

.gv-footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0 1.25rem;
  flex-wrap: wrap;
}

.gv-footer-links a {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
  font-weight: 500;
}

@media (min-width: 768px) {
  .gv-footer-links a {
    font-size: 0.88rem;
  }
}

.gv-footer-links a:hover {
  color: var(--olive-dark);
}

::selection {
  background: rgba(107, 90, 46, 0.2);
}
