:root {
  --navy: #101828;
  --navy-muted: #344054;
  --cream: #f9f8f3;
  --surface: #ffffff;
  --orange: #d47a3c;
  --orange-hover: #b86832;
  --orange-light: rgba(212, 122, 60, 0.12);
  --border: #e4e7ec;
  --text-muted: #667085;
  --accent-blue: #3b82f6;
  --accent-green: #12b76a;
  --accent-yellow: #f59e0b;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(16, 24, 40, 0.08), 0 4px 12px rgba(16, 24, 40, 0.04);
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
}

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

a:hover {
  color: var(--orange-hover);
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.875rem 0;
}

.logo {
  text-decoration: none;
  line-height: 0;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem 0.875rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.15s ease;
}

.logo:hover .logo-badge {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.logo img {
  display: block;
  height: 2rem;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding-bottom: 0.125rem;
  border-bottom: 2px solid transparent;
}

.nav a:not(.btn):hover {
  color: #fff;
  border-bottom-color: var(--orange);
}

.site-header .btn-primary {
  color: var(--orange);
  border-color: var(--orange);
}

.site-header .btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Buttons — pill outline style from Insights portal */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  color: var(--orange);
  background: transparent;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.btn-secondary {
  color: var(--navy-muted);
  background: transparent;
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--navy-muted);
  color: var(--navy);
}

.btn-sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 4.5rem;
  background: var(--cream);
}

.hero-inner {
  max-width: 40rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

/* Sections */
.section {
  padding: 4rem 0;
}

.section-muted {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-header .eyebrow {
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--orange);
}

.card:nth-child(2) {
  border-top-color: var(--accent-blue);
}

.card:nth-child(3) {
  border-top-color: var(--accent-green);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* CTA band */
.cta-band {
  padding: 3rem 0;
  background: var(--navy);
  color: #fff;
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

.cta-band .btn-primary {
  color: #fff;
  background: transparent;
  border-color: var(--orange);
}

.cta-band .btn-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Locations */
.location-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-tile {
  padding: 1.25rem 1.375rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--orange);
}

.location-tile:nth-child(3n + 2) {
  border-top-color: var(--accent-blue);
}

.location-tile:nth-child(3n) {
  border-top-color: var(--accent-green);
}

.location-tile h3 {
  margin: 0 0 0.625rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.location-address {
  display: block;
  margin: 0 0 0.75rem;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-decoration: none;
}

.location-address:hover {
  color: var(--orange);
}

.location-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.location-phone:hover {
  color: var(--orange);
}

/* Get in touch */
.get-in-touch-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .get-in-touch-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.get-in-touch-panel {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.get-in-touch-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
}

.get-in-touch-lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.app-badge:hover {
  background: #1a2332;
  border-color: #1a2332;
  color: #fff;
  transform: translateY(-1px);
}

.app-badge-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-badge-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.app-badge-store {
  font-size: 1.0625rem;
  font-weight: 600;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-grid h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact-grid > div > p {
  margin: 0;
  color: var(--text-muted);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.contact-list a {
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--orange);
}

.contact-list address {
  font-style: normal;
  line-height: 1.5;
  color: var(--navy-muted);
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
}

.footer-brand {
  margin: 0;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 48rem;
  line-height: 1.55;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links a[aria-current="page"] {
  color: #fff;
}

/* Legal / policy pages */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-content {
  max-width: 42rem;
}

.legal-header {
  margin-bottom: 2.5rem;
}

.legal-header h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.legal-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--navy-muted);
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

.legal-section p {
  margin: 0 0 1rem;
  color: var(--navy-muted);
}

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

.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--navy-muted);
}

.legal-section li {
  margin-bottom: 0.5rem;
}

.legal-section li:last-child {
  margin-bottom: 0;
}

.legal-address {
  margin: 0;
  font-style: normal;
  line-height: 1.6;
  color: var(--navy-muted);
}

.legal-agreement {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--navy-muted);
}

@media (max-width: 639px) {
  .nav a:not(.btn) {
    display: none;
  }

  .header-inner {
    padding: 0.75rem 0;
  }
}
