:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #52625e;
  --green: #17483f;
  --green-2: #2f6f63;
  --gold: #b88a32;
  --red: #a64226;
  --cream: #f6f1e7;
  --soft: #edf5f1;
  --line: #dce6df;
  --white: #fff;
  --shadow: 0 18px 48px rgba(20, 33, 31, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.2;
}

.brand strong {
  font-size: 1.08rem;
}

.brand span {
  color: var(--muted);
  font-size: .86rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink);
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
}

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

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 36, 33, .95), rgba(18, 36, 33, .7), rgba(18, 36, 33, .25)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Peicoast.jpg");
  background-size: cover;
  background-position: center;
}

.hero.small {
  min-height: 430px;
}

.hero-copy {
  max-width: 780px;
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f1d391;
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.55rem, 6vw, 5.1rem);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.hero p {
  max-width: 690px;
  color: #edf5f1;
  font-size: 1.18rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  text-decoration: none;
}

.button.alt {
  background: var(--white);
  color: var(--green);
}

.section {
  padding: 74px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--green);
  color: var(--white);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.section.dark p,
.section.dark li {
  color: #e8f2ef;
}

.section.dark .card h3 {
  color: var(--ink);
}

.section.dark .card p,
.section.dark .card li {
  color: var(--muted);
}

.heading {
  max-width: 830px;
  margin-bottom: 30px;
}

.heading p,
.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.section.dark .heading p {
  color: #e8f2ef;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.card p,
.card li {
  color: var(--muted);
}

.photo-card {
  padding: 0;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.photo-card div {
  padding: 24px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.feature-img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check {
  padding-left: 1.25rem;
}

.check li {
  margin: 10px 0;
}

.table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.row:last-child {
  border-bottom: 0;
}

.row strong {
  color: var(--green);
}

.row span {
  color: var(--muted);
}

.callout {
  background: var(--cream);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 26px;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0;
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  color: var(--green);
  font-weight: 800;
}

.footer {
  background: #102622;
  color: #dce8e3;
  padding: 34px 0;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: #f1d391;
}

.credit {
  font-size: .82rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .hero {
    min-height: 540px;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .split,
  .row {
    grid-template-columns: 1fr;
  }
}
