.gr-document {
  scroll-padding-top: 148px;
}

.gr-page {
  --gr-ink: #111820;
  --gr-midnight: #17283a;
  --gr-midnight-deep: #0b151f;
  --gr-sapphire: #456384;
  --gr-sapphire-soft: #dce5eb;
  --gr-mulberry: #8b405c;
  --gr-mulberry-dark: #673043;
  --gr-pearl: #f4f1eb;
  --gr-surface: #fffdf9;
  --gr-mist: #e8edf0;
  --gr-muted: #62707b;
  --gr-line: rgba(17, 24, 32, 0.15);
  --gr-line-light: rgba(255, 255, 255, 0.22);
  --gr-shadow: 0 28px 78px rgba(8, 19, 30, 0.15);
  background: var(--gr-pearl);
  color: var(--gr-ink);
}

.gr-page .site-header {
  background: rgba(248, 246, 241, 0.95);
  border-bottom-color: rgba(17, 24, 32, 0.11);
}

.gr-page .nav-cta,
.gr-page .button.primary {
  background: var(--gr-midnight);
}

.gr-page .nav-cta:hover,
.gr-page .nav-cta:focus-visible {
  background: var(--gr-mulberry-dark);
}

.gr-page .site-footer {
  padding-bottom: 2.5rem;
  background: #e9e6df;
  border-top-color: var(--gr-line);
}

.gr-page h1,
.gr-page h2,
.gr-page h3,
.gr-page p,
.gr-page figure,
.gr-page dl,
.gr-page dd {
  margin-top: 0;
}

.gr-page h1,
.gr-page h2,
.gr-page h3 {
  color: inherit;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
  hyphens: none;
  letter-spacing: -0.04em;
  line-height: 1.03;
  overflow-wrap: normal;
  word-break: normal;
}

.gr-page h2 {
  max-width: 15ch;
  margin-bottom: 1.3rem;
  font-size: clamp(2.7rem, 5.1vw, 5rem);
}

.gr-page h3 {
  font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.gr-page p {
  color: var(--gr-muted);
}

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

.gr-page :focus-visible {
  outline: 3px solid #e0a8bb;
  outline-offset: 4px;
}

.gr-shell {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

.gr-section {
  padding: clamp(5.5rem, 9vw, 9.5rem) 0;
  scroll-margin-top: 12px;
}

.gr-kicker {
  display: block;
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.77) !important;
  font-size: 0.74rem;
  font-weight: 850;
  hyphens: none;
  letter-spacing: 0.18em;
  line-height: 1.35;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: normal;
}

.gr-kicker--dark {
  color: var(--gr-mulberry) !important;
}

.gr-copy {
  max-width: 660px;
}

.gr-copy > p:not(.gr-kicker),
.gr-section-heading > p,
.gr-lede {
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.78;
}

.gr-copy > p:not(.gr-kicker) {
  max-width: 62ch;
}

.gr-lede {
  color: var(--gr-ink) !important;
  font-weight: 680;
}

.gr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gr-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.88rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gr-button:hover,
.gr-button:focus-visible {
  transform: translateY(-2px);
}

.gr-button--primary {
  background: var(--gr-mulberry);
  color: #fff;
}

.gr-button--primary:hover,
.gr-button--primary:focus-visible {
  background: var(--gr-mulberry-dark);
}

.gr-button--ghost,
.gr-button--line-light {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(7px);
}

.gr-button--ghost:hover,
.gr-button--ghost:focus-visible,
.gr-button--line-light:hover,
.gr-button--line-light:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.gr-button--outline {
  border-color: rgba(23, 40, 58, 0.35);
  background: transparent;
  color: var(--gr-midnight);
}

.gr-button--outline:hover,
.gr-button--outline:focus-visible {
  background: var(--gr-mist);
  border-color: var(--gr-midnight);
}

.gr-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.6rem;
  color: var(--gr-midnight);
  font-weight: 850;
  text-underline-offset: 0.28rem;
}

.gr-text-link--light {
  color: #fff;
}

@keyframes gr-text-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.gr-hero__content[data-gr-text-reveal] > * {
  animation: gr-text-rise 660ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gr-hero__content[data-gr-text-reveal] > :nth-child(1) { animation-delay: 70ms; }
.gr-hero__content[data-gr-text-reveal] > :nth-child(2) { animation-delay: 135ms; }
.gr-hero__content[data-gr-text-reveal] > :nth-child(3) { animation-delay: 200ms; }
.gr-hero__content[data-gr-text-reveal] > :nth-child(4) { animation-delay: 265ms; }
.gr-hero__content[data-gr-text-reveal] > :nth-child(5) { animation-delay: 330ms; }
.gr-hero__content[data-gr-text-reveal] > :nth-child(6) { animation-delay: 395ms; }

.reveal-ready [data-reveal][data-gr-text-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-ready [data-reveal][data-gr-text-reveal] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal][data-gr-text-reveal] > :nth-child(2) { transition-delay: 70ms; }
.reveal-ready [data-reveal][data-gr-text-reveal] > :nth-child(3) { transition-delay: 140ms; }
.reveal-ready [data-reveal][data-gr-text-reveal] > :nth-child(4) { transition-delay: 210ms; }

.reveal-ready [data-reveal][data-gr-text-reveal].is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.gr-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.gr-hero__media,
.gr-hero__media img,
.gr-final__media,
.gr-final__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gr-hero__media,
.gr-final__media {
  z-index: -3;
}

.gr-hero__media img,
.gr-final__media img {
  object-fit: cover;
  object-position: center;
}

.gr-hero__media img {
  animation: gr-hero-image 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes gr-hero-image {
  from { opacity: 0.72; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

.gr-hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 18, 28, 0.94) 0%, rgba(9, 18, 28, 0.77) 43%, rgba(9, 18, 28, 0.12) 76%),
    linear-gradient(0deg, rgba(9, 18, 28, 0.88) 0%, rgba(9, 18, 28, 0) 58%);
}

.gr-hero__content {
  padding-top: 7rem;
  padding-bottom: clamp(2.5rem, 5vw, 4.2rem);
}

.gr-hero h1 {
  max-width: 950px;
  margin-bottom: 1.15rem;
  color: #fff;
  font-size: clamp(3.8rem, 6.5vw, 6.8rem);
  letter-spacing: -0.055em;
}

.gr-hero__lede {
  max-width: 720px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.87) !important;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.62;
}

.gr-hero__facts {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(2.2rem, 4.5vw, 3.8rem) 0 1rem;
  border-block: 1px solid rgba(255, 255, 255, 0.28);
}

.gr-hero__facts > div {
  min-width: 0;
  padding: 1rem 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.gr-hero__facts > div:first-child { padding-left: 0; }
.gr-hero__facts > div:last-child { border-right: 0; }

.gr-hero__facts dt {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gr-hero__facts dd {
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.23rem);
  font-weight: 780;
  overflow-wrap: normal;
}

.gr-render-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.61) !important;
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Journey */
.gr-journey {
  position: sticky;
  z-index: 30;
  top: 72px;
  overflow-x: auto;
  background: rgba(250, 248, 244, 0.96);
  border-bottom: 1px solid var(--gr-line);
  box-shadow: 0 10px 28px rgba(17, 24, 32, 0.04);
  scrollbar-width: none;
}

.gr-journey::-webkit-scrollbar { display: none; }

.gr-journey .gr-shell {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  min-height: 64px;
  white-space: nowrap;
}

.gr-journey a {
  position: relative;
  color: #52606a;
  font-size: 0.78rem;
  font-weight: 820;
  text-decoration: none;
}

.gr-journey a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--gr-mulberry);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.gr-journey a:hover,
.gr-journey a:focus-visible,
.gr-journey a.is-active {
  color: var(--gr-ink);
}

.gr-journey a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Overview */
.gr-overview {
  background: var(--gr-pearl);
}

.gr-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.gr-portrait {
  max-width: 520px;
  justify-self: center;
}

.gr-media-button {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.gr-media-button img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
}

.gr-media-button:hover img,
.gr-media-button:focus-visible img {
  transform: scale(1.018);
  filter: saturate(1.04);
}

.gr-media-button > span {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.52rem 0.68rem;
  border-radius: 4px;
  background: rgba(12, 22, 32, 0.8);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 820;
  backdrop-filter: blur(6px);
}

.gr-page figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.72rem;
  color: var(--gr-muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.gr-proof {
  padding: 0 0 clamp(5rem, 8vw, 8rem);
  background: var(--gr-pearl);
}

.gr-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--gr-line);
}

.gr-proof__grid > div {
  padding: 1.65rem 1.4rem;
  border-right: 1px solid var(--gr-line);
}

.gr-proof__grid > div:first-child { padding-left: 0; }
.gr-proof__grid > div:last-child { border-right: 0; }

.gr-proof__grid span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--gr-mulberry);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.gr-proof__grid p {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.5;
}

/* Shared headings */
.gr-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.6rem);
}

.gr-section-heading h2 { margin-bottom: 0; }
.gr-section-heading > p { margin-bottom: 0; }
.gr-section-heading--light h2 { color: #fff; }
.gr-section-heading--light > p { color: rgba(255, 255, 255, 0.65); }

/* Facilities */
.gr-facilities {
  padding: clamp(6rem, 10vw, 10rem) 0;
  scroll-margin-top: 12px;
  background: var(--gr-midnight-deep);
  color: #fff;
}

.gr-facility-story {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.gr-facility-story--reverse figure { order: 2; }
.gr-facility-story--reverse > div { order: 1; }

.gr-facility-story figure {
  margin: 0;
}

.gr-facility-story figure img {
  aspect-ratio: 16 / 10;
}

.gr-facility-story figure figcaption,
.gr-facility-rail figcaption {
  color: rgba(255, 255, 255, 0.55);
}

.gr-facility-story h3 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
}

.gr-facility-story > div > p:not(.gr-index, .gr-kicker) {
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.gr-index {
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.2) !important;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 0.7;
}

.gr-facility-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.gr-facility-rail img {
  aspect-ratio: 16 / 9;
}

.gr-facility-rail figcaption {
  font-size: 0.84rem;
  font-weight: 760;
}

.gr-facility-rail figcaption small {
  font-weight: 500;
}

/* Layout explorer */
.gr-layouts {
  background: var(--gr-surface);
}

.gr-layout-explorer {
  border-top: 1px solid var(--gr-line);
}

.gr-tablist {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--gr-line);
}

.gr-tablist button {
  min-height: 92px;
  display: grid;
  gap: 0.2rem;
  align-content: center;
  justify-items: center;
  padding: 0.9rem;
  border: 0;
  border-right: 1px solid var(--gr-line);
  background: transparent;
  color: var(--gr-muted);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.gr-tablist button:last-child { border-right: 0; }
.gr-tablist button span { font-size: 1.05rem; font-weight: 860; }
.gr-tablist button small { font-size: 0.72rem; letter-spacing: 0.07em; }

.gr-tablist button[aria-selected="true"] {
  background: var(--gr-midnight);
  color: #fff;
}

.gr-layout-panel {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 5rem) 0 0;
  animation: gr-panel-in 260ms ease both;
}

.gr-layout-panel[hidden] { display: none; }

@keyframes gr-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gr-plan-frame {
  min-width: 0;
  padding: clamp(0.8rem, 2vw, 1.5rem);
  background: #fff;
  border: 1px solid rgba(17, 24, 32, 0.1);
  box-shadow: var(--gr-shadow);
}

.gr-plan-frame .gr-media-button {
  aspect-ratio: 1.414 / 1;
}

.gr-plan-frame img {
  object-fit: contain;
}

.gr-layout-panel__copy h3 {
  margin-bottom: 1.3rem;
}

.gr-layout-panel__copy > p:not(.gr-kicker) {
  margin-bottom: 1.5rem;
  font-size: 1.03rem;
  line-height: 1.72;
}

.gr-layout-panel__copy dl {
  margin: 1.5rem 0;
  border-block: 1px solid var(--gr-line);
}

.gr-layout-panel__copy dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gr-line);
}

.gr-layout-panel__copy dl > div:last-child { border-bottom: 0; }
.gr-layout-panel__copy dt { color: var(--gr-muted); font-size: 0.8rem; font-weight: 760; }
.gr-layout-panel__copy dd { color: var(--gr-ink); font-size: 0.9rem; font-weight: 850; }

/* Actual gallery */
.gr-actual {
  background: var(--gr-pearl);
}

.gr-gallery-status {
  display: none;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  color: var(--gr-muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.gr-actual-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: minmax(220px, 0.52fr);
  gap: 1rem;
}

.gr-actual-gallery figure {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.gr-actual-gallery__feature {
  grid-row: span 2;
}

.gr-actual-gallery .gr-media-button {
  height: 100%;
}

.gr-actual-gallery img {
  min-height: 220px;
  aspect-ratio: 4 / 3;
}

.gr-actual-gallery__feature img {
  min-height: 520px;
  aspect-ratio: auto;
}

.gr-actual-gallery figcaption {
  color: var(--gr-ink);
  font-size: 0.8rem;
  font-weight: 770;
}

.gr-actual-gallery figcaption small {
  color: var(--gr-muted);
  font-weight: 500;
}

.gr-actual-cta {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gr-line);
}

.gr-actual-cta p {
  margin-bottom: 0;
  color: var(--gr-ink);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
}

/* Location */
.gr-location {
  padding: clamp(6rem, 10vw, 10rem) 0;
  scroll-margin-top: 12px;
  background: var(--gr-midnight);
  color: #fff;
}

.gr-location__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.gr-location h2 { color: #fff; }
.gr-location .gr-copy > p:not(.gr-kicker) { color: rgba(255, 255, 255, 0.68); }

.gr-location__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 2rem 0;
  border-block: 1px solid var(--gr-line-light);
}

.gr-location__facts > div {
  padding: 1.2rem 1.2rem 1.2rem 0;
}

.gr-location__facts > div + div {
  padding-left: 1.2rem;
  border-left: 1px solid var(--gr-line-light);
}

.gr-location__facts span {
  color: #fff;
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: 2rem;
}

.gr-location__facts p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.76rem !important;
  line-height: 1.5 !important;
}

.gr-map {
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.gr-map iframe {
  width: 100%;
  height: 100%;
  min-height: 580px;
  display: block;
  border: 0;
}

/* Media */
.gr-media {
  background: var(--gr-surface);
}

.gr-media__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.gr-media__grid article {
  min-width: 0;
  border: 1px solid var(--gr-line);
  background: var(--gr-pearl);
}

.gr-media__grid article > div:last-child {
  padding: 1.6rem;
}

.gr-media__grid h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.gr-media__grid a {
  color: var(--gr-midnight);
  font-weight: 820;
  text-underline-offset: 0.28rem;
}

.gr-media-frame {
  position: relative;
  overflow: hidden;
  background: #090f16;
}

.gr-media-frame--video { aspect-ratio: 16 / 9; }
.gr-media-frame--tour { aspect-ratio: 16 / 9; }

.gr-media-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Trust and FAQ */
.gr-trust {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background: var(--gr-mulberry-dark);
  color: #fff;
}

.gr-trust__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}

.gr-trust h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.gr-trust__grid > div:last-child > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.04rem;
  line-height: 1.75;
}

.gr-faq {
  background: var(--gr-pearl);
}

.gr-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.gr-accordions details {
  border-top: 1px solid var(--gr-line);
}

.gr-accordions details:last-child {
  border-bottom: 1px solid var(--gr-line);
}

.gr-accordions summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  color: var(--gr-ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 820;
  list-style: none;
}

.gr-accordions summary::-webkit-details-marker { display: none; }
.gr-accordions summary::after { position: absolute; right: 0.2rem; content: "+"; font-size: 1.5rem; font-weight: 400; }
.gr-accordions details[open] summary::after { content: "–"; }
.gr-accordions details p { max-width: 65ch; padding: 0 2rem 1.35rem 0; line-height: 1.7; }

/* Final CTA */
.gr-final {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.gr-final__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 26, 0.94) 0%, rgba(8, 17, 26, 0.76) 50%, rgba(8, 17, 26, 0.18) 82%),
    linear-gradient(0deg, rgba(8, 17, 26, 0.8), transparent 60%);
}

.gr-final__content {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.gr-final h2 {
  max-width: 15ch;
  color: #fff;
}

.gr-final__content > p:not(.gr-kicker, .gr-render-note) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.72;
}

.gr-final .gr-actions { margin: 1.7rem 0 2.2rem; }

/* Mobile bar */
.gr-mobile-bar {
  position: fixed;
  z-index: 70;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  display: none;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(11, 21, 31, 0.96);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(120%);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(10px);
}

.gr-mobile-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gr-mobile-bar a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  color: #fff;
  font-size: 0.79rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.gr-mobile-bar a + a {
  background: var(--gr-mulberry);
}

/* Lightbox */
.gr-lightbox {
  width: min(96vw, 1500px);
  height: min(94vh, 980px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: #0b121a;
  color: #fff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.55);
}

.gr-lightbox::backdrop {
  background: rgba(3, 8, 13, 0.87);
  backdrop-filter: blur(7px);
}

.gr-lightbox__bar {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.gr-lightbox__bar p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 0.78rem; }
.gr-lightbox__bar button { min-height: 40px; padding: 0.5rem 0.85rem; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 4px; background: transparent; color: #fff; cursor: pointer; }

.gr-lightbox__stage {
  position: relative;
  height: calc(100% - 58px);
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 1rem 4.5rem;
}

.gr-lightbox__stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gr-lightbox--plan .gr-lightbox__stage {
  display: block;
  text-align: center;
}

.gr-lightbox--plan .gr-lightbox__stage img {
  width: auto;
  min-width: min(1150px, 92vw);
  max-height: none;
}

.gr-lightbox__nav {
  position: fixed;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: rgba(6, 13, 20, 0.82);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  transform: translateY(-50%);
}

.gr-lightbox__nav--prev { left: max(1rem, 3vw); }
.gr-lightbox__nav--next { right: max(1rem, 3vw); }

@media (max-width: 1024px) {
  .gr-overview__grid,
  .gr-location__grid,
  .gr-faq__grid {
    gap: 3.5rem;
  }

  .gr-section-heading {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2.5rem;
  }

  .gr-facility-story {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .gr-layout-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    gap: 3rem;
  }

  .gr-actual-gallery {
    grid-template-columns: 1.15fr 1fr;
  }

  .gr-actual-gallery__feature { grid-row: span 2; }
}

@media (max-width: 760px) {
  .gr-document { scroll-padding-top: 126px; }
  .gr-page { padding-bottom: 82px; }
  .gr-page .site-footer { padding-bottom: 6rem; }
  .gr-shell { width: min(100% - 1.25rem, 1240px); }
  .gr-section { padding: 4.6rem 0; scroll-margin-top: 10px; }

  .gr-page h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 12vw, 3.55rem);
    line-height: 1.04;
  }

  .gr-page h3 { font-size: clamp(1.9rem, 9vw, 2.7rem); }

  .gr-kicker {
    max-width: 32ch;
    margin-bottom: 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .gr-button { width: 100%; }

  .gr-hero {
    min-height: 920px;
    align-items: end;
  }

  .gr-hero__media img {
    object-position: 52% center;
  }

  .gr-hero__veil {
    background:
      linear-gradient(0deg, rgba(7, 15, 23, 0.97) 0%, rgba(7, 15, 23, 0.76) 59%, rgba(7, 15, 23, 0.28) 100%),
      linear-gradient(90deg, rgba(7, 15, 23, 0.45), transparent 72%);
  }

  .gr-hero__content {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .gr-hero h1 {
    max-width: 9.4ch;
    margin-bottom: 1rem;
    font-size: clamp(3rem, 13vw, 3.75rem);
    line-height: 0.99;
  }

  .gr-hero__lede {
    margin-bottom: 1.3rem;
    font-size: 1rem;
    line-height: 1.56;
  }

  .gr-hero__facts {
    grid-template-columns: 1fr 1fr;
    margin-top: 1.75rem;
  }

  .gr-hero__facts > div {
    padding: 0.8rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .gr-hero__facts > div:nth-child(odd) { padding-left: 0; }
  .gr-hero__facts > div:nth-child(even) { border-right: 0; }
  .gr-hero__facts > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .gr-hero__facts dd { font-size: 0.95rem; }

  .gr-journey { top: 72px; }
  .gr-journey .gr-shell { width: max-content; min-height: 56px; padding-right: 1.25rem; }

  .gr-overview__grid,
  .gr-section-heading,
  .gr-facility-story,
  .gr-location__grid,
  .gr-media__grid,
  .gr-trust__grid,
  .gr-faq__grid {
    grid-template-columns: 1fr;
  }

  .gr-overview__grid { gap: 2.7rem; }
  .gr-portrait { max-width: 100%; }
  .gr-section-heading { gap: 1.2rem; margin-bottom: 2.8rem; }
  .gr-section-heading > p { max-width: 58ch; }

  .gr-proof { padding-bottom: 4.6rem; }
  .gr-proof__grid { grid-template-columns: 1fr 1fr; }
  .gr-proof__grid > div { padding: 1.2rem 0.8rem; border-bottom: 1px solid var(--gr-line); }
  .gr-proof__grid > div:nth-child(odd) { padding-left: 0; }
  .gr-proof__grid > div:nth-child(even) { border-right: 0; }
  .gr-proof__grid > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .gr-proof__grid span { font-size: 2rem; }

  .gr-facilities { padding: 5rem 0; scroll-margin-top: 10px; }
  .gr-facility-story { gap: 2rem; margin-bottom: 5rem; }
  .gr-facility-story--reverse figure,
  .gr-facility-story--reverse > div { order: initial; }
  .gr-facility-story h3 { max-width: 100%; }
  .gr-index { margin-bottom: 0.8rem; font-size: 5.3rem; }
  .gr-facility-rail { display: flex; gap: 0.8rem; overflow-x: auto; scroll-snap-type: x mandatory; }
  .gr-facility-rail { scrollbar-width: none; }
  .gr-facility-rail::-webkit-scrollbar { display: none; }
  .gr-facility-rail figure { min-width: 84vw; scroll-snap-align: start; }

  .gr-tablist {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gr-tablist::-webkit-scrollbar { display: none; }
  .gr-tablist button { min-width: 92px; min-height: 78px; scroll-snap-align: start; }

  .gr-layout-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.3rem;
    padding-top: 1.3rem;
  }

  .gr-plan-frame { padding: 0.55rem; }
  .gr-layout-panel__copy { padding-bottom: 1rem; }

  .gr-gallery-status { display: flex; }

  .gr-actual-gallery {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gr-actual-gallery::-webkit-scrollbar { display: none; }
  .gr-actual-gallery figure,
  .gr-actual-gallery__feature { min-width: 84vw; grid-row: auto; scroll-snap-align: start; }
  .gr-actual-gallery .gr-media-button { height: auto; }
  .gr-actual-gallery img,
  .gr-actual-gallery__feature img { min-height: 0; aspect-ratio: 4 / 3; }
  .gr-actual-cta { align-items: stretch; flex-direction: column; }

  .gr-location { padding: 5rem 0; scroll-margin-top: 10px; }
  .gr-location__grid { gap: 2.8rem; }
  .gr-location__facts { grid-template-columns: 1fr; }
  .gr-location__facts > div + div { padding-left: 0; border-top: 1px solid var(--gr-line-light); border-left: 0; }
  .gr-map,
  .gr-map iframe { min-height: 420px; }

  .gr-media__grid { gap: 1rem; }
  .gr-trust__grid { gap: 2rem; }
  .gr-trust h2 { max-width: 100%; }
  .gr-faq__grid { gap: 2rem; }

  .gr-final { min-height: 780px; }
  .gr-final__media img { object-position: 63% center; }
  .gr-final__content { padding: 4.5rem 0; }
  .gr-final h2 { max-width: 100%; }

  .gr-mobile-bar { display: grid; }

  .gr-lightbox {
    width: 100vw;
    height: 100dvh;
  }

  .gr-lightbox__stage { padding: 0.75rem; }
  .gr-lightbox__nav { top: auto; bottom: 1rem; width: 46px; height: 46px; transform: none; }
  .gr-lightbox__nav--prev { left: 1rem; }
  .gr-lightbox__nav--next { right: 1rem; }
  .gr-lightbox--plan .gr-lightbox__stage img { min-width: 1040px; }
}

@media (max-width: 390px) {
  .gr-hero { min-height: 900px; }
  .gr-hero__lede { font-size: 0.96rem; }
  .gr-hero__facts dt { font-size: 0.6rem; }
  .gr-hero__facts dd { font-size: 0.87rem; }
}

@media (prefers-reduced-motion: reduce) {
  .gr-page *,
  .gr-page *::before,
  .gr-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
}
