@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/BarlowCondensed-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("fonts/BarlowCondensed-ExtraBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-Variable.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

:root {
  --gre-obsidian: #0d0f10;
  --gre-carbon: #111214;
  --gre-graphite: #1a1c1e;
  --gre-ivory: #f2efe9;
  --gre-mist: #b8b3aa;
  --gre-muted: #817d76;
  --gre-gold: #c99a49;
  --gre-gold-light: #d8ac5b;
  --gre-gold-dark: #8f6729;
  --gre-error: #d86b5e;
  --gre-success: #65a982;
  --gre-hairline: rgba(201, 154, 73, 0.34);
  --gre-neutral-line: rgba(242, 239, 233, 0.14);
  --gre-shell: min(1320px, calc(100% - 80px));
  --gre-header-height: 96px;
}

html {
  background: var(--gre-obsidian);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body.gre-site {
  margin: 0;
  background: var(--gre-obsidian);
  color: var(--gre-mist);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.gre-site *,
body.gre-site *::before,
body.gre-site *::after {
  box-sizing: border-box;
}

body.gre-site img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.gre-site a:not(.gre-button) {
  color: inherit;
}

body.gre-site button,
body.gre-site input,
body.gre-site select,
body.gre-site textarea {
  font: inherit;
}

body.gre-site button,
body.gre-site a {
  -webkit-tap-highlight-color: transparent;
}

body.gre-site :focus-visible {
  outline: 3px solid var(--gre-ivory);
  outline-offset: 4px;
}

body.gre-site ::selection {
  background: var(--gre-gold);
  color: var(--gre-obsidian);
}

.gre-shell {
  width: var(--gre-shell);
  margin-inline: auto;
}

.gre-main,
.gre-main .elementor,
.gre-main .elementor-element,
.gre-main .e-con,
.gre-main .elementor-widget-container {
  max-width: none;
}

.gre-main .elementor > .elementor-element,
.gre-main .elementor-widget-html,
.gre-main .elementor-widget-html > .elementor-widget-container {
  width: 100%;
  padding: 0;
  margin: 0;
}

.gre-main .elementor-element.e-con {
  --padding-top: 0;
  --padding-bottom: 0;
  --padding-left: 0;
  --padding-right: 0;
  --gap: 0;
}

.gre-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--gre-ivory);
  color: var(--gre-obsidian);
  font-weight: 800;
  text-decoration: none;
}

.gre-skip-link:focus {
  transform: translateY(0);
}

.gre-eyebrow {
  margin: 0 0 16px;
  color: var(--gre-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gre-display,
.gre-section-title,
.gre-card-title {
  margin: 0;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -0.012em;
}

.gre-section-title {
  max-width: 760px;
  font-size: clamp(44px, 3.6vw, 58px);
  line-height: 1;
}

.gre-section-lead {
  max-width: 62ch;
  margin: 20px 0 0;
  color: var(--gre-mist);
  font-size: 18px;
}

.gre-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  touch-action: manipulation;
  white-space: normal;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.gre-button i {
  font-size: 13px;
  transition: transform 160ms ease;
}

.gre-button:hover i,
.gre-button:focus-visible i {
  transform: translateX(4px);
}

.gre-button:active {
  transform: translateY(1px);
}

.gre-button--primary {
  background: linear-gradient(135deg, #d8ac5b 0%, #c99a49 48%, #a97931 100%);
  color: var(--gre-obsidian);
}

.gre-button--primary:hover,
.gre-button--primary:focus-visible {
  background: var(--gre-gold-light);
  color: var(--gre-obsidian);
}

.gre-button--secondary {
  border-color: var(--gre-hairline);
  background: rgba(13, 15, 16, 0.38);
  color: var(--gre-ivory);
}

.gre-button--secondary:hover,
.gre-button--secondary:focus-visible {
  border-color: var(--gre-gold-light);
  background: rgba(201, 154, 73, 0.12);
  color: var(--gre-ivory);
}

.gre-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gre-gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.gre-text-link:hover,
.gre-text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.gre-text-link i {
  transition: transform 160ms ease;
}

.gre-text-link:hover i,
.gre-text-link:focus-visible i {
  transform: translateX(4px);
}

.gre-site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--gre-header-height);
  border-bottom: 1px solid transparent;
  color: var(--gre-ivory);
  transition: background-color 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.gre-site-header.is-scrolled,
body:not(.gre-home) .gre-site-header {
  position: fixed;
  min-height: 82px;
  border-bottom-color: rgba(242, 239, 233, 0.1);
  background: rgba(13, 15, 16, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.gre-site-header__inner {
  display: grid;
  min-height: inherit;
  align-items: center;
  grid-template-columns: minmax(230px, 0.9fr) minmax(520px, 1.7fr) auto;
  gap: 32px;
}

.gre-brand {
  display: block;
  width: min(292px, 100%);
}

.gre-brand img {
  width: 100%;
}

.gre-primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.1vw, 38px);
}

.gre-primary-nav a {
  position: relative;
  padding-block: 14px;
  color: var(--gre-ivory);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.gre-primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gre-gold);
  transition: transform 160ms ease;
}

.gre-primary-nav a:hover::after,
.gre-primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.gre-language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(242, 239, 233, 0.32);
}

.gre-language-switcher[hidden] {
  display: none !important;
}

.gre-language-switcher button {
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-right: 1px solid rgba(242, 239, 233, 0.22);
  background: transparent;
  color: var(--gre-ivory);
  cursor: pointer;
  font: 800 11px/1 var(--gre-font-body);
  letter-spacing: 0.08em;
}

.gre-language-switcher button:last-child { border-right: 0; }
.gre-language-switcher button:hover,
.gre-language-switcher button:focus-visible { color: var(--gre-gold-light); }
.gre-language-switcher button[aria-pressed="true"] {
  background: var(--gre-gold);
  color: var(--gre-obsidian);
}

.gre-header-call {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid var(--gre-gold);
  color: var(--gre-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.gre-header-call:hover,
.gre-header-call:focus-visible {
  background: var(--gre-gold);
  color: var(--gre-obsidian);
}

.gre-menu-toggle {
  display: none;
}

.gre-menu-toggle,
.gre-accordion__trigger {
  touch-action: manipulation;
}

.gre-hero {
  position: relative;
  display: grid;
  min-height: 670px;
  overflow: hidden;
  align-items: stretch;
  background: #090b0c url("images/gre-hero-cinematic-road-desktop.webp") 72% 50% / cover no-repeat;
}

.gre-hero::before,
.gre-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
}

.gre-hero::before {
  background: linear-gradient(90deg, rgba(5, 7, 8, 0.94) 0%, rgba(5, 7, 8, 0.78) 34%, rgba(5, 7, 8, 0.24) 61%, rgba(5, 7, 8, 0.08) 100%);
}

.gre-hero::after {
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.58) 0%, rgba(8, 9, 10, 0) 42%);
}

.gre-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--gre-shell);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-inline: auto;
  padding: 142px 0 62px;
}

.gre-hero__copy {
  max-width: 570px;
  animation: gre-hero-enter 360ms ease-out both;
}

@keyframes gre-hero-enter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.gre-hero__brandline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gre-gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gre-hero__brandline::before {
  width: 40px;
  height: 1px;
  background: var(--gre-gold);
  content: "";
}

.gre-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(68px, 5.8vw, 88px);
  font-weight: 800;
  letter-spacing: -0.012em;
  line-height: 0.92;
  text-transform: uppercase;
}

.gre-hero h1 span {
  color: var(--gre-gold-light);
}

.gre-hero__summary {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--gre-ivory);
  font-size: 19px;
  line-height: 1.55;
}

.gre-hero__microcopy {
  max-width: 480px;
  margin: 12px 0 0;
  color: var(--gre-mist);
  font-size: 13px;
}

.gre-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.gre-hero__actions .gre-button:first-child {
  min-width: 286px;
}

.gre-hero__actions .gre-button:last-child {
  min-width: 250px;
}

.gre-capability-rail {
  border-top: 1px solid rgba(242, 239, 233, 0.08);
  border-bottom: 1px solid var(--gre-neutral-line);
  background: var(--gre-carbon);
}

.gre-capability-rail__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gre-capability {
  display: grid;
  min-height: 104px;
  align-items: center;
  padding: 20px 24px;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
}

.gre-capability + .gre-capability {
  border-left: 1px solid var(--gre-neutral-line);
}

.gre-capability i {
  color: var(--gre-gold-light);
  font-size: 31px;
  text-align: center;
}

.gre-capability strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gre-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.gre-capability span {
  display: block;
  color: var(--gre-mist);
  font-size: 13px;
  line-height: 1.45;
}

.gre-editorial-band {
  display: grid;
  min-height: 322px;
  grid-template-columns: 1fr 1fr;
  background: var(--gre-obsidian);
}

.gre-editorial-band__image {
  min-height: 322px;
  overflow: hidden;
  background: #342214;
}

.gre-editorial-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gre-editorial-band__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px clamp(40px, 5vw, 84px);
}

.gre-editorial-band h2 {
  margin: 0;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.02;
}

.gre-editorial-band p:not(.gre-eyebrow) {
  max-width: 56ch;
  margin: 16px 0 21px;
  color: var(--gre-mist);
  font-size: 16px;
}

.gre-process {
  padding: 72px 0 88px;
  border-top: 1px solid var(--gre-neutral-line);
  background: var(--gre-obsidian);
}

.gre-process__intro {
  margin-bottom: 42px;
  text-align: center;
}

.gre-process__intro .gre-eyebrow {
  margin-bottom: 12px;
}

.gre-process__intro h2 {
  margin: 0;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.gre-process__steps {
  display: grid;
  max-width: 1080px;
  align-items: start;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
}

.gre-process-step {
  position: relative;
  text-align: center;
}

.gre-process-step:not(:last-child)::after {
  position: absolute;
  top: 38px;
  left: calc(50% + 52px);
  width: calc(100% - 48px);
  height: 1px;
  background: var(--gre-gold-dark);
  content: "";
}

.gre-process-step__number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 76px;
  height: 76px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gre-gold);
  border-radius: 50%;
  background: var(--gre-obsidian);
  color: var(--gre-gold-light);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.gre-process-step h3 {
  margin: 19px 0 8px;
  color: var(--gre-ivory);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gre-process-step p {
  max-width: 28ch;
  margin: 0 auto;
  color: var(--gre-mist);
  font-size: 14px;
}

.gre-paths {
  padding: 104px 0;
  background: var(--gre-carbon);
}

.gre-paths__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.gre-paths__head p:last-child {
  max-width: 48ch;
  margin: 0;
}

.gre-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.gre-path-card {
  position: relative;
  display: flex;
  min-height: 268px;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
  border: 1px solid var(--gre-neutral-line);
  border-top: 2px solid var(--gre-gold);
  background: var(--gre-graphite);
  transition: border-color 180ms ease, transform 180ms ease;
}

.gre-path-card:hover,
.gre-path-card:focus-within {
  border-color: var(--gre-gold);
  transform: translateY(-2px);
}

.gre-path-card__icon {
  margin-bottom: 26px;
  color: var(--gre-gold-light);
  font-size: 32px;
}

.gre-path-card h3 {
  margin: 0;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.04;
}

.gre-path-card p {
  max-width: 46ch;
  margin: 14px 0 24px;
  color: var(--gre-mist);
  font-size: 15px;
}

.gre-path-card .gre-text-link {
  margin-top: auto;
}

.gre-form-section {
  padding: 104px 0;
  background: var(--gre-obsidian);
}

.gre-form-section--alternate {
  border-top: 1px solid var(--gre-neutral-line);
  background: var(--gre-carbon);
}

.gre-form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(48px, 7vw, 104px);
}

.gre-form-layout > *,
.gre-faq__layout > * {
  min-width: 0;
}

.gre-form-intro {
  position: sticky;
  top: 118px;
}

.gre-form-intro p:not(.gre-eyebrow) {
  max-width: 48ch;
  margin: 22px 0 0;
}

.gre-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 30px;
  padding: 18px;
  border-left: 2px solid var(--gre-gold);
  background: rgba(201, 154, 73, 0.08);
  color: var(--gre-mist);
  font-size: 13px;
}

.gre-privacy-note i {
  margin-top: 3px;
  color: var(--gre-gold-light);
}

.gre-planner {
  padding: 34px;
  border: 1px solid var(--gre-hairline);
  background: var(--gre-graphite);
}

.gre-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gre-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gre-field--full {
  grid-column: 1 / -1;
}

.gre-field label,
.gre-field legend {
  color: var(--gre-ivory);
  font-size: 13px;
  font-weight: 700;
}

.gre-field label span,
.gre-field legend span {
  color: var(--gre-mist);
  font-weight: 500;
}

.gre-field input,
.gre-field select,
.gre-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(242, 239, 233, 0.2);
  border-radius: 2px;
  outline: 0;
  background: #131517;
  color: var(--gre-ivory);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.gre-field textarea {
  min-height: 128px;
  resize: vertical;
}

.gre-field input:hover,
.gre-field select:hover,
.gre-field textarea:hover {
  border-color: rgba(242, 239, 233, 0.34);
}

.gre-field input:focus,
.gre-field select:focus,
.gre-field textarea:focus {
  border-color: var(--gre-gold-light);
  box-shadow: 0 0 0 3px rgba(201, 154, 73, 0.18);
}

.gre-field [aria-invalid="true"] {
  border-color: var(--gre-error);
  box-shadow: 0 0 0 3px rgba(216, 107, 94, 0.14);
}

.gre-field__error {
  min-height: 19px;
  margin: 0;
  color: #f09b91;
  font-size: 12px;
}

.gre-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.gre-form-actions button {
  cursor: pointer;
}

.gre-form-actions .gre-button[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
}

.gre-brief-result {
  margin-top: 28px;
  padding: 24px;
  border-left: 3px solid var(--gre-success);
  background: #101b15;
}

.gre-brief-result[hidden] {
  display: none;
}

.gre-brief-result h3 {
  margin: 0 0 8px;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

.gre-brief-result p {
  margin: 0 0 16px;
  color: var(--gre-mist);
  font-size: 14px;
}

.gre-brief-result pre {
  margin: 0 0 20px;
  padding: 17px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(101, 169, 130, 0.35);
  background: #0d1511;
  color: var(--gre-ivory);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.gre-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gre-copy-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--gre-success);
  font-size: 13px;
}

.gre-faq {
  padding: 104px 0;
  border-top: 1px solid var(--gre-neutral-line);
  background: var(--gre-obsidian);
}

.gre-faq__layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.65fr) minmax(520px, 1.35fr);
  gap: 88px;
}

.gre-accordion {
  border-top: 1px solid var(--gre-neutral-line);
}

.gre-accordion__item {
  border-bottom: 1px solid var(--gre-neutral-line);
}

.gre-accordion__trigger {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--gre-ivory);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  white-space: normal;
}

.gre-accordion__trigger span {
  min-width: 0;
  flex: 1 1 auto;
  overflow-wrap: anywhere;
}

.gre-accordion__trigger i {
  color: var(--gre-gold-light);
  transition: transform 160ms ease;
}

.gre-accordion__trigger[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.gre-accordion__trigger:hover {
  color: var(--gre-gold-light);
}

.gre-accordion__panel {
  padding: 0 56px 22px 0;
  color: var(--gre-mist);
  font-size: 15px;
}

.gre-accordion__panel[hidden] {
  display: none;
}

.gre-final-cta {
  padding: 88px 0;
  background: var(--gre-carbon);
}

.gre-final-cta__panel {
  display: grid;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--gre-gold);
  background: var(--gre-graphite);
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 48px;
}

.gre-final-cta__panel h2 {
  margin: 0;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 700;
  line-height: 1;
}

.gre-final-cta__panel p:not(.gre-eyebrow) {
  max-width: 56ch;
  margin: 18px 0 0;
}

.gre-final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
}

.gre-final-cta__phone {
  color: var(--gre-mist);
  font-size: 13px;
  text-align: center;
}

.gre-site-footer {
  padding: 72px 0 28px;
  border-top: 1px solid var(--gre-neutral-line);
  background: #090a0b;
}

.gre-site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.8fr;
  gap: 54px;
}

.gre-site-footer__brand img {
  width: 260px;
}

.gre-site-footer__brand p {
  max-width: 38ch;
  margin: 22px 0 0;
  font-size: 14px;
}

.gre-site-footer h2 {
  margin: 3px 0 20px;
  color: var(--gre-ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gre-site-footer__grid > div:not(.gre-site-footer__brand) a {
  display: block;
  margin-bottom: 12px;
  color: var(--gre-mist);
  font-size: 14px;
  text-decoration: none;
}

.gre-site-footer__grid > div:not(.gre-site-footer__brand) a:hover,
.gre-site-footer__grid > div:not(.gre-site-footer__brand) a:focus-visible {
  color: var(--gre-gold-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gre-site-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--gre-neutral-line);
}

.gre-site-footer__bottom p {
  max-width: 62ch;
  margin: 0;
  color: var(--gre-muted);
  font-size: 12px;
}

.gre-content-page {
  min-height: 70vh;
  padding: 176px 0 96px;
  background: var(--gre-obsidian);
}

.gre-content-page__inner {
  max-width: 920px;
}

.gre-content-page__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gre-neutral-line);
}

.gre-content-page__header h1 {
  margin: 0;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 800;
  line-height: 0.96;
}

.gre-content-page__body {
  color: var(--gre-mist);
  font-size: 17px;
}

.gre-content-page__body h2,
.gre-content-page__body h3 {
  margin: 48px 0 14px;
  color: var(--gre-ivory);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  line-height: 1.05;
}

.gre-content-page__body h2 { font-size: 38px; }
.gre-content-page__body h3 { font-size: 29px; }

.gre-content-page__body p,
.gre-content-page__body ul {
  margin: 0 0 22px;
}

.gre-content-page__body a {
  color: var(--gre-gold-light);
  text-underline-offset: 4px;
}

@media (max-width: 1180px) {
  :root { --gre-shell: min(100% - 64px, 1320px); }
  .gre-site-header__inner { grid-template-columns: minmax(210px, 0.8fr) 1.6fr auto; gap: 22px; }
  .gre-primary-nav { gap: 20px; }
  .gre-primary-nav a { font-size: 14px; }
  .gre-language-switcher button { min-width: 30px; padding-inline: 6px; }
  .gre-header-call { padding-inline: 18px; }
  .gre-capability { padding-inline: 18px; }
  .gre-form-layout { grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr); gap: 56px; }
}

@media (max-width: 1024px) {
  :root { --gre-header-height: 76px; --gre-shell: calc(100% - 48px); }
  html { scroll-padding-top: 84px; }
  .gre-site-header,
  .gre-site-header.is-scrolled,
  body:not(.gre-home) .gre-site-header { min-height: 76px; }
  .gre-site-header__inner { grid-template-columns: minmax(0, 1fr) 48px; gap: 18px; }
  .gre-brand { width: 196px; }
  .gre-menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gre-neutral-line);
    background: rgba(13, 15, 16, 0.62);
    color: var(--gre-ivory);
    cursor: pointer;
  }
  .gre-menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .gre-menu-toggle__lines { display: grid; width: 21px; gap: 6px; }
  .gre-menu-toggle__lines span { display: block; width: 100%; height: 2px; background: currentColor; transition: transform 160ms ease; }
  .gre-menu-toggle[aria-expanded="true"] .gre-menu-toggle__lines span:first-child { transform: translateY(4px) rotate(45deg); }
  .gre-menu-toggle[aria-expanded="true"] .gre-menu-toggle__lines span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .gre-primary-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 12px 24px 22px;
    border-top: 1px solid var(--gre-neutral-line);
    border-bottom: 1px solid var(--gre-neutral-line);
    background: rgba(13, 15, 16, 0.985);
  }
  .gre-primary-nav.is-open { display: block; }
  .gre-primary-nav a { display: flex; min-height: 54px; align-items: center; border-bottom: 1px solid var(--gre-neutral-line); font-size: 16px; }
  .gre-primary-nav a::after { display: none; }
  .gre-language-switcher { width: 100%; margin-top: 14px; }
  .gre-language-switcher button { min-height: 44px; flex: 1; }
  .gre-header-call { display: none; }
  .gre-hero { min-height: 640px; background-position: 68% 50%; }
  .gre-hero__inner { padding-top: 116px; }
  .gre-hero h1 { max-width: 500px; font-size: clamp(60px, 8vw, 72px); }
  .gre-capability-rail__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gre-capability:nth-child(3) { border-left: 0; border-top: 1px solid var(--gre-neutral-line); }
  .gre-capability:nth-child(4) { border-top: 1px solid var(--gre-neutral-line); }
  .gre-editorial-band { grid-template-columns: 1fr; }
  .gre-editorial-band__image { min-height: auto; aspect-ratio: 16 / 9; }
  .gre-editorial-band__copy { padding: 48px 24px; }
  .gre-paths__head { display: block; }
  .gre-paths__head p:last-child { margin-top: 20px; }
  .gre-form-layout { grid-template-columns: minmax(0, 1fr); }
  .gre-form-intro { position: static; }
  .gre-faq__layout { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .gre-final-cta__panel { grid-template-columns: 1fr; }
  .gre-site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .gre-site-footer__grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 767px) {
  :root { --gre-shell: calc(100% - 40px); }
  .gre-section-title { font-size: 38px; line-height: 1.03; }
  .gre-section-lead { font-size: 17px; }
  .gre-hero {
    min-height: 720px;
    background-image: url("images/gre-hero-cinematic-road-mobile.webp");
    background-position: 58% 40%;
  }
  .gre-hero::before { background: linear-gradient(90deg, rgba(5, 7, 8, 0.94) 0%, rgba(5, 7, 8, 0.75) 58%, rgba(5, 7, 8, 0.22) 100%); }
  .gre-hero::after { background: linear-gradient(0deg, rgba(8, 9, 10, 0.72) 0%, rgba(8, 9, 10, 0.06) 55%); }
  .gre-hero__inner { justify-content: flex-start; padding: 122px 0 32px; }
  .gre-hero__copy { max-width: 100%; }
  .gre-hero h1 { max-width: 8.8ch; font-size: clamp(48px, 14vw, 60px); line-height: 0.94; }
  .gre-hero__summary { max-width: 32ch; margin-top: 18px; font-size: 17px; }
  .gre-hero__microcopy { max-width: 34ch; }
  .gre-hero__actions { width: 100%; flex-direction: column; gap: 12px; margin-top: 24px; }
  .gre-hero__actions .gre-button { width: 100%; min-width: 0 !important; }
  .gre-capability-rail__grid { grid-template-columns: 1fr; }
  .gre-capability { min-height: 84px; }
  .gre-capability + .gre-capability { border-top: 1px solid var(--gre-neutral-line); border-left: 0; }
  .gre-editorial-band__image { aspect-ratio: 4 / 3; }
  .gre-editorial-band__copy { padding: 38px 20px 44px; }
  .gre-editorial-band h2 { font-size: 38px; }
  .gre-process { padding: 56px 0 64px; }
  .gre-process__intro { text-align: left; }
  .gre-process__intro h2 { font-size: 38px; }
  .gre-process__steps { grid-template-columns: 1fr; gap: 24px; }
  .gre-process-step { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 18px; text-align: left; }
  .gre-process-step:not(:last-child)::after { top: 64px; left: 31px; width: 1px; height: calc(100% + 24px); }
  .gre-process-step__number { width: 64px; height: 64px; }
  .gre-process-step h3 { margin: 4px 0 6px; }
  .gre-process-step p { max-width: none; margin: 0; }
  .gre-paths,
  .gre-form-section,
  .gre-faq { padding: 64px 0; }
  .gre-paths__grid { grid-template-columns: 1fr; gap: 18px; }
  .gre-path-card { min-height: 246px; padding: 28px 24px; }
  .gre-form-layout { gap: 36px; }
  .gre-planner { padding: 24px 18px; }
  .gre-form-grid { grid-template-columns: 1fr; gap: 18px; }
  .gre-field--full { grid-column: auto; }
  .gre-form-actions,
  .gre-result-actions { flex-direction: column; }
  .gre-form-actions .gre-button,
  .gre-result-actions .gre-button { width: 100%; }
  .gre-accordion__panel { padding-right: 0; }
  .gre-final-cta { padding: 56px 0; }
  .gre-final-cta__panel { padding: 32px 22px; gap: 34px; }
  .gre-site-footer { padding-top: 56px; }
  .gre-site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .gre-site-footer__grid > div:last-child { grid-column: auto; }
  .gre-site-footer__bottom { display: block; margin-top: 44px; }
  .gre-site-footer__bottom p + p { margin-top: 12px; }
  .gre-content-page { padding: 128px 0 72px; }
  .gre-content-page__header h1 { font-size: 52px; }
}

@media (max-width: 380px) {
  :root { --gre-shell: calc(100% - 32px); }
  .gre-brand { width: 176px; }
  .gre-hero h1 { font-size: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .gre-hero__copy { animation: none; }
}

@media print {
  .gre-site-header,
  .gre-site-footer,
  .gre-hero__actions,
  .gre-form-actions,
  .gre-result-actions { display: none !important; }
  body.gre-site { background: #fff; color: #111; }
  .gre-brief-result { border-color: #111; background: #fff; color: #111; }
  .gre-brief-result pre { border-color: #777; background: #fff; color: #111; }
}
