:root {
  --ink: #101916;
  --muted: #56645f;
  --green: #07543f;
  --green-2: #0e6f53;
  --mint: #e8f4ee;
  --gold: #b8891f;
  --gold-soft: #f4e7c5;
  --coral: #b8624e;
  --blue: #234f7d;
  --teal: #14736f;
  --slate: #2e3e4b;
  --paper: #fbfaf4;
  --white: #ffffff;
  --line: #dbe4dd;
  --shadow: 0 24px 70px rgba(7, 84, 63, 0.15);
  --heading-font: "Aptos Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --body-font: Inter, "Aptos", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  font-family: var(--body-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 14px 38px rgba(20, 32, 28, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: var(--gold);
  color: #182018;
  font-weight: 800;
}

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

.brand strong {
  font-size: 1.08rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.76;
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  font-weight: 780;
  font-size: 0.91rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  touch-action: manipulation;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 43, 33, 0.95) 0%, rgba(6, 43, 33, 0.76) 44%, rgba(6, 43, 33, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 43, 33, 0.84) 0%, rgba(6, 43, 33, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 170px 0 58px;
  color: var(--white);
}

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

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

h1,
h2,
h3 {
  font-family: var(--heading-font);
  color: inherit;
  font-weight: 850;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7.2vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.55vw, 3.85rem);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  text-align: center;
}

.button.primary {
  background: var(--gold);
  color: #151a13;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin: 34px 0 0;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-stats div {
  padding: 18px;
  background: rgba(10, 39, 32, 0.58);
}

.hero-stats dt {
  font-size: 1.7rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-strip div {
  padding: 28px clamp(20px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

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

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 128px) 0;
  scroll-margin-top: 96px;
}

.intro-grid,
.section-heading,
.split,
.trust,
.consultation,
.band-content {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.intro-grid p,
.section-heading p,
.split p,
.consultation-copy p,
.band p {
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.service-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(20, 32, 28, 0.04);
}

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

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 7px;
  color: var(--white);
  font-weight: 900;
}

.accent-green .card-icon { background: var(--green); }
.accent-blue .card-icon { background: var(--blue); }
.accent-gold .card-icon { background: var(--gold); color: #1e241b; }
.accent-coral .card-icon { background: var(--coral); }
.accent-slate .card-icon { background: var(--slate); }
.accent-teal .card-icon { background: var(--teal); }

.expanded-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.service-group {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #fdfbf5);
  box-shadow: 0 8px 22px rgba(20, 32, 28, 0.04);
}

.service-group:last-child {
  grid-column: 1 / -1;
}

.group-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 5px 10px;
  border: 1px solid rgba(184, 137, 31, 0.28);
  border-radius: 999px;
  background: var(--gold-soft);
  color: #65470b;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.service-group ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-group li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.service-group li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-2);
}

.service-group strong {
  color: var(--ink);
}

.band {
  background: #0b2921;
  color: var(--white);
}

.band-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 118px) 0;
  align-items: center;
}

.band p {
  color: rgba(255, 255, 255, 0.74);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.steps strong {
  color: var(--gold);
}

.steps span {
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.check-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.check-panel div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}

.check-panel span {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px var(--mint);
}

.check-panel p {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.quote-block {
  padding-right: clamp(0px, 4vw, 36px);
}

blockquote {
  margin: 0 0 20px;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  line-height: 1.12;
  font-weight: 850;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.trust-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-grid div {
  padding: 24px;
  background: var(--white);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  margin-top: 5px;
  color: var(--muted);
}

.team {
  border-top: 1px solid var(--line);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.team-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(20, 32, 28, 0.04);
}

.team-initials {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  background: var(--green);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 900;
}

.team-card h3 {
  margin-bottom: 6px;
}

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

.team-role {
  margin-bottom: 14px;
  color: var(--green) !important;
  font-weight: 850;
}

.compact {
  grid-template-columns: 1fr;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  padding: 20px 24px;
  font-weight: 870;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.consultation {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(54px, 8vw, 90px);
  padding: clamp(34px, 5vw, 56px);
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow);
}

.consultation-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 760;
}

.contact-list a {
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 820;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfd9d3;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 42px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

.legal {
  grid-column: 1 / -1;
  font-size: 0.85rem;
}

@media (min-width: 980px) {
  .hero-content {
    width: min(1180px, calc(100% - 80px));
  }
}

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
    justify-content: space-between;
  }

  .nav-cta {
    border-color: var(--line);
  }

  .service-strip,
  .intro-grid,
  .section-heading,
  .split,
  .trust,
  .consultation,
  .band-content,
  .team-grid,
  .expanded-services,
  .card-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-strip div:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: min(860px, 1000px);
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 35, 28, 0.92) 0%, rgba(7, 35, 28, 0.68) 70%, rgba(7, 35, 28, 0.48) 100%),
      linear-gradient(0deg, rgba(7, 35, 28, 0.84) 0%, rgba(7, 35, 28, 0) 50%);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero-content,
  .section,
  .band-content,
  .consultation {
    width: calc(100% - 32px);
  }

  .hero-content {
    padding-top: 128px;
    padding-bottom: 34px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-card {
    min-height: auto;
  }

  .consultation {
    padding: 26px 18px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.05rem);
    line-height: 0.98;
  }

  h2 {
    line-height: 1.05;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 12px;
    padding: 12px 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

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

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero-content,
  .section,
  .band-content,
  .consultation {
    width: calc(100% - 28px);
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .hero-stats div,
  .service-card,
  .service-group,
  .team-card,
  .trust-grid div,
  .check-panel,
  .contact-form {
    padding: 18px;
  }

  .card-icon {
    margin-bottom: 26px;
  }

  .service-group:last-child {
    grid-column: auto;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-initials {
    width: 64px;
    height: 64px;
  }

  summary {
    padding: 17px 18px;
  }

  details p {
    padding: 0 18px 18px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 340px) {
  .hero-content,
  .section,
  .band-content,
  .consultation {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-copy,
  .intro-grid p,
  .section-heading p,
  .split p,
  .consultation-copy p,
  .band p {
    font-size: 0.96rem;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  .hero-content,
  .section,
  .band-content,
  .consultation {
    width: min(1240px, calc(100% - 112px));
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 118px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .hero-image,
  .hero-overlay,
  .nav-toggle,
  .button,
  .contact-form {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero,
  .band,
  .consultation {
    min-height: 0;
    color: #000;
    background: #fff;
    box-shadow: none;
  }

  .hero-content,
  .section,
  .band-content,
  .consultation,
  .site-footer {
    width: 100%;
    padding: 20px 0;
    margin: 0;
  }
}
