.gmv-page {
  --orange: #ff5e2e;
  --orange-dark: #ed4c1c;
  --ink: #1f292e;
  --muted: #687176;
  --paper: #ffffff;
  --soft: #e9ecf1;
  --line: #dedee7;
  --max: 1290px;
  --header: 94px;
  --radius: 15px;
}

.gmv-page, .gmv-page * { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.gmv-page {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.gmv-dialog-open { overflow: hidden; }

.gmv-page img { display: block; width: 100%; }

.gmv-page a { color: inherit; }

.gmv-page button, .gmv-page a { -webkit-tap-highlight-color: transparent; }

.gmv-page button { font: inherit; }

.gmv-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gmv-page .skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
}

.gmv-page .skip-link:focus { transform: none; }

.gmv-page .site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  min-height: var(--header);
  padding: 0 3.65vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: min-height .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.gmv-page .site-header.scrolled {
  min-height: 76px;
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(31, 41, 46, .05);
}

.gmv-page .brand { width: 174px; }

.gmv-page .main-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 34px); }

.gmv-page .main-nav a {
  position: relative;
  padding: 32px 0 29px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.gmv-page .main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.gmv-page .main-nav a:hover::after, .gmv-page .main-nav a:focus-visible::after, .gmv-page .main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gmv-page .header-cta {
  justify-self: end;
  padding: 13px 20px;
  color: white;
  background: var(--orange);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.gmv-page .header-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }

.gmv-page .menu-toggle { display: none; }

.gmv-page .hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  gap: 6vw;
  align-items: center;
  min-height: calc(100svh - var(--header));
  padding: clamp(70px, 8vw, 130px) 3.65vw clamp(100px, 11vw, 170px);
  overflow: hidden;
}

.gmv-page .hero-copy { position: relative; z-index: 2; max-width: 680px; }

.gmv-page .eyebrow {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gmv-page .hero h1 {
  margin: 0 0 32px;
  font-size: clamp(62px, 7.6vw, 142px);
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.065em;
}

.gmv-page .hero h1 span { color: var(--orange); }

.gmv-page .hero-lead {
  max-width: 610px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.7;
}

.gmv-page .button {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.gmv-page .button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.gmv-page .button:hover { transform: translateY(-3px); }
.gmv-page .button-dark { color: white; background: var(--ink); }
.gmv-page .button-dark:hover { background: var(--orange); }
.gmv-page .button-light { color: var(--ink); background: white; }
.gmv-page .button-light:hover { color: white; background: var(--ink); }

.gmv-page .hero-visual {
  position: relative;
  height: min(66vw, 720px);
  max-height: 720px;
  min-height: 580px;
}

.gmv-page .hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
  box-shadow: 0 25px 80px rgba(31, 41, 46, .12);
}

.gmv-page .hero-photo img { height: 100%; object-fit: cover; }
.gmv-page .hero-photo-main { inset: 5% 10% 4% 15%; transform: rotate(2deg); }
.gmv-page .hero-photo-main img { object-position: 50% 24%; }
.gmv-page .hero-photo-top { width: 29%; height: 36%; top: 0; right: 0; transform: rotate(6deg); }
.gmv-page .hero-photo-top img { object-position: center; }
.gmv-page .hero-photo-bottom { width: 34%; height: 37%; left: 0; bottom: 0; transform: rotate(-7deg); }
.gmv-page .hero-photo-bottom img { object-position: 50% 28%; }

.gmv-page .hero-mark {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 1%;
  display: grid;
  width: 185px;
  height: 185px;
  place-content: center;
  padding: 25px;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-4deg);
}

.gmv-page .hero-mark strong { font-size: 48px; line-height: .95; }
.gmv-page .hero-mark span { margin-top: 8px; font-size: 11px; font-weight: 700; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }

.gmv-page .hero-word {
  position: absolute;
  right: -2vw;
  bottom: -5.6vw;
  z-index: -1;
  color: #f3f4f6;
  font-size: 15.8vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
  pointer-events: none;
}

.gmv-page .section-shell { max-width: var(--max); margin: 0 auto; padding-right: 30px; padding-left: 30px; }

.gmv-page .manifesto {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 9vw;
  padding-top: clamp(80px, 10vw, 150px);
  padding-bottom: clamp(80px, 10vw, 150px);
}

.gmv-page .manifesto-label { padding-top: 14px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.gmv-page .dot { display: inline-block; width: 9px; height: 9px; margin-right: 9px; background: var(--orange); border-radius: 50%; }
.gmv-page .manifesto-copy h2 { max-width: 880px; margin: 0 0 30px; font-size: clamp(42px, 5vw, 76px); font-weight: 600; line-height: 1.02; letter-spacing: -.045em; }
.gmv-page .manifesto-copy p { max-width: 780px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.3vw, 21px); }

.gmv-page .motion-strip {
  overflow: hidden;
  padding: 18px 0 16px;
  color: white;
  background: var(--orange);
}

.gmv-page .motion-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 26s linear infinite;
}

.gmv-page .motion-track span {
  flex: none;
  padding-right: 1.5em;
  font-size: clamp(24px, 3vw, 50px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
}

@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

.gmv-page .stories { padding-top: clamp(110px, 12vw, 180px); padding-bottom: clamp(90px, 11vw, 160px); }

.gmv-page .section-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.gmv-page .section-heading .eyebrow { margin-bottom: 18px; }
.gmv-page .section-heading h2 { margin: 0; font-size: clamp(48px, 6vw, 88px); font-weight: 600; line-height: .95; letter-spacing: -.055em; }
.gmv-page .section-heading > p { max-width: 410px; margin: 0 0 5px; color: var(--muted); }

.gmv-page .story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px 28px; }

.gmv-page .story-card {
  min-width: 0;
  cursor: pointer;
  border-radius: var(--radius);
}
.gmv-page .story-card:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 7px;
}
.gmv-page .story-card:nth-child(4n + 2), .gmv-page .story-card:nth-child(4n + 3) { transform: translateY(48px); }

.gmv-page .story-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
  border-radius: var(--radius);
}

.gmv-page .story-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(21, 28, 31, .7));
  content: "";
  opacity: .35;
  transition: opacity .35s ease;
}

.gmv-page .story-card-image img { height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.gmv-page .story-card:hover .story-card-image img { transform: scale(1.045); }
.gmv-page .story-card:hover .story-card-image::after { opacity: .65; }

.gmv-page .story-number {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.gmv-page .story-card-body { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: start; padding: 24px 4px 0; }
.gmv-page .story-card h3 { margin: 0 0 3px; font-size: clamp(24px, 2vw, 34px); font-weight: 600; line-height: 1.15; letter-spacing: -.035em; }
.gmv-page .story-card-name-en { margin: 0 0 13px; color: var(--muted); font-size: 13px; }
.gmv-page .story-card-summary { max-width: 530px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.gmv-page .story-open {
  display: grid !important;
  width: 52px !important;
  min-width: 52px !important;
  height: 52px !important;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
  line-height: 1 !important;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.gmv-page .story-open svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.gmv-page .story-open:hover, .gmv-page .story-open:focus-visible { color: white; background: var(--orange); border-color: var(--orange); transform: rotate(12deg); }

.gmv-page .quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
  background: var(--soft);
}

.gmv-page .quote-photo { min-height: 570px; overflow: hidden; }
.gmv-page .quote-photo img { height: 100%; object-fit: cover; object-position: center 35%; }
.gmv-page .quote-section blockquote { align-self: center; max-width: 720px; margin: 0; padding: clamp(55px, 8vw, 130px); }
.gmv-page .quote-mark { display: block; height: 80px; color: var(--orange); font-size: 120px; font-weight: 600; line-height: 1; }
.gmv-page .quote-section blockquote p { margin: 0 0 32px; font-size: clamp(30px, 3.1vw, 52px); font-weight: 600; line-height: 1.15; letter-spacing: -.04em; }
.gmv-page .quote-section blockquote footer { color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }

.gmv-page .cta-section { padding-top: clamp(80px, 10vw, 150px); padding-bottom: clamp(80px, 10vw, 150px); }
.gmv-page .cta-card { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding: clamp(45px, 6vw, 85px); color: white; background: var(--orange); border-radius: var(--radius); }
.gmv-page .cta-card .eyebrow { color: white; opacity: .8; }
.gmv-page .cta-card h2 { max-width: 850px; margin: 0; font-size: clamp(38px, 4.5vw, 68px); font-weight: 600; line-height: 1.05; letter-spacing: -.045em; }

.gmv-page .site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 45px;
  align-items: center;
  padding: 52px 3.65vw;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.gmv-page .footer-brand { width: 165px; }
.gmv-page .site-footer p { margin: 0; color: var(--muted); }
.gmv-page .footer-links { display: flex; gap: 24px; }
.gmv-page .footer-links a { font-weight: 600; text-decoration: none; }
.gmv-page .footer-links a:hover { color: var(--orange); }

.gmv-page .story-dialog {
  width: min(1180px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  background: white;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .32);
}

.gmv-page .story-dialog::backdrop { background: rgba(17, 23, 26, .74); backdrop-filter: blur(7px); }
.gmv-page .dialog-shell { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; max-height: calc(100vh - 48px); }
.gmv-page .dialog-close { position: absolute; z-index: 3; top: 18px; right: 18px; display: grid !important; width: 44px !important; min-width: 44px !important; height: 44px !important; place-items: center; margin: 0 !important; padding: 0 !important; color: white; background: var(--ink); border: 0; border-radius: 50%; appearance: none; cursor: pointer; line-height: 1 !important; }
.gmv-page .dialog-close:hover { background: var(--orange); }
.gmv-page .dialog-close svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.gmv-page .dialog-gallery { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-height: 620px; padding: 0; overflow: hidden; background: var(--ink); }
.gmv-page .dialog-gallery-stage { position: relative; min-width: 0; min-height: 0; overflow: hidden; background: #172025; isolation: isolate; }
.gmv-page .dialog-gallery-stage::before { position: absolute; z-index: 0; inset: -10%; background: var(--gmv-photo) center / cover no-repeat; content: ""; filter: blur(24px); opacity: .3; transform: scale(1.08); }
.gmv-page .dialog-gallery-stage figure { position: relative; z-index: 1; width: 100%; height: 100%; margin: 0; }
.gmv-page .dialog-gallery-stage img { height: 100%; object-fit: contain; }
.gmv-page .gallery-arrow { position: absolute; z-index: 2; top: 50%; display: grid !important; width: 44px !important; min-width: 44px !important; height: 44px !important; place-items: center; margin: 0 !important; padding: 0 !important; color: white; background: rgba(23, 32, 37, .82); border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; appearance: none; cursor: pointer; line-height: 1 !important; transform: translateY(-50%); transition: background .2s ease, border-color .2s ease; }
.gmv-page .gallery-arrow:hover, .gmv-page .gallery-arrow:focus-visible { background: var(--orange); border-color: var(--orange); }
.gmv-page .gallery-arrow-prev { left: 16px; }
.gmv-page .gallery-arrow-next { right: 16px; }
.gmv-page .gallery-arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.gmv-page .gallery-position { position: absolute; z-index: 2; right: 16px; bottom: 14px; padding: 5px 9px; color: white; background: rgba(23, 32, 37, .78); border-radius: 5px; font-size: 11px; font-variant-numeric: tabular-nums; line-height: 1; }
.gmv-page .gallery-thumbnails { display: flex; gap: 8px; min-height: 78px; padding: 10px; overflow-x: auto; background: #11191d; scrollbar-color: var(--orange) transparent; scrollbar-width: thin; }
.gmv-page .gallery-thumbnail { display: block !important; width: 58px !important; min-width: 58px !important; height: 58px !important; margin: 0 !important; padding: 0 !important; overflow: hidden; background: #273238; border: 2px solid transparent; border-radius: 7px; appearance: none; cursor: pointer; opacity: .62; transition: opacity .2s ease, border-color .2s ease; }
.gmv-page .gallery-thumbnail:hover, .gmv-page .gallery-thumbnail:focus-visible { opacity: 1; }
.gmv-page .gallery-thumbnail.active { border-color: var(--orange); opacity: 1; }
.gmv-page .gallery-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.gmv-page .dialog-content { max-height: calc(100vh - 48px); padding: clamp(45px, 5vw, 75px); overflow-y: auto; overscroll-behavior: contain; }
.gmv-page .dialog-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.gmv-page .dialog-topline .eyebrow { margin: 0; }
.gmv-page .language-switch { display: flex; gap: 5px; padding: 4px; background: var(--soft); border-radius: 7px; }
.gmv-page .language-switch button { width: auto !important; min-width: 0 !important; height: auto !important; margin: 0 !important; padding: 6px 10px !important; color: var(--muted); background: transparent; border: 0; border-radius: 4px; appearance: none; cursor: pointer; font-size: 12px; font-weight: 700; line-height: 1.4 !important; }
.gmv-page .language-switch button.active { color: white; background: var(--ink); }
.gmv-page .dialog-content h2 { margin: 34px 0 2px; padding-right: 30px; font-size: clamp(36px, 4vw, 58px); font-weight: 600; line-height: 1.02; letter-spacing: -.05em; }
.gmv-page .dialog-english-name { margin: 0 0 35px; color: var(--muted); font-size: 14px; }
.gmv-page .dialog-story { color: #3f494e; font-size: 15px; line-height: 1.8; }
.gmv-page .dialog-story p { margin: 0 0 1.25em; }
.gmv-page .dialog-story p:first-child::first-letter { float: left; margin: .12em .12em 0 0; color: var(--orange); font-size: 4.2em; font-weight: 600; line-height: .72; }
.gmv-page .dialog-navigation { display: grid; grid-template-columns: 1fr auto 1fr; gap: 15px; align-items: center; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); }
.gmv-page .dialog-navigation button { display: inline-flex !important; gap: 7px; align-items: center; width: auto !important; min-width: 0 !important; height: auto !important; margin: 0 !important; padding: 6px 0 !important; color: var(--ink); background: transparent; border: 0; appearance: none; cursor: pointer; font-size: 13px; font-weight: 700; line-height: 1.2 !important; }
.gmv-page .dialog-navigation button:last-child { justify-self: end; }
.gmv-page .dialog-navigation button:hover { color: var(--orange); }
.gmv-page .dialog-navigation button svg { width: 17px; height: 17px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.gmv-page .dialog-navigation span { color: var(--muted); font-size: 12px; }

.gmv-page .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.gmv-page .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .gmv-page .site-header { grid-template-columns: 1fr auto; }
  .gmv-page .header-cta { display: none; }
  .gmv-page .main-nav { gap: 18px; }
  .gmv-page .main-nav a { font-size: 12px; }
  .gmv-page .hero { grid-template-columns: .9fr 1.1fr; gap: 2vw; }
  .gmv-page .hero-mark { width: 150px; height: 150px; }
}

@media (max-width: 960px) {
  .gmv-page { --header: 78px; }
  .gmv-page .site-header { grid-template-columns: 1fr auto; min-height: var(--header); padding-right: 24px; padding-left: 24px; }
  .gmv-page .brand { width: 150px; }
  .gmv-page .menu-toggle { display: grid; width: 48px; height: 48px; place-content: center; gap: 5px; background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
  .gmv-page .menu-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
  .gmv-page .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .gmv-page .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .gmv-page .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .gmv-page .main-nav { position: fixed; inset: var(--header) 0 auto; display: grid; gap: 0; padding: 22px 24px 30px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 25px 45px rgba(31,41,46,.1); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease; }
  .gmv-page .main-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .gmv-page .main-nav a { padding: 15px 0; font-size: 15px; }
  .gmv-page .main-nav a::after { bottom: 10px; right: auto; width: 45px; }
  .gmv-page .hero { grid-template-columns: 1fr; gap: 65px; min-height: auto; padding: 75px 24px 115px; }
  .gmv-page .hero-copy { max-width: 760px; }
  .gmv-page .hero-visual { width: min(680px, 100%); height: 650px; margin-left: auto; }
  .gmv-page .hero-word { bottom: -4vw; font-size: 19vw; }
  .gmv-page .manifesto { grid-template-columns: 1fr; gap: 35px; }
  .gmv-page .story-card:nth-child(n) { transform: none; }
  .gmv-page .quote-section { grid-template-columns: 1fr; }
  .gmv-page .quote-photo { height: 62vw; min-height: 430px; }
  .gmv-page .quote-section blockquote { max-width: 800px; }
  .gmv-page .cta-card { grid-template-columns: 1fr; }
  .gmv-page .site-footer { grid-template-columns: 1fr 1fr; }
  .gmv-page .dialog-shell { grid-template-columns: .72fr 1.28fr; }
}

@media (max-width: 680px) {
  .gmv-page .hero { padding-top: 58px; }
  .gmv-page .hero h1 { font-size: clamp(60px, 20vw, 94px); }
  .gmv-page .hero-lead { font-size: 16px; }
  .gmv-page .hero-visual { height: 118vw; min-height: 470px; max-height: 610px; }
  .gmv-page .hero-photo-main { inset: 2% 7% 5% 10%; }
  .gmv-page .hero-photo-top { width: 32%; height: 30%; }
  .gmv-page .hero-photo-bottom { width: 37%; height: 34%; }
  .gmv-page .hero-mark { right: 1%; width: 128px; height: 128px; padding: 15px; }
  .gmv-page .hero-mark strong { font-size: 38px; }
  .gmv-page .hero-mark span { font-size: 9px; }
  .gmv-page .section-shell { padding-right: 20px; padding-left: 20px; }
  .gmv-page .manifesto-copy h2 { font-size: 41px; }
  .gmv-page .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 42px; }
  .gmv-page .section-heading h2 { font-size: 52px; }
  .gmv-page .story-grid { grid-template-columns: 1fr; gap: 54px; }
  .gmv-page .story-card-image { aspect-ratio: 3 / 4; }
  .gmv-page .story-card-body { gap: 14px; }
  .gmv-page .quote-photo { height: 90vw; min-height: 400px; }
  .gmv-page .quote-section blockquote { padding: 55px 24px 65px; }
  .gmv-page .quote-section blockquote p { font-size: 32px; }
  .gmv-page .cta-card { padding: 38px 24px; }
  .gmv-page .cta-card h2 { font-size: 38px; }
  .gmv-page .site-footer { grid-template-columns: 1fr; gap: 18px; padding: 42px 24px; }
  .gmv-page .story-dialog { width: 100%; max-height: 100%; height: 100%; border-radius: 0; }
  .gmv-page .dialog-shell { display: block; max-height: 100%; height: 100%; overflow-y: auto; }
  .gmv-page .dialog-gallery { height: 58vh; min-height: 420px; }
  .gmv-page .gallery-arrow-prev { left: 10px; }
  .gmv-page .gallery-arrow-next { right: 10px; }
  .gmv-page .dialog-content { max-height: none; padding: 38px 22px 65px; overflow: visible; }
  .gmv-page .dialog-close { position: fixed; top: 14px; right: 14px; }
  .gmv-page .dialog-content h2 { margin-top: 28px; font-size: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gmv-page, .gmv-page *, .gmv-page *::before, .gmv-page *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .gmv-page .reveal { opacity: 1; transform: none; }
}


body.gmv-valkyries-live .page_content_wrap {
  padding-top: 0;
  padding-bottom: 0;
}

body.gmv-valkyries-live .content_wrap,
body.gmv-valkyries-live .content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.gmv-valkyries-live .sidebar {
  display: none;
}

body.gmv-valkyries-live .elementor-element-133f72e {
  display: none !important;
}
