:root {
  --ink: #17201d;
  --muted: #5f6d67;
  --paper: #fbfaf7;
  --mist: #eef7f4;
  --teal: #14766f;
  --teal-dark: #0e514d;
  --coral: #c96f53;
  --gold: #d8a84f;
  --line: #d8e3df;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 227, 223, 0.8);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--mist);
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-band {
  padding: clamp(32px, 5vw, 56px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 80px);
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 118, 111, 0.05), rgba(23, 32, 29, 0.2));
}

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

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.site-footer,
.trust-strip,
.contact-list a {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.trust-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(320px, 1.4fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.portrait-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.portrait-panel div {
  padding: 18px;
}

.portrait-panel strong,
.portrait-panel span {
  display: block;
}

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

.section-copy {
  max-width: 780px;
}

.section-copy p,
.gallery-copy p,
.service-card p,
.article-grid p,
.timeline-item p,
.form-note {
  color: var(--muted);
}

.section-tinted {
  background: var(--mist);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.service-grid,
.article-grid,
.info-layout {
  display: grid;
  gap: 16px;
}

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

.service-card,
.checklist,
.article-grid article,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 240px;
  padding: 24px;
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f7e8df;
  color: var(--coral);
  font-size: 22px;
  font-weight: 800;
}

.timeline-section {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline-item {
  min-height: 190px;
  padding: 22px;
  border-top: 4px solid var(--gold);
  background: var(--white);
  border-radius: 0 0 8px 8px;
}

.timeline-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-weight: 800;
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.info-layout {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 22px;
}

.checklist {
  padding: 24px;
}

.checklist.accent {
  border-color: #efcfbd;
  background: #fff8f4;
}

.checklist ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

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

.article-grid article {
  min-height: 190px;
  padding: 22px;
}

.article-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-list a {
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.contact-list span {
  color: var(--muted);
  text-align: right;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(20, 118, 111, 0.18);
  border-color: var(--teal);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .gallery-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

  .quick-facts,
  .service-grid,
  .timeline,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    inset: 74px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .brand small {
    max-width: 190px;
  }

  .hero-media,
  .hero-media img {
    min-height: 340px;
  }

  .quick-facts,
  .service-grid,
  .timeline,
  .gallery,
  .info-layout,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .contact-list a {
    display: block;
  }

  .contact-list span {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 12px;
  }
}
