:root {
  --ink: #2a4850;
  --ink-dark: #18383f;
  --accent: #f37201;
  --accent-dark: #d65f00;
  --cream: #f7f3ec;
  --paper: #fffdf9;
  --muted: #61767a;
  --line: #dbe3e1;
  --shadow: 0 18px 50px rgba(25, 58, 65, 0.12);
  --radius: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-dark);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(38, 79, 87, 0.09);
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 272px;
  height: 58px;
  align-items: center;
  background: url("assets/logo-full-transparent.png") left center / contain no-repeat;
  text-decoration: none;
}

.brand-mark,
.brand-name {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 25px;
}

.button,
button.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.button:hover {
  border-color: var(--ink-dark);
  background: var(--ink-dark);
  transform: translateY(-2px);
}

.button.accent {
  border-color: var(--accent);
  background: var(--accent);
}

.button.accent:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.button.light {
  border-color: white;
  background: white;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.08;
  font-weight: 500;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.lead {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.35;
}

.hero {
  padding: 82px 0 90px;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}

.hero-image,
.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image img {
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.feature-image img {
  min-height: 440px;
  object-fit: cover;
}

.section {
  padding: 90px 0;
}

.section.white {
  background: var(--paper);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.principle-card {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.principle-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 8px;
  background: var(--accent);
  content: "";
}

.principle-card .card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  margin: 0;
}

.principle-card h3 {
  padding-right: 64px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.proof-item {
  padding: 27px 24px;
  background: var(--paper);
}

.proof-item strong {
  display: block;
  color: var(--accent-dark);
  font-size: 25px;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.card-number,
.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 50%;
  background: #ffe6d6;
  color: var(--accent-dark);
  font-size: 16px;
  font-weight: 800;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.band {
  padding: 75px 0;
  background: var(--ink);
  color: white;
}

.band h2,
.band p {
  color: white;
}

.band-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.band-copy {
  max-width: 720px;
}

.page-hero {
  padding: 78px 0 70px;
  background: var(--ink);
}

.page-hero h1,
.page-hero p {
  color: white;
}

.page-hero h1 {
  max-width: 920px;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 14px 0;
  padding-left: 31px;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
  content: "✓";
  font-weight: 900;
}

.notice {
  padding: 22px 24px;
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  background: #fff4eb;
}

.form-shell {
  max-width: 850px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

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

label,
legend {
  color: var(--ink);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b8c8c6;
  border-radius: 7px;
  background: white;
  color: var(--ink-dark);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(243, 107, 33, 0.2);
  border-color: var(--accent);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.checkbox input {
  width: 20px;
  min-height: 20px;
  margin-top: 3px;
}

.form-status {
  display: none;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
}

.contact-details {
  display: grid;
  gap: 16px;
}

.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.footer {
  padding: 58px 0 26px;
  background: #e9eee9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer h3 {
  font-size: 16px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-dark);
}

.legal {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid #cbd7d2;
  color: var(--muted);
  font-size: 13px;
}

.policy {
  max-width: 850px;
}

.founder-profile {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}

.founder-profile h2,
.founder-profile h3,
.founder-profile p {
  color: white;
}

.founder-facts {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.founder-facts li {
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.quote {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
}

.policy h2 {
  margin-top: 48px;
  font-size: 30px;
}

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

  .site-nav {
    position: absolute;
    top: 90px;
    right: 0;
    left: 0;
    display: none;
    padding: 25px 20px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
  }

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

  .site-nav .button {
    width: 100%;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-image img {
    min-height: 420px;
  }

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

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

  .proof-grid,
  .founder-profile {
    grid-template-columns: 1fr 1fr;
  }

  .band-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand-mark {
    display: none;
  }

  .brand {
    width: 218px;
    height: 46px;
  }

  .site-nav {
    top: 76px;
  }

  .hero,
  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 35px;
  }

  .hero-copy p:not(.eyebrow),
  .lead {
    font-size: 18px;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .hero-image img,
  .feature-image img {
    min-height: 330px;
  }

  .form-shell {
    padding: 25px 19px;
  }

  .form-grid,
  .footer-grid,
  .proof-grid,
  .founder-profile {
    grid-template-columns: 1fr;
  }
}
