:root {
  --ink: #17120f;
  --ink-soft: #3e3630;
  --canvas: #f1e7d5;
  --paper: #f5efe2;
  --paper-2: #ebe2d1;
  --cream: #fffaf0;
  --gold: #b88a4b;
  --gold-2: #d9b676;
  --brown: #3b2114;
  --brown-2: #6f3c25;
  --moss: #5f604e;
  --status-caution: #9f3f36;
  --line: rgba(62, 54, 48, 0.16);
  --shadow: 0 28px 70px rgba(32, 22, 13, 0.18);
  --serif: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: var(--serif);
  --font-body: var(--sans);
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --text-xs: 11px;
  --text-sm: 12px;
  --text-meta: 13px;
  --text-body-sm: 14px;
  --text-body: 16px;
  --text-body-lg: 17px;
  --text-lead: 18px;
  --heading-display: clamp(38px, 4.3vw, 54px);
  --heading-page: clamp(38px, 4.6vw, 54px);
  --heading-section: clamp(32px, 3.3vw, 44px);
  --heading-section-lg: clamp(34px, 5vw, 48px);
  --heading-card-lg: 34px;
  --heading-card: 26px;
  --heading-card-sm: 25px;
  --heading-item: 20px;
  --heading-panel: 28px;
  --line-tight: 1.14;
  --line-heading: 1.18;
  --line-body: 1.7;
  --line-copy: 1.55;
  --line-compact: 1.45;
  --section-space-standard: 52px;
  --section-space-standard-tablet: 48px;
  --section-space-standard-mobile: 42px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 40px;
  --space-10: 52px;
  --text-muted: rgba(23, 18, 15, 0.62);
  --text-muted-strong: rgba(23, 18, 15, 0.74);
  --text-on-dark-muted: rgba(255, 250, 240, 0.72);
  --text-on-dark-strong: rgba(255, 250, 240, 0.86);
  --surface-soft: rgba(255, 250, 240, 0.45);
  --surface-card: #fff;
  --radius-card: 6px;
  --border-light: rgba(23, 18, 15, 0.12);
  --border-default: rgba(62, 54, 48, 0.16);
  --home-section-width: min(900px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-regular);
  line-height: var(--line-body);
}

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

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 29;
  height: 72px;
  background: rgba(15, 11, 9, 0.94);
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

body.has-sticky-header::before {
  opacity: 1;
  transform: translateY(0);
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(23, 18, 15, 0.72);
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 224px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 182, 118, 0.72);
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-family: var(--font-heading);
  font-size: var(--heading-card-sm);
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: var(--text-lead);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.brand-copy span {
  color: rgba(255, 250, 240, 0.68);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 15px;
  color: rgba(255, 250, 240, 0.78);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  white-space: nowrap;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.nav-cta {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--gold);
  color: #21150f;
  font-size: var(--text-meta);
  font-weight: var(--weight-bold);
}

.menu-button {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: rgba(7, 7, 6, 0.12);
  color: var(--cream);
  place-items: center;
  position: relative;
  cursor: pointer;
  z-index: 32;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.menu-button:hover {
  transform: translateY(-1px);
  background: rgba(7, 7, 6, 0.28);
  border-color: rgba(255, 250, 240, 0.46);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-button::before {
  transform: translateY(-6px);
}

.menu-button::after {
  transform: translateY(6px);
}

body.menu-open .menu-button span {
  opacity: 0;
}

body.menu-open .menu-button::before {
  transform: rotate(45deg);
}

body.menu-open .menu-button::after {
  transform: rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  justify-items: center;
  align-items: start;
  overflow: hidden;
  padding: 74px 24px 20px;
  background: #0f0b09;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}

body.menu-open .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
}

.menu-panel nav {
  width: min(720px, 100%);
  display: grid;
  gap: 5px;
  padding: 12px;
  background: #0f0b09;
  border: 1px solid rgba(255, 250, 240, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 16px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--weight-regular);
  background: #17120f;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.04);
  transform: translateY(10px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-panel a::after {
  content: "→";
  color: var(--gold-2);
  font-weight: var(--weight-regular);
}

body.menu-open .menu-panel a {
  transform: translateY(0);
  opacity: 1;
}

.menu-panel a:hover {
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(217, 182, 118, 0.42);
}

@media (min-width: 641px) and (max-height: 680px) {
  .menu-panel {
    padding-top: 62px;
    padding-bottom: 14px;
  }

  .menu-panel nav {
    gap: 4px;
    padding: 10px;
  }

  .menu-panel a {
    min-height: 38px;
    font-size: 20px;
  }
}

.menu-panel a[aria-current="page"] {
  color: var(--gold-2);
}

.hero-showcase {
  padding: 0;
  background: var(--canvas);
  color: var(--cream);
}

.hero-topline {
  width: min(900px, calc(100% - 64px));
  min-height: 32px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  color: rgba(23, 18, 15, 0.74);
  font-size: var(--text-sm);
  line-height: 1.25;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-topline-contact {
  display: inline-flex;
  align-items: center;
  gap: 34px;
}

.hero-topline a {
  color: #17120f;
  font-weight: var(--weight-bold);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero-panel {
  position: relative;
  width: min(1280px, calc(100% - 60px));
  min-height: 632px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 92px 40px 154px;
  background:
    linear-gradient(rgba(30, 15, 7, 0.72), rgba(30, 15, 7, 0.72)),
    url("../images/hero-background.jpg") center / cover no-repeat;
  background:
    linear-gradient(rgba(30, 15, 7, 0.72), rgba(30, 15, 7, 0.72)),
    image-set(
      url("../images/hero-background.webp") type("image/webp"),
      url("../images/hero-background.jpg") type("image/jpeg")
    ) center / cover no-repeat;
}

.hero-panel .menu-button {
  position: absolute;
  top: 52px;
  right: max(28px, calc((100% - 900px) / 2));
  border: 0;
  color: var(--cream);
  transition: background 0.28s ease, transform 0.18s ease, border-color 0.18s ease;
}

body.has-sticky-header .hero-panel .menu-button {
  position: fixed;
  top: 13px;
  right: max(32px, calc((100% - 900px) / 2));
  z-index: 32;
  background: rgba(255, 250, 240, 0.08);
}

.sticky-contact {
  position: fixed;
  top: 36px;
  right: max(106px, calc((100% - 900px) / 2 + 74px));
  z-index: 31;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 250, 240, 0.72);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% - 12px));
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.sticky-contact a {
  color: var(--cream);
  font-weight: var(--weight-bold);
  white-space: nowrap;
}

body.has-sticky-header .sticky-contact {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}

.hero-brand {
  position: absolute;
  top: 52px;
  left: max(28px, calc((100% - 900px) / 2));
  height: 46px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  color: var(--cream);
}

.hero-brand-mark {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--cream);
}

.hero-brand-divider {
  flex-shrink: 0;
  align-self: center;
  width: 1px;
  height: 30px;
  background: rgba(255, 250, 240, 0.32);
}

.hero-brand-text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.hero-brand-name {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.015em;
  color: var(--cream);
  white-space: nowrap;
}

.hero-brand-tag {
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.6);
  white-space: nowrap;
}

body.has-sticky-header .hero-brand {
  position: fixed;
  top: 13px;
  left: max(32px, calc((100% - 900px) / 2));
  z-index: 31;
}

.hero-brand-logo {
  left: calc(max(28px, calc((100% - 900px) / 2)) - 15px);
  height: auto;
  width: clamp(176px, 18vw, 230px);
  min-height: 46px;
}

.hero-brand-logo img {
  width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

body.has-sticky-header .hero-brand-logo {
  left: calc(max(32px, calc((100% - 900px) / 2)) - 15px);
}

.hero-content {
  width: min(780px, 100%);
  min-width: 0;
  transform: translateY(28px);
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  max-width: none;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: var(--heading-display);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.mobile-title-break {
  display: none;
}

.hero-content p {
  width: min(650px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 250, 240, 0.94);
  font-size: var(--text-lead);
  line-height: var(--line-copy);
}

.hero-content .hero-actions {
  justify-content: center;
  margin-top: 42px;
  gap: 20px;
}

.hero-content .button {
  min-width: 162px;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 6px;
  box-shadow: none;
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
}

.hero-content .button.primary {
  background: linear-gradient(135deg, #e6c67d, var(--gold-2) 48%, var(--gold));
  color: #21150f;
  border-color: rgba(255, 250, 240, 0.58);
  box-shadow:
    0 18px 36px rgba(184, 138, 75, 0.34),
    0 0 0 1px rgba(255, 250, 240, 0.22);
}

.hero-content .button.secondary {
  background: #070706;
  color: #fff;
  border-color: #070706;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: inline-grid;
  justify-items: center;
  gap: 9px;
  color: rgba(255, 250, 240, 0.74);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: color 0.2s ease;
}

.hero-scroll-cue:hover {
  color: var(--cream);
}

.hero-scroll-arrow {
  position: relative;
  width: 18px;
  height: 18px;
  animation: hero-scroll-bounce 1.45s ease-in-out infinite;
}

.hero-scroll-arrow::before,
.hero-scroll-arrow::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 2px;
  height: 13px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: bottom center;
}

.hero-scroll-arrow::before {
  left: 8px;
  transform: rotate(45deg);
}

.hero-scroll-arrow::after {
  right: 8px;
  transform: rotate(-45deg);
}

@keyframes hero-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

.offer-card {
  position: relative;
  z-index: 3;
  width: min(900px, calc(100% - 64px));
  margin: -78px auto 0;
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 78px;
  padding: 34px 40px 40px;
  background: #fff;
  color: #080706;
  border-radius: 6px;
  box-shadow: 0 28px 58px rgba(36, 22, 10, 0.14);
}

.offer-card h2 {
  font-family: var(--font-heading);
  font-size: var(--heading-card-lg);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.offer-card p {
  margin-top: 14px;
  color: #16120e;
  line-height: var(--line-compact);
}

.offer-card .button.dark {
  margin-top: 28px;
  min-width: 162px;
  min-height: 54px;
  border-radius: 6px;
  background: #070706;
  color: #fff;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.offer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 70px;
  align-content: center;
  font-size: var(--text-body);
}

.offer-link-column {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 190px;
}

.offer-link-column:first-child {
  padding-left: 54px;
}

.offer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding-bottom: 4px;
  color: #080706;
  font-weight: var(--weight-medium);
  white-space: nowrap;
  overflow: hidden;
}

.offer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(8, 7, 6, 0.72);
  opacity: 1;
  transform: translateX(0) scaleX(1);
  transform-origin: left center;
}

@keyframes offer-underline-sweep {
  0% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }

  49.4% {
    opacity: 1;
    transform: translateX(105%) scaleX(0);
  }

  49.5% {
    opacity: 1;
    transform: translateX(-3%) scaleX(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

@media (min-width: 641px) {
  .offer-links a:hover::after,
  .offer-links a:focus-visible::after {
    animation: offer-underline-sweep 0.62s cubic-bezier(0.65, 0, 0.25, 1);
  }
}

.offer-drag {
  display: none;
}

.home-services {
  padding: var(--section-space-standard) 0 0;
  background: var(--canvas);
  color: var(--ink);
}

.home-advice-entry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-8);
  padding: var(--space-8);
  border: 1px solid rgba(184, 138, 75, 0.28);
  border-radius: var(--radius-card);
  background: #17120f;
  color: var(--cream);
}

.home-advice-entry-panel h2 {
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: var(--heading-card-lg);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.home-advice-entry-panel p {
  max-width: 690px;
  margin-top: var(--space-4);
  color: rgba(255, 250, 240, 0.76);
  line-height: var(--line-copy);
}

.home-advice-entry-panel .button {
  min-width: 238px;
  min-height: 54px;
  border-radius: 6px;
  box-shadow: none;
  white-space: nowrap;
}

.home-section-head {
  width: var(--home-section-width);
}

.home-section-head {
  margin: 0 auto var(--space-8);
  display: grid;
  gap: var(--space-4);
  min-width: 0;
}

.home-section-head .eyebrow {
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section-head h2 {
  max-width: 760px;
  font-family: var(--font-heading);
  font-size: var(--heading-card-lg);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.home-section-head p {
  max-width: 720px;
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.home-services-grid {
  width: var(--home-section-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.home-service-card {
  position: relative;
  min-height: 224px;
  padding: var(--space-5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--surface-card);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.home-service-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 20px;
  width: 32px;
  height: 2px;
  background: var(--gold);
  transform: translateY(-1px);
}

.home-service-card:hover {
  border-color: rgba(184, 138, 75, 0.42);
  background: var(--surface-card);
  transform: translateY(-2px);
}

.home-service-card > span {
  color: var(--gold);
  font-size: var(--text-meta);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.home-service-card h3 {
  margin-top: var(--space-7);
  font-family: var(--font-heading);
  font-size: var(--heading-card-sm);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.home-service-card p {
  margin-top: var(--space-4);
  color: var(--ink-soft);
  font-size: var(--text-body-sm);
  line-height: var(--line-copy);
}

.home-service-card strong {
  margin-top: var(--space-5);
  color: var(--gold);
  font-size: var(--text-meta);
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-section {
  padding: 0;
  background: var(--ink);
  color: var(--cream);
}

.footer-section .container {
  width: min(900px, calc(100% - 64px));
}

.clients-section {
  padding: var(--section-space-standard) 0 0;
  background: var(--canvas);
  color: var(--ink);
}

.clients-section .container,
.about-home .container {
  width: var(--home-section-width);
}

.clients-head {
  width: 100%;
  margin-bottom: var(--space-8);
}

.clients-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(23, 18, 15, 0.1);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 28px 58px rgba(36, 22, 10, 0.12);
}

.client-card {
  min-height: 240px;
  padding: 32px 30px 34px;
  border-right: 1px solid rgba(23, 18, 15, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.client-card:last-child {
  border-right: 0;
}

.client-card h3 {
  max-width: 280px;
  min-height: calc(var(--heading-card-sm) * var(--line-heading) * 2);
  font-family: var(--font-heading);
  font-size: var(--heading-card-sm);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
  letter-spacing: 0;
}

.client-card p {
  margin-top: 18px;
  color: rgba(23, 18, 15, 0.72);
  font-size: var(--text-body);
  line-height: var(--line-compact);
}

.client-card ul {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.client-card li {
  position: relative;
  padding-left: 16px;
  color: #17120f;
  font-size: var(--text-body-sm);
  line-height: var(--line-compact);
  font-weight: var(--weight-regular);
}

.client-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #17120f;
}

.client-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 6px;
  background: #070706;
  color: #fff;
  font-size: var(--text-meta);
  font-weight: var(--weight-semibold);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.client-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.about-home {
  padding: var(--section-space-standard) 0 0;
  background: var(--canvas);
  color: var(--ink);
}

.about-home-inner {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 24px;
  align-items: start;
}

.about-home-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.about-home-heading .eyebrow,
.remuneration-intro .eyebrow {
  color: rgba(23, 18, 15, 0.62);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-home-heading h2,
.remuneration-intro h2 {
  font-family: var(--font-heading);
  font-size: var(--heading-card-lg);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.about-home-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.about-home-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
  margin-top: 2px;
}

.about-home-trust article {
  min-height: 206px;
  padding: 26px 24px;
  border: 1px solid rgba(23, 18, 15, 0.1);
  border-radius: 6px;
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: 14px;
}

.about-home-trust h3 {
  min-height: calc(var(--heading-card-sm) * var(--line-heading) * 3);
  font-family: var(--font-heading);
  font-size: var(--heading-card-sm);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.about-home-trust p {
  color: rgba(23, 18, 15, 0.72);
  font-size: var(--text-body-sm);
  line-height: var(--line-compact);
}

.about-home-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 10px 0 0;
  border: 1px solid rgba(23, 18, 15, 0.1);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.about-home-facts div {
  min-height: 184px;
  padding: 24px;
  border-right: 1px solid rgba(23, 18, 15, 0.1);
  display: grid;
  align-content: space-between;
  gap: 14px;
}

.about-home-facts div:last-child {
  border-right: 0;
}

.about-home-facts dt {
  color: rgba(23, 18, 15, 0.62);
  font-size: var(--text-meta);
  font-weight: var(--weight-bold);
  line-height: var(--line-compact);
  text-transform: uppercase;
}

.about-home-facts dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: var(--heading-card);
  line-height: var(--line-heading);
}

.about-home-facts p {
  margin: 0;
  color: rgba(23, 18, 15, 0.68);
  font-size: var(--text-body-sm);
  line-height: var(--line-compact);
}

.hero {
  position: relative;
  min-height: 570px;
  padding: 150px 0 96px;
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 138, 75, 0.2), transparent 30%),
    linear-gradient(135deg, #17120f 0%, #231711 48%, #4d2a1a 100%);
}

.hero::after {
  content: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 56px;
  align-items: end;
}

.eyebrow {
  color: var(--gold-2);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

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

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

h1 {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: var(--heading-page);
  line-height: var(--line-tight);
  font-weight: var(--weight-regular);
  max-width: 760px;
  overflow-wrap: break-word;
}

.hero-lead {
  margin-top: 24px;
  max-width: 640px;
  color: rgba(255, 250, 240, 0.78);
  font-size: var(--text-body-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: var(--text-body-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(20, 13, 8, 0.16);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #21150f;
  border-color: rgba(255, 250, 240, 0.12);
}

.button.secondary {
  color: var(--cream);
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(255, 250, 240, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.04);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(20, 13, 8, 0.22);
}

section {
  padding: 86px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head > :only-child {
  max-width: 720px;
}

.section-head h2 {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: var(--heading-section);
  line-height: var(--line-tight);
  font-weight: var(--weight-regular);
}

.section-head p {
  color: var(--ink-soft);
  max-width: 540px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 250px;
  padding: 30px;
  background: rgba(255, 250, 240, 0.48);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.service-card span {
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
}

.service-card h3 {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: var(--heading-card);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.service-card p {
  color: var(--ink-soft);
  font-size: var(--text-body-sm);
  margin-top: 0;
}

.audience {
  background: var(--moss);
  color: var(--cream);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 250, 240, 0.18);
  border-left: 1px solid rgba(255, 250, 240, 0.18);
}

.audience-item {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid rgba(255, 250, 240, 0.18);
  border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}

.audience-item strong {
  font-family: var(--font-heading);
  font-size: var(--heading-card);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.audience-item p {
  color: rgba(255, 250, 240, 0.72);
  font-size: var(--text-body-sm);
}

.about-grid {
  display: grid;
  justify-items: center;
}

.about-copy {
  max-width: 780px;
  text-align: center;
}

.about-copy h2 {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: var(--heading-section);
  line-height: var(--line-tight);
  font-weight: var(--weight-regular);
}

.about-copy p {
  margin-top: 24px;
  color: var(--ink-soft);
}

.note {
  margin-top: 34px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: var(--brown-2);
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-lead);
  line-height: 1.25;
}

.subpage-container {
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
}

.subpage-showcase {
  padding: 0;
  background: var(--canvas);
  color: var(--cream);
}

.subpage-hero {
  position: relative;
  width: min(1280px, calc(100% - 60px));
  min-height: 520px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 118px 0 86px;
  background:
    linear-gradient(rgba(30, 15, 7, 0.76), rgba(30, 15, 7, 0.76)),
    url("../images/hero-background.jpg") center / cover no-repeat;
  background:
    linear-gradient(rgba(30, 15, 7, 0.76), rgba(30, 15, 7, 0.76)),
    image-set(
      url("../images/hero-background.webp") type("image/webp"),
      url("../images/hero-background.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  color: var(--cream);
}

.subpage-hero > .menu-button {
  position: absolute;
  top: 52px;
  right: max(28px, calc((100% - 900px) / 2));
  border: 0;
}

body.has-sticky-header .subpage-hero > .menu-button {
  position: fixed;
  top: 13px;
  right: max(32px, calc((100% - 900px) / 2));
  z-index: 32;
  background: rgba(255, 250, 240, 0.08);
}

.subpage-hero-content {
  width: min(900px, calc(100% - 64px));
  min-width: 0;
  margin: 0 auto;
  display: grid;
  justify-items: start;
}

.subpage-hero-content h1 {
  max-width: 720px;
  margin-top: 0;
  color: var(--cream);
  font-size: var(--heading-page);
  overflow-wrap: break-word;
}

.subpage-hero-content p {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.86);
  font-size: var(--text-lead);
  line-height: var(--line-copy);
}

.advice-intro,
.advice-scope,
.advice-process,
.advice-fee,
.advice-cta {
  padding: 0;
  background: var(--canvas);
  color: var(--ink);
}

.advice-intro {
  padding-top: 64px;
}

.advice-intro .eyebrow,
.advice-scope .eyebrow,
.advice-process .eyebrow,
.advice-fee .eyebrow {
  color: rgba(23, 18, 15, 0.62);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
}

.advice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.advice-grid h2,
.advice-scope .section-head h2,
.process-panel h2,
.fee-panel h2,
.cta-panel h2 {
  margin-top: 14px;
  font-size: var(--heading-card-lg);
  line-height: var(--line-tight);
}

.advice-copy {
  max-width: none;
  margin-top: 18px;
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.advice-copy p {
  max-width: 680px;
}

.advice-list,
.advice-cards ul,
.process-panel ol {
  margin: 0;
  padding-left: 18px;
}

.advice-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
  border-top: 1px solid rgba(23, 18, 15, 0.14);
}

.advice-list li,
.advice-cards li,
.process-panel li {
  padding-left: 6px;
  margin-top: 10px;
}

.advice-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(23, 18, 15, 0.14);
}

.advice-list li::before {
  content: none;
}

.advice-list li::after {
  content: "↓";
  justify-self: end;
  color: rgba(23, 18, 15, 0.52);
  font-size: 20px;
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.advice-scope .section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 30px;
}

.advice-scope .section-head p {
  max-width: 640px;
  margin-top: 16px;
}

.advice-scope .subpage-container,
.advice-process .subpage-container,
.advice-fee .subpage-container {
  padding-top: 52px;
}

.advice-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.36);
}

.advice-cards article {
  min-height: 238px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.advice-cards h3 {
  font-size: var(--heading-card);
  line-height: var(--line-heading);
}

.advice-cards ul {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: var(--text-body-sm);
  line-height: var(--line-copy);
}

.process-panel,
.fee-panel,
.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid rgba(23, 18, 15, 0.14);
  border-bottom: 1px solid rgba(23, 18, 15, 0.14);
}

.process-panel ol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  counter-reset: advice-step;
  padding-left: 0;
  list-style: none;
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.process-panel li {
  position: relative;
  counter-increment: advice-step;
  min-height: 0;
  margin-top: 0;
  padding: 17px 0 17px 54px;
  border-bottom: 1px solid rgba(23, 18, 15, 0.14);
  background: transparent;
}

.process-panel li:first-child {
  border-top: 1px solid rgba(23, 18, 15, 0.14);
}

.process-panel li::before {
  content: counter(advice-step);
  position: absolute;
  top: 16px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 18, 15, 0.2);
  color: var(--ink);
  font-size: var(--text-meta);
  font-weight: var(--weight-semibold);
  background: rgba(255, 250, 240, 0.34);
}

.process-panel {
  grid-template-columns: 1fr;
  gap: 26px;
}

.advice-cta + .advice-process .process-panel {
  border-top: 0;
}

.advice-cta + .advice-process .subpage-container {
  padding-top: 26px;
}

.advice-fee {
  padding-bottom: 72px;
}

.fee-panel {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.42);
}

.fee-panel p {
  max-width: 780px;
  margin-top: 18px;
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.advice-cta {
  padding: 52px 0 37px;
}

.cta-panel {
  align-items: center;
  padding: 32px 34px;
  border: 0;
  border-radius: 6px;
  background: var(--ink);
  color: var(--cream);
}

.cta-panel .eyebrow {
  color: rgba(217, 182, 118, 0.82);
}

.cta-panel h2 {
  margin: 0;
  color: var(--cream);
}

.cta-panel .button {
  justify-self: end;
  min-width: 210px;
  border-radius: 6px;
}

.final-contact {
  padding: var(--section-space-standard) 0 var(--section-space-standard);
  background: var(--canvas);
  color: var(--ink);
}

.contact-inner {
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
}

.contact-head {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-bottom: 30px;
  min-width: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 34px;
  align-items: start;
}

.home-contact-grid {
  display: block;
}

.contact-head .eyebrow {
  color: rgba(23, 18, 15, 0.62);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
}

.final-contact h2 {
  margin-top: 0;
  font-family: var(--font-heading);
  font-size: var(--heading-card-lg);
  line-height: var(--line-tight);
  font-weight: var(--weight-regular);
  overflow-wrap: break-word;
}

.contact-head p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: var(--text-body);
  line-height: var(--line-copy);
}

.contact-aside {
  display: grid;
  gap: 18px;
  order: 1;
}

.contact-form {
  order: 2;
}

.home-contact-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 28px 58px rgba(36, 22, 10, 0.12);
}

.home-contact-primary {
  display: grid;
  min-height: 0;
  align-content: center;
  padding: 30px 32px;
  background: #17120f;
  color: var(--cream);
}

.home-contact-primary > span {
  color: rgba(217, 182, 118, 0.82);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-contact-primary h3 {
  max-width: 360px;
  margin-top: 22px;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: var(--heading-card);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.home-contact-primary p {
  max-width: 380px;
  margin-top: 14px;
  color: rgba(255, 250, 240, 0.76);
  font-size: var(--text-body-sm);
  line-height: var(--line-copy);
}

.home-contact-details {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
}

.final-contact .contact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 0;
}

.final-contact .contact-row:nth-child(2),
.final-contact .contact-row:nth-child(3) {
  grid-column: 1 / -1;
}

.final-contact .contact-row:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}

.final-contact .contact-row:first-child {
  padding-top: 18px;
}

.final-contact .contact-row:last-child {
  padding-bottom: 18px;
}

.home-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.home-contact-actions .button {
  width: 100%;
  min-width: 0;
  padding: 0 14px;
  white-space: nowrap;
}

.button.secondary-dark {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 6px;
  background: #070706;
  color: #fff;
  border-color: #070706;
}

.home-contact-primary .button.secondary-dark {
  border-color: rgba(255, 250, 240, 0.32);
  background: transparent;
  color: var(--cream);
}

.contact-notice {
  border: 1px solid rgba(23, 18, 15, 0.12);
  background: rgba(255, 250, 240, 0.45);
}

.contact-list {
  display: grid;
  border-top: 1px solid rgba(23, 18, 15, 0.14);
}

.contact-row {
  display: grid;
  gap: 8px;
  align-items: start;
  min-height: 126px;
  padding: 18px;
  border: 1px solid rgba(23, 18, 15, 0.1);
  border-radius: 6px;
  background: rgba(245, 239, 226, 0.58);
}

.final-contact .contact-row:nth-child(2) {
  align-items: start;
  min-height: 0;
}

.final-contact .contact-row:nth-child(3) {
  min-height: 0;
}

.contact-row span {
  color: rgba(23, 18, 15, 0.58);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-row strong,
.contact-row a {
  color: var(--ink);
  font-size: var(--text-body);
  line-height: var(--line-compact);
  font-weight: var(--weight-semibold);
  overflow-wrap: anywhere;
}

.final-contact .contact-row:nth-child(2) strong,
.final-contact .contact-row:nth-child(3) a {
  overflow-wrap: normal;
  word-break: normal;
}

.final-contact .contact-row:nth-child(3) a {
  max-width: 100%;
  font-size: clamp(13px, 1.45vw, var(--text-body));
  white-space: nowrap;
}

.contact-links {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.contact-links a + a::before {
  content: none;
}

.contact-links a + a {
  margin-left: 0;
}

.contact-row a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding-bottom: 4px;
  overflow: hidden;
}

.contact-row a::after,
.contact-row a span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(8, 7, 6, 0.72);
  opacity: 1;
  transform: translateX(0) scaleX(1);
  transform-origin: left center;
}

.contact-row .contact-email-link::after {
  content: none;
  display: none;
  height: 0;
}

@media (min-width: 641px) {
  .contact-row a:hover::after,
  .contact-row a:focus-visible::after {
    animation: offer-underline-sweep 0.62s cubic-bezier(0.65, 0, 0.25, 1);
  }
}

.contact-notice {
  padding: 20px;
  border: 1px solid rgba(184, 138, 75, 0.24);
  border-radius: 6px;
  background: rgba(184, 138, 75, 0.08);
}

.contact-notice-title {
  display: block;
  color: var(--ink);
  font-size: var(--text-body);
  line-height: var(--line-compact);
  font-weight: var(--weight-semibold);
}

.contact-notice p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: var(--text-body-sm);
  line-height: var(--line-copy);
}

.contact-notice p strong {
  color: var(--ink);
  font-weight: var(--weight-semibold);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 6px;
  box-shadow: 0 28px 58px rgba(36, 22, 10, 0.14);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: var(--heading-card-sm);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  padding: 12px 14px;
  border-radius: 6px;
  font-size: var(--text-body-sm);
  line-height: var(--line-compact);
}

.form-status.success {
  border: 1px solid rgba(83, 117, 77, 0.28);
  background: rgba(83, 117, 77, 0.12);
  color: #31452d;
}

.form-status.error {
  border: 1px solid rgba(159, 63, 54, 0.28);
  background: rgba(159, 63, 54, 0.1);
  color: var(--status-caution);
}

.contact-form .button {
  width: fit-content;
  min-width: 162px;
  padding: 0 32px;
  border-radius: 6px;
}

.contact-form .button.primary {
  background: linear-gradient(135deg, #e6c67d, var(--gold-2) 48%, var(--gold));
  color: #21150f;
  border-color: rgba(255, 250, 240, 0.58);
  box-shadow:
    0 18px 36px rgba(184, 138, 75, 0.34),
    0 0 0 1px rgba(255, 250, 240, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field > span {
  color: rgba(23, 18, 15, 0.62);
  font-size: var(--text-meta);
  font-weight: var(--weight-medium);
  text-transform: none;
  letter-spacing: 0;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(62, 54, 48, 0.18);
  background: #fbf6eb;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-body-sm);
  padding: 13px 14px;
  outline: none;
  border-radius: 0;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(23, 18, 15, 0.48);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.attachment-field {
  gap: 8px;
}

.attachment-field small {
  color: rgba(23, 18, 15, 0.58);
  font-size: var(--text-meta);
  line-height: var(--line-compact);
}

.attachment-field input[type="file"] {
  padding: 10px 12px;
  color: rgba(23, 18, 15, 0.72);
}

.attachment-field input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 0 16px;
  border: 1px solid rgba(23, 18, 15, 0.18);
  border-radius: 4px;
  background: rgba(23, 18, 15, 0.08);
  color: var(--ink);
  font: inherit;
  font-size: var(--text-body-sm);
  cursor: pointer;
}

.recaptcha-field {
  display: flex;
  align-items: center;
  min-height: 78px;
  overflow-x: auto;
}

.consent-field {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(23, 18, 15, 0.72);
  font-size: var(--text-meta);
  line-height: var(--line-compact);
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consent-field a {
  color: var(--brown-2);
  font-weight: var(--weight-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 138, 75, 0.14);
}

.legal-main {
  padding: 70px 0;
  background: var(--canvas);
}

.legal-document {
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
  padding: 42px;
  border-radius: var(--radius-card);
  background: var(--surface-card);
  color: var(--ink);
  box-shadow: 0 20px 48px rgba(36, 22, 10, 0.1);
}

.legal-document h2 {
  margin-top: 34px;
  font-size: var(--heading-card);
  line-height: var(--line-heading);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.legal-document p,
.legal-document li {
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.legal-document p {
  margin-top: 12px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-document .button {
  margin-top: 22px;
  width: fit-content;
}

.legal-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  color: var(--ink-soft);
}

.legal-table th {
  background: var(--canvas);
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.legal-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-updated {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.remuneration-main {
  padding: 64px 0 0;
  background: var(--canvas);
  color: var(--ink);
}

.remuneration-intro {
  max-width: 760px;
  display: grid;
  gap: 14px;
}

.remuneration-intro p {
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.remuneration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.remuneration-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(23, 18, 15, 0.1);
  border-radius: var(--radius-card);
  background: #fff;
}

.remuneration-grid span,
.remuneration-preview .eyebrow {
  color: var(--gold);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.remuneration-grid h3 {
  margin-top: 28px;
  font-family: var(--font-heading);
  font-size: var(--heading-card-sm);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.remuneration-grid p {
  margin-top: 14px;
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.remuneration-page .advice-v2-cta {
  padding-top: var(--section-space-standard);
  padding-bottom: var(--section-space-standard);
}

.remuneration-preview {
  padding: 34px 0 var(--section-space-standard);
  background: var(--canvas);
}

.advice-v2-cta + .remuneration-preview,
.advice-cta + .remuneration-preview,
.advice-v2-documents-section + .remuneration-preview {
  padding-top: 0;
}

.remuneration-preview-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(23, 18, 15, 0.1);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 22, 10, 0.1);
}

.remuneration-preview h2 {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: var(--heading-panel);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.remuneration-preview p {
  margin-top: 10px;
  color: var(--ink-soft);
  line-height: var(--line-copy);
}

.remuneration-preview .button {
  min-width: 174px;
  min-height: 52px;
  border-radius: 6px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(640px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 6px;
  background: rgba(23, 18, 15, 0.96);
  color: var(--cream);
  box-shadow: 0 22px 60px rgba(23, 18, 15, 0.28);
}

.cookie-banner-copy strong {
  display: block;
  font-size: var(--text-body);
  line-height: var(--line-compact);
}

.cookie-banner-copy p {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.76);
  font-size: var(--text-body-sm);
  line-height: var(--line-compact);
}

.cookie-banner-copy a {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold-2);
  font-size: var(--text-meta);
  font-weight: var(--weight-semibold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.cookie-banner .button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  box-shadow: none;
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  gap: 20px;
}

.documents-section {
  margin-top: 72px;
  padding: 34px;
  background: rgba(255, 250, 240, 0.06);
  border: 1px solid rgba(255, 250, 240, 0.12);
}

.documents-section h2 {
  font-family: var(--font-heading);
  font-size: var(--heading-panel);
  line-height: var(--line-heading);
  font-weight: var(--weight-regular);
}

.documents-section p {
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.68);
}

.document-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.document-links a {
  padding: 17px 18px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.04);
  color: var(--cream);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-semibold);
}

.footer {
  margin-top: 0;
  padding: 42px 0 36px;
  border-top: 0;
  color: rgba(255, 250, 240, 0.5);
  font-size: var(--text-meta);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) max-content max-content max-content;
  justify-content: end;
  column-gap: clamp(28px, 3vw, 44px);
  row-gap: 34px;
}

.footer-brand {
  justify-self: start;
  margin-right: auto;
}

.footer-column {
  min-width: 150px;
  font-family: var(--font-body);
}

.footer-column:first-of-type {
  transform: none;
}

.footer-column:last-of-type {
  justify-self: end;
  min-width: 170px;
}

.footer-brand strong {
  display: block;
  color: var(--cream);
  font-size: var(--text-lead);
  line-height: 1.25;
}

.footer-brand span,
.footer-brand a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.56);
}

.footer-brand a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 250, 240, 0.28);
  text-underline-offset: 3px;
}

.footer-column h3 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: var(--weight-bold);
  text-transform: none;
  letter-spacing: 0;
}

.footer-column a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.68);
  font-family: var(--font-body);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 240, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 250, 240, 0.68);
  margin-left: auto;
  text-align: right;
}

.footer-bottom .footer-credit {
  color: rgba(255, 250, 240, 0.38);
}

@media (min-width: 1351px) {
  .hero-panel,
  .subpage-hero {
    width: calc(100% - 60px);
    max-width: none;
  }
}

@media (max-width: 1204px) {
  :root {
    --heading-card-lg: 31px;
    --heading-card-sm: 22px;
    --text-body: 15px;
  }

  .offer-card {
    width: min(820px, calc(100% - 64px));
    gap: 54px;
    padding: 30px 36px 34px;
  }

  .offer-links {
    column-gap: 52px;
  }

  .offer-link-column:first-child {
    padding-left: 34px;
  }

  .clients-grid {
    width: min(900px, calc(100% - 64px));
  }

  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-card {
    padding: 28px 24px 30px;
  }

}

@media (max-width: 980px) {
  :root {
    --home-section-width: min(700px, calc(100% - 84px));
    --heading-display: clamp(36px, 6.5vw, 50px);
    --heading-section: 34px;
    --heading-card-lg: 29px;
  }

  .nav {
    min-height: 70px;
  }

  .footer-section .container {
    width: min(700px, calc(100% - 84px));
  }

  .subpage-container,
  .subpage-hero-content {
    width: min(700px, calc(100% - 84px));
  }

  .subpage-hero {
    width: 100%;
    min-height: 500px;
    margin: 0;
    border-radius: 0;
    padding: 104px 0 78px;
  }

  .subpage-hero > .menu-button {
    top: 32px;
    right: 28px;
  }

  body.has-sticky-header .subpage-hero > .menu-button {
    top: 13px;
    right: max(28px, calc((100% - 900px) / 2));
  }

  .advice-grid,
  .process-panel,
  .cta-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .advice-cards {
    grid-template-columns: 1fr;
  }

  .advice-cards article {
    min-height: auto;
  }

  .cta-panel .button {
    justify-self: start;
  }

  .hero-topline {
    display: none;
  }

  .hero-panel {
    width: 100%;
    min-height: 560px;
    margin: 0;
    border-radius: 0;
    padding: 82px 28px 128px;
  }

  .hero-brand {
    left: 28px;
    top: 32px;
  }

  .hero-brand-logo {
    left: 13px;
    width: 240px;
  }

  .hero-brand-name {
    font-size: 19px;
  }

  body.has-sticky-header .hero-brand {
    top: 13px;
    left: max(28px, calc((100% - 900px) / 2));
  }

  body.has-sticky-header .hero-brand-logo {
    left: calc(max(28px, calc((100% - 900px) / 2)) - 15px);
  }

  .hero-panel .menu-button {
    top: 32px;
    right: 28px;
  }

  body.has-sticky-header .hero-panel .menu-button {
    top: 13px;
    right: max(28px, calc((100% - 900px) / 2));
  }

  .sticky-contact {
    right: max(102px, calc((100% - 900px) / 2 + 72px));
    gap: 16px;
  }

  .offer-card {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(700px, calc(100% - 84px));
    padding: 28px 34px 32px;
  }

  .offer-card .button.dark {
    display: none;
  }

  .offer-links {
    gap: 15px 30px;
  }

  .offer-link-column {
    gap: 15px;
  }

  .offer-link-column:first-child {
    padding-left: 0;
  }

  .home-services,
  .clients-section {
    padding: 48px 0 0;
  }

  .home-advice-entry-panel {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding: var(--space-7);
  }

  .home-advice-entry-panel .button {
    justify-self: start;
  }

  .final-contact {
    padding: 48px 0;
  }

  .clients-head {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .clients-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .home-services .container,
  .home-services-grid {
    width: var(--home-section-width);
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-home-inner,
  .remuneration-preview-panel {
    grid-template-columns: 1fr;
  }

  .about-home-trust,
  .about-home-facts,
  .remuneration-grid {
    grid-template-columns: 1fr;
  }

  .remuneration-preview .button {
    justify-self: start;
  }

  .contact-inner {
    width: min(700px, calc(100% - 84px));
  }

  .contact-head,
  .contact-grid,
  .home-contact-grid,
  .home-contact-card {
    grid-template-columns: 1fr;
  }

  .final-contact .contact-list {
    grid-template-columns: 1fr 1fr;
  }

  .contact-head {
    gap: 12px;
    margin-bottom: 28px;
  }

  .contact-grid {
    gap: 26px;
  }

  .contact-aside {
    order: 2;
  }

  .contact-form {
    order: 1;
  }

  .final-contact .contact-aside {
    order: 1;
  }

  .home-contact-primary {
    min-height: auto;
  }

  .client-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 18, 15, 0.1);
    padding: 28px 34px 30px;
  }

  .client-card h3 {
    min-height: 0;
  }

  .client-card p {
    min-height: 0;
  }

  .client-card:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 118px;
    background:
      radial-gradient(circle at 82% 18%, rgba(184, 138, 75, 0.2), transparent 30%),
      linear-gradient(135deg, #17120f 0%, #231711 48%, #4d2a1a 100%);
  }

  .hero-grid,
  .section-head,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .document-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    row-gap: 28px;
  }

  .footer-brand,
  .footer-column,
  .footer-column:last-of-type {
    justify-self: stretch;
    min-width: 0;
  }

  .footer-bottom {
    display: grid;
    justify-content: stretch;
  }

  .footer-bottom a {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --home-section-width: min(100% - 40px, 1180px);
    --text-xs: 10px;
    --text-body: 15px;
    --text-lead: 16px;
    --heading-display: clamp(30px, 8.2vw, 38px);
    --heading-page: clamp(32px, 9vw, 40px);
    --heading-section: 30px;
    --heading-card: 28px;
    --heading-card-sm: 24px;
    --line-heading: 1.2;
  }

  .menu-panel {
    overflow-y: auto;
    padding: 78px 14px 18px;
  }

  .menu-panel nav {
    gap: 5px;
    padding: 10px;
  }

  .menu-panel a {
    min-height: 40px;
    padding: 8px 14px;
    font-size: clamp(18px, 5.2vw, 21px);
    line-height: 1.15;
  }

  .nav,
  .container {
    width: min(100% - 28px, 1180px);
  }

  .footer-section .container {
    width: min(100% - 40px, 1180px);
  }

  .subpage-container,
  .subpage-hero-content {
    width: min(100% - 40px, 1180px);
  }

  .subpage-hero {
    width: 100%;
    min-height: 470px;
    margin: 0;
    border-radius: 0;
    padding: 98px 0 68px;
    background:
      linear-gradient(rgba(30, 15, 7, 0.76), rgba(30, 15, 7, 0.76)),
      url("../images/hero-background-mobile.jpg") center / cover no-repeat;
    background:
      linear-gradient(rgba(30, 15, 7, 0.76), rgba(30, 15, 7, 0.76)),
      image-set(
        url("../images/hero-background-mobile.webp") type("image/webp"),
        url("../images/hero-background-mobile.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  .subpage-hero > .menu-button {
    top: 28px;
    right: 18px;
  }

  body.has-sticky-header .subpage-hero > .menu-button {
    top: 10px;
    right: 34px;
  }

  .subpage-hero-content h1 {
    max-width: 100%;
  }

  .advice-grid,
  .process-panel,
  .cta-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .process-panel ol {
    grid-template-columns: 1fr;
  }

  .advice-cards {
    grid-template-columns: 1fr;
  }

  .advice-cards article {
    min-height: auto;
    padding: 26px;
  }

  .fee-panel {
    padding: 26px;
  }

  .cta-panel {
    padding-bottom: 56px;
  }

  .cta-panel .button {
    justify-self: stretch;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy span {
    letter-spacing: 0.11em;
  }

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

  .hero-topline {
    display: none;
  }

  .hero-topline-contact {
    justify-content: center;
    gap: 6px 14px;
    flex-wrap: wrap;
  }

  .hero-showcase {
    padding-bottom: 0;
  }

  .hero-panel {
    width: 100%;
    min-height: 560px;
    margin: 0;
    border-radius: 0;
    padding: 92px 22px 124px;
    background:
      linear-gradient(rgba(30, 15, 7, 0.72), rgba(30, 15, 7, 0.72)),
      url("../images/hero-background-mobile.jpg") center / cover no-repeat;
    background:
      linear-gradient(rgba(30, 15, 7, 0.72), rgba(30, 15, 7, 0.72)),
      image-set(
        url("../images/hero-background-mobile.webp") type("image/webp"),
        url("../images/hero-background-mobile.jpg") type("image/jpeg")
      ) center / cover no-repeat;
  }

  .hero-brand {
    top: 28px;
    left: 22px;
    gap: 10px;
    max-width: calc(100% - 92px);
  }

  .hero-brand-logo {
    left: 7px;
    width: min(242px, calc(100% - 100px));
  }

  .hero-brand-mark {
    font-size: 26px;
  }

  .hero-brand-divider {
    height: 24px;
  }

  .hero-brand-name {
    font-size: 17px;
    white-space: normal;
  }

  .hero-brand-tag {
    font-size: 9px;
    letter-spacing: 0.13em;
    white-space: normal;
  }

  body::before {
    height: 66px;
  }

  body.has-sticky-header .hero-brand {
    top: 10px;
    left: 34px;
  }

  body.has-sticky-header .hero-brand-logo {
    left: 19px;
  }

  .hero-panel .menu-button {
    top: 28px;
    right: 18px;
  }

  body.has-sticky-header .hero-panel .menu-button {
    top: 10px;
    right: 34px;
  }

  .sticky-contact {
    display: none;
  }

  .hero-content .hero-actions {
    display: grid;
    gap: 14px;
  }

  .hero-scroll-cue {
    bottom: 24px;
    gap: 8px;
  }

  .mobile-title-break {
    display: block;
  }

  .offer-card {
    width: min(100% - 40px, 1180px);
    margin-top: 20px;
    padding: 28px 24px 36px;
  }

  .offer-links {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(8, 7, 6, 0.12);
  }

  .offer-link-column {
    gap: 0;
  }

  .offer-links a {
    width: 100%;
    min-height: 48px;
    padding: 12px 28px 12px 0;
    border-bottom: 1px solid rgba(8, 7, 6, 0.12);
    white-space: normal;
  }

  .offer-links a::after {
    content: "›";
    left: auto;
    right: 0;
    bottom: auto;
    width: auto;
    height: auto;
    background: none;
    color: rgba(8, 7, 6, 0.56);
    font-size: var(--heading-panel);
    line-height: 1;
    opacity: 1;
    transform: none;
  }

  .home-services,
  .clients-section {
    padding: 42px 0 0;
  }

  .home-advice-entry-panel {
    padding: var(--space-7) var(--space-6);
  }

  .home-advice-entry-panel .button {
    width: 100%;
    white-space: normal;
  }

  .about-home {
    padding-top: 42px;
  }

  .about-home-inner {
    gap: 24px;
    padding-top: 34px;
  }

  .about-home-facts div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 18, 15, 0.1);
  }

  .about-home-facts div:last-child {
    border-bottom: 0;
  }

  .about-home-trust h3 {
    min-height: 0;
  }

  .clients-head,
  .clients-grid {
    width: 100%;
  }

  .home-services-grid {
    width: var(--home-section-width);
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: auto;
    padding: var(--space-5);
  }

  .home-service-card h3 {
    margin-top: var(--space-5);
  }

  .client-card {
    padding: 26px 24px 28px;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 96px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  section {
    padding: 68px 0;
  }

  .final-contact {
    padding: 42px 0;
  }

  .contact-inner {
    width: min(100% - 40px, 1180px);
  }

  .contact-head {
    margin-bottom: 24px;
  }

  .contact-grid,
  .home-contact-grid {
    gap: 22px;
  }

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

  .home-contact-primary,
  .home-contact-details {
    padding: 24px;
  }

  .home-contact-primary {
    min-height: auto;
  }

  .final-contact .contact-list {
    grid-template-columns: 1fr;
  }

  .final-contact .contact-row:nth-child(2),
  .final-contact .contact-row:nth-child(3),
  .final-contact .contact-row:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-aside {
    order: 2;
  }

  .contact-form {
    order: 1;
  }

  .final-contact .contact-aside {
    order: 1;
  }

  .final-contact .contact-aside {
    padding: 26px;
  }

  .home-contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 218px;
    padding: 26px;
  }

  .audience-item {
    min-height: 140px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 8px;
    min-height: auto;
    padding: 16px;
  }

  .contact-links {
    display: grid;
    gap: 6px;
  }

  .contact-links a + a {
    margin-left: 0;
  }

  .contact-links a + a::before {
    content: none;
  }

  .contact-notice {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 26px;
  }

  .contact-form .button {
    width: 100%;
  }

  .legal-main {
    padding: 42px 0;
  }

  .legal-document {
    width: min(100% - 40px, 1180px);
    padding: 28px 24px;
  }

  .legal-document .button {
    width: 100%;
  }

  .remuneration-main {
    padding-top: 42px;
  }

  .remuneration-page .advice-v2-cta {
    padding-top: var(--section-space-standard-mobile);
    padding-bottom: var(--section-space-standard-mobile);
  }

  .remuneration-grid article,
  .remuneration-preview-panel {
    padding: 24px;
  }

  .remuneration-preview {
    padding-top: 28px;
    padding-bottom: var(--section-space-standard-mobile);
  }

  .advice-v2-cta + .remuneration-preview,
  .advice-cta + .remuneration-preview,
  .advice-v2-documents-section + .remuneration-preview {
    padding-top: 0;
  }

  .remuneration-preview .button {
    width: 100%;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .button {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
  }

  .document-links {
    grid-template-columns: 1fr;
  }

  .documents-section {
    padding: 26px;
  }
}
