:root {
  --navy: #102b5b;
  --blue: #1d4c9d;
  --red: #c9232a;
  --paper: #e9ebef;
  --ink: #14223b;
  --muted: #5d6879;
  --line: #d5d9df;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.55 Arial,
    Helvetica,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 34px;
  padding-right: 34px;
}
.site-header {
  height: 84px;
  max-width: 1240px;
  margin: auto;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.brand-name {
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}
.brand-name em {
  font-style: normal;
  color: var(--blue);
}
.brand-name strong {
  color: var(--red);
}
.brand-name b {
  font-size: 12px;
  color: var(--navy);
}
.brand-name b i {
  font-style: normal;
  color: var(--red);
}
.brand-name b u {
  text-decoration: none;
  color: var(--blue);
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: bold;
}
nav > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
nav > a:not(.nav-cta) {
  width: 94px;
}
.nav-cta,
.button {
  background: var(--navy);
  color: #fff;
}
.nav-cta {
  width: 120px;
  padding: 12px 17px;
}
.language-switch {
  width: 68px;
  border: 1px solid var(--navy);
  background: transparent;
  padding: 8px 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
.language-switch span:first-child {
  opacity: 0.45;
}
.language-switch.is-spanish span:first-child {
  opacity: 1;
}
.language-switch.is-spanish span:last-child {
  opacity: 0.45;
}
.menu {
  display: none;
  background: none;
  border: 1px solid var(--navy);
  padding: 9px;
  color: var(--navy);
  font: 700 13px Arial;
}
.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
}
.eyebrow,
.section-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--blue);
}
.hero h1 {
  font:
    clamp(45px, 6vw, 78px) / 0.98 Georgia,
    serif;
  letter-spacing: -0.055em;
  max-width: 700px;
  margin: 17px 0 25px;
}
.lead {
  max-width: 570px;
  color: var(--muted);
  font-size: 20px;
  margin: 0 0 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 20px;
  font-weight: bold;
  min-width: 205px;
}
.button span {
  font-size: 21px;
}
.paypal-button {
  background: #ffc439;
  color: #10203d;
}
.email-button {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: #fff;
}
.payment-copy,
.policy-copy {
  font-size: 13px !important;
  margin-top: 12px !important;
}
.email-address {
  margin-top: 10px !important;
  font-size: 13px !important;
}
.email-address a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-copy strong {
  color: var(--navy);
}
.microcopy {
  font-size: 12px;
  color: var(--muted);
  margin: 13px 0;
}
.hero-art {
  position: relative;
  min-height: 480px;
  background: #e5e8ee;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
}
.logo-art {
  padding: 38px 32px 72px;
}
.logo-art img {
  position: relative;
  z-index: 1;
  width: min(70%, 330px);
  height: auto;
  display: block;
  clip-path: circle(49%);
  mix-blend-mode: multiply;
  filter: contrast(1.04);
  animation: logo-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.language-words {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 12px;
  color: var(--navy);
  border-top: 1px solid #102b5b1f;
  padding-top: 13px;
  font:
    700 11px/1.2 Arial,
    Helvetica,
    sans-serif;
  letter-spacing: 0.04em;
}
.language-words span:nth-child(even) {
  color: var(--red);
}
.hero-copy > * {
  animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-copy h1 {
  animation-delay: 0.08s;
}
.hero-copy .lead {
  animation-delay: 0.16s;
}
.hero-copy .button,
.hero-copy .microcopy {
  animation-delay: 0.24s;
}
.button {
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(1px);
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes logo-in {
  from {
    opacity: 0;
    transform: scale(0.94) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.intro {
  padding-top: 105px;
  padding-bottom: 108px;
  border-top: 1px solid var(--line);
}
.intro-content,
.closing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 18px;
}
.intro h2,
.section-heading h2,
.principles h2,
.closing h2 {
  font:
    clamp(35px, 4.4vw, 58px) / 1.02 Georgia,
    serif;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 620px;
}
.intro-content p {
  max-width: 510px;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 22px;
}
.services {
  padding-bottom: 110px;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  margin-bottom: 42px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  min-height: 215px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-featured {
  background: var(--navy);
  color: #fff;
}
.service span {
  font-size: 12px;
  font-weight: bold;
  color: var(--red);
}
.service-featured span {
  color: #ff898c;
}
.service h3 {
  font-size: 21px;
  margin: 45px 0 10px;
  letter-spacing: -0.02em;
}
.service p {
  color: var(--muted);
  margin: 0;
  max-width: 310px;
}
.service-featured p {
  color: #d9e1ef;
}
.service-wide {
  grid-column: span 2;
}
.partner-section {
  padding-top: 10px;
  padding-bottom: 108px;
}
.partner-content,
.locations-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 18px;
}
.partner-section h2,
.locations-section h2 {
  font:
    clamp(35px, 4.4vw, 58px) / 1.02 Georgia,
    serif;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 620px;
}
.partner-copy > p,
.locations-content > div > p {
  color: var(--muted);
  font-size: 18px;
  max-width: 510px;
  margin: 0 0 28px;
}
.partner-points p {
  border-top: 1px solid var(--line);
  padding: 15px 0;
  margin: 0;
  color: var(--muted);
}
.partner-points b {
  display: block;
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 3px;
}
.locations-section {
  border-top: 1px solid var(--line);
  padding-top: 100px;
  padding-bottom: 110px;
}
.location-list {
  display: grid;
  gap: 0;
}
.location-list p {
  border-top: 1px solid var(--line);
  padding: 15px 0;
  margin: 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
}
.location-list b {
  color: var(--navy);
  font-size: 13px;
}
.location-list span {
  color: var(--muted);
  font-size: 14px;
}
.principles {
  background: var(--navy);
  color: #fff;
}
.principles-inner {
  padding-top: 94px;
  padding-bottom: 98px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.principles .section-label {
  color: #a9c4f2;
}
.principles h2 {
  margin-top: 18px;
}
.principle-list p {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  border-top: 1px solid #64789c;
  padding: 19px 0;
  margin: 0;
  color: #d9e1ef;
}
.principle-list b {
  color: #ff8588;
  font-size: 12px;
}
.principle-list strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}
.closing {
  padding-top: 108px;
  padding-bottom: 110px;
}
.closing-content p {
  color: var(--muted);
  font-size: 18px;
  max-width: 500px;
  margin: 0 0 28px;
}
.closing-content .phone-line {
  font-size: 14px;
  line-height: 1.8;
}
.phone-line b {
  color: var(--navy);
}
.site-footer {
  border-top: 1px solid var(--line);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.whatsapp-float {
  position: fixed;
  z-index: 5;
  right: 24px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #20b85a;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px #10203d33;
}
.whatsapp-float img {
  width: 28px;
  height: 28px;
}
@media (max-width: 760px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header {
    height: 73px;
    padding: 0 20px;
  }
  .brand-name {
    font-size: 14px;
    font-weight: 800;
  }
  .brand-name b {
    font-size: 13px;
    font-weight: 800;
  }
  .brand-mark {
    width: 39px;
    height: 39px;
  }
  nav {
    display: none;
    position: absolute;
    z-index: 5;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 10px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 10px 20px #14223b22;
  }
  nav.open {
    display: flex;
  }
  nav a {
    width: auto;
    padding: 13px 0;
  }
  nav > a:not(.nav-cta),
  .nav-cta {
    width: 100%;
  }
  .language-switch {
    width: 100%;
  }
  .nav-cta {
    text-align: center;
    margin-top: 5px;
  }
  .menu {
    display: block;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 37px;
    padding-top: 67px;
    padding-bottom: 76px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .lead {
    font-size: 18px;
  }
  .hero-art {
    min-height: 380px;
    border-left: 0;
  }
  .logo-art {
    padding: 28px 18px 72px;
  }
  .logo-art img {
    width: min(76%, 280px);
  }
  .language-words {
    bottom: 20px;
    left: 20px;
    right: 20px;
    gap: 4px 9px;
    font-size: 10px;
  }
  .intro {
    padding-top: 72px;
    padding-bottom: 78px;
  }
  .intro-content,
  .closing-content,
  .principles-inner,
  .partner-content,
  .locations-content {
    display: block;
    margin-top: 20px;
  }
  .intro-content > div,
  .closing-content > div,
  .partner-content > div,
  .locations-content > div {
    margin-top: 30px;
  }
  .location-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .section-heading {
    display: block;
    margin-bottom: 29px;
  }
  .section-heading h2 {
    margin-top: 18px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service {
    min-height: 185px;
  }
  .service-wide {
    grid-column: auto;
  }
  .service h3 {
    margin-top: 30px;
  }
  .services {
    padding-bottom: 76px;
  }
  .principles-inner {
    padding-top: 72px;
    padding-bottom: 76px;
  }
  .principle-list {
    margin-top: 35px;
  }
  .closing {
    padding-top: 75px;
    padding-bottom: 78px;
  }
  .site-footer {
    display: block;
    padding-top: 23px;
    padding-bottom: 78px;
  }
  .site-footer span {
    display: block;
    margin-bottom: 10px;
  }
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-copy > *,
  .logo-art img {
    animation: none;
  }
}
