@font-face {
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-regular.ttf") format("truetype");
}

@font-face {
  font-family: "DM Serif Display";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/dm-serif-italic.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/manrope-800.ttf") format("truetype");
}

:root {
  --ink: #072f31;
  --ink-deep: #041f21;
  --petrol: #0b4a4c;
  --petrol-light: #126064;
  --gold: #c49a45;
  --gold-bright: #dfb65f;
  --cream: #f2eee4;
  --paper: #faf8f2;
  --white: #fffdf8;
  --black: #111715;
  --muted: #6d7470;
  --line: rgba(7, 47, 49, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header,
body.menu-open .site-header.is-scrolled {
  color: var(--white);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

body.menu-open .site-header::after {
  opacity: 0;
}

::selection {
  color: var(--white);
  background: var(--petrol);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.loader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 1.5rem;
  color: var(--cream);
  background: var(--ink-deep);
}

.loader__brand {
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.07em;
}

.loader__brand span {
  color: var(--gold-bright);
  font-weight: 500;
}

.loader__line {
  width: min(18rem, 65vw);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-bright);
  transform: translateX(-100%);
  animation: loader-line 1.1s var(--ease) forwards;
}

@keyframes loader-line {
  to {
    transform: translateX(0);
  }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 6.25rem;
  padding: 0 var(--gutter);
  color: var(--white);
  transition: height 400ms var(--ease), color 400ms var(--ease), background 400ms var(--ease),
    box-shadow 400ms var(--ease);
}

.site-header::after {
  position: absolute;
  right: var(--gutter);
  bottom: 0;
  left: var(--gutter);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.19);
  transition: opacity 300ms ease;
}

.site-header.is-scrolled {
  height: 4.75rem;
  color: var(--ink);
  background: rgba(250, 248, 242, 0.91);
  box-shadow: 0 1px 0 rgba(7, 47, 49, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.7rem;
  width: max-content;
}

.brand__mark {
  display: flex;
  align-items: flex-end;
  gap: 0.13rem;
  height: 2.2rem;
}

.brand__mark i {
  position: relative;
  display: block;
  width: 0.34rem;
  border-radius: 0.18rem 0.18rem 0.08rem 0.08rem;
  background: currentColor;
  transform-origin: bottom;
}

.brand__mark i::before {
  position: absolute;
  top: -0.43rem;
  left: 50%;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

.brand__mark i:nth-child(1) {
  height: 1rem;
  color: var(--gold-bright);
}

.brand__mark i:nth-child(2) {
  height: 1.55rem;
}

.brand__mark i:nth-child(3) {
  height: 1.15rem;
  color: var(--gold-bright);
}

.brand__mark i:nth-child(4) {
  height: 1.75rem;
}

.brand__name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.055em;
}

.brand__name b {
  color: var(--gold-bright);
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.4vw, 2.75rem);
}

.desktop-nav a,
.nav-dropdown summary {
  position: relative;
  padding: 0.5rem 0;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.desktop-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease);
}

.desktop-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 300ms var(--ease);
}

.nav-dropdown[open] summary svg {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  display: grid;
  min-width: 15.5rem;
  padding: 0.65rem;
  border: 1px solid rgba(7, 47, 49, 0.12);
  color: var(--ink);
  background: rgba(250, 248, 242, 0.98);
  box-shadow: 0 1.2rem 3rem rgba(4, 31, 33, 0.16);
  transform: translateX(-50%);
}

.nav-dropdown--services .nav-dropdown__menu {
  min-width: 21rem;
}

.nav-dropdown__menu a {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.nav-dropdown__menu a:last-child {
  border-bottom: 0;
}

.nav-dropdown__menu a:hover {
  color: var(--petrol);
  background: rgba(196, 154, 69, 0.1);
}

.nav-dropdown__menu a[aria-current="page"] {
  color: var(--petrol);
  background: rgba(196, 154, 69, 0.14);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.65rem;
  padding: 0.7rem 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.9rem;
  width: max-content;
}

.header-cta svg {
  width: 1rem;
}

.site-header--solid,
.site-header--solid.is-scrolled {
  height: 5rem;
  color: var(--ink);
  background: rgba(250, 248, 242, 0.94);
  border-bottom: 1px solid rgba(7, 47, 49, 0.11);
  box-shadow: none;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header--solid::after,
.site-header--solid.is-scrolled::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.8rem 0.55rem;
  cursor: pointer;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 400ms var(--ease);
}

.menu-toggle span + span {
  margin-top: 0.5rem;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.27rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.27rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: 8rem var(--gutter) 2.5rem;
  color: var(--cream);
  background: var(--ink-deep);
  visibility: hidden;
  transform: translateY(-100%);
  overflow-y: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.5rem, 10vw, 5rem);
  line-height: 1.05;
}

.mobile-menu nav span {
  color: var(--gold-bright);
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
}

.mobile-menu__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.mobile-menu__legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-menu__legal p {
  grid-column: 1 / -1;
  margin: 0 0 0.6rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu__services {
  margin-top: 0.35rem;
  margin-bottom: 0.8rem;
  padding-top: 0.6rem;
  border-top: 0;
}

.mobile-menu__services p {
  color: rgba(255, 255, 255, 0.52);
}

.mobile-menu__services a[aria-current="page"] {
  color: var(--gold-bright);
}

.mobile-menu nav .mobile-menu__legal a {
  gap: 0.6rem;
  padding: 0.7rem 0.6rem 0.7rem 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.mobile-menu nav .mobile-menu__legal a:nth-of-type(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.mobile-menu nav .mobile-menu__legal a:nth-of-type(even) {
  padding-left: 0.75rem;
}

.mobile-menu nav .mobile-menu__legal span {
  font-size: 0.68rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero__scrim {
  background: linear-gradient(90deg, rgba(3, 29, 30, 0.64) 0%, rgba(3, 29, 30, 0.12) 53%, rgba(3, 29, 30, 0.03) 100%),
    linear-gradient(180deg, rgba(1, 13, 14, 0.16), transparent 45%, rgba(1, 16, 17, 0.44));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  width: min(48rem, 62vw);
  padding: 8.5rem 0 7.5rem var(--gutter);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.25rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  width: 2.6rem;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3.4rem, 6.7vw, 7.3rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero__intro {
  max-width: 35rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.95rem, 1.2vw, 1.18rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 3.85rem;
  padding: 0.9rem 1.45rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  transition: color 350ms var(--ease), background 350ms var(--ease), border-color 350ms var(--ease),
    transform 350ms var(--ease);
}

.button svg {
  width: 1rem;
  height: 1rem;
}

.button--gold {
  color: var(--ink-deep);
  background: var(--gold-bright);
}

.button--gold:hover {
  color: var(--white);
  background: var(--petrol-light);
}

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

.button--ink:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.text-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.73rem;
  font-weight: 700;
}

.text-link span {
  color: var(--gold-bright);
  transition: transform 350ms var(--ease);
}

.text-link:hover span {
  transform: translateY(0.25rem);
}

.hero__side-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: calc(var(--gutter) - 0.5rem);
  display: flex;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(50%) rotate(90deg);
}

.hero__footer {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 1.65rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__footer div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.signal {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #89bb7b;
}

.signal::after {
  position: absolute;
  inset: -0.3rem;
  content: "";
  border: 1px solid #89bb7b;
  border-radius: 50%;
  animation: signal 1.8s ease-out infinite;
}

@keyframes signal {
  from {
    opacity: 1;
    transform: scale(0.5);
  }
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 11rem) var(--gutter);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(3.5rem, 7vw, 7.5rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.15);
}

.display-title {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 6.1vw, 6.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.display-title em {
  color: var(--gold);
  font-weight: 400;
}

.display-title--light {
  color: var(--cream);
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line > span {
  display: block;
}

.statement {
  padding-bottom: 0;
}

.statement__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: clamp(3rem, 8vw, 10rem);
}

.statement__copy {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 0.25rem;
}

.statement__copy p {
  margin: 0;
  color: #4d5a57;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.85;
}

.statement__copy p:first-child {
  color: var(--ink);
  font-weight: 600;
}

.statement__ticker {
  overflow: hidden;
  width: calc(100% + (var(--gutter) * 2));
  margin: clamp(6rem, 10vw, 10rem) calc(var(--gutter) * -1) 0;
  padding: 1.25rem 0;
  color: var(--cream);
  background: var(--petrol);
  transform: rotate(-1.1deg) scale(1.03);
}

.statement__ticker > div {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.statement__ticker span {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.4rem, 2.4vw, 2.7rem);
  white-space: nowrap;
}

.statement__ticker i {
  margin: 0 2.5rem;
  color: var(--gold-bright);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section--ink {
  color: var(--white);
  background: var(--ink-deep);
}

.services {
  padding-top: clamp(8rem, 14vw, 14rem);
  overflow: hidden;
}

.services::before {
  position: absolute;
  top: 12%;
  right: -18vw;
  width: 45vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(223, 182, 95, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(223, 182, 95, 0.022), 0 0 0 12vw rgba(223, 182, 95, 0.016);
  pointer-events: none;
}

.services__heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.services__heading > p {
  max-width: 29rem;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.service-row {
  display: grid;
  grid-template-columns: 4rem minmax(19rem, 0.9fr) minmax(15rem, 0.7fr) 3.25rem;
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: padding 450ms var(--ease), background 450ms var(--ease);
}

.service-row__number {
  align-self: start;
  padding-top: 1rem;
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 800;
}

.service-row__main {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.service-row__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 3.7rem;
  height: 3.7rem;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--gold-bright);
  transition: color 400ms var(--ease), background 400ms var(--ease), transform 400ms var(--ease);
}

.service-row__icon svg {
  width: 1.25rem;
}

.service-row h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.service-row > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.87rem;
  line-height: 1.75;
}

.service-row > button {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  background: transparent;
  transition: color 400ms var(--ease), background 400ms var(--ease), transform 400ms var(--ease);
}

.service-row > button svg {
  width: 1rem;
  transition: transform 400ms var(--ease);
}

.service-row__detail {
  grid-column: 2 / 5;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.service-row__detail ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 3rem;
  margin: 0;
  padding: 0.6rem 0 0;
  list-style: none;
}

.service-row__detail li {
  position: relative;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.service-row__detail li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  content: "";
  border-radius: 50%;
  background: var(--gold-bright);
}

.service-row:hover .service-row__icon,
.service-row.is-open .service-row__icon {
  color: var(--ink-deep);
  background: var(--gold-bright);
  transform: rotate(-7deg);
}

.service-row.is-open > button {
  color: var(--ink-deep);
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.process {
  background: var(--paper);
}

.process__intro {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
}

.process__intro > p {
  max-width: 28rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(5rem, 10vw, 10rem);
}

.process-track__line {
  position: absolute;
  top: 1.25rem;
  right: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.process-track__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.process-step {
  position: relative;
  padding: 0 2.5rem 0 0;
}

.process-step::before {
  position: relative;
  z-index: 2;
  display: block;
  width: 0.72rem;
  height: 0.72rem;
  margin: 0.9rem 0 3.5rem;
  content: "";
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.process-step > span {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 800;
}

.process-step h3 {
  margin: 0.4rem 0 0.9rem;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 17rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.why {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 100vh;
  color: var(--white);
  background: var(--petrol);
}

.why__visual {
  position: relative;
  min-height: 58rem;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink-deep);
}

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

.why__visual-image {
  object-fit: cover;
  object-position: center;
}

.why__visual-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 30, 32, 0.42) 0%, rgba(3, 30, 32, 0.16) 58%, rgba(3, 30, 32, 0.04) 100%),
    linear-gradient(180deg, rgba(3, 30, 32, 0.12) 0%, rgba(3, 30, 32, 0.08) 42%, rgba(3, 30, 32, 0.74) 100%);
}

.why__visual-meta {
  position: absolute;
  z-index: 2;
  top: 4.5rem;
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why__quote {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: clamp(4rem, 8vw, 8rem);
  left: var(--gutter);
  max-width: 36rem;
  text-align: left;
}

.why__quote-kicker {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why__quote blockquote {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 4.6vw, 5.5rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.why__quote p {
  max-width: 29rem;
  margin: 2rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.why__content {
  align-self: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.why__content .section-label {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.16);
}

.why__content .display-title {
  color: var(--cream);
  font-size: clamp(3rem, 5.6vw, 6.5rem);
}

.reason-list {
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.reason-list article {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.reason-list article > span {
  padding-top: 0.25rem;
  color: var(--gold-bright);
  font-size: 0.65rem;
  font-weight: 800;
}

.reason-list h3 {
  margin: 0;
  font-size: 1rem;
}

.reason-list p {
  max-width: 33rem;
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.7;
}

.section--cream {
  background: var(--cream);
}

.pricing__heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 4rem;
}

.pricing__heading > p {
  max-width: 27rem;
  margin: 0 0 0.4rem;
  color: var(--muted);
}

.pricing__workspace {
  max-width: 88rem;
  margin: clamp(4.5rem, 8vw, 8rem) auto 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.price-tabs {
  display: flex;
  width: 100%;
  overflow-x: auto;
  border-bottom: 1px solid var(--ink);
  scrollbar-width: none;
}

.price-tabs::-webkit-scrollbar {
  display: none;
}

.price-tabs button {
  position: relative;
  flex: 1 0 auto;
  min-width: 9.5rem;
  padding: 1.25rem 1rem;
  color: var(--muted);
  cursor: pointer;
  background: transparent;
  font-size: 0.74rem;
  font-weight: 700;
}

.price-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 350ms var(--ease);
}

.price-tabs button[aria-pressed="true"] {
  color: var(--ink);
}

.price-tabs button[aria-pressed="true"]::after {
  transform: scaleX(1);
}

.price-display {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(20rem, 0.7fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.price-display__main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 25rem;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.price-display__plan {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-display__amount {
  display: flex;
  align-items: flex-end;
  margin-top: 1.2rem;
  line-height: 1;
}

.price-display__amount sup {
  align-self: flex-start;
  margin: 1.1rem 0.65rem 0 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.price-display__amount > strong {
  font-family: "DM Serif Display", serif;
  font-size: clamp(6rem, 9vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.07em;
}

.price-display__amount > div {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1rem 0.8rem;
}

.price-display__amount > div > span {
  color: var(--ink);
  font-family: "DM Serif Display", serif;
  font-size: 1.6rem;
}

.price-display__amount small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.price-display__aside {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(2rem, 4vw, 4rem);
  border-left: 1px solid var(--line);
  background: rgba(196, 154, 69, 0.09);
}

.price-display__aside > span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-display__aside > p {
  max-width: 25rem;
  margin: 1rem 0 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.price-included {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
  padding: clamp(2.5rem, 4vw, 4rem);
}

.price-included > div > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-included > div p {
  max-width: 26rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.price-included ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-included li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.8rem;
}

.price-included li svg {
  flex: 0 0 auto;
  width: 1rem;
  color: var(--gold);
}

.document-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  width: fit-content;
  margin-top: 2.5rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.document-link__icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 300ms ease, background 300ms ease;
}

.document-link__icon svg,
.document-link > svg {
  width: 1.1rem;
}

.document-link small {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-link:hover .document-link__icon {
  color: var(--white);
  background: var(--ink);
}

.section--gold {
  background: var(--gold-bright);
}

.contact .section-label {
  color: rgba(7, 47, 49, 0.63);
  border-color: rgba(7, 47, 49, 0.2);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(4rem, 10vw, 11rem);
}

.contact__intro .display-title em {
  color: var(--white);
}

.contact__intro > p {
  max-width: 31rem;
  margin: 2.2rem 0 0;
  color: rgba(7, 47, 49, 0.72);
}

.contact__direct {
  display: grid;
  gap: 0.8rem;
  margin-top: 3.5rem;
}

.contact__direct a {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
}

.contact__direct svg {
  width: 1.2rem;
}

.contact__direct span {
  font-size: 0.9rem;
  font-weight: 700;
}

.contact__direct b {
  display: block;
}

.contact__direct small {
  display: block;
  color: rgba(7, 47, 49, 0.6);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  padding: clamp(1.5rem, 3vw, 3.25rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 1.6rem 5rem rgba(67, 48, 13, 0.13);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 1.2rem;
}

.contact-form label > span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 0.85rem;
  transition: border-color 250ms ease;
}

.contact-form textarea {
  min-height: 7rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9ba19e;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.form-trap {
  position: fixed;
  top: 0;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-form__footer p {
  max-width: 17rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.6rem;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin: 1.1rem 0 0;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: rgba(196, 154, 69, 0.16);
  font-size: 0.75rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #164f3b;
  background: rgba(47, 132, 91, 0.14);
}

.form-status.is-error {
  color: #802f2f;
  background: rgba(176, 63, 63, 0.13);
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.site-footer {
  padding: 4rem var(--gutter) 1.8rem;
  color: var(--cream);
  background: var(--ink-deep);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3.5rem;
}

.brand--footer .brand__name {
  font-size: 1.6rem;
}

.site-footer__top > p {
  max-width: 23rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.footer-up {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: color 300ms ease, background 300ms ease;
}

.footer-up:hover {
  color: var(--ink-deep);
  background: var(--gold-bright);
}

.footer-up svg {
  width: 1rem;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.site-footer__bottom div {
  display: flex;
  gap: 1.5rem;
}

.site-footer__bottom > span:last-child {
  justify-self: end;
}

.whatsapp {
  position: fixed;
  z-index: 80;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-radius: 5rem;
  color: var(--white);
  background: var(--petrol);
  box-shadow: 0 0.7rem 2rem rgba(5, 42, 44, 0.24);
  font-size: 0.66rem;
  font-weight: 800;
}

.whatsapp svg {
  width: 1rem;
}

/* Expanded editorial content */
.section-intro,
.services__heading > .section-intro,
.process__intro > .section-intro,
.pricing__heading > .section-intro,
.contact__intro > .section-intro {
  max-width: 34rem;
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.75;
}

.services__heading > .section-intro {
  color: rgba(255, 255, 255, 0.68);
}

.contact__intro > .section-intro {
  margin-top: 2.2rem;
  color: rgba(7, 47, 49, 0.78);
}

.hero__intro {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.statement__ticker i {
  width: 0.62rem;
  height: 0.62rem;
  margin: 0 2.5rem;
  background: var(--gold-bright);
  transform: rotate(45deg);
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(13rem, 0.7fr) minmax(30rem, 2fr) auto;
  align-items: stretch;
  color: var(--cream);
  background: var(--petrol);
}

.proof-strip__intro {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 2rem var(--gutter);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.5;
}

.proof-strip__intro svg {
  flex: 0 0 auto;
  width: 1.3rem;
  color: var(--gold-bright);
}

.proof-strip dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
}

.proof-strip dl > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 7.2rem;
  padding: 1.5rem clamp(1rem, 2vw, 2.25rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip dt {
  color: var(--gold-bright);
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.proof-strip dd {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.63rem;
  line-height: 1.45;
}

.proof-strip > a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem 2rem;
  color: var(--ink-deep);
  background: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 800;
  white-space: nowrap;
}

.proof-strip > a svg {
  width: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 31rem;
  padding: clamp(1.5rem, 2.8vw, 2.6rem);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.015);
  transition: color 550ms var(--ease), background 550ms var(--ease), transform 550ms var(--ease);
}

.service-card::before {
  position: absolute;
  top: -7rem;
  right: -7rem;
  width: 15rem;
  height: 15rem;
  content: "";
  border: 1px solid rgba(223, 182, 95, 0.13);
  border-radius: 50%;
  transition: transform 700ms var(--ease);
}

.service-card:hover {
  color: var(--ink-deep);
  background: var(--cream);
  transform: translateY(-0.35rem);
}

.service-card:hover::before {
  transform: scale(1.45);
}

.service-card--accent,
.service-card--accent:hover {
  color: var(--ink-deep);
  background: var(--gold-bright);
}

.service-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--gold-bright);
  transition: color 450ms var(--ease), background 450ms var(--ease), transform 450ms var(--ease);
}

.service-card__icon svg {
  width: 1.45rem;
}

.service-card:hover .service-card__icon,
.service-card--accent .service-card__icon {
  color: var(--cream);
  border-color: var(--ink);
  background: var(--ink);
  transform: rotate(-8deg);
}

.service-card__number {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card:hover .service-card__number,
.service-card--accent .service-card__number {
  color: rgba(7, 47, 49, 0.54);
}

.service-card > div:nth-child(2) {
  position: relative;
  z-index: 2;
}

.service-card__category {
  color: var(--gold-bright);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card:hover .service-card__category,
.service-card--accent .service-card__category {
  color: var(--petrol);
}

.service-card h3 {
  max-width: 18rem;
  margin: 0.55rem 0 1.1rem;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.service-card p {
  max-width: 23rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.89rem;
  line-height: 1.72;
  transition: color 450ms var(--ease);
}

.service-card:hover p,
.service-card--accent p {
  color: rgba(7, 47, 49, 0.7);
}

.service-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.73rem;
}

.service-card li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  content: "";
  border-radius: 50%;
  background: var(--gold-bright);
}

.service-card:hover li,
.service-card--accent li {
  color: rgba(7, 47, 49, 0.76);
}

.service-card:hover li::before,
.service-card--accent li::before {
  background: var(--petrol);
}

.service-card > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.68rem;
  font-weight: 800;
}

.service-card:hover > a,
.service-card--accent > a {
  border-color: rgba(7, 47, 49, 0.22);
}

.service-card > a svg {
  width: 1rem;
  transition: transform 350ms var(--ease);
}

.service-card > a:hover svg {
  transform: translate(0.2rem, -0.2rem);
}

.service-scope-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 80rem;
  margin: 2.5rem auto 0 0;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.57);
}

.service-scope-note svg {
  width: 1.15rem;
  color: var(--gold-bright);
}

.service-scope-note p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.7;
}

.service-scope-note strong {
  color: var(--cream);
}

.credibility {
  background: var(--paper);
}

.credibility__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.credibility__media {
  position: relative;
  min-height: 54rem;
}

.credibility__image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.credibility__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.credibility__image:hover img {
  transform: scale(1.035);
}

.credibility__image--wide {
  top: 0;
  left: 0;
  width: 88%;
  height: 58%;
}

.credibility__image--portrait {
  right: 0;
  bottom: 0;
  width: 54%;
  height: 58%;
  border: 0.9rem solid var(--paper);
}

.credibility__image figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.45rem 0.65rem;
  color: rgba(255, 255, 255, 0.73);
  background: rgba(4, 31, 33, 0.76);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.52rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.credibility__content .display-title {
  font-size: clamp(3rem, 5.2vw, 6rem);
}

.credibility__content > .section-intro {
  margin-top: 2.1rem;
}

.commitments {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
}

.commitments article {
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.commitments article > span {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
}

.commitments svg {
  width: 1.1rem;
}

.commitments h3 {
  margin: 0;
  font-size: 0.88rem;
}

.commitments p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.65;
}

.credibility__links {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.credibility__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 800;
}

.credibility__links svg {
  width: 1rem;
}

.price-exclusions {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}

.price-exclusions > div:first-child > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price-exclusions > div:first-child p {
  max-width: 26rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.price-exclusions ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-exclusions li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.77rem;
}

.price-exclusions li svg {
  flex: 0 0 auto;
  width: 0.9rem;
  color: var(--gold);
}

.price-exclusions__rate {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  min-width: 9rem;
}

.price-exclusions__rate small {
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-exclusions__rate strong {
  margin-top: 0.25rem;
  font-family: "DM Serif Display", serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-exclusions__rate span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.6rem;
}

.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 10vw, 11rem);
}

.faq__grid > div:first-child > .section-intro {
  margin-top: 2rem;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  width: 1rem;
  transition: transform 350ms var(--ease);
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 42rem;
  margin: -0.35rem 0 1.7rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

.contact-form__footer p a {
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.site-footer__bottom {
  grid-template-columns: auto 1fr auto;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.4rem;
}

.site-footer__legal a:hover {
  color: var(--cream);
}

.cookie-notice {
  position: fixed;
  z-index: 500;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  grid-template-columns: auto minmax(20rem, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  max-width: min(55rem, calc(100vw - 2.5rem));
  padding: 1rem;
  color: var(--cream);
  background: rgba(4, 31, 33, 0.97);
  box-shadow: 0 1.2rem 4rem rgba(4, 31, 33, 0.34);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

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

.cookie-notice__icon {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--gold-bright);
}

.cookie-notice__icon svg {
  width: 1.15rem;
}

.cookie-notice strong {
  font-size: 0.72rem;
}

.cookie-notice p {
  margin: 0.18rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.61rem;
  line-height: 1.45;
}

.cookie-notice > a {
  color: rgba(255, 255, 255, 0.67);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-notice__actions {
  display: flex;
  gap: 0.55rem;
}

.cookie-notice__actions button {
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  color: var(--ink-deep);
  cursor: pointer;
  background: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-notice__actions .cookie-notice__reject {
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: transparent;
}

.footer-cookie-settings {
  padding: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
  font: inherit;
}

.footer-cookie-settings:hover {
  color: var(--gold-bright);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    column-gap: 0.65rem;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
  }

  .hero__content {
    width: min(48rem, 72vw);
  }

  .service-row {
    grid-template-columns: 3rem minmax(17rem, 1fr) minmax(14rem, 0.8fr) 3rem;
  }

  .why {
    grid-template-columns: 0.72fr 1.28fr;
  }

  .why__visual {
    min-height: 52rem;
  }

  .contact__grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4rem;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled {
    height: 4.75rem;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__scrim {
    background: linear-gradient(90deg, rgba(3, 29, 30, 0.84), rgba(3, 29, 30, 0.25) 85%),
      linear-gradient(180deg, rgba(1, 13, 14, 0.2), transparent 45%, rgba(1, 16, 17, 0.6));
  }

  .hero__content {
    width: 88vw;
    padding-top: 7rem;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 12vw, 6rem);
  }

  .hero__side-note {
    display: none;
  }

  .statement__grid,
  .services__heading,
  .process__intro,
  .pricing__heading,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .statement__copy {
    max-width: 35rem;
  }

  .service-row {
    grid-template-columns: 2.5rem 1fr 3rem;
    gap: 1rem;
  }

  .service-row__main {
    grid-column: 2;
  }

  .service-row > p {
    grid-column: 2;
  }

  .service-row > button {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .service-row__detail {
    grid-column: 2 / 4;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
  }

  .process-track__line {
    display: none;
  }

  .process-step::before {
    margin-bottom: 2rem;
  }

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

  .why__visual {
    min-height: 44rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .why__visual-meta {
    top: 3rem;
  }

  .why__quote {
    bottom: 4rem;
  }

  .price-display {
    grid-template-columns: 1fr;
  }

  .price-display__main {
    min-height: 22rem;
  }

  .price-display__aside {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .why__content {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .price-included {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__intro {
    max-width: 42rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-up {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 580px) {
  :root {
    --gutter: 1.2rem;
  }

  .loader__brand {
    font-size: 2.8rem;
  }

  .brand__name {
    font-size: 1.05rem;
  }

  .brand__mark {
    height: 1.8rem;
    transform: scale(0.86);
    transform-origin: left center;
  }

  .mobile-menu {
    padding-top: 6rem;
  }

  .mobile-menu nav a {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }

  .mobile-menu__legal {
    grid-template-columns: 1fr;
  }

  .mobile-menu nav .mobile-menu__legal a:nth-of-type(odd) {
    border-right: 0;
  }

  .mobile-menu nav .mobile-menu__legal a:nth-of-type(even) {
    padding-left: 0;
  }

  .hero {
    min-height: 46rem;
  }

  .hero__content {
    justify-content: flex-end;
    min-height: 46rem;
    width: 100%;
    padding: 7rem var(--gutter) 8.4rem;
  }

  .hero__eyebrow {
    font-size: 0.56rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero__intro {
    margin-top: 1.5rem;
    font-size: 0.86rem;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.6rem;
  }

  .button--gold {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero__footer {
    font-size: 0.53rem;
  }

  .hero__footer > a {
    display: none;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-label {
    margin-bottom: 3.5rem;
  }

  .display-title {
    font-size: clamp(2.85rem, 13.5vw, 4.3rem);
  }

  .statement {
    padding-bottom: 0;
  }

  .statement__ticker {
    margin-top: 5rem;
  }

  .services {
    padding-top: 7rem;
  }

  .services__heading {
    margin-bottom: 4rem;
  }

  .service-row {
    grid-template-columns: 1.6rem 1fr 2.75rem;
    padding: 1.5rem 0;
  }

  .service-row__number {
    padding-top: 0.8rem;
  }

  .service-row__main {
    gap: 0.85rem;
  }

  .service-row__icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .service-row h3 {
    font-size: 1.75rem;
  }

  .service-row > p {
    font-size: 0.76rem;
  }

  .service-row > button {
    width: 2.75rem;
    height: 2.75rem;
  }

  .service-row__detail ul {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .process-step {
    padding-right: 0;
  }

  .process-step::before {
    margin-bottom: 1.4rem;
  }

  .why__visual {
    min-height: 38rem;
  }

  .why__quote blockquote {
    font-size: 2.8rem;
  }

  .why__quote {
    right: var(--gutter);
    bottom: 3rem;
    left: var(--gutter);
  }

  .why__visual-meta {
    top: 2rem;
  }

  .why__quote p {
    margin-top: 1.4rem;
    padding-top: 1rem;
  }

  .why__content .display-title {
    font-size: 3.2rem;
  }

  .reason-list article {
    grid-template-columns: 2.5rem 1fr;
  }

  .price-tabs {
    margin-right: calc(var(--gutter) * -1);
    width: calc(100% + var(--gutter));
  }

  .price-display {
    gap: 0;
  }

  .price-display__main {
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .price-display__amount > strong {
    font-size: clamp(5.6rem, 27vw, 7rem);
  }

  .price-display__amount > div {
    margin-left: 0.45rem;
  }

  .price-display__aside {
    padding: 2rem 1.25rem;
  }

  .price-display .button {
    width: 100%;
  }

  .price-included ul {
    grid-template-columns: 1fr;
  }

  .document-link {
    width: 100%;
  }

  .contact__direct a {
    width: 100%;
  }

  .contact-form {
    padding: 1.25rem;
  }

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

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-footer {
    padding-top: 3rem;
  }

  .site-footer__bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .site-footer__bottom > span:last-child {
    display: none;
  }

  .whatsapp {
    right: 1rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
    justify-content: center;
    padding: 0;
  }

  .whatsapp span {
    display: none;
  }
}

@media (max-width: 1100px) {
  .proof-strip {
    grid-template-columns: 1fr auto;
  }

  .proof-strip__intro {
    grid-column: 1 / 3;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

  .credibility__grid {
    gap: 4rem;
  }

  .credibility__media {
    min-height: 48rem;
  }

  .price-exclusions {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .price-exclusions__rate {
    grid-column: 2;
    align-items: flex-start;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }

  .site-footer__bottom > span:last-child {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip__intro {
    grid-column: auto;
  }

  .proof-strip dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip > a {
    justify-content: center;
  }

  .credibility__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

  .credibility__media {
    min-height: 52rem;
  }

  .credibility__content {
    max-width: 42rem;
  }

  .price-exclusions {
    grid-template-columns: 1fr;
  }

  .price-exclusions__rate {
    grid-column: auto;
  }

  .cookie-notice {
    grid-template-columns: auto 1fr;
  }

  .cookie-notice > a {
    grid-column: 2;
  }

  .cookie-notice__actions {
    grid-column: 1 / 3;
    width: 100%;
  }

  .cookie-notice__actions button {
    flex: 1;
  }
}

@media (max-width: 580px) {
  .section-intro,
  .services__heading > .section-intro,
  .process__intro > .section-intro,
  .pricing__heading > .section-intro,
  .contact__intro > .section-intro {
    font-size: 1.1rem;
  }

  .proof-strip dl {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip dl > div {
    min-height: 6.8rem;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-strip dt {
    font-size: 1.55rem;
  }

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

  .service-card {
    min-height: 28rem;
    padding: 1.5rem;
  }

  .service-card__top {
    margin-bottom: 3rem;
  }

  .service-card h3 {
    font-size: 2.35rem;
  }

  .credibility__media {
    min-height: 37rem;
  }

  .credibility__image--wide {
    width: 100%;
    height: 54%;
  }

  .credibility__image--portrait {
    width: 62%;
    height: 55%;
    border-width: 0.55rem;
  }

  .credibility__image figcaption {
    font-size: 0.46rem;
  }

  .commitments article {
    grid-template-columns: 3rem 1fr;
  }

  .price-exclusions ul {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    font-size: 0.82rem;
  }

  .site-footer__legal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 1.2rem;
  }

  .cookie-notice {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    grid-template-columns: auto 1fr;
    max-width: none;
  }

  .cookie-notice > a {
    grid-column: 2;
  }

  .cookie-notice__actions {
    grid-column: 1 / 3;
    grid-row: auto;
    width: 100%;
  }
}

/* Readability scale: supporting copy stays comfortably legible without changing display headings. */
:root {
  --muted: #59625e;
}

body {
  font-size: 1.1rem;
}

.desktop-nav a,
.nav-dropdown summary,
.header-cta,
.button,
.text-link {
  font-size: 0.9rem;
}

.hero__eyebrow,
.section-label,
.mobile-menu nav span {
  font-size: 0.88rem;
}

.hero__intro {
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero__side-note,
.hero__footer {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}

.mobile-menu__footer,
.proof-strip__intro,
.proof-strip > a,
.service-card__number,
.service-card__category,
.service-card > a,
.process-step > span,
.reason-list article > span,
.price-display__plan,
.price-included > div > span,
.price-exclusions > div:first-child > span {
  font-size: 0.88rem;
}

.proof-strip dd,
.price-display small,
.document-link small,
.contact__direct small,
.price-exclusions__rate small,
.price-exclusions__rate span {
  font-size: 0.9rem;
}

.service-card p,
.process-step p,
.reason-list p,
.price-included > div p,
.price-exclusions > div:first-child p,
.faq-list details p {
  font-size: 1.06rem;
}

.services__heading > .section-intro {
  color: rgba(255, 255, 255, 0.78);
}

.proof-strip dd,
.service-scope-note {
  color: rgba(255, 255, 255, 0.74);
}

.service-card p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card li {
  color: rgba(255, 255, 255, 0.86);
}

.reason-list p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card li,
.service-scope-note p,
.price-tabs button,
.price-included li,
.document-link,
.price-exclusions li,
.credibility__links a,
.form-status,
.site-footer__top > p {
  font-size: 0.96rem;
}

.commitments h3,
.reason-list h3,
.faq-list summary,
.contact__direct span {
  font-size: 1.05rem;
}

.commitments p,
.contact-form__footer p,
.cookie-notice p {
  font-size: 0.92rem;
}

.contact-form label > span,
.cookie-notice > a,
.site-footer__bottom,
.whatsapp {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 1rem;
}

.cookie-notice strong {
  font-size: 0.94rem;
}

.cookie-notice p,
.cookie-notice > a {
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__top > p,
.site-footer__bottom {
  color: rgba(255, 255, 255, 0.66);
}

.credibility__image figcaption {
  font-size: 0.75rem;
}

@media (max-width: 580px) {
  .hero__eyebrow {
    font-size: 0.82rem;
  }

  .hero__intro {
    font-size: 1.08rem;
  }

  .hero__footer {
    font-size: 0.76rem;
  }

  .faq-list summary {
    font-size: 1rem;
  }

  .credibility__image figcaption {
    font-size: 0.72rem;
  }

  .cookie-notice__actions {
    flex-direction: column;
  }
}

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

}
