:root {
  --ink: #18211f;
  --muted: #5d6865;
  --paper: #f7f6f1;
  --panel: #ffffff;
  --line: #d9ddd6;
  --forest: #163f35;
  --fjord: #2f6170;
  --copper: #a85f3d;
  --gold: #c5a45d;
  --shadow: 0 24px 60px rgba(24, 33, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(247, 246, 241, 0.9);
  border-bottom: 1px solid rgba(217, 221, 214, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 1.06rem;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #101a18;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 25, 22, 0.9) 0%, rgba(12, 25, 22, 0.73) 43%, rgba(12, 25, 22, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 25, 22, 0.78) 0%, rgba(12, 25, 22, 0) 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(70px, 12vh, 132px) clamp(20px, 7vw, 96px);
  color: #fff;
}

.hero-logo {
  width: clamp(104px, 12vw, 158px);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e1bc72;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 12vw, 9.2rem);
  line-height: 0.92;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.38;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--forest);
}

.hero .button.primary {
  background: #f2f0e8;
  color: var(--forest);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band > div {
  padding: clamp(24px, 4vw, 42px);
  background: #fbfaf5;
}

.metric {
  display: block;
  margin-bottom: 10px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
}

.intro-band p,
.principles p,
.trust-grid p,
.contact-copy p,
.site-footer {
  color: var(--muted);
}

.content-section,
.trust-band,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 6vw, 80px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.two-column,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.large-text {
  color: var(--forest);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.42;
}

.principles {
  display: grid;
  gap: 14px;
}

.principles article,
.trust-grid article,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 33, 31, 0.06);
}

.principles article {
  padding: 24px;
}

.trust-band {
  background: #ecf1ef;
  border-block: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-grid article {
  padding: clamp(24px, 3vw, 34px);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--forest);
  border: 1px solid rgba(22, 63, 53, 0.28);
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.contact-copy {
  position: sticky;
  top: 112px;
}

address {
  margin-top: 30px;
  font-style: normal;
}

address a {
  color: var(--fjord);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 0.93rem;
  font-weight: 740;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c9d0c8;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--fjord);
  outline: 3px solid rgba(47, 97, 112, 0.16);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(12, 25, 22, 0.92) 0%, rgba(12, 25, 22, 0.58) 62%, rgba(12, 25, 22, 0.28) 100%);
  }

  .hero-content {
    margin: 0 20px 64px;
  }

  .intro-band,
  .two-column,
  .trust-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 520px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: 650px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
