:root {
  --ink: #1c1914;
  --navy: #1a2330;
  --navy-2: #243044;
  --paper: #f3efe6;
  --paper-2: #e8e2d4;
  --white: #fbf8f2;
  --muted: #5c564c;
  --line: #cfc6b4;
  --rust: #c4532a;
  --rust-2: #a83e1a;
  --sage: #3f5c52;
  --gold: #c9a46a;
  --shadow: 0 18px 40px rgba(26, 35, 48, 0.12);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rust);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--rust-2);
}

h1,
h2,
h3,
h4 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 0.4em;
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  margin: 0 0 0.55em;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  padding: 0.5rem 0.75rem;
}

.topbar {
  background: var(--navy);
  color: #c8c2b5;
  font-size: 0.88rem;
}

.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar a {
  color: #eee8dc;
  text-decoration: none;
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 58px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.02rem;
  color: var(--navy);
}

.brand-tag {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  background: var(--navy);
  color: #fff;
  border: 0;
  padding: 0.55rem 0.8rem;
  font: inherit;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 1.35rem;
  align-items: center;
}

.nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--rust);
}

.hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--navy) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 22, 28, 0.28) 0%,
    rgba(18, 22, 28, 0.72) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.25rem 3.2rem;
}

.kicker {
  display: inline-block;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero p {
  max-width: 40rem;
  font-size: 1.15rem;
  color: #efe8da;
}

.page-hero {
  min-height: 34vh;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.4rem 1.25rem;
}

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lede {
  font-size: 1.18rem;
  max-width: 46rem;
}

.prose {
  max-width: 44rem;
}

.prose p + p {
  margin-top: 1em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  text-decoration: none;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 0;
  cursor: pointer;
}

.btn:hover {
  background: var(--rust-2);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.card {
  background: var(--white);
  padding: 1.4rem 1.35rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-alt .card {
  background: var(--paper);
  box-shadow: none;
}

.card h3 {
  color: var(--navy);
}

.card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.service-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-lists h3 {
  color: var(--sage);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-family: "Source Sans 3", sans-serif;
}

.service-lists ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-lists li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
}

.cta-band {
  background: var(--navy) center / cover no-repeat;
  color: #fff;
  position: relative;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 28, 0.78);
}

.cta-band .wrap {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.media-frame {
  border: 1px solid var(--line);
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.contact-card {
  background: var(--navy);
  color: #ece6d8;
  padding: 1.6rem 1.5rem;
}

.contact-card h2,
.contact-card a {
  color: #fff;
}

.contact-card dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

.contact-card dd {
  margin: 0.2rem 0 0;
}

form {
  display: grid;
  gap: 0.85rem;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 9rem;
  resize: vertical;
}

.hp {
  position: absolute;
  left: -9999px;
}

.map {
  width: 100%;
  min-height: 280px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

.site-footer {
  background: #12161c;
  color: #b8b2a6;
  padding: 2.2rem 1.25rem 1.4rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer a {
  color: #eee8dc;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
}

.fine {
  max-width: var(--max);
  margin: 1.4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid #2a3038;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .grid-3,
  .grid-2,
  .service-lists,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open {
    display: flex;
  }

  .brand-text {
    display: none;
  }
}
