:root {
  --fm-green-950: #0b241b;
  --fm-green-900: #123428;
  --fm-green-800: #173b2e;
  --fm-green-700: #245640;
  --fm-green-500: #4d8065;
  --fm-sage: #dfe7dc;
  --fm-cream: #f4efe4;
  --fm-cream-dark: #e8dfcf;
  --fm-gold: #d89b3c;
  --fm-gold-light: #f2c36b;
  --fm-ink: #16201b;
  --fm-muted: #5c675f;
  --fm-white: #fff;
  --fm-border: rgba(22, 32, 27, .14);
  --fm-shadow: 0 24px 70px rgba(11, 36, 27, .14);
  --fm-radius: 26px;
  --fm-shell: 1280px;
}

html {
  scroll-behavior: smooth;
}

body.fmseo-standalone-site {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--fm-ink);
  background: var(--fm-cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.fmseo-standalone-site *,
body.fmseo-standalone-site *::before,
body.fmseo-standalone-site *::after {
  box-sizing: border-box;
}

body.fmseo-standalone-site img {
  display: block;
  max-width: 100%;
}

body.fmseo-standalone-site a {
  color: inherit;
}

body.fmseo-standalone-site h1,
body.fmseo-standalone-site h2,
body.fmseo-standalone-site h3,
body.fmseo-standalone-site p,
body.fmseo-standalone-site ul,
body.fmseo-standalone-site ol,
body.fmseo-standalone-site figure {
  margin-top: 0;
}

body.fmseo-standalone-site h1,
body.fmseo-standalone-site h2,
body.fmseo-standalone-site h3 {
  margin-bottom: 22px;
  color: var(--fm-green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
}

body.fmseo-standalone-site h1 {
  font-size: clamp(58px, 7vw, 104px);
}

body.fmseo-standalone-site h2 {
  font-size: clamp(42px, 4.8vw, 68px);
}

body.fmseo-standalone-site h3 {
  font-size: 28px;
}

.fm-shell {
  width: min(calc(100% - 48px), var(--fm-shell));
  margin-inline: auto;
}

.fm-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--fm-white) !important;
  background: var(--fm-green-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

.fm-skip-link:focus {
  transform: none;
}

.fm-site-header {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--fm-white);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: background .25s ease, box-shadow .25s ease;
}

.admin-bar .fm-site-header {
  top: 32px;
}

.fm-site-header.is-stuck {
  position: fixed;
  color: var(--fm-ink);
  background: rgba(255, 255, 255, .97);
  border-color: var(--fm-border);
  box-shadow: 0 10px 30px rgba(11, 36, 27, .1);
  backdrop-filter: blur(12px);
}

.fm-site-header__inner {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 32px;
}

.fm-brand {
  display: inline-flex;
  width: 238px;
  flex: 0 0 auto;
}

.fm-brand img {
  width: 238px;
  height: auto;
  filter: brightness(0) invert(1);
}

.fm-site-header.is-stuck .fm-brand img,
.fm-site-header.is-menu-open .fm-brand img {
  filter: none;
}

.fm-site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .03em;
}

.fm-site-nav > a,
.fm-nav-group > button {
  position: relative;
  padding: 31px 0;
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.fm-site-nav > a::after,
.fm-nav-group > button::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  left: 0;
  height: 2px;
  background: var(--fm-gold);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.fm-site-nav > a:hover::after,
.fm-site-nav > a:focus-visible::after,
.fm-nav-group > button:hover::after,
.fm-nav-group > button:focus-visible::after {
  transform: scaleX(1);
}

.fm-nav-group {
  position: relative;
}

.fm-nav-group > button span {
  margin-left: 3px;
}

.fm-nav-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  display: grid;
  width: 250px;
  padding: 14px;
  color: var(--fm-ink);
  background: var(--fm-white);
  border: 1px solid var(--fm-border);
  border-radius: 16px;
  box-shadow: var(--fm-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease;
}

.fm-nav-dropdown a {
  padding: 10px 12px;
  border-radius: 9px;
  text-decoration: none;
}

.fm-nav-dropdown a:hover,
.fm-nav-dropdown a:focus-visible {
  background: var(--fm-cream);
}

.fm-nav-group:hover .fm-nav-dropdown,
.fm-nav-group:focus-within .fm-nav-dropdown,
.fm-nav-group.is-open .fm-nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.fm-header-action {
  flex: 0 0 auto;
}

.fm-header-phone {
  display: grid;
  padding-left: 22px;
  color: inherit;
  border-left: 1px solid currentColor;
  text-decoration: none;
}

.fm-header-phone span {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: .72;
}

.fm-header-phone strong {
  font-size: 16px;
}

.fm-menu-toggle {
  display: none;
}

.fm-hero,
.fm-location-hero {
  position: relative;
  display: grid;
  min-height: min(880px, 96vh);
  align-items: end;
  overflow: hidden;
  color: var(--fm-white);
  background: var(--fm-green-950);
}

.fm-location-hero {
  min-height: 760px;
}

.fm-hero__image,
.fm-location-hero__image,
.fm-hero__shade,
.fm-location-hero__shade {
  position: absolute;
  inset: 0;
}

.fm-hero__image img,
.fm-location-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-hero__image img {
  object-position: center 58%;
}

.fm-location-hero__image img {
  object-position: center 55%;
}

.fm-hero__shade,
.fm-location-hero__shade {
  background: linear-gradient(90deg, rgba(7, 26, 19, .95) 0%, rgba(7, 26, 19, .76) 47%, rgba(7, 26, 19, .16) 82%), linear-gradient(0deg, rgba(7, 26, 19, .55), transparent 55%);
}

.fm-hero__content,
.fm-location-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 190px 116px;
}

.fm-location-hero__content {
  padding-bottom: 96px;
}

.fm-eyebrow,
.fm-kicker {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 12px;
  color: var(--fm-gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.fm-eyebrow::before,
.fm-kicker::before {
  width: 40px;
  height: 2px;
  background: currentColor;
  content: "";
}

.fm-hero h1,
.fm-location-hero h1 {
  max-width: 900px;
  margin-bottom: 30px;
  color: var(--fm-white) !important;
  text-shadow: 0 5px 30px rgba(0, 0, 0, .22);
}

.fm-hero h1 em,
.fm-location-hero h1 em {
  color: var(--fm-gold-light);
  font-weight: 400;
}

.fm-hero__lead,
.fm-location-hero__content > p:not(.fm-eyebrow) {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.65;
}

.fm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fm-button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--fm-green-950) !important;
  background: var(--fm-gold);
  border: 1px solid var(--fm-gold);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .02em;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background .2s ease, border .2s ease, color .2s ease, transform .2s ease;
}

.fm-button:hover,
.fm-button:focus-visible {
  color: var(--fm-white) !important;
  background: var(--fm-green-700);
  border-color: var(--fm-green-700);
  transform: translateY(-2px);
}

.fm-button--ghost {
  color: var(--fm-white) !important;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .55);
  backdrop-filter: blur(8px);
}

.fm-button--ghost:hover,
.fm-button--ghost:focus-visible {
  color: var(--fm-green-950) !important;
  background: var(--fm-white);
  border-color: var(--fm-white);
}

.fm-button--small {
  min-height: 44px;
  padding: 11px 20px;
}

.fm-hero__stamp {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--fm-shell)) / 2));
  bottom: 72px;
  display: grid;
  width: 150px;
  aspect-ratio: 1;
  place-content: center;
  color: var(--fm-green-950);
  background: var(--fm-gold-light);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  text-align: center;
  transform: rotate(6deg);
}

.fm-hero__stamp span {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.fm-hero__stamp strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.15;
}

.fm-breadcrumbs {
  display: flex;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.fm-breadcrumbs a {
  color: var(--fm-white);
  text-underline-offset: 4px;
}

.fm-proof {
  position: relative;
  z-index: 4;
  color: var(--fm-white);
  background: var(--fm-green-800);
}

.fm-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fm-proof__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.fm-proof p {
  min-width: 0;
  margin: 0;
  padding: 27px 30px;
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.fm-proof p:last-child {
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.fm-proof strong,
.fm-proof span {
  display: block;
}

.fm-proof strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

.fm-proof span {
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  letter-spacing: .04em;
}

.fm-section {
  padding-block: 112px;
}

.fm-section--white {
  background: var(--fm-white);
}

.fm-section--cream {
  background: var(--fm-cream);
}

.fm-section--sage {
  background: var(--fm-sage);
}

.fm-section--dark {
  color: rgba(255, 255, 255, .76);
  background: var(--fm-green-950);
}

.fm-section--dark h2,
.fm-section--dark h3,
.fm-section--contact h2,
.fm-site-footer h2 {
  color: var(--fm-white) !important;
}

.fm-section-heading {
  max-width: 830px;
  margin-bottom: 52px;
}

.fm-section-heading > p:last-child,
.fm-section-heading--split > p {
  color: var(--fm-muted);
}

.fm-section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .7fr);
  align-items: end;
  gap: 80px;
}

.fm-section-heading--split h2 {
  margin-bottom: 0;
}

.fm-section-heading--split > p {
  margin-bottom: 6px;
}

.fm-section-heading--light > p:last-child {
  color: rgba(255, 255, 255, .65);
}

.fm-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--fm-border);
  border-left: 1px solid var(--fm-border);
}

.fm-service-card {
  position: relative;
  min-height: 285px;
  padding: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, .38);
  border-right: 1px solid var(--fm-border);
  border-bottom: 1px solid var(--fm-border);
  transition: background .25s ease, transform .25s ease;
}

.fm-service-card:hover {
  z-index: 2;
  background: var(--fm-white);
  box-shadow: var(--fm-shadow);
  transform: translateY(-5px);
}

.fm-service-card__number {
  display: block;
  margin-bottom: 52px;
  color: var(--fm-gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}

.fm-service-card h3 {
  margin-bottom: 14px !important;
  font-size: 29px !important;
}

.fm-service-card p {
  margin-bottom: 0;
  color: var(--fm-muted);
  font-size: 15px;
}

.fm-gallery {
  display: grid;
  gap: 18px;
}

.fm-gallery--feature {
  grid-template-columns: 1.35fr .75fr .75fr;
  min-height: 610px;
}

.fm-gallery figure {
  position: relative;
  min-width: 0;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--fm-green-800);
  border-radius: var(--fm-radius);
}

.fm-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.fm-gallery figure:hover img {
  transform: scale(1.035);
}

.fm-gallery figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 15px;
  color: var(--fm-white);
  background: rgba(7, 26, 19, .8);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.fm-split,
.fm-location-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.fm-split__media,
.fm-location-intro figure {
  position: relative;
  min-height: 640px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--fm-radius);
  box-shadow: var(--fm-shadow);
}

.fm-split__media img,
.fm-location-intro figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fm-location-intro figure figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: var(--fm-white);
  background: rgba(7, 26, 19, .82);
  border-radius: 9px;
  font-size: 11px;
}

.fm-photo-label {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 14px;
  color: var(--fm-green-950);
  background: var(--fm-gold-light);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fm-split__copy > p,
.fm-location-intro > div > p {
  color: var(--fm-muted);
}

.fm-tick-list {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}

.fm-tick-list li {
  position: relative;
  padding-left: 34px;
}

.fm-tick-list li::before {
  position: absolute;
  top: .25em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-content: center;
  color: var(--fm-white);
  background: var(--fm-green-700);
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}

.fm-tick-list--light li::before {
  color: var(--fm-green-950);
  background: var(--fm-gold);
}

.fm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fm-green-800) !important;
  font-weight: 850;
  text-decoration-color: var(--fm-gold) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 6px;
}

.fm-landscape-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--fm-white);
  border-radius: var(--fm-radius);
  box-shadow: var(--fm-shadow);
}

.fm-landscape-grid > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.fm-landscape-grid > div {
  padding: 52px;
}

.fm-landscape-grid h3 {
  font-size: 36px !important;
}

.fm-landscape-grid p {
  color: var(--fm-muted);
}

.fm-tag-list {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.fm-tag-list span {
  padding: 8px 12px;
  color: var(--fm-green-800);
  background: var(--fm-sage);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.fm-tag-list--dark span {
  color: var(--fm-green-950);
  background: var(--fm-gold-light);
}

.fm-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--fm-border);
}

.fm-area-grid a {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 30px 62px 30px 0;
  align-content: center;
  border-bottom: 1px solid var(--fm-border);
  text-decoration: none;
}

.fm-area-grid a:nth-child(odd) {
  padding-right: 82px;
  border-right: 1px solid var(--fm-border);
}

.fm-area-grid a:nth-child(even) {
  padding-left: 34px;
}

.fm-area-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.fm-area-grid span {
  color: var(--fm-muted);
  font-size: 13px;
}

.fm-area-grid b {
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-content: center;
  color: var(--fm-white);
  background: var(--fm-green-800);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.fm-area-grid a:hover b,
.fm-area-grid a:focus-visible b {
  background: var(--fm-gold);
  transform: translateY(-50%) rotate(8deg);
}

.fm-process {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 90px;
}

.fm-process__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--fm-border);
  list-style: none;
}

.fm-process__steps li {
  display: grid;
  padding: 30px 0;
  grid-template-columns: 70px 1fr;
  border-bottom: 1px solid var(--fm-border);
}

.fm-process__steps > li > span {
  color: var(--fm-gold);
  font-size: 13px;
  font-weight: 850;
}

.fm-process__steps h3 {
  margin-bottom: 8px !important;
}

.fm-process__steps p {
  margin-bottom: 0;
  color: var(--fm-muted);
}

.fm-faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.fm-faq {
  border-top: 1px solid var(--fm-border);
}

.fm-faq:last-child {
  border-bottom: 1px solid var(--fm-border);
}

.fm-faq summary {
  display: flex;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--fm-green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.fm-faq summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-content: center;
  color: var(--fm-white);
  background: var(--fm-green-800);
  border-radius: 50%;
  font-family: Inter, sans-serif;
  font-size: 18px;
  transition: transform .2s ease;
}

.fm-faq[open] summary span {
  transform: rotate(45deg);
}

.fm-faq__answer {
  max-width: 760px;
  padding: 0 58px 24px 0;
  color: var(--fm-muted);
}

.fm-faq__answer p {
  margin-bottom: 0;
}

.fm-section--contact {
  color: rgba(255, 255, 255, .75);
  background: var(--fm-green-800);
}

.fm-contact-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}

.fm-contact-layout__intro {
  padding-top: 22px;
}

.fm-contact-layout__intro > p:not(.fm-kicker) {
  max-width: 520px;
}

.fm-contact-note {
  display: grid;
  margin-top: 38px;
  padding: 23px 0;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.fm-contact-note strong {
  color: var(--fm-white);
}

.fm-contact-note span {
  font-size: 13px;
}

.fm-form-wrap {
  min-width: 0;
  padding: clamp(28px, 4vw, 54px);
  color: var(--fm-ink);
  background: var(--fm-white);
  border-radius: var(--fm-radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.fm-contact-form {
  position: relative;
}

.fm-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fm-form-grid label,
.fm-form-consent {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: var(--fm-green-950);
  font-size: 13px;
  font-weight: 800;
}

.fm-form-grid label > span b,
.fm-form-consent b {
  color: #a23b2a;
}

.fm-form-grid__full {
  grid-column: 1 / -1;
}

.fm-contact-form input[type="text"],
.fm-contact-form input[type="email"],
.fm-contact-form input[type="tel"],
.fm-contact-form select,
.fm-contact-form textarea {
  width: 100%;
  min-height: 52px;
  margin: 0;
  padding: 13px 15px;
  color: var(--fm-ink);
  background: #fbfaf7;
  border: 1px solid #ccd3cd;
  border-radius: 10px;
  box-shadow: none;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
}

.fm-contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.fm-contact-form input:focus,
.fm-contact-form select:focus,
.fm-contact-form textarea:focus {
  outline: 3px solid rgba(216, 155, 60, .28);
  border-color: var(--fm-gold);
}

.fm-form-consent {
  display: flex;
  margin: 22px 0;
  align-items: flex-start;
  gap: 10px;
  color: var(--fm-muted);
  font-weight: 600;
  line-height: 1.45;
}

.fm-form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--fm-green-700);
}

.fm-form-submit {
  border: 0;
  cursor: pointer;
}

.fm-form-privacy {
  margin: 18px 0 0;
  color: #727b74;
  font-size: 11px;
  line-height: 1.55;
}

.fm-form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.fm-form-message {
  margin-bottom: 22px;
  padding: 15px 17px;
  border-radius: 10px;
  font-size: 14px;
}

.fm-form-message--success {
  color: #174d31;
  background: #e2f4e8;
  border: 1px solid #a9d8b8;
}

.fm-form-message--error {
  color: #6b281f;
  background: #f9e8e4;
  border: 1px solid #e8b8ae;
}

.fm-location-intro > div > p:not(.fm-kicker) {
  font-size: 18px;
}

.fm-advice-grid {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  align-items: start;
  gap: 90px;
}

.fm-advice-grid > div:first-child > p:not(.fm-kicker) {
  max-width: 770px;
}

.fm-advice-card {
  padding: 42px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--fm-radius);
}

.fm-advice-card > span {
  display: block;
  margin-bottom: 26px;
  color: var(--fm-gold-light);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.fm-advice-card h3 {
  font-size: 37px !important;
}

.fm-gallery--three {
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 470px;
}

.fm-coverage-layout {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 100px;
}

.fm-coverage-layout > div:first-child > p {
  max-width: 740px;
  color: var(--fm-muted);
}

.fm-place-list {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 9px;
}

.fm-place-list span {
  padding: 9px 14px;
  color: var(--fm-green-800);
  background: var(--fm-sage);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.fm-mini-process {
  padding: 38px;
  background: var(--fm-cream);
  border-radius: var(--fm-radius);
}

.fm-mini-process h3 {
  margin-bottom: 28px !important;
  font-size: 31px !important;
}

.fm-mini-process ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 20px;
  list-style: none;
}

.fm-mini-process li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  color: var(--fm-muted);
  font-size: 14px;
}

.fm-mini-process li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-content: center;
  color: var(--fm-white);
  background: var(--fm-green-800);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 850;
}

.fm-section--related {
  padding-block: 76px;
  background: var(--fm-gold-light);
}

.fm-section--related h2 {
  margin-bottom: 32px;
}

.fm-section--related .fm-kicker {
  color: var(--fm-green-800);
}

.fm-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.fm-related-links a {
  padding: 10px 15px;
  color: var(--fm-white);
  background: var(--fm-green-800);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.fm-related-links a:hover,
.fm-related-links a:focus-visible {
  background: var(--fm-green-950);
  transform: translateY(-2px);
}

.fm-site-footer {
  padding: 82px 0 24px;
  color: rgba(255, 255, 255, .66);
  background: #071a13;
}

.fm-site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, .65fr);
  gap: 60px;
}

.fm-site-footer__brand img {
  width: 240px;
  height: auto;
  margin-bottom: 26px;
}

.fm-site-footer__brand p {
  max-width: 360px;
  font-size: 14px;
}

.fm-site-footer h2 {
  margin-bottom: 20px !important;
  font-family: Inter, sans-serif !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase;
}

.fm-site-footer ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.fm-site-footer a {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  text-decoration: none;
}

.fm-site-footer a:hover,
.fm-site-footer a:focus-visible {
  color: var(--fm-gold-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fm-site-footer__bottom {
  display: flex;
  margin-top: 58px;
  padding-top: 20px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 11px;
}

.fm-site-footer__bottom p {
  margin-bottom: 0;
}

.fm-whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-content: center;
  color: var(--fm-white) !important;
  background: #25d366;
  border: 3px solid var(--fm-white);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .fm-site-header__inner {
    gap: 20px;
  }

  .fm-brand,
  .fm-brand img {
    width: 205px;
  }

  .fm-site-nav {
    gap: 18px;
    font-size: 13px;
  }

  .fm-header-phone {
    display: none;
  }

  .fm-gallery--feature {
    grid-template-columns: 1.15fr .85fr;
  }

  .fm-gallery--feature figure:last-child {
    display: none;
  }

  .fm-section-heading--split {
    gap: 45px;
  }

  .fm-contact-layout,
  .fm-faq-layout,
  .fm-advice-grid {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  .admin-bar .fm-site-header {
    top: 46px;
  }

  .fm-shell {
    width: min(calc(100% - 36px), var(--fm-shell));
  }

  .fm-site-header,
  .fm-site-header.is-stuck {
    position: fixed;
    color: var(--fm-ink);
    background: rgba(255, 255, 255, .98);
    border-color: var(--fm-border);
  }

  .fm-site-header__inner {
    min-height: 76px;
  }

  .fm-brand,
  .fm-brand img {
    width: 190px;
  }

  .fm-brand img {
    filter: none;
  }

  .fm-menu-toggle {
    display: grid;
    width: 46px;
    height: 44px;
    margin-left: auto;
    padding: 9px 10px 8px;
    align-content: center;
    gap: 5px;
    color: var(--fm-green-950);
    background: var(--fm-cream);
    border: 1px solid var(--fm-border);
    border-radius: 10px;
    cursor: pointer;
  }

  .fm-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .fm-menu-toggle b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .fm-site-header.is-menu-open .fm-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .fm-site-header.is-menu-open .fm-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .fm-site-header.is-menu-open .fm-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .fm-site-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 76px);
    margin: 0;
    padding: 18px;
    overflow-y: auto;
    color: var(--fm-ink);
    background: var(--fm-white);
    border-top: 1px solid var(--fm-border);
    box-shadow: 0 20px 35px rgba(11, 36, 27, .14);
  }

  .fm-site-header.is-menu-open .fm-site-nav {
    display: grid;
  }

  .fm-site-nav > a,
  .fm-nav-group > button {
    display: flex;
    width: 100%;
    padding: 12px 8px;
    justify-content: space-between;
    text-align: left;
  }

  .fm-site-nav > a::after,
  .fm-nav-group > button::after {
    display: none;
  }

  .fm-nav-dropdown {
    position: static;
    display: none;
    width: 100%;
    padding: 5px 0 5px 14px;
    background: var(--fm-cream);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .fm-nav-group.is-open .fm-nav-dropdown {
    display: grid;
    transform: none;
  }

  .fm-header-action {
    display: none;
  }

  .fm-hero,
  .fm-location-hero {
    min-height: 760px;
  }

  .fm-hero__content,
  .fm-location-hero__content {
    padding-block: 150px 78px;
  }

  .fm-hero__stamp {
    display: none;
  }

  .fm-proof__grid,
  .fm-proof__grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .fm-proof p:nth-child(odd) {
    border-left: 0;
  }

  .fm-proof p:last-child {
    border-right: 0;
  }

  .fm-section {
    padding-block: 82px;
  }

  .fm-section-heading--split,
  .fm-split,
  .fm-location-intro,
  .fm-process,
  .fm-faq-layout,
  .fm-contact-layout,
  .fm-advice-grid,
  .fm-coverage-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .fm-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fm-gallery--feature,
  .fm-gallery--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 440px;
    min-height: 0;
  }

  .fm-gallery--feature figure:last-child {
    display: block;
  }

  .fm-gallery--feature figure:first-child,
  .fm-gallery--three figure:first-child {
    grid-column: 1 / -1;
  }

  .fm-landscape-grid {
    grid-template-columns: 1fr;
  }

  .fm-landscape-grid > img {
    min-height: 400px;
  }

  .fm-site-footer__grid {
    grid-template-columns: 1.2fr repeat(2, 1fr);
  }

  .fm-site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body.fmseo-standalone-site {
    font-size: 16px;
  }

  .fm-shell {
    width: min(calc(100% - 28px), var(--fm-shell));
  }

  body.fmseo-standalone-site h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  body.fmseo-standalone-site h2 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .fm-brand,
  .fm-brand img {
    width: 172px;
  }

  .fm-hero,
  .fm-location-hero {
    min-height: 720px;
  }

  .fm-hero__image img,
  .fm-location-hero__image img {
    object-position: 62% center;
  }

  .fm-hero__shade,
  .fm-location-hero__shade {
    background: linear-gradient(0deg, rgba(7, 26, 19, .96) 0%, rgba(7, 26, 19, .75) 62%, rgba(7, 26, 19, .34) 100%);
  }

  .fm-hero__content,
  .fm-location-hero__content {
    padding-block: 132px 56px;
  }

  .fm-hero__lead,
  .fm-location-hero__content > p:not(.fm-eyebrow) {
    font-size: 17px;
  }

  .fm-actions {
    display: grid;
  }

  .fm-button {
    width: 100%;
  }

  .fm-breadcrumbs {
    margin-bottom: 32px;
  }

  .fm-proof__grid,
  .fm-proof__grid--three {
    grid-template-columns: 1fr;
  }

  .fm-proof p {
    padding: 19px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    border-left: 0;
  }

  .fm-proof p:last-child {
    border-bottom: 0;
  }

  .fm-section {
    padding-block: 66px;
  }

  .fm-section-heading {
    margin-bottom: 36px;
  }

  .fm-section-heading--split {
    gap: 24px;
  }

  .fm-service-grid {
    grid-template-columns: 1fr;
  }

  .fm-service-card {
    min-height: 0;
    padding: 28px;
  }

  .fm-service-card__number {
    margin-bottom: 28px;
  }

  .fm-gallery--feature,
  .fm-gallery--three {
    display: flex;
    margin-right: -14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .fm-gallery--feature::-webkit-scrollbar,
  .fm-gallery--three::-webkit-scrollbar {
    display: none;
  }

  .fm-gallery--feature figure,
  .fm-gallery--three figure,
  .fm-gallery--feature figure:first-child,
  .fm-gallery--three figure:first-child {
    width: 84vw;
    min-width: 84vw;
    height: 440px;
    scroll-snap-align: start;
  }

  .fm-split,
  .fm-location-intro,
  .fm-contact-layout,
  .fm-faq-layout,
  .fm-advice-grid,
  .fm-coverage-layout {
    gap: 36px;
  }

  .fm-split__media,
  .fm-location-intro figure {
    min-height: 480px;
  }

  .fm-landscape-grid > img {
    min-height: 300px;
  }

  .fm-landscape-grid > div,
  .fm-advice-card,
  .fm-mini-process {
    padding: 28px;
  }

  .fm-area-grid {
    grid-template-columns: 1fr;
  }

  .fm-area-grid a,
  .fm-area-grid a:nth-child(odd),
  .fm-area-grid a:nth-child(even) {
    min-height: 118px;
    padding: 24px 60px 24px 0;
    border-right: 0;
  }

  .fm-process {
    gap: 20px;
  }

  .fm-process__steps li {
    grid-template-columns: 48px 1fr;
  }

  .fm-faq summary {
    font-size: 21px;
  }

  .fm-form-wrap {
    margin-inline: -4px;
    padding: 24px 18px;
  }

  .fm-form-grid {
    grid-template-columns: 1fr;
  }

  .fm-form-grid__full {
    grid-column: auto;
  }

  .fm-site-footer {
    padding-top: 62px;
  }

  .fm-site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .fm-site-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .fm-site-footer__bottom {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

