:root {
  --navy: #142c33;
  --ink: #193239;
  --cream: #f7f5ef;
  --paper: #fffdf9;
  --sage: #a7b5a1;
  --warm: #d6a05f;
  --line: #d9ded5;
  --muted: #64736f;
}

/* Additional page and enquiry patterns */
.coverage{background:#e9eee6}.coverage-panel{display:grid;grid-template-columns:1fr 1fr;gap:100px}.coverage-panel>div:last-child{max-width:470px}.request-page-link{align-self:center;background:#eff3eb;padding:35px}.request-page-link p{margin:0 0 22px;color:#52625e}.general-contact{background:#f6f1e7}.page-hero{background:var(--navy);color:white;padding:88px 0 80px}.page-hero h1{font-size:clamp(44px,5vw,67px)}.page-hero p:not(.eyebrow){max-width:580px;margin:22px 0 0;color:#d3deda;font-size:18px}.page-content{padding:90px 0}.about-intro{display:grid;grid-template-columns:1fr 1fr;gap:110px}.about-intro .lead{font-size:24px}.about-intro+.about-intro{margin-top:70px}.values{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:75px 0}.values div{background:#e2e9df;padding:29px;font:500 25px Fraunces,serif}.capability{background:#e2e9df;padding:72px 0}.capability-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:45px 90px}.capability h3{font:500 25px Fraunces,serif;margin:0 0 8px}.capability p,.capability li{color:#52625d}.capability ul{padding-left:19px;margin:0}.search-panel{background:#e7ede5;padding:29px;margin-top:-42px;position:relative}.filter-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}.empty-state{min-height:300px;border:1px dashed #bdc9be;display:grid;place-items:center;text-align:center;padding:35px;margin-top:42px;background:#fffefa}.empty-state span{font:34px Fraunces,serif;color:#6d8276}.empty-state p{max-width:450px;color:#5e6d68}.form-section-title{grid-column:1/-1;font:500 22px Fraunces,serif;color:var(--navy);padding-top:14px;margin-top:5px;border-top:1px solid #ccd5cc}.form-section-title:first-child{padding-top:0;border-top:0;margin-top:0}.radio-group{grid-column:1/-1;display:flex;gap:16px;flex-wrap:wrap}.radio-group label{display:flex;align-items:center;gap:7px;background:#fffefb;border:1px solid #c8d2c8;padding:11px;font-weight:500}.radio-group input{width:14px;margin:0}.form-wide{max-width:920px;margin:auto}.form-wide form{background:#f0f3ed;padding:35px}@media(max-width:800px){.coverage-panel,.about-intro,.capability-grid{grid-template-columns:1fr;gap:35px}.values{grid-template-columns:1fr 1fr;margin:45px 0}.filter-grid{grid-template-columns:1fr}.search-panel{margin-top:0}.page-hero{padding:65px 0}.page-content{padding:65px 0}.form-wide form{padding:24px 18px}}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font:
    16px/1.55 "DM Sans",
    sans-serif;
}
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 32px;
}
.topline {
  background: #10272e;
  color: #dce5df;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.topline .wrap {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topline a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 9;
  border-bottom: 1px solid #e6e7e0;
}
.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.14em;
}
.brand .mark {
  width: 37px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #f7e7cd;
  font:
    600 25px/1 Fraunces,
    serif;
  clip-path: polygon(50% 0, 100% 21%, 100% 100%, 0 100%, 0 21%);
}
.brand b,
.brand small {
  display: block;
  font-size: 14px;
  line-height: 1.04;
}
.brand small {
  font-size: 8px;
  letter-spacing: 0.31em;
  margin-top: 4px;
}
nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
}
nav a {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
}
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 12px 16px;
}
.nav-group {
  position: relative;
}
.nav-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.nav-toggle .caret {
  font-size: 10px;
  color: #8b978f;
  transition: transform 0.15s;
}
.nav-group.open .nav-toggle .caret {
  transform: rotate(180deg);
}
.nav-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 18px;
  min-width: 240px;
  background: #fff;
  border: 1px solid #e6e7e0;
  box-shadow: 0 16px 30px rgba(20, 35, 30, 0.12);
  padding: 8px 0;
  z-index: 20;
}
.nav-group.open .nav-dropdown {
  display: flex;
}
.nav-dropdown a {
  padding: 11px 18px;
  white-space: nowrap;
}
.nav-dropdown a:hover {
  background: #f3f5f1;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
}
.hero {
  height: 620px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-image {
  background: url("assets/anchor-home-hero.png") center/cover;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(11, 31, 35, 0.92) 0%,
      rgba(15, 35, 39, 0.71) 38%,
      rgba(20, 44, 51, 0.1) 78%
    ),
    linear-gradient(0deg, rgba(4, 19, 22, 0.55), transparent 32%);
}
.hero-content {
  position: relative;
  padding-top: 104px;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-weight: 700;
  color: #687873;
  margin: 0 0 18px;
}
.eyebrow.light {
  color: #d7dfd8;
}
h1,
h2 {
  font-family: Fraunces, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0;
}
h1 {
  font-size: clamp(45px, 5.4vw, 75px);
  max-width: 770px;
}
h1 em,
h2 em {
  font-weight: 500;
  color: var(--warm);
}
h1 em {
  color: #f6d9ae;
}
.hero-copy {
  font-size: 18px;
  line-height: 1.55;
  max-width: 550px;
  color: #e8eeea;
  margin: 26px 0;
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 48px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 15px 19px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.button span,
.text-link span {
  font-size: 19px;
  font-weight: 400;
}
.warm {
  background: var(--warm);
  color: #172f35;
}
.text-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.text-link.light {
  color: white;
}
.hero-footer {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  color: #dbe2dc;
  font-size: 12px;
}
.availability i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9ce8a;
  display: inline-block;
  margin-right: 7px;
}
.section {
  padding: 110px 0;
}
.split-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}
.split-intro h2,
.section-heading h2,
.standards h2,
.partners h2,
.request h2 {
  font-size: clamp(39px, 4vw, 57px);
}
.prose {
  max-width: 500px;
}
.lead {
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 20px;
}
.prose p:not(.lead),
.partner-panel > div > p {
  color: #50615d;
}
.service-band {
  background: var(--navy);
  color: #e6ece6;
  padding: 105px 0;
}
.band-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 68px;
}
.band-heading h2 {
  font-size: clamp(37px, 4.4vw, 60px);
  line-height: 1.08;
}
.band-heading h2 em {
  color: #e7bf83;
}
.band-heading > p {
  margin: 0;
  color: #c3cfca;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #52676a;
  margin-bottom: 42px;
}
.service-grid article {
  padding: 25px 34px 20px 0;
  margin-right: 32px;
  border-right: 1px solid #52676a;
}
.service-grid article:last-child {
  border: 0;
}
.number {
  font-size: 12px;
  color: #dbb37a;
}
.service-grid h3 {
  font:
    500 22px Fraunces,
    serif;
  margin: 25px 0 9px;
}
.service-grid p {
  font-size: 14px;
  color: #c3cfca;
  margin: 0;
}
.outline {
  border-color: #a2b4ad;
  background: transparent;
  color: inherit;
}
.accommodation {
  background: var(--paper);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}
.section-heading > p {
  max-width: 365px;
  color: #53625f;
  margin: 0;
}
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature-card {
  background: #edf0e9;
  padding: 34px;
  min-height: 285px;
  display: flex;
  flex-direction: column;
}
.feature-card:nth-child(3n + 2) {
  background: #dfe7dc;
}
.feature-card:nth-child(3n) {
  background: #e9e4d9;
}
.card-icon {
  font:
    32px Fraunces,
    serif;
  color: #49645f;
}
.card-icon svg {
  display: block;
  width: 23px;
  height: 23px;
}
.feature-card h3 {
  font:
    500 27px Fraunces,
    serif;
  margin: 35px 0 7px;
}
.feature-card p {
  font-size: 14px;
  color: #566663;
  margin: 0;
}
.feature-card a {
  margin-top: auto;
  padding-top: 23px;
  text-decoration: none;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.feature-card a span {
  margin-left: 8px;
}
.standards {
  padding: 110px 0;
  background: #e0e8df;
}
.standards-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
}
.standards-quote p:not(.eyebrow) {
  max-width: 440px;
  color: #4e615b;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid #bfcfc0;
  border-top: 1px solid #bfcfc0;
}
.check-grid > div {
  min-height: 170px;
  padding: 26px;
  border-right: 1px solid #bfcfc0;
  border-bottom: 1px solid #bfcfc0;
}
.check-grid span {
  color: #6d8375;
  font-size: 12px;
}
.check-grid b {
  display: block;
  font:
    500 21px Fraunces,
    serif;
  margin: 16px 0 4px;
}
.check-grid p {
  font-size: 13px;
  color: #61716a;
  margin: 0;
}
.partners {
  background: var(--cream);
}
.partner-panel {
  background: #f1eadc;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  padding: 68px 72px;
}
.partner-panel aside {
  border-left: 1px solid #c9bca6;
  padding-left: 55px;
}
.partner-panel aside > p {
  font:
    500 25px/1.3 Fraunces,
    serif;
  margin: 0 0 26px;
}
.partner-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #53625e;
  font-size: 14px;
}
.partner-panel li {
  padding: 8px 0;
  border-top: 1px solid #d6cbb8;
}
.dark {
  background: var(--navy);
  color: white;
  margin-top: 14px;
}
.request {
  background: #fffdf9;
}
.request-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 96px;
}
.request-note {
  display: flex;
  gap: 13px;
  padding: 17px;
  background: #e6eee4;
  font-size: 13px;
  margin-top: 35px;
}
.request-note span {
  color: #56725e;
}
.request-note p {
  margin: 0;
}
.request form {
  background: #f0f3ed;
  padding: 31px;
}
.form-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccd5cc;
  padding-bottom: 18px;
  margin-bottom: 21px;
  font:
    500 21px Fraunces,
    serif;
}
.form-title small {
  font:
    11px DM Sans,
    sans-serif;
  color: #64736f;
  align-self: center;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #40534e;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #c8d2c8;
  background: #fffefb;
  padding: 12px;
  font:
    14px DM Sans,
    sans-serif;
  color: var(--ink);
  border-radius: 0;
}
textarea {
  resize: vertical;
  min-height: 93px;
}
.full {
  grid-column: 1/-1;
}
.consent {
  display: flex;
  gap: 9px;
  font-size: 11px;
  line-height: 1.4;
  margin: 18px 0;
}
.consent input {
  width: 15px;
  height: 15px;
  flex: none;
  margin: 0;
}
.submit {
  width: 100%;
}
.form-message {
  margin: 11px 0 0;
  font-size: 13px;
  color: #477253;
}
.contact {
  background: #24444b;
  color: white;
  padding: 67px 0;
}
.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.contact h2 {
  font-size: 44px;
}
.contact a:not(.button) {
  font:
    500 22px Fraunces,
    serif;
  color: #f2d6aa;
  text-decoration: none;
}
.contact a span {
  margin-left: 8px;
}
.contact p {
  font-size: 13px;
  color: #cad6d1;
  margin: 9px 0 0;
}
.contact .outline {
  color: white;
}
footer {
  background: #10272e;
  color: #9eaca5;
  font-size: 11px;
}
.footer-row {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  transform: scale(0.8);
  transform-origin: left;
}
.footer-link {
  color: #d5dfd8;
  text-decoration: none;
  font-weight: 700;
}
@media (max-width: 800px) {
  .wrap {
    padding: 0 20px;
  }
  .topline .wrap {
    justify-content: center;
  }
  .topline span {
    display: none;
  }
  .site-header {
    position: relative;
  }
  .nav-wrap {
    height: 69px;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .menu-button span {
    width: 25px;
    border-top: 2px solid var(--navy);
  }
  nav {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid #ddd;
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 12px 0;
  }
  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
  .nav-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 13px;
  }
  .nav-toggle .caret {
    display: none;
  }
  .nav-dropdown {
    display: flex !important;
    position: static;
    margin-top: 0;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 14px;
  }
  .nav-dropdown a {
    padding: 10px 0;
  }
  .hero {
    height: 610px;
  }
  .hero-image {
    background-position: 63% center;
  }
  .hero-content {
    padding-top: 85px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .section-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  .hero-footer {
    font-size: 11px;
  }
  .split-intro,
  .band-heading,
  .standards-grid,
  .partner-panel,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section {
    padding: 75px 0;
  }
  .split-intro .lead {
    font-size: 20px;
  }
  .service-band,
  .standards {
    padding: 75px 0;
  }
  .band-heading {
    margin-bottom: 38px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    margin: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #52676a;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .accommodation-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 210px;
  }
  .standards-grid {
    gap: 40px;
  }
  .partner-panel {
    padding: 40px 28px;
  }
  .partner-panel aside {
    border-left: 0;
    border-top: 1px solid #c9bca6;
    padding: 27px 0 0;
  }
  .request-grid {
    gap: 42px;
  }
  .request form {
    padding: 24px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }
  .footer-row {
    height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .footer-brand {
    margin-bottom: 8px;
  }
  .contact h2 {
    font-size: 39px;
  }
}
