:root {
  --bg: #f4f6f2;
  --panel: #ffffff;
  --ink: #14201d;
  --muted: #5d6661;
  --line: rgba(20, 32, 29, 0.13);
  --accent: #b85f32;
  --accent-dark: #874323;
  --forest: #263f38;
  --moss: #6f7f62;
  --soft: #e7ece3;
  --shadow: 0 22px 70px rgba(20, 32, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(184, 95, 50, 0.55);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(244, 246, 242, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

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

.brand small {
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 11px;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: currentColor;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding-top: 112px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 22, 20, 0.84) 0%, rgba(14, 22, 20, 0.56) 46%, rgba(14, 22, 20, 0.08) 100%),
    linear-gradient(0deg, rgba(14, 22, 20, 0.68) 0%, rgba(14, 22, 20, 0) 46%);
}

.hero-content {
  position: relative;
  width: min(900px, calc(100% - 40px));
  margin: 0 clamp(20px, 6vw, 84px) clamp(54px, 9vh, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3b58e;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.5vw, 4.95rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-actions,
.contact-actions,
.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

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

.button-primary:hover {
  background: var(--accent-dark);
}

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

.button-outline {
  color: var(--ink);
  border-color: rgba(20, 32, 29, 0.25);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.section {
  padding: clamp(68px, 9vw, 120px) clamp(20px, 5vw, 70px);
}

.section-heading,
.intro-grid,
.split-section,
.about-panel,
.area-panel,
.contact-content,
.process-list,
.site-footer {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 36px;
  margin-bottom: 38px;
}

.section-heading .section-kicker {
  grid-column: 1;
}

.section-heading h2 {
  grid-column: 2;
}

.compact-heading {
  margin-bottom: 28px;
}

.section-intro {
  padding-bottom: clamp(42px, 6vw, 76px);
  background: var(--soft);
}

.intro-grid,
.split-section,
.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.intro-copy,
.feature-list,
.content-main p,
.content-main li {
  color: var(--muted);
  font-size: 1.06rem;
}

.metrics {
  margin-top: 26px;
}

.metrics span {
  padding: 10px 14px;
  color: var(--forest);
  border: 1px solid rgba(38, 63, 56, 0.28);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.service-card {
  min-height: 292px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

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

.service-number {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split-section {
  padding-inline: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list p {
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.audience-section,
.references-section,
.blog-index-section {
  background: #fff;
}

.audience-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.audience-grid article,
.contact-box,
.contact-details,
.contact-form,
.notice-box {
  background: #fff;
  border: 1px solid var(--line);
}

.audience-grid article {
  padding: 22px;
}

.audience-grid p,
.contact-box p,
.contact-details p,
.form-note {
  color: var(--muted);
}

.process-section {
  background: var(--forest);
  color: #fff;
}

.process-section .section-kicker {
  color: #f3b58e;
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
}

.process-list li {
  counter-increment: process;
  min-height: 220px;
  padding: 26px;
  background: var(--forest);
}

.process-list li::before {
  content: "0" counter(process);
  display: block;
  margin-bottom: 52px;
  color: #f3b58e;
  font-weight: 800;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

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

.area-panel {
  max-width: 960px;
}

.area-panel p {
  max-width: 780px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.1rem;
}

.about-section {
  background: var(--moss);
  color: #fff;
}

.about-section .section-kicker {
  color: #ffe0cb;
}

.about-panel p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.7vw, 1.25rem);
}

.reference-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.reference-tile {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #dfe5da;
}

.reference-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reference-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.02) 62%);
}

.reference-tile > div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
}

.reference-tile span,
.reference-tile strong {
  display: block;
}

.reference-tile span {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reference-placeholder {
  background:
    linear-gradient(135deg, rgba(111, 127, 98, 0.96), rgba(38, 63, 56, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 48px);
}

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

.blog-shortnotes,
.blog-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: #fff;
}

.blog-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe5da;
}

.blog-card-image img,
.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px;
}

.blog-card time,
.post-meta {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h3 a:hover {
  color: var(--accent-dark);
}

.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-link-row {
  width: min(1180px, 100%);
  margin: 24px auto 0;
}

.blog-hero-image {
  width: min(1180px, calc(100% - 40px));
  height: clamp(260px, 38vw, 520px);
  margin: 0 auto clamp(38px, 6vw, 72px);
  overflow: hidden;
}

.post-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-band {
  padding: clamp(66px, 8vw, 104px) clamp(20px, 5vw, 70px);
  background: var(--ink);
  color: #fff;
}

.contact-band .section-kicker {
  color: #f3b58e;
}

.contact-content p {
  max-width: 720px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-band .button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 70px) 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.subpage,
.legal-page {
  min-height: 100vh;
  padding-top: 92px;
}

.page-hero {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0 clamp(40px, 6vw, 70px);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.content-layout {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(72px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.content-main {
  padding-top: 6px;
}

.content-main h2 {
  margin: 42px 0 16px;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.content-main h2:first-child {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 10px;
  padding-left: 1.1rem;
}

.contact-box {
  position: sticky;
  top: 116px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.contact-box .button {
  width: 100%;
  margin: 8px 0 12px;
}

.contact-box .text-link {
  display: flex;
}

.contact-page-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(72px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
}

.contact-details,
.contact-form {
  padding: clamp(24px, 4vw, 34px);
}

.contact-details a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

.legal-page {
  padding-inline: clamp(20px, 5vw, 70px);
  padding-bottom: 70px;
}

.legal-content {
  width: min(880px, 100%);
  margin: 0 auto;
  padding-top: clamp(48px, 8vw, 86px);
}

.legal-content h1 {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
}

.legal-content p {
  max-width: 680px;
  color: var(--muted);
}

.legal-content a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.notice-box {
  padding: 24px;
}

.booking-placeholder {
  display: grid;
  gap: 12px;
  min-height: 340px;
  place-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px dashed rgba(20, 32, 29, 0.28);
  background: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.booking-placeholder p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

.notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1060px) {
  .service-grid-four,
  .audience-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    color: var(--ink);
    background: rgba(244, 246, 242, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 22, 20, 0.82), rgba(14, 22, 20, 0.3)),
      linear-gradient(0deg, rgba(14, 22, 20, 0.78), rgba(14, 22, 20, 0) 56%);
  }

}

@media (max-width: 900px) {
  .section-heading,
  .intro-grid,
  .split-section,
  .about-panel,
  .content-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .section-heading .section-kicker,
  .section-heading h2 {
    grid-column: auto;
  }

  .service-grid,
  .reference-grid,
  .blog-shortnotes,
  .blog-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 220px;
  }

  .service-number,
  .process-list li::before {
    margin-bottom: 34px;
  }

  .reference-tile {
    min-height: 320px;
  }

  .contact-box {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
  }

  .hero-actions .button,
  .contact-actions .button,
  .page-hero .button {
    width: 100%;
  }

  .service-grid-four,
  .audience-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 190px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 92px;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 30;
    left: 16px;
    right: 16px;
    bottom: 14px;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--accent);
    box-shadow: 0 12px 36px rgba(20, 32, 29, 0.25);
    font-weight: 800;
  }
}
