/* Genevieve redesign — home page
   Fonts from SILVA SALAKIAN FINE JEWELRY WEBSITE package:
   Kapra Neue (titles / nav) + Cormorant Garamond (body) */

@font-face {
  font-family: "Kapra Neue";
  src: url("../fonts/kapraneue-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kapra Neue";
  src: url("../fonts/kapraneue-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --olive: #6b5a2e;
  --olive-dark: #4a3f22;
  --olive-soft: #8a7848;
  --cream: #f8f1e7;
  --cream-deep: #efe6d6;
  --ink: #2c2618;
  --muted: #6e6454;
  --white: #ffffff;
  --font-display: "Kapra Neue", "Perpetua Titling MT", "Times New Roman", serif;
  --font-body: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-ui: "Kapra Neue", "Times New Roman", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

#contact {
  scroll-margin-top: 6rem;
}

body.gv-home {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.gv-home .font-sans,
.gv-home .font-ui {
  font-family: var(--font-ui);
}

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

.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: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive);
  position: relative;
  padding-bottom: 0;
  border-bottom: none;
  transition: color 0.2s ease;
}

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

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

.gv-nav-links a.is-active::after,
.gv-nav-links a::after {
  content: none;
  display: none;
}

.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: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem 1.25rem;
}

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

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

/* ——— Hero ——— */
.gv-hero {
  position: relative;
  /* Mobile: sit below nav (no underlay) */
  margin-top: 5.25rem;
  width: 100%;
  background: var(--cream);
  overflow: hidden;
  line-height: 0;
  height: min(72vh, 640px);
  min-height: 320px;
}

@media (min-width: 768px) {
  .gv-hero {
    /* Desktop: nav overlays hero; slight top crop */
    margin-top: 0;
    height: auto;
    min-height: 0;
    overflow: hidden;
  }
}

.gv-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transform-origin: center center;
}

@media (min-width: 768px) {
  .gv-hero img {
    height: auto;
    object-fit: contain;
    transform: translateY(-3%);
    margin-bottom: -3%;
  }
}

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

/* Mobile: brand/credentials first, portrait below */
.gv-intro-brand {
  order: 1;
}

.gv-intro-photo {
  order: 2;
}

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

  .gv-intro-photo,
  .gv-intro-brand {
    order: initial;
  }
}

.gv-intro-photo {
  position: relative;
  /* Shared mobile height with brand panel */
  --intro-mobile-h: 680px;
  min-height: var(--intro-mobile-h);
  height: var(--intro-mobile-h);
  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;
  text-align: center;
  padding: 2.75rem 0.3rem 2.5rem;
  background: #fff;
  box-sizing: border-box;
  /* Mobile only: match portrait height */
  min-height: 680px;
  height: 680px;
}

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

.gv-intro-brand-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  min-height: 0;
}

.gv-intro-brand img.logo {
  width: 100%;
  max-width: min(375px, 97vw);
  height: auto;
  max-height: none;
  object-fit: contain;
}

@media (min-width: 900px) {
  .gv-intro-brand img.logo {
    width: auto;
    max-width: min(520px, 48vw);
    max-height: min(320px, 100%);
  }
}

.gv-creds {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  line-height: 1.45;
  font-weight: 500;
  margin: 0.65rem 0 2.5rem;
  flex: 0 0 auto;
}

@media (min-width: 900px) {
  .gv-creds {
    margin-top: 0.35rem;
    margin-bottom: 3.25rem;
  }
}

@media (min-width: 768px) {
  .gv-creds {
    font-size: 1.28rem;
    letter-spacing: 0.2em;
    line-height: 1.4;
    margin-top: 0.5rem;
    margin-bottom: 2.75rem;
  }
}

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

/* ——— 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-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.65rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1.15rem;
  line-height: 1.15;
}

.gv-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 2rem;
  line-height: 1.65;
  font-weight: 700;
}

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

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

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

/* About section — slightly smaller type */
#about .gv-h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
}

#about .gv-eyebrow {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
}

#about .gv-body {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

/* Inspired by History — side-by-side on all breakpoints */
#inspired.gv-split {
  /* Mobile: text slightly wider than image */
  grid-template-columns: 52% 48%;
}

#inspired .gv-split-text {
  padding: 2.15rem 3.5vw 2.15rem 5.5vw;
  justify-content: center;
}

#inspired .gv-h2 {
  font-size: clamp(1.1rem, 3.2vw, 2rem);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

#inspired .gv-body {
  font-size: clamp(0.88rem, 2.2vw, 1.3rem);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

#inspired .gv-body + .gv-body-emphasis {
  margin-top: 0.1rem;
}

#inspired .gv-body-emphasis {
  font-size: clamp(0.92rem, 2.3vw, 1.4rem);
  margin-top: 0.1rem;
  margin-bottom: 0.65rem;
}

#inspired .gv-body:has(+ .gv-body-emphasis) {
  margin-bottom: 0.3rem;
}

#inspired .gv-split-media,
#inspired .gv-split-media img {
  min-height: 0;
  height: 100%;
}

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

  #inspired .gv-split-text {
    padding: 3.5rem 8vw;
  }

  #inspired .gv-h2 {
    margin-bottom: 1.5rem;
  }

  #inspired .gv-body {
    margin-bottom: 1rem;
  }
}

/* Bespoke Experience — side-by-side on all breakpoints (match Inspired) */
#bespoke.gv-split {
  /* Mobile: text slightly wider than image (image is first in DOM) */
  grid-template-columns: 48% 52%;
}

#bespoke .gv-split-text {
  padding: 2.15rem 3.5vw 2.15rem 5.5vw;
  justify-content: center;
}

#bespoke .gv-h2 {
  font-size: clamp(1.1rem, 3.2vw, 2rem);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

#bespoke .gv-body {
  font-size: clamp(0.88rem, 2.2vw, 1.3rem);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

#bespoke .gv-split-media,
#bespoke .gv-split-media img {
  min-height: 0;
  height: 100%;
}

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

  #bespoke .gv-split-text {
    padding: 3.5rem 8vw;
  }

  #bespoke .gv-h2 {
    margin-bottom: 1.5rem;
  }

  #bespoke .gv-body {
    margin-bottom: 1rem;
  }
}

/* ——— 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-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1.5rem;
  line-height: 1.25;
}

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

/* ——— Quote band (after Contact) ——— */
.gv-quote {
  background: #8b8276;
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 5.25rem;
}

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

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

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

.gv-quote p.gv-quote-kicker {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  margin: 0 auto 1.35rem;
  max-width: min(72rem, 92vw);
  color: rgba(255, 255, 255, 0.95);
}

/* Mobile-only / desktop-only line breaks */
@media (max-width: 767px) {
  .gv-br-desktop {
    display: none;
  }
}

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

  .gv-quote p.gv-quote-kicker {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    letter-spacing: 0.18em;
  }
}

.gv-quote p {
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.3;
  max-width: min(68rem, 92vw);
  margin: 0 auto 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

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

.gv-quote-kicker + p {
  margin-top: 0.2rem;
}

/* ——— Selected works ——— */
#selected-works.gv-section {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 2rem;
  overflow-x: hidden;
}

.gv-works-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
  padding: 0 1.5rem;
}

#selected-works .gv-works-intro .gv-h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
}

#selected-works .gv-works-intro .gv-body {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.gv-works-list {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.gv-work {
  display: block;
  margin-bottom: 2.5rem;
}

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

@media (min-width: 768px) {
  .gv-work {
    margin-bottom: 0;
  }
}

.gv-work-img {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  display: block;
  padding: 0;
  border: 0;
  background: var(--cream-deep);
  overflow: visible;
  text-align: left;
}

.gv-work-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

/* 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: 1100px;
  margin: 2rem 0 0;
  margin-right: auto;
  padding: 0 1.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .gv-work-meta {
    /* Equal top/bottom padding matching left (5rem) */
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 5rem;
    padding-right: 2rem;
    margin: 0;
  }

  /* No huge gap under the last product before Contact */
  .gv-work:last-child .gv-work-meta {
    padding-bottom: 2rem;
  }
}

.gv-work-name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1.1rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .gv-work-name {
    font-size: clamp(calc(1.35rem - 2pt), 2.5vw, calc(1.75rem - 2pt));
  }
}

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

.gv-work-piece strong {
  display: block;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  color: var(--olive);
  margin-bottom: 0.2rem;
}

.gv-work-piece span {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--olive);
  line-height: 1.5;
  font-weight: 400;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .gv-work-piece strong {
    font-size: clamp(calc(1.2rem - 2pt), 2.2vw, calc(1.45rem - 2pt));
  }

  .gv-work-piece span {
    font-size: clamp(calc(1.1rem - 2pt), 2vw, calc(1.3rem - 2pt));
  }
}

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

.gv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--olive);
  padding: 1.1rem 1.9rem;
  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.45rem, 3.4vw, 2.35rem);
}

@media (min-width: 900px) {
  .gv-contact-split .gv-h2 {
    font-size: 2.15rem;
  }
}

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

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

@media (min-width: 900px) {
  .gv-contact-lede p {
    font-size: 1.4rem;
  }
}

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

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

@media (min-width: 900px) {
  .gv-contact-details {
    font-size: 1.3rem;
    margin-top: 1.75rem;
  }
}

.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.15rem, 2.4vw, 1.65rem);
  margin-bottom: 0.35em;
  line-height: 1.3;
}

@media (min-width: 900px) {
  .gv-contact-details .name {
    font-size: 1.55rem;
  }
}

.gv-contact-split .gv-btn {
  font-size: 1rem;
  padding: 0.8rem 1.3rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

@media (min-width: 900px) {
  .gv-contact-split .gv-btn {
    font-size: 1.2rem;
    padding: 1rem 1.65rem;
  }
}

/* Contact photo — shorter on mobile */
.gv-contact-split .gv-split-media {
  min-height: 260px;
}

.gv-contact-split .gv-split-media img {
  min-height: 260px;
}

@media (min-width: 900px) {
  .gv-contact-split .gv-split-media,
  .gv-contact-split .gv-split-media img {
    min-height: 360px;
  }
}

.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: #8b8276;
  border-top: none;
  text-align: center;
}

.gv-footer-inner {
  max-width: 42rem;
  margin: 0 auto;
  padding: 5.5rem 1.75rem 4.25rem;
}

.gv-footer-mark {
  height: 3.5rem;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: none;
}

@media (min-width: 768px) {
  .gv-footer-mark {
    height: 4rem;
    margin-bottom: 1.65rem;
  }
}

.gv-footer-copy {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

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