:root {
  --navy: #062b52;
  --navy-deep: #031b34;
  --green: #2f7d42;
  --green-bright: #61a856;
  --ivory: #f5f3ea;
  --paper: #fbfaf5;
  --ink: #142231;
  --muted: #63717b;
  --line: rgba(6, 43, 82, 0.14);
}

* {
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.topline {
  min-height: 38px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topline__contact {
  display: flex;
  gap: 12px;
  color: white;
}

.topline a:hover {
  color: #a9d19e;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 86px;
  padding: 10px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 245, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  width: min(310px, 36vw);
  display: block;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
  color: #284253;
  font-size: 0.88rem;
  font-weight: 700;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--green);
  color: white !important;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 10%, rgba(96, 164, 84, 0.11), transparent 28%),
    linear-gradient(135deg, #fbfaf5 0%, #f2f2e9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -270px;
  bottom: -200px;
  border: 1px solid rgba(47, 125, 66, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(47, 125, 66, 0.035), 0 0 0 84px rgba(47, 125, 66, 0.025);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: clamp(72px, 9vw, 132px) clamp(34px, 6vw, 108px) 64px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: var(--green);
}

h1 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.55rem, 5.7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

h1 em {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-weight: 400;
}

.hero__lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 28px rgba(6, 43, 82, 0.18);
}

.button--primary:hover {
  background: var(--green);
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--navy);
}

.hero__assurance {
  margin-top: 58px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
}

.hero__assurance div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero__assurance strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 600;
}

.hero__assurance span {
  color: #7b878e;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-width: 0;
  margin: 30px 30px 30px 0;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 650px;
  overflow: hidden;
  border-radius: 220px 4px 4px 4px;
  background: #dce2dd;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 53%, rgba(3, 27, 52, 0.58) 100%);
}

.hero__badge {
  position: absolute;
  right: 32px;
  bottom: 30px;
  padding: 16px 19px 16px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--navy);
  box-shadow: 0 18px 45px rgba(3, 27, 52, 0.2);
}

.hero__badge-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.hero__badge > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.hero__badge small {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__vertical {
  position: absolute;
  top: 50%;
  right: -3px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translate(46%, -50%) rotate(90deg);
}

.service-ribbon {
  min-height: 76px;
  padding: 15px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  background: var(--navy);
  color: white;
}

.service-ribbon p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.92rem, 1.35vw, 1.2rem);
}

.service-ribbon span {
  color: var(--green-bright);
  font-size: 0.58rem;
}

.menu-button {
  display: none;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-kicker--light {
  color: #91c086;
}

.intro {
  padding: 120px 7vw 130px;
  background: var(--paper);
}

.intro__statement {
  margin-top: 45px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.intro h2,
.section-heading h2,
.plans h2,
.process h2,
.values h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 4.7vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.intro h2 {
  max-width: 850px;
  color: var(--navy);
}

.intro__statement > div p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.text-link {
  margin-top: 28px;
  padding-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.services {
  padding: 120px 5vw 94px;
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 163, 79, 0.14), transparent 28%),
    var(--navy-deep);
  color: white;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 60px;
  align-items: end;
}

.section-heading h2 {
  max-width: 880px;
  margin-top: 23px;
}

.section-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.8;
}

.services-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 3px;
  background: #183450;
}

.service-card--wide {
  grid-row: 1 / span 2;
  min-height: 695px;
}

.service-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card--wide img {
  object-position: 57% center;
}

.service-card:hover img {
  transform: scale(1.035);
}

.service-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 27, 52, 0.92) 100%);
}

.service-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(24px, 3.3vw, 52px);
}

.service-card__content > span {
  color: #9cc795;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card__content h3 {
  max-width: 570px;
  margin: 13px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
}

.service-card:not(.service-card--wide) .service-card__content h3 {
  font-size: clamp(1.45rem, 2vw, 2.25rem);
}

.service-card__content p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  line-height: 1.6;
}

.service-notes {
  padding: 36px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-notes span {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.plans {
  padding: 130px 5vw 100px;
  background:
    linear-gradient(rgba(47, 125, 66, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 125, 66, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 46px 46px;
}

.plans__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  gap: 70px;
  align-items: end;
}

.plans h2 {
  max-width: 800px;
  margin-top: 23px;
  color: var(--navy);
}

.plans__intro {
  padding-left: 25px;
  border-left: 2px solid var(--green);
}

.plans__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.plans__intro .sesotho-line {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.sesotho-line span {
  color: var(--green);
}

.plan-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(6, 43, 82, 0.13);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 35px rgba(6, 43, 82, 0.035);
}

.plan-card--featured {
  border-color: var(--green);
  background: var(--navy);
  color: white;
  transform: translateY(-16px);
  box-shadow: 0 22px 50px rgba(6, 43, 82, 0.16);
}

.plan-card__flag {
  position: absolute;
  top: -14px;
  right: 20px;
  padding: 8px 13px;
  border-radius: 2px;
  background: var(--green);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card__top {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(6, 43, 82, 0.13);
}

.plan-card--featured .plan-card__top {
  border-color: rgba(255, 255, 255, 0.16);
}

.plan-card__number {
  float: right;
  color: rgba(6, 43, 82, 0.27);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.plan-card--featured .plan-card__number {
  color: rgba(255, 255, 255, 0.35);
}

.plan-card__top > p {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan-card--featured .plan-card__top > p {
  color: #9bc894;
}

.plan-card__price {
  display: flex;
  align-items: flex-start;
  color: var(--navy);
  font-family: Georgia, serif;
}

.plan-card--featured .plan-card__price {
  color: white;
}

.plan-card__price sup {
  margin-top: 10px;
  font-size: 1rem;
}

.plan-card__price strong {
  font-size: clamp(3.4rem, 4.4vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.85;
}

.plan-card__price span {
  margin: 8px 0 0 2px;
  font-size: 0.84rem;
}

.plan-card__top small {
  margin-top: 13px;
  display: block;
  color: #7a878f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card--featured .plan-card__top small {
  color: rgba(255, 255, 255, 0.58);
}

.plan-card ul {
  margin: 25px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #4c5b65;
  font-size: 0.79rem;
  line-height: 1.35;
}

.plan-card--featured li {
  color: rgba(255, 255, 255, 0.76);
}

.plan-card li span {
  color: var(--green);
  font-weight: 900;
}

.plan-card--featured li span {
  color: #8ec285;
}

.plan-card button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(6, 43, 82, 0.16);
  border-radius: 2px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
}

.plan-card button:hover {
  border-color: var(--green);
  color: var(--green);
}

.plan-card--featured button {
  border-color: transparent;
  background: var(--green);
  color: white;
}

.plan-card--featured button:hover {
  background: #3e9351;
  color: white;
}

.plan-disclaimer {
  max-width: 850px;
  margin: 35px auto 0;
  color: #7b878d;
  font-size: 0.71rem;
  line-height: 1.65;
  text-align: center;
}

.process {
  padding: 115px 7vw;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1.2fr);
  gap: clamp(60px, 10vw, 170px);
  background: var(--green);
  color: white;
}

.process__intro h2 {
  max-width: 650px;
  margin-top: 25px;
}

.process__intro > p:last-child {
  max-width: 560px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.75;
}

.process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.process__steps li {
  min-height: 135px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.process__steps > li > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.43);
  border-radius: 50%;
  font-size: 0.66rem;
  font-weight: 800;
}

.process__steps h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.38rem;
  font-weight: 400;
}

.process__steps p {
  max-width: 530px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  line-height: 1.65;
}

.values {
  padding: 130px 7vw;
  display: grid;
  grid-template-columns: 0.55fr 1.1fr 0.8fr;
  gap: clamp(45px, 7vw, 115px);
  align-items: center;
  background: var(--paper);
}

.values__seal {
  aspect-ratio: 1;
  max-width: 270px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(47, 125, 66, 0.34);
  border-radius: 50%;
  color: var(--green);
  box-shadow: inset 0 0 0 11px var(--paper), inset 0 0 0 12px rgba(47, 125, 66, 0.12);
}

.values__seal span {
  font-family: Georgia, serif;
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.8;
}

.values__seal small {
  margin-top: 20px;
  font-family: Georgia, serif;
  font-style: italic;
}

.values h2 {
  max-width: 740px;
  margin-top: 22px;
  color: var(--navy);
}

.values__copy > p:last-child {
  max-width: 630px;
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.values__list {
  border-top: 1px solid var(--line);
}

.values__list div {
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-bottom: 1px solid var(--line);
}

.values__list strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.values__list span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.faq {
  padding: 115px 7vw 125px;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--ivory);
}

.faq h2 {
  max-width: 600px;
  margin-top: 23px;
  color: var(--navy);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  min-height: 89px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--navy);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(47, 125, 66, 0.35);
  border-radius: 50%;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  transition: transform 180ms ease, background 180ms ease;
}

.faq details[open] summary i {
  background: var(--green);
  color: white;
  transform: rotate(45deg);
}

.faq details p {
  max-width: 670px;
  margin: -3px 58px 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.contact {
  padding: 115px 7vw;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(60px, 10vw, 160px);
  background:
    radial-gradient(circle at 0% 100%, rgba(79, 155, 77, 0.18), transparent 33%),
    var(--navy-deep);
  color: white;
}

.contact h2 {
  max-width: 700px;
  margin-top: 24px;
}

.contact__details > p:not(.section-kicker) {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.75;
}

.contact__cards {
  max-width: 670px;
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact__cards a {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.contact__cards a:hover {
  border-color: #75ae6b;
  background: rgba(255, 255, 255, 0.08);
}

.contact__cards span,
.contact address span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__cards strong {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.contact address {
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-style: normal;
}

.contact address strong {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
}

.enquiry-form {
  padding: clamp(28px, 4vw, 50px);
  display: grid;
  gap: 20px;
  border-top: 4px solid var(--green);
  border-radius: 3px;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.form-heading {
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-heading span {
  color: var(--green);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: #56646d;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #ced4d2;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  text-transform: none;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-bottom-color: var(--green);
}

.button--form {
  margin-top: 5px;
  border: 0;
  background: var(--green);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.button--form:hover {
  background: var(--navy);
}

.enquiry-form > small {
  color: #879197;
  font-size: 0.65rem;
  line-height: 1.55;
  text-align: center;
}

footer {
  padding: 70px 7vw 25px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
  background: #f8f7f1;
}

.footer__brand img {
  width: min(360px, 100%);
  height: auto;
  display: block;
}

.footer__brand p {
  margin: 14px 0 0;
  color: var(--green);
  font-family: Georgia, serif;
  font-style: italic;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.footer__links div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links span {
  margin-bottom: 4px;
  color: #7d898f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__links a {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.footer__links a:hover {
  color: var(--green);
}

.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #849097;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.footer__bottom a {
  color: var(--green);
  font-weight: 800;
}

.mobile-actions {
  display: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(92, 170, 80, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card--featured {
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px 5vw 26px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(6, 43, 82, 0.1);
  }

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

  .site-header nav a {
    padding: 15px 0;
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .site-header nav .nav-cta {
    margin-top: 12px;
    padding: 14px 18px;
    border: 0;
    text-align: center;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 18px;
    height: 1px;
    background: var(--navy);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding: 70px 7vw 54px;
  }

  .hero__visual {
    min-height: 570px;
    margin: 0 4vw 4vw;
  }

  .hero__image-wrap {
    min-height: 570px;
    border-radius: 150px 4px 4px 4px;
  }

  .service-ribbon {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .service-ribbon p {
    flex: 0 0 auto;
  }

  .intro__statement,
  .section-heading,
  .plans__heading,
  .process,
  .values,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro__statement,
  .section-heading,
  .plans__heading {
    gap: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .service-card,
  .service-card--wide {
    grid-row: auto;
    min-height: 510px;
  }

  .process,
  .values,
  .faq,
  .contact {
    gap: 65px;
  }

  .values__seal {
    max-width: 220px;
  }
}

@media (max-width: 620px) {
  .topline {
    padding: 10px 5vw;
    align-items: flex-start;
    font-size: 0.6rem;
  }

  .topline__contact span,
  .topline__contact a:first-child {
    display: none;
  }

  .site-header {
    height: 72px;
    padding: 8px 5vw;
  }

  .brand {
    width: 190px;
  }

  .nav-cta {
    padding: 11px 13px;
    font-size: 0.72rem;
  }

  .hero__copy {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.4rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero__assurance {
    gap: 10px;
  }

  .hero__assurance strong {
    font-size: 0.82rem;
  }

  .hero__assurance span {
    font-size: 0.59rem;
  }

  .hero__visual,
  .hero__image-wrap {
    min-height: 440px;
  }

  .hero__image-wrap {
    border-radius: 100px 3px 3px 3px;
  }

  .hero__badge {
    right: 16px;
    bottom: 16px;
  }

  .intro,
  .services,
  .plans,
  .process,
  .values,
  .faq,
  .contact {
    padding: 82px 6vw;
  }

  .intro__statement {
    margin-top: 31px;
  }

  .intro h2,
  .section-heading h2,
  .plans h2,
  .process h2,
  .values h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .services-grid {
    margin-top: 42px;
  }

  .service-card,
  .service-card--wide {
    min-height: 420px;
  }

  .service-card__content {
    padding: 25px;
  }

  .plan-grid {
    margin-top: 50px;
    grid-template-columns: 1fr;
  }

  .plan-card {
    padding: 25px;
  }

  .process__steps li {
    grid-template-columns: 45px 1fr;
    gap: 17px;
  }

  .contact__cards,
  .footer__links {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 60px 6vw 105px;
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 10px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    background: rgba(251, 250, 245, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 -10px 30px rgba(6, 43, 82, 0.12);
  }

  .mobile-actions a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--navy);
    border-radius: 3px;
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .mobile-actions a:last-child {
    border-color: var(--green);
    background: var(--green);
    color: white;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
