/* Chariot Global — single page styles */
:root {
  --navy-950: #050a12;
  --navy-900: #0a1628;
  --navy-800: #0f1f3a;
  --navy-700: #152a4a;
  --steel-500: #6b7a90;
  --steel-400: #8b98ab;
  --steel-200: #d4dbe5;
  --steel-100: #eef1f6;
  --white: #ffffff;
  --gold-500: #c9a227;
  --gold-400: #d4b44a;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 20px rgba(5, 10, 18, 0.08);
  --shadow-md: 0 12px 40px rgba(5, 10, 18, 0.15);
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --header-h: 108px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  /* Prevents white “gutter” flash when resizing / rubber-band overscroll at top */
  background-color: var(--navy-950);
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-video {
    display: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy-800);
  background: var(--white);
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

#main {
  width: 100%;
  margin: 0;
  padding: 0;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-500);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy-900);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold-500);
  color: var(--navy-950);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/*
 * Sticky header (in document flow): hero/video starts *below* the bar — nothing sits
 * “behind” the nav on first paint. When you scroll, the bar sticks to the top as usual.
 */
/* Brand dark blue — matches --navy-900 / site palette (not gray or washed-out) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  -webkit-backdrop-filter: blur(10px) saturate(1.06);
  backdrop-filter: blur(10px) saturate(1.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .site-header {
    background: var(--navy-900);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--white);
}

.logo-img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
}


.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  line-height: 1.15;
}

.logo-name {
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

/* “International Trade” — clean all-caps label (keep Title Case in HTML for a11y) */
.logo-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--white);
  margin-inline: auto;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.site-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.2s, opacity 0.2s;
}

.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.site-nav .nav-cta {
  margin-left: 0.5rem;
  background: linear-gradient(145deg, #c9a227, #9a7614);
  color: var(--white) !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.site-nav .nav-cta:hover {
  color: var(--white) !important;
  box-shadow: 0 0 0 3px var(--gold-glow);
  background: linear-gradient(145deg, #d4b44a, #a67d15);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--navy-900);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-out);
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.15rem;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Hero — below header in layout (header is sticky, not fixed over this section) */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 5rem);
  padding-top: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--white);
  overflow: hidden;
  background-color: var(--navy-950);
}

/* No poster / no photo layer — dark fill until video frames show (avoids static image then video) */
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: var(--navy-950);
}

/* True “cover” at any window aspect ratio (avoids letterboxing / white gaps at sides) */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 10, 18, 0.45) 0%,
    rgba(5, 10, 18, 0.72) 38%,
    rgba(10, 22, 40, 0.92) 72%,
    var(--navy-950) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #f0d78a;
  margin: 0 0 1rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 16px rgba(5, 10, 18, 0.8);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.35rem, 5.2vw, 4rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  max-width: 20ch;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.45),
    0 4px 24px rgba(5, 10, 18, 0.65),
    0 0 40px rgba(5, 10, 18, 0.5);
}

.hero-lead {
  font-size: clamp(1.05rem, 2.1vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  max-width: 48ch;
  margin: 0 0 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 2px 20px rgba(5, 10, 18, 0.75);
  font-weight: 500;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  border-color: transparent;
}

.btn-primary:hover {
  box-shadow: 0 8px 28px var(--gold-glow);
  color: var(--navy-950);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--steel-100);
  border-color: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Trust bar */
.trust-bar {
  background: var(--navy-900);
  color: var(--steel-200);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.trust-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.trust-icon {
  flex-shrink: 0;
  color: var(--gold-500);
  margin-top: 2px;
}

.trust-inner p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 70ch;
}

.trust-inner strong {
  color: var(--white);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-alt {
  background: var(--steel-100);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-header.align-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--navy-900);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0;
  color: var(--steel-500);
  font-size: 1.05rem;
}

.muted {
  color: var(--steel-500);
}

.small {
  font-size: 0.875rem;
}

/* Cards */
.about-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--steel-200);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}

.card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-md);
}

.card-elevated {
  border-color: transparent;
  background: linear-gradient(160deg, var(--white) 0%, var(--steel-100) 100%);
}

.card-accent {
  background: var(--navy-900);
  color: var(--steel-200);
  border-color: transparent;
}

.card-accent h3 {
  color: var(--white);
}

.card-accent strong {
  color: var(--gold-400);
}

.card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--navy-900);
}

.card p:last-child {
  margin-bottom: 0;
}

.check-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
}

.check-list li {
  margin-bottom: 0.4rem;
}

/* Offerings */
.offer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--steel-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
}

.offer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .offer-card {
    grid-template-columns: 1fr;
  }
}

.offer-media {
  min-height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--steel-200);
}

.offer-media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.offer-body {
  padding: 1.75rem 2rem;
}

.offer-body h3 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: var(--navy-900);
}

.offer-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--steel-500);
}

.offer-body li {
  margin-bottom: 0.5rem;
}

.transaction-note {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
}

.transaction-note h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--navy-900);
}

.inline-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.inline-features li {
  font-size: 0.9rem;
  color: var(--navy-800);
  padding-left: 1.25rem;
  position: relative;
}

.inline-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* Services grid */
.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

.service-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--steel-200);
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}

.service-item:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-3px);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--navy-900);
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.service-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy-900);
}

.service-item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--steel-500);
}

.compliance-line {
  text-align: center;
  margin: 2.5rem 0 0;
  font-weight: 600;
  color: var(--navy-800);
}

/* Markets */
.markets-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.markets-header {
  margin-bottom: 1.5rem;
}

.market-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.market-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-800);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.market-flag {
  width: 28px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(10, 22, 40, 0.08);
  flex-shrink: 0;
}

.market-chips li:hover {
  border-color: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.08);
}

.expansion-banner {
  margin-top: 1.75rem;
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 50%, #1a3054 100%);
  color: var(--steel-200);
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.expansion-content h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  color: var(--white);
}

.expansion-content p {
  margin: 0;
  max-width: 65ch;
}

/* Why */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 800px) {
  .why-split {
    grid-template-columns: 1fr;
  }
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  padding: 1rem 0 1rem 2.5rem;
  border-bottom: 1px solid var(--steel-200);
  position: relative;
  font-weight: 500;
  color: var(--navy-800);
  transition: padding-left 0.25s var(--ease-out);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--gold-500);
}

.why-list li:hover {
  padding-left: 2.75rem;
}

/* Compliance — balanced 3 + 2 layout on wide screens */
.compliance-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.compliance-grid li {
  background: var(--steel-100);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-500);
  font-weight: 500;
  color: var(--navy-800);
  transition: background 0.2s;
  grid-column: span 2;
}

/* Row 1: three cards; row 2: two cards centered */
.compliance-grid li:nth-child(4) {
  grid-column: 2 / span 2;
}

.compliance-grid li:nth-child(5) {
  grid-column: 4 / span 2;
}

@media (max-width: 1024px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .compliance-grid li,
  .compliance-grid li:nth-child(4),
  .compliance-grid li:nth-child(5) {
    grid-column: 1 / -1;
  }
}

.compliance-grid li:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

/* Email credentials */
.email-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .email-credentials-grid {
    grid-template-columns: 1fr;
  }
}

.email-panel {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}

.email-panel-title {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  color: var(--navy-900);
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--steel-200);
}

.email-role-list,
.email-mailbox-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.email-role-list li,
.email-mailbox-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--steel-200);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.email-role-list li:last-child,
.email-mailbox-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.email-person {
  font-weight: 700;
  color: var(--navy-900);
  font-size: 1rem;
}

.email-role-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel-500);
  font-weight: 600;
}

.email-address {
  color: var(--navy-900);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-500);
  align-self: flex-start;
}

.email-address:hover {
  color: var(--gold-500);
}

/* CTA band */
.section-cta {
  background: var(--navy-900);
  color: var(--steel-200);
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  margin: 0 0 0.75rem;
}

.cta-inner p {
  margin: 0 auto 1.75rem;
  max-width: 48ch;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.vcard-block {
  font-style: normal;
  margin-top: 1.5rem;
}

.vcard-block p {
  margin: 0 0 1.25rem;
}

.vcard-block .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel-500);
}

.vcard-block a {
  color: var(--navy-900);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-500);
}

.vcard-block a:hover {
  color: var(--gold-500);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.quote-form label span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 0.35rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--steel-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-note-muted {
  color: var(--steel-500);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-note-warn {
  color: var(--navy-800);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.form-note-warn code {
  font-size: 0.85em;
  background: rgba(10, 22, 40, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.form-note.success {
  color: #1b6b3a;
}

.form-note.error {
  color: #a32020;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--steel-400);
  padding: 2.75rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.15rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-align: left;
}

.footer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
}

/* Same all-caps “label” treatment as `.logo-tag` (keep sentence case in HTML for a11y) */
.footer-tagline {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.copyright {
  margin: 0;
  width: 100%;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  text-align: center;
  color: var(--steel-500);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.24s;
}

.reveal-delay-3 {
  animation-delay: 0.36s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
