:root {
  color-scheme: only light;
  --bg: #f4efe6;
  --ink: #111827;
  --muted: #475569;
  --accent: #f05d2a;
  --accent-dark: #c4451d;
  --surface: #ffffff;
  --surface-alt: #fff7ef;
  --border: rgba(17, 24, 39, 0.12);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --font-body: "Space Grotesk", sans-serif;
  --font-heading: "Fraunces", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

p {
  margin: 0 0 1rem;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 96px 0;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  z-index: 10;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: #ffd6b2;
  top: -120px;
  right: -120px;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: #ffd1cf;
  bottom: -120px;
  left: -80px;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: #cfe7ff;
  bottom: 120px;
  right: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
}

.site-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.site-nav a.active {
  border-color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease;
}

.hero {
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(240, 93, 42, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(240, 93, 42, 0.3);
}

.btn.ghost {
  border-color: var(--ink);
}

.btn.inverse {
  background: #111827;
  color: #fff;
}

.trust-strip {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-visual {
  display: block;
}

.hero-image {
  background: var(--surface);
  padding: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 6px);
}

.hero-card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.hero-card.accent {
  background: var(--surface-alt);
  border: 1px solid rgba(240, 93, 42, 0.25);
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pill {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

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

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-alt);
  display: grid;
  place-items: center;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.section-cta {
  margin-top: 2.5rem;
}

.cta-band {
  background: var(--ink);
  color: #fff;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.page-hero {
  padding-top: 120px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.split > * {
  align-self: stretch;
}

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

.value-card {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  border-left: 2px solid var(--border);
}

.timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0 1.5rem 1.5rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline .time {
  font-weight: 600;
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.team-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.role {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-panel {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-details strong {
  display: inline-block;
  width: 90px;
}

.mini-card {
  margin-top: 2rem;
  padding: 1.25rem;
  border-radius: 14px;
  background: var(--surface-alt);
}

.contact-form {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  gap: 1.25rem;
  height: 100%;
}

.field {
  display: grid;
  gap: 0.4rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(240, 93, 42, 0.3);
  border-color: var(--accent);
}

.field-error {
  color: #b42318;
  font-size: 0.85rem;
  min-height: 1rem;
}

.form-status {
  font-size: 0.95rem;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: grid;
  place-items: center;
  z-index: 50;
  padding: 1.5rem;
}

.modal[hidden] {
  display: none;
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  width: min(480px, 92vw);
}

.modal-content h2 {
  margin-bottom: 0.75rem;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-grid h3 {
  font-family: var(--font-body);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease var(--delay, 0s), transform 0.7s ease var(--delay, 0s);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    right: 1.5rem;
    top: 70px;
    flex-direction: column;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
    min-width: 200px;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
    transform: none;
  }
}
