:root {
  --bg: #f5f1ea;
  --paper: #fffdf8;
  --paper-2: #f1ebe2;
  --ink: #1e2430;
  --muted: #5d6575;
  --line: #d8d0c4;
  --line-strong: #b8ae9c;
  --accent: #233a5a;
  --accent-soft: #dbe4f0;
  --sand: #e8ddcf;
  --terracotta: #b96f4a;
  --shadow: 0 18px 50px rgba(23, 32, 52, .08);
  --radius: 28px;
  --shell: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 20%),
    radial-gradient(circle at top left, rgba(35, 58, 90, .08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(185, 111, 74, .07), transparent 22%),
    var(--bg);
  line-height: 1.68;
}

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

img {
  display: block;
  max-width: 100%;
  border-radius: 24px;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.topline {
  border-bottom: 1px solid rgba(30, 36, 48, .08);
  background: rgba(255, 253, 248, .8);
}

.topline-inner {
  min-height: 42px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: .79rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(245, 241, 234, .86);
  border-bottom: 1px solid rgba(30, 36, 48, .08);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand-mark {
  display: grid;
  gap: 4px;
  max-width: 340px;
}

.brand-kicker {
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
}

.brand-mark strong {
  font-family: 'Manrope', sans-serif;
  font-size: 1.06rem;
  letter-spacing: -.02em;
}

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

.nav a:not(.btn) {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--muted);
  transition: .2s ease;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(35, 58, 90, .08);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px 13px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .2s ease;
}

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

.btn-dark {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(35, 58, 90, .18);
}

.btn-line {
  border-color: var(--line-strong);
  background: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--terracotta);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.02;
  letter-spacing: -.04em;
}

h1 {
  font-size: 39px; 
  margin: 16px 0 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 18px;
  max-width: 14ch;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  margin-bottom: 12px;
}

p,
li,
span {
  color: var(--muted);
}

.lead {
  font-size: 1.08rem;
  max-width: 60ch;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(232, 221, 207, .3));
  border-top: 1px solid rgba(30, 36, 48, .06);
  border-bottom: 1px solid rgba(30, 36, 48, .06);
}

.section-contrast {
  background: linear-gradient(180deg, rgba(35, 58, 90, .98), rgba(30, 43, 67, .98));
}

.section-contrast h2,
.section-contrast h3,
.section-contrast strong,
.section-contrast .eyebrow {
  color: #fff;
}

.section-contrast p,
.section-contrast span {
  color: rgba(255, 255, 255, .74);
}

.hero {
  padding: 48px 0 38px;
}

.hero-grid,
.page-hero-grid,
.contact-grid,
.two-up,
.about-layout,
.editorial-grid,
.statement-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
}

.hero-copy {
  padding: 46px 0;
}

.hero-aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero-aside img {
  height: 470px;
  width: 100%;
  object-fit: cover;
}

.info-slab {
  margin-top: 14px;
  padding: 22px;
  border-radius: 24px;
  background: var(--paper-2);
  display: grid;
  gap: 10px;
}

.info-slab a {
  font-weight: 700;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.slab-title {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  color: var(--terracotta);
  font-weight: 800;
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-row div,
.statement-card,
.mosaic-card,
.tile,
.service-panel,
.page-note,
.fact-stack article,
.value-card,
.contact-box,
.contact-form-panel,
.legal-block,
.cta-ribbon {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.trust-row div {
  padding: 18px;
}

.trust-row strong,
.mini-metrics strong,
.fact-stack strong,
.tile strong {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.statement-grid {
  grid-template-columns: 1.2fr .8fr;
  align-items: stretch;
}

.statement-card {
  padding: 32px;
}

.statement-card.tall {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .04));
  border-color: rgba(255, 255, 255, .12);
}

.statement-stack {
  display: grid;
  gap: 18px;
}

.statement-card.small strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 6px;
}

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

.section-contrast .statement-card.small {
  background: var(--paper);
  border-color: var(--line);
}

.section-contrast .statement-card.small strong {
  color: var(--ink);
}

.section-contrast .statement-card.small p {
  color: var(--muted);
}

.section-contrast .statement-card.tall .eyebrow::before {
  background: rgba(255, 255, 255, .75);
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  gap: 18px;
}

.mosaic-card {
  padding: 28px;
  min-height: 210px;
}

.image-card {
  padding: 12px;
  grid-row: span 2;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.text-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.accent-a {
  background: linear-gradient(180deg, var(--sand), #f3ebe1);
}

.accent-b {
  background: linear-gradient(180deg, var(--accent-soft), #eef3f8);
}

.wide {
  grid-column: span 2;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.process-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.process-list span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
}

.cta-ribbon {
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #f2ece3);
}

.cta-details {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 36px 0 10px;
}

.page-hero-grid {
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
}

.page-note {
  padding: 24px;
  background: linear-gradient(180deg, #fff, #f3eee7);
}

.service-columns {
  display: grid;
  gap: 22px;
}

.service-panel {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  padding: 16px;
}

.service-panel.reverse {
  grid-template-columns: 1fr 380px;
}

.service-panel.reverse img {
  order: 2;
}

.service-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin-top: 18px;
  list-style: none;
}

.two-up {
  grid-template-columns: .95fr 1.05fr;
  align-items: start;
}

.tile-block {
  padding-right: 20px;
}

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

.tile {
  padding: 24px;
}

.about-layout {
  grid-template-columns: 1.1fr .9fr;
}

.about-main {
  padding-right: 22px;
}

.fact-stack {
  display: grid;
  gap: 14px;
}

.fact-stack article {
  padding: 24px;
  display: grid;
  gap: 8px;
}

.fact-stack span,
.foot-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  color: var(--terracotta);
  font-weight: 800;
}

.editorial-grid {
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}

.editorial-copy,
.editorial-image {
  min-height: 420px;
}

.editorial-copy {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  padding: 28px;
}

.contact-grid {
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-box {
  padding: 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.contact-box.full {
  grid-column: 1 / -1;
  min-height: auto;
}

.contact-link {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  line-height: 1.02;
  color: var(--ink);
  overflow-wrap: anywhere;
  margin: 16px 0;
}

.contact-form-panel {
  padding: 32px;
}

.form-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  color: var(--terracotta);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.legal-stack {
  display: grid;
  gap: 16px;
}

.legal-block {
  padding: 28px;
}

.legal-block h2 {
  font-size: 1.6rem;
  max-width: none;
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(30, 36, 48, .08);
  padding: 34px 0 28px;
  background: rgba(255, 253, 248, .76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr .8fr;
  gap: 20px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.foot-copy {
  max-width: 34ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(30, 36, 48, .08);
  padding-top: 18px;
  margin-top: 24px;
}

#cc-popup {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 820px;
  margin: auto;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 253, 248, .98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

#cc-popup p {
  flex: 1;
}

#cc-popup.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {

  .hero-grid,
  .statement-grid,
  .process-layout,
  .page-hero-grid,
  .two-up,
  .about-layout,
  .editorial-grid,
  .contact-grid,
  .service-panel,
  .service-panel.reverse,
  .cta-ribbon {
    grid-template-columns: 1fr;
  }

  .service-panel.reverse img {
    order: 0;
  }

  .mosaic-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info,
  .tile-grid,
  .trust-row,
  .mini-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 253, 248, .98);
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

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

  .brand-mark {
    max-width: 220px;
  }

  h1 {
    max-width: none;
  }

  h2 {
    max-width: none;
  }

  .section {
    padding: 70px 0;
  }

  .mosaic-grid,
  .values-grid,
  .footer-grid,
  .contact-info,
  .tile-grid,
  .trust-row,
  .mini-metrics,
  .form-split,
  .service-panel ul {
    grid-template-columns: 1fr;
  }

  .wide,
  .image-card {
    grid-column: auto;
    grid-row: auto;
  }

  .image-card img,
  .hero-aside img,
  .editorial-image img {
    min-height: 280px;
  }

  #cc-popup {
    flex-direction: column;
    align-items: stretch;
  }
}