:root {
  --navy: #111a32;
  --gold: #bca052;
  --cream: #f7f5f0;
  --ink: #172438;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible {
  outline: 3px solid #59d4f7;
  outline-offset: 6px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: white;
  padding: 16px;
  z-index: 10;
}
.skip:focus {
  top: 15px;
}
.hero {
  position: relative;
  min-height: 850px;
  min-height: 100svh;
  color: #fff;
  background: var(--navy);
  isolation: isolate;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 108px 0 0;
  width: 100%;
  height: calc(100% - 108px);
  object-fit: cover;
  object-position: 70% top;
  z-index: -3;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 23, 47, 0.96) 0%,
    rgba(13, 23, 47, 0.9) 31%,
    rgba(13, 23, 47, 0.56) 48%,
    rgba(13, 23, 47, 0.05) 73%
  );
  z-index: -2;
}
.header {
  height: 108px;
  padding: 14px 4%;
  border-bottom: 1px solid #ffffff32;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  width: 255px;
  background: #fff;
  padding: 9px 13px;
  display: block;
  border-radius: 2px;
}
.brand img {
  width: 100%;
  height: auto;
  display: block;
}
.header nav {
  display: flex;
  gap: 35px;
  font-size: 13px;
}
.header nav a:hover,
.text-link:hover {
  color: #ecd490;
}
.login {
  border: 1px solid #c6aa63;
  padding: 14px 23px;
  font-size: 13px;
  display: flex;
  gap: 24px;
  white-space: nowrap;
}
.hero-content {
  padding: clamp(75px, 11vh, 130px) 4% 100px;
  max-width: 720px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1.7;
  color: var(--gold);
  margin: 0 0 24px;
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(62px, 6.4vw, 102px);
  line-height: 0.98;
  margin: 0 0 30px;
}
.intro {
  font-size: 16px;
  line-height: 1.8;
  max-width: 470px;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding: 18px 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.gold {
  background: var(--gold);
  color: #111a32;
}
.gold:hover {
  background: #d1b566;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  padding: 12px 0;
  display: flex;
  gap: 18px;
}
.hero-bottom {
  position: absolute;
  bottom: 25px;
  left: 4%;
  right: 4%;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.18em;
  line-height: 1.6;
  color: #fff9;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section {
  padding: 110px 6%;
  max-width: 1600px;
  margin: auto;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}
h2 {
  font-size: clamp(39px, 4.4vw, 65px);
  line-height: 1.08;
  margin: 0 0 20px;
}
.section-heading > p,
.contact p,
.approach p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.9;
  color: #657080;
  max-width: 520px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-grid article {
  border-top: 1px solid #bbb8af;
  padding: 26px 0 0;
  display: flex;
  flex-direction: column;
}
.number {
  color: #9c864d;
  font-family: Georgia, serif;
  font-size: 18px;
}
h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 29px;
  letter-spacing: -0.02em;
  margin: 28px 0 8px;
}
.service-grid p {
  font-size: 14px;
  line-height: 1.85;
  color: #657080;
  margin-bottom: 30px;
  max-width: 330px;
}
.service-grid a {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d7d4cc;
  padding-bottom: 18px;
}
.approach {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 105px 6%;
}
.approach-inner {
  position: relative;
  max-width: 950px;
  margin: auto;
  z-index: 1;
}
.approach p:not(.eyebrow) {
  color: #c4cbd7;
  max-width: 640px;
}
.principles {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.principles span {
  border: 1px solid #ffffff35;
  padding: 12px 16px;
  font-size: 12px;
}
.outline-s {
  position: absolute;
  right: 3%;
  top: -140px;
  font:
    650px Georgia,
    serif;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff14;
}
.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.navy {
  background: var(--navy);
  color: white;
  white-space: nowrap;
}
.navy:hover {
  background: #294360;
}
footer {
  padding: 50px 6% 24px;
  background: white;
  border-top: 1px solid #e4e2dc;
}
.footer-brand {
  display: block;
  width: 230px;
}
.footer-brand img {
  width: 100%;
  height: auto;
}
footer > p {
  font-size: 13px;
  color: #657080;
}
.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 13px;
  margin: 30px 0 45px;
}
.footer-note {
  border-top: 1px solid #e4e2dc;
  padding-top: 22px;
  font-size: 10px;
  color: #89919b;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 15vh;
  }
  .hero-photo {
    object-position: center 35%;
  }
}
@media (max-width: 800px) {
  .header {
    height: 90px;
    gap: 15px;
  }
  .brand {
    width: 205px;
  }
  .header nav {
    display: none;
  }
  .login {
    padding: 12px 15px;
    gap: 10px;
  }
  .hero {
    min-height: 890px;
  }
  .hero-photo {
    top: 90px;
    height: 430px;
    object-position: 76% top;
  }
  .hero:after {
    background: linear-gradient(
      0deg,
      #111a32 33%,
      rgba(17, 26, 50, 0.93) 46%,
      rgba(17, 26, 50, 0.14) 78%,
      rgba(17, 26, 50, 0.08)
    );
  }
  .hero-content {
    padding: 360px 6% 100px;
    max-width: 680px;
  }
  h1 {
    font-size: 62px;
  }
  .intro {
    font-size: 15px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero-bottom {
    left: 6%;
    right: 6%;
    font-size: 8px;
  }
  .section {
    padding: 70px 6%;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 35px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-grid p {
    max-width: none;
  }
  .service-grid h3 {
    margin-top: 20px;
  }
  .approach {
    padding: 70px 6%;
  }
  .contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .footer-note {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

/* Commercial plans */
.plans {
  background: #f7f5f0;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.plan-card {
  display: flex;
  flex-direction: column;
  padding: 32px 26px;
  background: #fff;
  border: 1px solid #dedbd3;
  border-radius: 4px;
}
.plan-card.featured {
  border-top: 4px solid #bca052;
  padding-top: 29px;
}
.plan-kicker {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #6a603d;
  min-height: 14px;
}
.plan-card h3,
.plan-extras h3 {
  font:
    32px/1.15 Georgia,
    serif;
  margin: 18px 0;
}
.plan-description {
  line-height: 1.65;
  min-height: 54px;
  color: #5b6070;
}
.plan-price {
  font:
    52px/1.2 Georgia,
    serif;
  margin: 24px 0 16px;
}
.plan-price span {
  font:
    14px Arial,
    sans-serif;
  color: #5b6070;
}
.plan-allowance {
  font-size: 14px;
  line-height: 1.7;
  padding-bottom: 20px;
  border-bottom: 1px solid #dedbd3;
}
.plan-card ul {
  padding-left: 20px;
  margin: 4px 0 28px;
  flex: 1;
}
.plan-card li {
  font-size: 14px;
  line-height: 1.6;
  margin: 10px 0;
}
.plan-card .button {
  padding: 16px 18px;
  justify-content: space-between;
  font-size: 12px;
  gap: 8px;
}
.plan-note {
  font-size: 12px;
  line-height: 1.8;
  color: #5b6070;
  max-width: 1000px;
  margin: 24px 0 40px;
}
.plan-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid #dedbd3;
  padding-top: 38px;
}
.plan-extras p:not(.eyebrow) {
  max-width: 480px;
  line-height: 1.7;
  color: #5b6070;
}
.plan-extras .text-link {
  color: #111a32;
  display: inline-block;
  margin-top: 12px;
}
@media (max-width: 1100px) and (min-width: 801px) {
  .plan-card {
    padding: 25px 18px;
  }
  .plan-card.featured {
    padding-top: 22px;
  }
  .plan-card h3 {
    font-size: 27px;
  }
}
@media (max-width: 800px) {
  .plan-grid,
  .plan-extras {
    grid-template-columns: 1fr;
  }
  .plan-description {
    min-height: 0;
  }
  .plan-card {
    padding: 28px;
  }
  .plan-card.featured {
    padding-top: 25px;
  }
}
