:root {
  --sweet-blue: #7ec6ea;
  --trust-navy: #0d2c54;
  --warm-cream: #fff8ee;
  --cookie-tan: #f2c38a;
  --ink: #17314d;
  --muted: #5e7184;
  --white: #ffffff;
  --line: rgba(13, 44, 84, 0.14);
  --shadow: 0 20px 60px rgba(13, 44, 84, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-cream);
  font-family: Montserrat, Arial, sans-serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
}

.brand img {
  width: 164px;
  height: auto;
}

.brand-tm {
  margin-left: 3px;
  margin-top: 8px;
  color: var(--trust-navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--trust-navy);
}

.button,
button {
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--sweet-blue);
  color: var(--trust-navy);
  font: 800 14px/1 Montserrat, Arial, sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(126, 198, 234, 0.35);
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: stretch;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.08) 72%), url("assets/employee-near-van-realistic-vinyl.png");
  background-size: cover;
  background-position: center right;
}

.hero-inner,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  align-items: center;
  padding: 70px 0 92px;
}

.hero-copy {
  max-width: 600px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--trust-navy);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(46px, 7vw, 86px);
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  font-size: 27px;
}

p {
  font-size: 17px;
  line-height: 1.75;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
}

.hero .lead {
  max-width: 560px;
  color: #344c66;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

section {
  padding: 86px 0;
}

.cream {
  background: var(--warm-cream);
}

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

.blue-band {
  background: var(--trust-navy);
  color: var(--white);
}

.blue-band h2,
.blue-band h3 {
  color: var(--white);
}

.blue-band .lead,
.blue-band p {
  color: rgba(255, 255, 255, 0.82);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(13, 44, 84, 0.06);
}

.blue-band .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--trust-navy);
  background: var(--cookie-tan);
  font-size: 24px;
}

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.story-panel {
  background: var(--trust-navy);
  color: var(--white);
  border-radius: 8px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.story-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.cookie-scene {
  min-height: 430px;
  border-radius: 8px;
  background-image: url("assets/employee-with-cookies.png");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.cookie-scene::before {
  content: none;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.service-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 14px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  color: var(--trust-navy);
  font-weight: 800;
}

form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--trust-navy);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: 500 15px/1.4 Montserrat, Arial, sans-serif;
}

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

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

.footer {
  padding: 42px 0;
  background: var(--trust-navy);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.page-hero {
  padding: 90px 0 64px;
  background: linear-gradient(135deg, var(--warm-cream), #e9f8ff);
}

.confirmation {
  min-height: 70vh;
  display: grid;
  align-items: center;
}

.photo {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.phone-link {
  color: var(--trust-navy);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip > div {
  background: linear-gradient(180deg, #ffffff, #eef8ff);
  padding: 28px 18px;
  text-align: center;
  font-weight: 800;
  color: var(--trust-navy);
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero {
    min-height: 620px;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 62%, rgba(255, 255, 255, 0.34) 100%), url("assets/employee-near-van-realistic-vinyl.png");
  }

  .grid.four,
  .grid.three,
  .story,
  .split,
  .feature-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .brand img {
    width: 180px;
  }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  section {
    padding: 62px 0;
  }

  .hero-inner {
    padding: 52px 0 72px;
  }

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

  .button {
    width: 100%;
  }
}
