:root {
  --navy: #101829;
  --navy-soft: #17243a;
  --ink: #17212b;
  --muted: #c7d0db;
  --line: #d7dde4;
  --paper: #f4f1ea;
  --white: #ffffff;
  --orange: #f47721;
  --shadow: 0 18px 44px rgba(13, 24, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow: hidden;
}

body.policy-body {
  min-height: 100%;
  overflow: auto;
}

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

a {
  color: inherit;
}

.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;
}

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 10px clamp(16px, 4vw, 48px);
  background: rgba(244, 241, 234, 0.98);
  border-bottom: 1px solid rgba(16, 24, 41, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

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

.site-nav a {
  padding: 10px 12px;
  color: #525d69;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
  border-color: var(--orange);
}

.site-nav .header-call {
  margin-left: 8px;
  color: #111;
  font-weight: 800;
  background: var(--orange);
  border: 0;
  border-radius: 6px;
}

.site-nav .header-call:hover {
  color: #111;
  border: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.screen-page {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  height: calc(100vh - 72px);
  min-height: 0;
  background: var(--navy);
}

.screen-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.screen-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 41, 0.05), rgba(16, 24, 41, 0.66));
}

.screen-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 0;
  padding: clamp(26px, 4vw, 58px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(98, 200, 222, 0.08), rgba(98, 200, 222, 0)),
    var(--navy);
  border-left: 5px solid var(--orange);
  overflow: hidden;
}

.panel-logo {
  width: clamp(68px, 8vw, 96px);
  height: clamp(68px, 8vw, 96px);
  margin-bottom: clamp(16px, 3vh, 32px);
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: clamp(0.66rem, 1.2vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: clamp(14px, 2vh, 22px);
  font-size: clamp(2.5rem, 5.2vw, 4.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promise-list {
  display: grid;
  gap: clamp(6px, 1.2vh, 10px);
  margin: 0 0 clamp(14px, 2vh, 22px);
  padding: 0;
  list-style: none;
  color: var(--white);
  font-size: clamp(1rem, 1.55vw, 1.34rem);
  font-weight: 800;
  text-transform: uppercase;
}

.promise-list li {
  position: relative;
  padding-left: 31px;
}

.promise-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 9px;
  border-bottom: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
  transform: rotate(-45deg);
}

.screen-copy {
  max-width: 610px;
  margin-bottom: clamp(8px, 1.5vh, 14px);
  color: var(--muted);
  font-size: clamp(0.92rem, 1.25vw, 1.04rem);
}

.screen-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(8px, 1.5vh, 16px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #111;
  background: var(--orange);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.contact-panel h1 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(14px, 2.4vh, 24px);
}

.contact-link {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-link.phone {
  color: var(--orange);
  font-size: clamp(2.1rem, 5vw, 4.8rem);
}

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

.company-details {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(150px, 0.7fr);
  gap: 18px;
  max-width: 640px;
  margin-top: clamp(10px, 2vh, 24px);
  padding-top: clamp(14px, 2.2vh, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.company-details p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.88rem, 1.15vw, 1rem);
}

.company-details strong {
  color: var(--white);
}

.policy-page {
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 5vw, 64px) 20px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 24, 41, 0.08), rgba(244, 119, 33, 0.08)),
    var(--paper);
}

.policy-card {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid rgba(16, 24, 41, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-card h1 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.policy-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.15;
}

.policy-card p {
  color: #364453;
  font-size: 1rem;
}

.policy-card section {
  margin-top: 24px;
}

.policy-card a {
  color: var(--navy);
  font-weight: 800;
}

.policy-lede {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
}

.policy-date {
  margin-bottom: 28px;
  color: #6a7580;
}

@media (max-width: 860px) {
  body {
    overflow: hidden;
  }

  .site-header {
    height: 64px;
    padding: 8px 16px;
  }

  body.policy-body {
    overflow: auto;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 11px;
    border-bottom-width: 0;
    border-left: 3px solid transparent;
  }

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

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

  .screen-page {
    grid-template-columns: 1fr;
    grid-template-rows: 33vh minmax(0, 1fr);
    height: calc(100vh - 64px);
  }

  .screen-photo::after {
    background: linear-gradient(0deg, rgba(16, 24, 41, 0.74), rgba(16, 24, 41, 0.05));
  }

  .screen-panel {
    justify-content: flex-start;
    padding: 18px 20px 20px;
    border-top: 5px solid var(--orange);
    border-left: 0;
  }

  .panel-logo {
    display: none;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .promise-list {
    font-size: clamp(0.95rem, 4vw, 1.08rem);
  }

  .screen-copy {
    font-size: 0.9rem;
  }

  .screen-actions {
    margin-top: 6px;
  }

  .button {
    min-height: 42px;
    padding: 10px 13px;
  }

  .contact-panel h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .contact-link.phone {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .company-details {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .policy-page {
    min-height: calc(100vh - 64px);
    padding: 18px 14px;
  }

  .policy-card {
    padding: 24px 18px;
  }
}

@media (max-width: 440px) and (max-height: 760px) {
  .screen-page {
    grid-template-rows: 27vh minmax(0, 1fr);
  }

  .screen-panel {
    padding: 14px 18px 16px;
  }

  .eyebrow {
    margin-bottom: 6px;
  }

  h1 {
    margin-bottom: 10px;
    font-size: 2.2rem;
  }

  .promise-list {
    gap: 4px;
    margin-bottom: 10px;
    font-size: 0.88rem;
  }

  .screen-copy {
    margin-bottom: 6px;
    font-size: 0.82rem;
  }

  .button {
    min-height: 38px;
  }
}
