:root {
  --color-ink: #14212b;
  --color-ink-soft: #3a4a56;
  --color-muted: #6b7a86;
  --color-paper: #f3f1ec;
  --color-paper-deep: #e4e0d6;
  --color-mist: #d7e4e8;
  --color-teal: #0f7c72;
  --color-teal-deep: #0a5a53;
  --color-brass: #b08a4a;
  --color-white: #ffffff;
  --color-border: rgba(20, 33, 43, 0.12);
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.5rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --radius: 0.35rem;
  --shadow-soft: 0 18px 40px rgba(20, 33, 43, 0.08);
  --max: 72rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(15, 124, 114, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(176, 138, 74, 0.12), transparent 50%),
    linear-gradient(180deg, var(--color-mist) 0%, var(--color-paper) 28%, var(--color-paper) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(20, 33, 43, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 33, 43, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
}

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

a {
  color: var(--color-teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-teal);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 var(--space-3);
}

p {
  margin: 0 0 var(--space-3);
}

ul {
  margin: 0 0 var(--space-3);
  padding-left: 1.2rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

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

.btn--accent:hover {
  background: var(--color-teal-deep);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-ink);
  color: var(--color-ink);
}

.btn--on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--color-white);
}

.btn--on-dark:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 241, 236, 0.86);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.site-header__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  text-decoration: none;
}

.site-header__toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--color-ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.site-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-3);
}

.site-nav__link {
  color: var(--color-ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--color-ink);
}

.site-nav__cta {
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: var(--color-white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 33, 43, 0.88) 0%, rgba(20, 33, 43, 0.55) 48%, rgba(20, 33, 43, 0.25) 100%),
    linear-gradient(180deg, rgba(20, 33, 43, 0.15) 0%, rgba(20, 33, 43, 0.72) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-7) 0 var(--space-6);
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  animation: rise-in 0.9s var(--ease) both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 var(--space-3);
}

.hero__lead {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin-bottom: var(--space-4);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* Sections */
.section {
  padding: var(--space-6) 0;
}

.section--tight {
  padding: var(--space-5) 0;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--space-2);
}

.section__title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  max-width: 18ch;
}

.section__lede {
  max-width: 38rem;
  color: var(--color-ink-soft);
  font-size: 1.1rem;
}

.section__head {
  margin-bottom: var(--space-5);
}

.split {
  display: grid;
  gap: var(--space-5);
  align-items: center;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-6);
  }
}

.split__visual {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.5);
}

.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: grid;
  gap: var(--space-3);
}

.feature-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--color-ink-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--color-brass);
  border-radius: 1px;
}

/* Service / blog listings — interaction containers */
.listing {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 760px) {
  .listing {
    grid-template-columns: repeat(2, 1fr);
  }
}

.listing-item {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) * 1.4);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

a.listing-item:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 124, 114, 0.35);
  box-shadow: var(--shadow-soft);
  color: inherit;
}

.listing-item__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.listing-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

a.listing-item:hover .listing-item__media img {
  transform: scale(1.04);
}

.listing-item__body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.listing-item__title {
  font-size: 1.25rem;
  margin: 0;
}

.listing-item__text {
  color: var(--color-ink-soft);
  margin: 0;
  flex: 1;
}

.listing-item__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Page hero (inner) */
.page-hero {
  padding: var(--space-6) 0 var(--space-5);
}

.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 16ch;
  animation: rise-in 0.7s var(--ease) both;
}

.page-hero__lede {
  max-width: 40rem;
  color: var(--color-ink-soft);
  font-size: 1.15rem;
  animation: rise-in 0.8s var(--ease) 0.08s both;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: var(--space-5);
  font-size: 1.55rem;
}

.prose h3 {
  margin-top: var(--space-4);
  font-size: 1.2rem;
}

.detail-hero {
  position: relative;
  min-height: 18rem;
  display: grid;
  align-items: end;
  color: var(--color-white);
  overflow: hidden;
}

.detail-hero__media,
.detail-hero__scrim {
  position: absolute;
  inset: 0;
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero__scrim {
  background: linear-gradient(180deg, rgba(20, 33, 43, 0.2), rgba(20, 33, 43, 0.82));
}

.detail-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-6) 0 var(--space-5);
}

.detail-hero__eyebrow {
  color: #9fd8d1;
}

.detail-hero__title {
  color: #fff;
}

.outcomes {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0;
  display: grid;
  gap: var(--space-2);
}

.outcomes li {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.6);
  border-left: 3px solid var(--color-teal);
}

.pricing-note {
  color: var(--color-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-3);
}

.faq {
  display: grid;
  gap: var(--space-3);
  max-width: 46rem;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-3);
}

.faq__item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}

.faq__item p {
  margin: 0;
  color: var(--color-ink-soft);
}

.contact-panel {
  display: grid;
  gap: var(--space-4);
  max-width: 36rem;
}

.contact-panel__row {
  display: grid;
  gap: 0.25rem;
}

.contact-panel__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.contact-panel__value {
  font-size: 1.1rem;
  margin: 0;
}

.cta-band {
  margin: var(--space-5) 0 var(--space-6);
  padding: var(--space-5);
  background: linear-gradient(135deg, var(--color-ink), #1d3a3a 60%, var(--color-teal-deep));
  color: var(--color-white);
  border-radius: calc(var(--radius) * 1.5);
  display: grid;
  gap: var(--space-3);
  animation: rise-in 0.8s var(--ease) both;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  max-width: 18ch;
}

.cta-band p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: var(--space-6);
  background: #101820;
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-6) 0 var(--space-5);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  color: #9fd8d1;
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto var(--space-5);
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 800px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 0 var(--space-2);
}

.site-footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-3);
}

.site-footer__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-2);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.site-footer__disclaimers {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: var(--space-3);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__disclaimers p {
  margin: 0;
}

.site-footer__copy {
  color: rgba(255, 255, 255, 0.45) !important;
  margin-top: var(--space-2) !important;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  padding: var(--space-3);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__panel {
  width: min(100%, 42rem);
  margin-left: auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) * 1.4);
  box-shadow: var(--shadow-soft);
  padding: var(--space-4);
  animation: rise-in 0.45s var(--ease) both;
}

.cookie-banner__title {
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
}

.cookie-banner__text {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

.cookie-banner__options {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.cookie-banner__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.5%, -1%, 0);
  }
}

@media (max-width: 860px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 0.35rem);
    left: 1rem;
    right: 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: calc(var(--radius) * 1.3);
    padding: var(--space-3);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    box-shadow: var(--shadow-soft);
  }

  .site-nav[data-open="false"] {
    display: none;
  }

  .site-nav[data-open="true"] {
    display: flex;
    animation: rise-in 0.3s var(--ease) both;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-nav__link {
    display: block;
    padding: 0.65rem 0.4rem;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero__content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
