@charset "UTF-8";
/* CSS Document */
/* ─── Variables ─────────────────────────────────────────────────── */ :root {
  --grey: #505A69;
  --navy: #002D5A;
  --gold: #A59664;
  --gold-lt: #C4B87F;
  --text: #4B4B4B;
  --text-lt: #6B6B6B;
  --cream: #F7F5F1;
  --white: #FFFFFF;
  --border: rgba(165, 150, 100, 0.25);
  --shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
	--k-trans: rgba(0,0,0,0.3);
	--grey-dark: #282d34;
  --font-display: CoreDeco, sans-serif;
  --font-body: freight-big-pro, serif;
  --fs-xxs: 0.672rem; /* nav labels, badges, table headers  (was 0.56–0.58) */
  --fs-xs: 0.72rem; /* eyebrows, topbar tags               (was 0.60)      */
  --fs-sm: 0.84rem; /* topbar, meta, delta, legends        (was 0.68–0.72) */
  --fs-md: 0.96rem; /* nav links, table body, tab btns     (was 0.78–0.80) */
  --fs-body: 0.984rem; /* body copy, info boxes, chart titles (was 0.82–0.83) */
  --fs-input: 1.08rem; /* form inputs                         (was 0.90)      */
  --fs-h3: 1.32rem; /* login heading                       (was 1.10)      */
  --fs-h1: 2.16rem; /* page headings                       (was 1.80)      */
  --fs-stat: 2.28rem; /* metric card values                  (was 1.90)      */
}
/* ─── Reset / Base ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
	overflow-x: hidden;
  text-align: left;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.15;
  text-transform: uppercase;
  font-style: normal;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  text-align: left;
  margin-bottom: 0;
	background: none;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--navy);
}
h4 {
  font-size: 1rem;
  letter-spacing: 0.14em;
}
p,ul,li {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.045em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.gold {
  color: var(--gold);
}
.navy {
  color: var(--navy);
}
p {
  text-align: left;
}
.text-end {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-start {
  text-align: left;
}
.text-uc {
  text-transform: uppercase;
}
/* ─── Layout Utilities ──────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 96px 0;
}
.section--sm {
  padding: 64px 0;
}
.section--dark {
  background: var(--grey);
}
.section--navy {
  background: var(--navy);
}
.section--cream {
  background: var(--cream);
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
/* ─── Gold Rule ─────────────────────────────────────────────────── */
.rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.rule--center {
  margin: 0 auto 24px;
}
/* ─── Nav ───────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: #0a1220;
  border-bottom: 1px solid rgba(165, 150, 100, 0.2);
  transition: background 0.3s;
}
.nav__logo img {
  height: 50px;
}
.nav__contact {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav__contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.nav__contact a:hover {
  color: var(--gold-lt);
}
.nav__contact .sep {
  opacity: 0.3;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: background 0.2s;
}
.nav__cta:hover {
  background: var(--gold-lt);
}
/* ─── HERO — full-width stacked: title → form → tagline ────────── */
.hero {
  background: var(--grey);
  padding: 108px 32px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* No bg image element needed — kept in markup but hidden */
.hero__bg {
  display: none;
}
.hero__content {
  width: 100%;
  max-width: 1380px;
  text-align: center;
  margin: 20px auto;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
  display: block;
}
.hero__title {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 5rem);
  line-height: 1.08;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.065em;
  font-style: normal;
}
/* suppress any italic bleed on the hero title */
.hero__title em, .hero__title i {
  font-style: normal;
}
.hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(165, 150, 100, 0.5);
}
.stat__number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  display: block;
	text-align: center;
}
.stat__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  margin-top: 5px;
  display: block;
	text-align: center;
}
/* ─── ENQUIRY FORM PANEL ────────────────────────────────────────── */
.form-panel {
  width: 100%;
  background: var(--k-trans);
  padding: 20px 30px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}
.form-panel__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-panel__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.065em;
	padding-bottom: 0;
}
.form-panel__sub {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.6;
}
/* Trip type toggle */
.trip-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.trip-toggle input {
  display: none;
}
.trip-toggle label {
  display: block;
  text-align: center;
  padding: 10px 6px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-lt);
  cursor: pointer;
  border-right: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
  font-family: var(--font-body);
}
.trip-toggle label:last-of-type {
  border-right: none;
}
.trip-toggle input:checked + label {
  background: var(--navy);
  color: var(--white);
}
/* Form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row--full {
  grid-template-columns: 1fr;
}
.field {
  position: relative;
}
.field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--k-trans);
  border: 1px solid transparent;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
	letter-spacing: 0.045em;
}
.field input::placeholder, .field textarea::placeholder {
  color: #aaa;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
	color: var(--grey-dark);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23A59664'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.field--carbon {
  margin-bottom: 16px;
}
.field--carbon label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-lt);
  cursor: pointer;
  line-height: 1.5;
}
.field--carbon input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 0;
  accent-color: var(--gold);
  margin-top: 2px;
}
.btn-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}
.btn-submit:hover {
  background: var(--navy);
}
.btn-submit svg {
  flex-shrink: 0;
}
.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.form-guarantee span {
  font-size: 0.68rem;
  color: var(--text-lt);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.form-guarantee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
/* ─── TRUST BAR ─────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 20px 32px;
  border-top: 2px solid var(--gold);
}
.trust-bar__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(165, 150, 100, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 14px;
  height: 14px;
}
.trust-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  line-height: 1.4;
}
.trust-label strong {
  display: block;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.trust-sep {
  width: 1px;
  height: 28px;
  background: rgba(165, 150, 100, 0.2);
}
/* ─── WHY CHARTER SECTION ───────────────────────────────────────── */
.why-intro {
  margin-bottom: 50px;
}
.why-card {
  padding: 40px 36px;
  border: 1px solid rgba(165, 150, 100, 0.2);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(0, 45, 90, 0.08);
}
.why-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(165, 150, 100, 0.15);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 24px;
  font-weight: 300;
}
.why-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
}
.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

/* ─── SERVICES ──────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(165, 150, 100, 0.15);
}
.service-card {
  background: var(--white);
  padding: 48px 40px;
  transition: background 0.25s;
}
.service-card:hover {
  background: var(--cream);
}
.service-card__tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.service-card p {
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-card__link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
/* ─── CREDENTIALS ───────────────────────────────────────────────── */
.credentials-section {
  background: var(--navy);
}
.credentials-section h2, .credentials-section h3 {
  color: var(--white);
}
.credentials-section p {
  color: rgba(255, 255, 255, 0.65);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.06);
}
.cred-card {
  padding: 40px 36px;
  background: rgba(0, 45, 90, 0.6);
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}
.cred-card:hover {
  border-color: var(--gold);
}
.cred-card__icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(165, 150, 100, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cred-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-lt);
  fill: none;
  stroke-width: 1.5;
}
.cred-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.cred-card p {
  color: rgba(255, 255, 255, 0.75);
}
/* Testimonials (anonymous) */
.testimonials {
  margin-top: 64px;
	background: none;
}
.testimonials__label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(165, 150, 100, 0.7);
  margin-bottom: 32px;
  font-family: var(--font-body);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
}
.testi-quote {
  font-family: var(--font-body);
  font-size: 6rem;
  color: var(--gold);
}
.testi-card p {
  font-size: 1.76rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  font-style: italic;
  margin-bottom: 20px;
	margin-top: -50px;
}
.testi-attr {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-style: normal;
}
/* ─── SEO CONTENT SECTIONS ──────────────────────────────────────── */
.about-farnborough {
  background: var(--cream);
}
.about-farnborough .grid-2 {
  gap: 80px;
}
.about-farnborough h2 {
  margin-bottom: 20px;
}
.about-farnborough p {
}
.about-farnborough p:last-child {
  margin-bottom: 0;
}
.stats-band {
  background: var(--grey);
  padding: 64px 32px;
}
.stats-band__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-big {}
.stat-big__num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--white);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
	text-align: center;
	letter-spacing: -0.06em;
}
.stat-big__rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 10px;
}
.stat-big__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
	text-align:	center;
	display: block;
}
/* ─── CARBON SECTION ────────────────────────────────────────────── */
.carbon-section {
  background: var(--grey);
}
.carbon-section h2, .carbon-section h3 {
  color: var(--white);
}
.carbon-intro {
  max-width: 600px;
  margin-bottom: 56px;
}
.carbon-intro p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 16px;
}
.carbon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
}
.carbon-card {
  padding: 48px 40px;
  background: rgba(0, 0, 0, 0.25);
}
.carbon-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.carbon-card p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}
.carbon-stat {
  margin-top: 20px;
}
.carbon-stat span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-lt);
}
.carbon-stat p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}
/* ─── FAQ SECTION ───────────────────────────────────────────────── */
.faq-section {
  background: var(--cream);
}
.faq-intro {
  margin-bottom: 56px;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(165, 150, 100, 0.12);
}
.faq-item {
  background: var(--white);
  padding: 0;
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--gold);
}
.faq-q {
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  gap: 16px;
  list-style: none;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q h3 {
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.4;
  font-weight: 500;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.1rem;
  transition: transform 0.2s, background 0.2s;
  margin-top: 1px;
}
details[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}
.faq-a {
  padding: 0 32px 28px;
}
/* ─── BOTTOM CTA ────────────────────────────────────────────────── */
.bottom-cta {
  background: var(--navy);
  padding: 96px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 150, 100, 0.08) 0%, transparent 70%);
}
.bottom-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}
.bottom-cta p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 0.95rem;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--gold-lt);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}
/* ─── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: #0a1220;
  padding: 60px 32px 32px;
  border-top: 2px solid var(--gold);
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
	text-align: left;
	margin: 0;
	padding: 0;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
	margin: 0;
}
.footer-col a:hover {
  color: var(--gold-lt);
}
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: var(--gold);
}
/* ─── Scroll fade-in ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2, .grid-3, .grid-4, .cred-grid, .testi-grid, .faq-list, .carbon-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-sep {
    display: none;
  }
  .form-panel {
    padding: 36px 32px;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 88px 20px 48px;
  }
  .form-panel {
    padding: 32px 20px;
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .trust-bar__inner {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trip-toggle {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .stats-band__inner {
    grid-template-columns: 1fr 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  nav {
    padding: 0 20px;
  }
  .nav__contact {
    display: none;
  }
}