:root {
  --navy: #12233f;
  --blue: #305d8c;
  --coral: #bd4434;
  --peach: #fae3d8;
  --cloud: #f7f8fa;
  --white: #fff;
  --ink: #202936;
  --line: #d8dee6;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.notice {
  height: 32px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  font-size: 11px;
}
.notice a {
  text-decoration: none;
  font-weight: 800;
  color: #ffd1c7;
}
header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
}
.surprise-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.surprise-brand > span {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}
.surprise-brand strong {
  display: block;
  color: var(--navy);
}
.surprise-brand small {
  display: block;
  color: #5d6877;
  font-size: 10px;
  margin-top: 3px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}
.nav-call {
  padding: 12px 17px;
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
}
.hero {
  min-height: 660px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: #111;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    #12233ff5 0,
    #12233fdb 39%,
    #12233f30 67%,
    transparent
  );
}
.hero-card {
  position: relative;
  z-index: 2;
  width: min(600px, 43%);
  margin-right: max(28px, calc((100% - 1180px) / 2));
  color: #fff;
}
.tag {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  color: #ffd3ca;
}
.tag.navy {
  color: var(--blue);
}
.hero h1 {
  font-size: clamp(45px, 5.6vw, 73px);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 14px 0 21px;
}
.hero-card > p:not(.tag) {
  font-size: 18px;
}
.primary {
  display: inline-flex;
  flex-direction: column;
  background: var(--coral);
  color: #fff;
  padding: 14px 22px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
  box-shadow: 0 10px 25px #0004;
}
.primary span {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
}
.primary strong {
  font-size: 27px;
}
.reassure {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 11px;
}
.reassure span:before {
  content: "✓";
  color: #ffb3a6;
  margin-right: 6px;
}
.now {
  padding: 18px max(24px, calc((100% - 1180px) / 2));
  background: var(--peach);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 25px;
  align-items: center;
}
.now p {
  margin: 0;
  font-size: 14px;
}
.now a {
  padding: 10px 17px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 800;
}
.choice,
.benefits,
.faq {
  padding: 90px max(24px, calc((100% - 1180px) / 2));
}
.headline {
  max-width: 760px;
  margin-bottom: 35px;
}
.headline h2,
.simple h2,
.desert h2,
.faq h2 {
  font-size: clamp(37px, 4.8vw, 59px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--navy);
  margin: 10px 0 16px;
}
.headline > p:last-child {
  font-size: 17px;
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.choice-grid > a {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 10px 27px #12233f0d;
}
.choice-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--peach);
  color: #a43e30;
  font-weight: 900;
}
.choice-grid h3 {
  font-size: 23px;
  line-height: 1.12;
  color: var(--navy);
}
.choice-grid b {
  display: block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 12px;
}
.simple {
  padding: 85px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  align-items: center;
  background: var(--navy);
  color: #fff;
}
.simple h2 {
  color: #fff;
}
.simple blockquote {
  margin: 24px 0;
  padding: 20px;
  border-left: 4px solid var(--coral);
  background: #ffffff0d;
  font-size: 20px;
  line-height: 1.4;
}
.simple-copy > a {
  color: #ffd0c6;
  font-weight: 800;
}
.simple figure {
  margin: 0;
  background: #fff;
  padding: 9px;
  border-radius: 6px;
}
.simple figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.simple figcaption {
  color: #687485;
  font-size: 11px;
  padding: 9px 3px 0;
}
.benefits {
  background: var(--cloud);
}
.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-row article {
  padding: 25px;
  background: #fff;
  border-top: 4px solid var(--coral);
  border-radius: 0 0 6px 6px;
}
.benefit-row h3 {
  color: var(--navy);
  font-size: 22px;
}
.desert {
  padding: 70px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
  background: var(--peach);
}
.desert > p {
  font-size: 18px;
}
.desert .tag {
  color: var(--navy);
}
.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}
.faq details {
  padding: 18px 3px;
  border-top: 1px solid var(--line);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  font-weight: 900;
  color: var(--navy);
  cursor: pointer;
}
.finish {
  text-align: center;
  padding: 75px 20px;
  background: var(--coral);
  color: #fff;
}
.finish p {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.finish h2 {
  font-size: clamp(42px, 6vw, 70px);
  margin: 8px;
}
.finish .primary {
  background: var(--navy);
}
footer {
  padding: 45px max(24px, calc((100% - 1120px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  background: #0b172b;
  color: #fff;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer a {
  text-decoration: none;
}
.footer-name {
  font-weight: 900;
}
.mobile-call {
  display: none;
}
.service-hero {
  padding: 75px max(24px, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 55px;
  align-items: center;
  background: var(--navy);
  color: #fff;
}
.service-hero h1 {
  font-size: clamp(43px, 5.5vw, 70px);
  line-height: 1;
  margin: 12px 0 20px;
}
.service-hero > div > p:not(.tag) {
  font-size: 18px;
}
.service-hero figure {
  margin: 0;
  background: #fff;
  padding: 9px;
  border-radius: 6px;
}
.service-hero figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-hero figcaption {
  color: #667282;
  font-size: 11px;
  padding: 9px 3px 0;
}
.service-body {
  padding: 80px max(24px, calc((100% - 1080px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
}
.service-body h2 {
  font-size: 37px;
  line-height: 1.05;
  color: var(--navy);
  margin-top: 35px;
}
.signal-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}
.signal-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.help-box {
  height: max-content;
  padding: 25px;
  background: var(--peach);
  border-radius: 6px;
}
.help-box h2 {
  margin-top: 4px;
}
.help-box ul {
  padding-left: 20px;
}
.help-box .primary {
  width: 100%;
  align-items: center;
  text-align: center;
}
.related {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 35px;
}
.related a {
  color: var(--blue);
  font-weight: 900;
}
@media (max-width: 850px) {
  body {
    padding-bottom: 68px;
  }
  .notice {
    display: none;
  }
  header {
    height: 74px;
    padding: 0 14px;
  }
  .surprise-brand > span {
    width: 42px;
    height: 42px;
  }
  .surprise-brand strong {
    font-size: 14px;
  }
  .surprise-brand small {
    font-size: 8px;
  }
  nav > a:not(.nav-call) {
    display: none;
  }
  .nav-call {
    padding: 9px 11px;
  }
  .hero {
    min-height: 700px;
    align-items: flex-end;
  }
  .hero > img {
    object-position: 32% center;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #12233ffc 0,
      #12233fe9 56%,
      #12233f1d 88%
    );
  }
  .hero-card {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding-bottom: 42px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-card > p:not(.tag) {
    font-size: 16px;
  }
  .now {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 7px;
  }
  .now a {
    text-align: center;
  }
  .choice,
  .benefits,
  .faq,
  .simple,
  .desert,
  .service-hero,
  .service-body {
    padding: 65px 18px;
    grid-template-columns: 1fr;
  }
  .choice-grid,
  .benefit-row {
    grid-template-columns: 1fr;
  }
  .simple,
  .desert,
  .faq,
  .service-hero,
  .service-body {
    gap: 38px;
  }
  .finish {
    padding: 60px 18px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .mobile-call {
    display: block;
    position: fixed;
    z-index: 50;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    color: #fff;
    padding: 8px 12px;
  }
  .mobile-call a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  .mobile-call span {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 900;
  }
  .mobile-call strong {
    font-size: 20px;
  }
}

/* Sunbelt postcard finish: cheerful, graphic, and unmistakably Surprise. */
:root {
  --sun: #f4bd3f;
  --sky: #9bd5df;
}
body * {
  letter-spacing: 0;
}
body {
  background: #fffdf8;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 89px,
    #305d8c06 90px
  );
}
main {
  overflow: hidden;
}
.notice {
  background-color: var(--navy);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 16px,
    #ffffff10 17px,
    #ffffff10 18px
  );
}
header {
  background: #fffefaed;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 34px #12233f0d;
}
.surprise-brand > span {
  position: relative;
  border-radius: 50% 50% 8px 50%;
  transform: rotate(-5deg);
  box-shadow: 5px 5px 0 var(--sun);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.surprise-brand:hover > span {
  transform: rotate(4deg) translateY(-3px);
  box-shadow: 7px 7px 0 var(--sky);
}
nav a:not(.nav-call) {
  position: relative;
}
nav a:not(.nav-call)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 3px;
  background: var(--coral);
  border-radius: 3px;
  transition: right 180ms ease;
}
nav a:not(.nav-call):hover::after {
  right: 0;
}
.nav-call,
.primary,
.now a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.nav-call:hover,
.primary:hover,
.now a:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 6px 6px 0 var(--sun);
}
.hero {
  min-height: 690px;
  isolation: isolate;
  border-bottom: 8px solid var(--sun);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 20px;
  border: 2px dashed #ffffff50;
  border-radius: 8px;
  pointer-events: none;
}
.hero-card {
  padding: 28px 0 28px 35px;
  border-left: 7px solid var(--coral);
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px dashed currentColor;
  background: #12233f70;
}
.tag::before {
  content: "✦";
  color: var(--sun);
}
.tag.navy {
  background: #fff;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 5px 28px #0008;
}
.primary {
  position: relative;
  min-width: 246px;
  border-radius: 8px 8px 8px 2px;
  border: 1px solid #ffc2b6;
  box-shadow:
    7px 7px 0 var(--sun),
    0 15px 30px #0004;
}
.primary::after {
  content: "↗";
  position: absolute;
  right: 16px;
  top: 15px;
  font-size: 18px;
  font-weight: 900;
}
.reassure span {
  padding: 7px 10px;
  border: 1px solid #ffffff30;
  background: #12233f75;
  border-radius: 999px;
}
.now {
  position: relative;
  border-bottom: 1px solid #f0baa7;
  background-color: var(--peach);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 19px,
    #bd44340a 20px,
    #bd44340a 22px
  );
}
.now::before {
  content: "HELLO";
  padding: 6px 9px;
  color: var(--navy);
  background: var(--sun);
  border: 2px solid var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
  font-size: 9px;
  font-weight: 900;
  transform: rotate(-3deg);
}
.headline h2,
.simple h2,
.desert h2,
.faq h2,
.service-body h2,
.help-box h2,
.finish h2 {
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}
.choice {
  position: relative;
}
.choice::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 13px;
  right: max(24px, calc((100% - 1180px) / 2));
  top: 54px;
  background: repeating-linear-gradient(
    90deg,
    var(--coral) 0 9px,
    transparent 9px 15px
  );
}
.choice-grid {
  counter-reset: surprise-service;
}
.choice-grid > a {
  counter-increment: surprise-service;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 8px 8px 8px 2px;
  box-shadow: 7px 7px 0 var(--sky);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}
.choice-grid > a:nth-child(2) {
  box-shadow: 7px 7px 0 var(--sun);
}
.choice-grid > a:nth-child(3) {
  box-shadow: 7px 7px 0 #f3b4a7;
}
.choice-grid > a::after {
  content: "0" counter(surprise-service);
  position: absolute;
  right: 12px;
  bottom: -12px;
  color: #12233f0c;
  font:
    700 64px/1 Georgia,
    serif;
}
.choice-grid > a:hover {
  transform: translateY(-8px) rotate(-1deg);
  background: #fffdfa;
  box-shadow: 11px 11px 0 var(--coral);
}
.choice-grid > a:nth-child(even):hover {
  transform: translateY(-8px) rotate(1deg);
}
.choice-icon {
  border-radius: 50% 50% 8px 50%;
  box-shadow: 3px 3px 0 var(--sun);
}
.simple {
  position: relative;
  border-top: 1px solid #d2dce6;
  border-bottom: 1px solid #d2dce6;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0 39px,
    #305d8c08 40px
  );
}
.simple blockquote {
  position: relative;
  border: 2px solid var(--navy);
  border-radius: 8px 8px 8px 2px;
  background: #fff;
  color: var(--navy);
  box-shadow: 8px 8px 0 var(--sun);
}
.simple blockquote::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: -15px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
}
.simple figure,
.service-hero figure {
  position: relative;
  border-radius: 8px 8px 8px 2px;
  box-shadow:
    14px 14px 0 var(--sky),
    20px 20px 0 var(--navy);
}
.simple figure::before,
.service-hero figure::before {
  content: "SURPRISE, AZ";
  position: absolute;
  z-index: 2;
  left: -14px;
  top: -15px;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--sun);
  border: 2px solid var(--navy);
  font-size: 9px;
  font-weight: 900;
  transform: rotate(-2deg);
}
.benefit-row article {
  position: relative;
  background: #fff;
  border: 1px solid #d8dee6;
  border-top: 5px solid var(--coral);
  box-shadow: 5px 5px 0 #edf1f5;
}
.benefit-row article:nth-child(2) {
  border-top-color: var(--sun);
}
.benefit-row article:nth-child(3) {
  border-top-color: var(--blue);
}
.desert {
  border-top: 8px solid var(--sun);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 49px,
    #ffffff0b 50px
  );
}
.faq details {
  margin-bottom: 10px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid #d4dce6;
  border-radius: 8px 8px 8px 2px;
  box-shadow: 4px 4px 0 #edf0f4;
}
.faq summary {
  position: relative;
  padding-right: 36px;
}
.faq summary::after {
  content: "✦";
  position: absolute;
  right: 0;
  color: var(--coral);
}
.faq details[open] summary::after {
  content: "−";
  font-size: 22px;
  font-weight: 900;
}
.finish {
  position: relative;
  border-top: 8px solid var(--coral);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 27px,
    #ffffff0b 28px,
    #ffffff0b 30px
  );
}
.service-hero {
  background-color: #fff8f3;
  color: var(--navy);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 28px,
    #bd443408 29px,
    #bd443408 30px
  );
}
.service-hero .tag {
  color: var(--coral);
  background: #fff;
}
.service-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}
.signal-list li {
  border: 1px solid #d6dee8;
  border-left: 5px solid var(--coral);
  border-radius: 7px 7px 7px 2px;
  background: #fff;
  box-shadow: 4px 4px 0 #edf0f4;
}
.help-box {
  border-radius: 8px 8px 8px 2px;
  border: 2px solid var(--navy);
  box-shadow: 10px 10px 0 var(--sun);
}
.related a {
  border-bottom: 3px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}
.related a:hover {
  color: var(--coral);
  border-color: var(--sun);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-card {
    animation: surprise-pop 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
  @keyframes surprise-pop {
    from {
      opacity: 0;
      transform: translateY(18px) rotate(0.5deg);
    }
    to {
      opacity: 1;
      transform: translateY(0) rotate(0);
    }
  }
}
@media (max-width: 850px) {
  .hero {
    min-height: 680px;
  }
  .hero::before {
    inset: 12px;
  }
  .hero-card {
    padding: 18px 0 18px 18px;
    border-left-width: 4px;
  }
  .now::before,
  .choice::before {
    display: none;
  }
  .choice-grid > a,
  .simple blockquote,
  .faq details,
  .help-box {
    box-shadow: 5px 5px 0 #e8edf2;
  }
  .simple figure,
  .service-hero figure {
    box-shadow:
      7px 7px 0 var(--sky),
      11px 11px 0 var(--navy);
  }
}
