/* =========================================================================
   Reset + base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--gv-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--gv-text);
  background: var(--gv-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv02", "cv11";
  min-height: 100vh;
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--gv-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--gv-ink);
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3.2rem); }
h3 { font-size: clamp(1.4rem, 1.5vw + .8rem, 2rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--gv-text); }

::selection { background: var(--gv-orange); color: white; }

/* Container utility */
.gv-container { max-width: var(--gv-container); margin-inline: auto; padding-inline: 24px; }
.gv-container-md { max-width: var(--gv-container-md); margin-inline: auto; padding-inline: 24px; }
.gv-container-sm { max-width: var(--gv-container-sm); margin-inline: auto; padding-inline: 24px; }
.gv-container-xs { max-width: var(--gv-container-xs); margin-inline: auto; padding-inline: 24px; }

@media (max-width: 640px) {
  .gv-container, .gv-container-md, .gv-container-sm, .gv-container-xs { padding-inline: 18px; }
}

/* Visibility helpers */
.gv-hidden { display: none !important; }
.gv-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

@media (max-width: 768px) {
  .gv-hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .gv-hide-desktop { display: none !important; }
}

/* Loader */
.gv-loader {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--gv-orange-soft);
  border-top-color: var(--gv-orange);
  animation: gv-spin .7s linear infinite;
}
@keyframes gv-spin { to { transform: rotate(360deg); } }
@keyframes gv-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gv-fade-up { animation: gv-fade-up .55s var(--gv-ease-out) both; }

/* Eyebrow tag */
.gv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gv-font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gv-orange-deep);
  margin-bottom: 12px;
}
.gv-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--gv-orange);
  border-radius: 2px;
}
.gv-eyebrow.is-light { color: var(--gv-orange-bright); }
.gv-eyebrow.is-mint  { color: var(--gv-mint); }
.gv-eyebrow.is-mint::before { background: var(--gv-mint); }

/* Section heads */
.gv-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gv-section-head h2 { max-width: 22ch; }
.gv-section-head .gv-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--gv-ink);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--gv-dur) var(--gv-ease);
}
.gv-section-head .gv-section-link:hover { border-color: var(--gv-orange); }

/* Subtle dotted divider used between sections (cream paper feel) */
.gv-section { padding: clamp(56px, 8vw, 104px) 0; }
.gv-section-tight { padding: clamp(36px, 5vw, 64px) 0; }
.gv-section-cream { background: var(--gv-cream-2); }
.gv-section-ink { background: var(--gv-ink); color: var(--gv-cream); }
.gv-section-ink h2, .gv-section-ink h3, .gv-section-ink h4 { color: var(--gv-cream); }

/* Print */
@media print {
  body { background: white; color: black; }
  .gv-no-print { display: none !important; }
}
