@font-face {
  font-family: "Inter Local";
  src: url("./assets/inter-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #020101;
  --body: #504c45;
  --accent: #bc9565;
  --accent-dark: #a07d50;
  --gold-ink: #8d6a3e;
  --gold: #bc9565;
  --gold-soft: #d0c4b0;
  --warm: #f2ebe0;
  --cream: #faf6f0;
  --white: #fff;
  --line: #e8dece;
  --display: "Libre Caslon Display", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Inter Local", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page: min(1088px, calc(100vw - 64px));
  --header-height: 109px;
  --shadow: 0 9px 28px rgba(25, 24, 22, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--gold-ink);
  outline-offset: 3px;
}

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

main section[id] {
  scroll-margin-top: var(--header-height);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.1vw, 2.45rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.58rem;
  line-height: 1.05;
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding-block: 100px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--accent);
  color: var(--ink);
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(23, 22, 19, 0.15);
}

.button:active {
  transform: scale(0.98);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark,
.button-dark-outline {
  color: var(--ink);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  border-color: #0f0f0f;
  background: #0f0f0f;
}

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

.button-dark-outline:hover,
.button-dark-outline:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.eyebrow > span {
  width: 20px;
  height: 1px;
  background: currentColor;
}

.section-heading {
  margin-bottom: 28px;
}

.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.heading-row h2 {
  max-width: 800px;
}

.round-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.round-button:hover,
.round-button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.round-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.round-button svg,
.project-controls svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid rgba(188, 149, 101, 0.18);
  background: #000;
  color: var(--white);
  transition: height 0.4s ease, color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 91px;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.24);
  color: var(--white);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  will-change: transform;
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 112px;
  flex: none;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  transition: filter 0.35s ease, height 0.35s ease;
}

.site-header.scrolled .brand img,
.site-header.menu-active .brand img {
  height: 66px;
  filter: none;
}

.desktop-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.15vw, 31px);
  white-space: nowrap;
}

.desktop-nav > a,
.nav-trigger {
  position: relative;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.2;
}

.desktop-nav > a::after,
.nav-trigger::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  content: "";
  transition: transform 0.25s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-group.open .nav-trigger::after {
  transform: scaleX(1);
}

.desktop-nav > a[aria-current="page"] {
  color: var(--gold-soft);
}

.header-phone {
  letter-spacing: 0.015em;
}

.nav-group {
  position: relative;
}

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

.nav-trigger svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.25s ease;
}

.nav-group.open .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 13px);
  left: -22px;
  width: 260px;
  transform: translateY(8px);
  border-radius: 4px;
  visibility: hidden;
  border: 1px solid rgba(188, 149, 101, 0.24);
  background: rgba(2, 1, 1, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  padding: 11px;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-group.open .nav-menu,
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.nav-menu a {
  display: block;
  border-radius: 3px;
  color: var(--white);
  padding: 10px 12px;
  font-size: 14px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(188, 149, 101, 0.16);
  color: var(--gold-soft);
}

.nav-menu a[aria-current="page"] {
  background: rgba(188, 149, 101, 0.12);
  color: var(--gold-soft);
}


/* Two-level Services navigation */

.service-mega-menu {
  width: 292px;
  padding: 12px;
}

.nav-menu-parent {
  position: relative;
}

.nav-menu .nav-parent-link {
  position: relative;
  padding-right: 40px;
}

.nav-menu .nav-parent-link::after {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transition: transform 0.2s ease;
}

.nav-menu-parent:hover > .nav-parent-link::after,
.nav-menu-parent:focus-within > .nav-parent-link::after {
  transform: translate(3px, -50%) rotate(-45deg);
}

.nav-submenu {
  position: absolute;
  top: -13px;
  left: calc(100% + 12px);
  width: 320px;
  transform: translateX(-8px);
  visibility: hidden;
  border: 1px solid rgba(188, 149, 101, 0.3);
  border-radius: 4px;
  background: rgba(2, 1, 1, 0.99);
  box-shadow: var(--shadow);
  opacity: 0;
  padding: 12px;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-submenu::before {
  position: absolute;
  top: 0;
  right: 100%;
  width: 14px;
  height: 100%;
  content: "";
}

.nav-menu-parent:hover > .nav-submenu,
.nav-menu-parent:focus-within > .nav-submenu {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.nav-submenu-label {
  display: block;
  border-bottom: 1px solid rgba(188, 149, 101, 0.24);
  margin-bottom: 4px;
  padding: 11px 14px 13px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-submenu a {
  padding-block: 12px;
}
.header-cta {
  flex: none;
  min-width: 180px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: none;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, width 0.3s ease;
}

.menu-toggle span:nth-child(2) {
  width: 21px;
}

.menu-toggle:hover span:nth-child(2) {
  width: 30px;
}

.site-header.menu-active .menu-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:nth-child(2) {
  width: 0;
}

.site-header.menu-active .menu-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  height: calc(100svh - 91px);
  transform: translateX(100%);
  background: #020101;
  color: var(--white);
  padding: 44px max(28px, calc((100vw - 620px) / 2));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu a:not(.button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(188, 149, 101, 0.24);
  padding: 16px 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 5vw, 2rem);
  line-height: 1.2;
}

.mobile-menu a:not(.button)::after {
  color: var(--gold);
  content: "↗";
  font-family: var(--sans);
  font-size: 16px;
}

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

.mobile-service-group {
  flex: none;
}

.mobile-service-parent {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
}

.mobile-service-parent > a {
  min-width: 0;
}

.mobile-menu .mobile-service-parent > a::after {
  content: none;
}

.mobile-submenu-toggle {
  display: grid;
  min-width: 54px;
  place-items: center;
  border: 0;
  border-bottom: 1px solid rgba(188, 149, 101, 0.24);
  background: transparent;
  color: var(--gold);
}

.mobile-submenu-toggle span {
  display: block;
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}

.mobile-submenu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.mobile-service-children {
  border-bottom: 1px solid rgba(188, 149, 101, 0.3);
  background: rgba(188, 149, 101, 0.08);
  padding: 5px 0 8px 18px;
}

.mobile-service-children[hidden] {
  display: none;
}

.mobile-menu .mobile-service-children a:not(.button) {
  min-height: 44px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.mobile-menu .mobile-service-children a:last-child {
  border-bottom: 0;
}

.mobile-menu .mobile-service-children a:not(.button)::after {
  font-size: 12px;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 28px;
}

.site-header.menu-active .mobile-menu {
  transform: translateX(0);
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  min-height: max(680px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  transform: scale(1.035);
  opacity: 0;
  transition: opacity 1.8s ease, transform 7.5s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide.active {
  transform: scale(1);
  opacity: 1;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(2, 1, 1, 0.62) 0%, rgba(2, 1, 1, 0.46) 54%, rgba(2, 1, 1, 0.31) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 90px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.hero-display {
  max-width: 1000px;
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.2rem, 6.35vw, 4.75rem);
  line-height: 0.99;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  right: max(32px, calc((100vw - 1088px) / 2));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-dots button,
.review-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.hero-dots button::before,
.review-dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  content: "";
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dots button.active::before {
  transform: translate(-50%, -50%) scale(1.45);
  background: var(--gold);
}

/* Services */

.services {
  min-height: 860px;
}

.service-carousel-shell {
  position: relative;
}

.service-carousel-arrow {
  position: absolute;
  z-index: 5;
  top: clamp(179px, 15.6vw, 200px);
  transform: translateY(-50%);
  border-color: transparent;
  background: transparent;
  color: var(--ink);
}

.service-carousel-arrow:hover,
.service-carousel-arrow:focus-visible {
  border-color: var(--gold);
  background: var(--ink);
  color: var(--gold-soft);
}

.service-carousel-arrow:disabled,
.service-carousel-arrow:disabled:hover {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
}

.service-carousel-prev {
  left: -18px;
}

.service-carousel-next {
  right: -18px;
}

.service-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 1px 16px;
  scroll-behavior: smooth;
  scroll-padding-inline: 1px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.services-overview-link {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.service-card {
  display: flex;
  min-width: calc((100% - 40px) / 3);
  flex: 0 0 calc((100% - 40px) / 3);
  flex-direction: column;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.service-image {
  position: relative;
  display: block;
  height: 400px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--warm);
  aspect-ratio: 7 / 8;
  height: auto;
}

.service-image::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  content: "";
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.035);
}

.service-card:hover .service-image::after {
  opacity: 1;
}

.service-card h3 {
  margin: 24px 0 13px;
}

.service-card p {
  min-height: 76px;
  margin-bottom: 16px;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  padding-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

/* Service areas */

.service-areas {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 5%, rgba(188, 149, 101, 0.17), transparent 31%),
    #1d1c19;
  color: rgba(255, 255, 255, 0.72);
}

.service-areas::after {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(188, 149, 101, 0.18);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.area-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}

.area-copy h2 {
  max-width: 580px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.7vw, 4rem);
}

.area-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 30px;
  font-size: 17px;
}

.area-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.area-grid article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px 12px;
  transition: background 0.25s ease, padding 0.25s ease;
}

.area-grid article:hover {
  background: rgba(188, 149, 101, 0.08);
  padding-inline: 20px 12px;
}

.area-grid article > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.15rem;
}

.area-grid h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1.55rem;
}

.area-grid p {
  max-width: 530px;
  margin-bottom: 0;
  font-size: 14px;
}

/* Projects */

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

.project-slider {
  position: relative;
  height: 680px;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
}

.project-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.project-slide.active {
  z-index: 1;
  pointer-events: auto;
  opacity: 1;
}

.project-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}

.project-slide.active > img {
  transform: scale(1.025);
}

.project-card {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 40px));
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  padding: 31px 42px;
  text-align: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.project-card p {
  margin-bottom: 7px;
  color: var(--gold-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-card h2 {
  margin-bottom: 21px;
  font-size: 2rem;
}

.project-controls {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  display: flex;
  height: 56px;
  transform: translateX(-50%);
  align-items: center;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  background: rgba(32, 32, 32, 0.88);
  color: var(--white);
}

.project-controls button {
  display: grid;
  width: 58px;
  height: 56px;
  place-items: center;
  border: 0;
  background: transparent;
  color: inherit;
  transition: background 0.2s ease;
}

.project-controls button:hover,
.project-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.project-count {
  min-width: 82px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.13em;
}

/* Advantages */

.advantages {
  background: var(--white);
}

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

.advantage-card {
  min-height: 366px;
  border-radius: 5px;
  background: var(--warm);
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.1);
  padding: 38px 30px 30px;
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.advantage-card h3 {
  margin-bottom: 20px;
}

.advantage-card p {
  margin-bottom: 0;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border-block: 1px solid var(--line);
  padding-block: 26px;
}

.proof-bar div {
  display: flex;
  min-height: 66px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  text-align: center;
}

.proof-bar div:last-child {
  border-right: 0;
}

.proof-bar strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
}

.proof-bar span {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* FAQ */

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 3.6vw, 2.8rem);
}

.faq-intro p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.4;
}

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

.accordion-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.accordion-item.open,
.accordion-item:hover {
  border-radius: 5px;
  background: var(--warm);
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  text-align: left;
  font-size: 16px;
}

.accordion-item button span {
  flex: none;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.accordion-item.open button span {
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 56px 22px 20px;
}

.accordion-panel p {
  margin-bottom: 0;
}

/* Reviews */

.reviews {
  background: #1d1c19;
  color: rgba(255, 255, 255, 0.82);
}

.reviews-heading {
  max-width: 650px;
  margin: 0 auto 42px;
  text-align: center;
}

.reviews-heading h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.reviews-heading p:last-child {
  margin-bottom: 0;
}

.reviews-heading .eyebrow {
  justify-content: center;
}

.eyebrow-light {
  color: var(--gold-soft);
}

.review-stage {
  position: relative;
  display: grid;
  min-height: 320px;
  max-width: 900px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 52px 80px 78px;
}

.review-slide {
  grid-area: 1 / 1;
  align-self: start;
  visibility: hidden;
  opacity: 0;
  text-align: center;
}

.review-slide.active {
  visibility: visible;
  opacity: 1;
  animation: review-in 0.55s ease both;
}

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

.stars {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 0.18em;
}

.review-slide blockquote {
  margin-bottom: 25px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  line-height: 1.3;
}

.reviewer {
  margin-bottom: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
}

.reviewer span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-controls {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.review-controls > button {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  font-size: 18px;
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 0;
}

.review-dots button.active::before {
  transform: translate(-50%, -50%) scale(1.4);
  background: var(--accent);
}

/* Process */

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

.process-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.process-heading .eyebrow {
  justify-content: center;
}

.process-heading h2 {
  margin-bottom: 16px;
}

.process-heading > p:last-child {
  margin-bottom: 0;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.process-step {
  grid-column: span 2;
  min-height: 278px;
  border-top: 1px solid var(--line);
  padding: 26px 14px 20px 0;
}

.process-step:nth-child(4) {
  grid-column: 2 / span 2;
}

.process-step span {
  display: block;
  margin-bottom: 32px;
  color: rgba(45, 45, 45, 0.22);
  font-family: var(--display);
  font-size: 4.4rem;
  line-height: 0.9;
}

.process-step h3 {
  margin-bottom: 14px;
}

.process-step p {
  margin-bottom: 0;
}

/* About */

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

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  align-items: center;
}

.about-media {
  position: relative;
  height: 610px;
}

.about-media.reveal.visible {
  transform: none;
}

.about-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 126px;
  height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 14px 30px rgba(23, 22, 19, 0.22);
  z-index: 4;
}

.about-badge strong {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
}

.about-badge span {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy {
  position: relative;
  z-index: 2;
  margin-left: -68px;
  border-radius: 5px;
  background: var(--warm);
  box-shadow: var(--shadow);
  padding: 54px 50px;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy p {
  margin-bottom: 17px;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--gold-ink);
  content: "✓";
  font-weight: 700;
}

/* Learning center preview */

.home-insights {
  background: var(--cream);
}

.home-insights-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.home-insights-heading > div {
  max-width: 700px;
}

.home-insights-heading h2 {
  font-size: clamp(2.6rem, 4.8vw, 4.45rem);
  line-height: 0.98;
}

.home-insights-heading .button {
  flex: none;
}

.home-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(188, 149, 101, 0.62);
  box-shadow: 0 20px 45px rgba(2, 1, 1, 0.1);
}

.home-article-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--warm);
}

.home-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-article-card:hover .home-article-image img {
  transform: scale(1.035);
}

.home-article-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 27px 25px 29px;
}

.home-article-meta {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--gold-ink);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-article-meta span {
  color: var(--body);
  letter-spacing: 0.04em;
}

.home-article-card h3 {
  margin-bottom: 15px;
  font-size: clamp(1.65rem, 2.3vw, 2.05rem);
  line-height: 1.06;
}

.home-article-card h3 a:hover,
.home-article-card h3 a:focus-visible {
  color: var(--gold-ink);
}

.home-article-card p:not(.home-article-meta) {
  margin-bottom: 22px;
  font-size: 14px;
}

.home-article-card .text-link {
  margin-top: auto;
}

/* Closing CTA */

.closing-cta {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
}

.closing-cta > img,
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-cta > img {
  object-fit: cover;
  object-position: center 52%;
}

.closing-shade {
  background: rgba(12, 13, 12, 0.3);
}

.closing-content {
  position: relative;
  z-index: 1;
  width: min(570px, calc(100% - 40px));
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  padding: 34px 36px;
  text-align: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.closing-content > p {
  margin-bottom: 8px;
  color: var(--gold-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-content h2 {
  margin-bottom: 22px;
}

.closing-content > span {
  display: block;
  margin-top: 14px;
  font-size: 12px;
}

/* Footer */

.site-footer {
  background: #020101;
  color: rgba(255, 255, 255, 0.68);
  padding: 76px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 0.8fr 1.1fr;
  gap: 48px;
}

.footer-brand img {
  width: 132px;
  margin-bottom: 22px;
  filter: none;
}

.footer-brand p {
  max-width: 310px;
  margin-bottom: 17px;
  font-size: 14px;
}

.footer-brand .service-area {
  color: var(--gold);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h3 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-column a,
.footer-column p {
  margin: 0;
  font-size: 13px;
}

.footer-column > a:hover,
.footer-column > a:focus-visible {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-column {
  gap: 12px;
}

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(188, 149, 101, 0.45);
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(188, 149, 101, 0.22);
  padding-top: 23px;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 10px;
}

.back-to-top {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  transform: translateY(80px);
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.2s ease;
}

.back-to-top.visible {
  transform: translateY(0);
  opacity: 1;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--gold-soft);
}

/* Scroll reveals */

.reveal {
  transform: none;
  opacity: 1;
}

.js-reveal .reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal .reveal.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 44px, 980px);
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav > a,
  .nav-trigger {
    font-size: 13px;
  }

  .header-cta {
    min-width: 155px;
    padding-inline: 17px;
  }
}

@media (min-width: 1080px) {
  .service-carousel-prev {
    left: -44px;
  }

  .service-carousel-next {
    right: -44px;
  }
}

@media (min-width: 1200px) {
  .service-carousel-prev {
    left: -52px;
  }

  .service-carousel-next {
    right: -52px;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 87px;
  }

  .site-header.scrolled,
  .site-header.menu-active {
    height: 87px;
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    gap: 16px;
  }

  .brand {
    width: 90px;
  }

  .brand img,
  .site-header.scrolled .brand img,
  .site-header.menu-active .brand img {
    height: 66px;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    flex-direction: column;
    height: calc(100svh - 87px);
  }

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

  .hero-display {
    font-size: clamp(3.4rem, 8vw, 4rem);
  }

  .service-card {
    min-width: calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
  }

  .service-carousel-arrow {
    top: calc(28.5714vw - 18.286px);
  }

  .area-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .area-copy {
    max-width: 720px;
  }

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

  .advantage-card {
    min-height: 0;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-intro {
    position: static;
    max-width: 560px;
  }

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

  .process-step,
  .process-step:nth-child(4) {
    grid-column: auto;
  }

  .process-step:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    justify-self: center;
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .about-media {
    height: 610px;
  }

  .about-badge {
    right: auto;
    left: 24px;
  }

  .about-copy {
    margin-left: -100px;
    padding: 42px 35px;
  }

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

  .home-article-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .home-article-card:last-child .home-article-image {
    height: 100%;
    aspect-ratio: auto;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
  }

  .contact-column {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 40px);
  }

  .section {
    padding-block: 66px;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-active {
    height: 78px;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand {
    width: 74px;
  }

  .brand img,
  .site-header.scrolled .brand img,
  .site-header.menu-active .brand img {
    height: 56px;
  }

  .header-cta {
    min-width: 0;
    min-height: 44px;
    padding: 10px 13px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .menu-toggle span {
    width: 27px;
  }

  .mobile-menu {
    height: calc(100svh - 78px);
    padding: 24px 28px max(42px, calc(24px + env(safe-area-inset-bottom)));
    overflow-y: auto;
  }

  .hero {
    min-height: max(650px, 100svh);
  }

  .hero-content {
    width: calc(100% - 22px);
    padding-top: 58px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 1.25rem;
  }

  .hero-display {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    line-height: 1;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-actions .button {
    padding-inline: 15px;
    font-size: 12px;
  }

  .hero-dots {
    right: auto;
    bottom: 24px;
    left: 20px;
  }

  .heading-row {
    align-items: flex-start;
  }

  .services {
    min-height: 760px;
  }

  .service-card {
    min-width: 100%;
    flex-basis: 100%;
  }

  .service-image {
    aspect-ratio: 7 / 8;
    height: auto;
  }

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

  .service-carousel-arrow {
    top: calc(57.1429vw - 22.857px);
    width: 44px;
    height: 44px;
    border-color: var(--gold);
    background: rgba(250, 246, 240, 0.96);
    box-shadow: 0 8px 24px rgba(2, 1, 1, 0.2);
    color: var(--ink);
  }

  .service-carousel-arrow:hover,
  .service-carousel-arrow:focus-visible {
    background: var(--ink);
    color: var(--gold-soft);
  }

  .service-carousel-arrow:disabled,
  .service-carousel-arrow:disabled:hover {
    border-color: var(--gold);
    background: rgba(250, 246, 240, 0.96);
    color: var(--ink);
  }

  .service-carousel-prev {
    left: -14px;
  }

  .service-carousel-next {
    right: -14px;
  }

  .project-slider {
    height: 610px;
  }

  .project-card {
    width: calc(100% - 32px);
    padding: 27px 24px;
  }

  .project-card h2 {
    font-size: 1.68rem;
  }

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

  .proof-bar div {
    padding: 18px 8px;
  }

  .proof-bar span {
    max-width: 14ch;
    font-size: 10px;
    letter-spacing: 0.05em;
    line-height: 1.35;
    text-wrap: balance;
  }

  .proof-bar div:nth-child(2) {
    border-right: 0;
  }

  .proof-bar div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .faq-layout {
    width: calc(100% - 32px);
  }

  .faq-intro h2 {
    font-size: 2.2rem;
  }

  .accordion-item button {
    min-height: 68px;
    padding-inline: 15px;
  }

  .accordion-panel {
    padding: 0 40px 20px 15px;
  }

  .review-stage {
    min-height: 390px;
    padding: 42px 22px 74px;
  }

  .review-slide blockquote {
    font-size: 1.45rem;
  }

  .process-heading {
    margin-bottom: 32px;
  }

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

  .process-step,
  .process-step:last-child {
    grid-column: auto;
    display: grid;
    min-height: 0;
    max-width: none;
    grid-template-columns: 60px 1fr;
    gap: 22px;
    padding: 24px 0;
  }

  .process-step span {
    margin: 0;
    font-size: 3.8rem;
  }

  .about-grid {
    display: block;
  }

  .about-media {
    height: 430px;
  }

  .about-badge {
    right: 16px;
    left: auto;
    bottom: 16px;
    width: 105px;
    height: 105px;
  }

  .about-copy {
    width: calc(100% - 24px);
    margin: -36px auto 0;
    padding: 36px 26px;
  }

  .home-insights-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

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

  .home-article-card:last-child {
    grid-column: auto;
    display: flex;
  }

  .home-article-card:last-child .home-article-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .closing-cta {
    min-height: 400px;
  }

  .closing-content {
    padding: 30px 20px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-brand,
  .footer-column {
    align-items: center;
  }

  .footer-brand img,
  .footer-brand p {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-column {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 45px;
    text-align: center;
  }

  .back-to-top {
    display: none;
  }
}

@media (max-width: 410px) {
  .header-cta {
    padding-inline: 10px;
    font-size: 12px;
  }

  .hero-actions .button {
    padding-inline: 11px;
  }

  .service-image {
    aspect-ratio: 7 / 8;
    height: auto;
  }

  .review-stage {
    min-height: 430px;
  }
}

@media (max-width: 370px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }
}

@media (max-width: 350px) {
  .about-copy {
    width: calc(100% - 16px);
    padding: 30px 22px;
  }

  .hero-display {
    font-size: 2.5rem;
  }

  .hero-actions .button {
    padding-inline: 9px;
  }
}

@media (max-width: 1024px) and (max-height: 560px) and (orientation: landscape) {
  .mobile-menu {
    padding-top: 14px;
  }

  .mobile-menu a:not(.button) {
    padding-block: 10px;
    font-size: 1.25rem;
  }

  .hero {
    min-height: 610px;
  }
}

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

  .reveal {
    transform: none;
    opacity: 1;
  }
}

/* Site-wide compact scale: keeps the full experience polished without oversized UI. */
html {
  font-size: 15px;
}

:root {
  --page: min(1120px, calc(100vw - 56px));
  --header-height: 96px;
}

body {
  font-size: 15px;
  line-height: 1.55;
}

h2 {
  font-size: clamp(1.85rem, 2.65vw, 2.3rem);
}

h3 {
  font-size: 1.45rem;
}

.section {
  padding-block: 82px;
}

.site-header.scrolled,
.site-header.menu-active {
  height: 84px;
}

.brand {
  width: 102px;
}

.brand img,
.site-header.scrolled .brand img,
.site-header.menu-active .brand img {
  height: 70px;
}

.button {
  min-height: 46px;
  padding: 10px 22px;
  font-size: 14px;
}

.hero {
  min-height: max(610px, 90svh);
}

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

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.hero-display {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3.35rem, 5.2vw, 4.15rem);
}

.hero-subtitle {
  margin-bottom: 21px;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.services {
  min-height: 745px;
}

.services-overview-link {
  margin-top: 34px;
}

.area-image {
  height: 450px;
}

.area-layout {
  gap: clamp(46px, 6vw, 78px);
}

.area-copy h2 {
  font-size: clamp(2.15rem, 3.75vw, 3.35rem);
}

.area-copy > p:not(.eyebrow) {
  font-size: 16px;
}

.area-grid article {
  padding-block: 20px;
}

.area-grid h3 {
  font-size: 1.4rem;
}

.project-slider {
  height: 560px;
}

.project-card {
  width: min(590px, calc(100% - 40px));
  padding: 27px 36px;
}

.advantage-card {
  min-height: 315px;
  padding: 32px 27px 27px;
}

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

.proof-bar {
  margin-top: 36px;
  padding-block: 22px;
}

.faq-layout {
  gap: 64px;
}

.faq-intro h2 {
  font-size: clamp(2.05rem, 3vw, 2.5rem);
}

.faq-intro p {
  font-size: 16px;
}

.accordion-item button {
  min-height: 66px;
  font-size: 15px;
}

.review-stage {
  min-height: 285px;
  padding: 42px 68px 70px;
}

.review-slide blockquote {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

.process-heading {
  margin-bottom: 44px;
}

.process-step {
  min-height: 235px;
  padding-top: 22px;
}

.process-step span {
  margin-bottom: 25px;
  font-size: 3.7rem;
}

.about-media {
  height: 520px;
}

.about-copy {
  padding: 44px 42px;
}

.home-insights-heading {
  margin-bottom: 38px;
}

.home-insights-heading h2 {
  font-size: clamp(2.2rem, 3.75vw, 3.55rem);
}

.home-article-content {
  padding: 23px 22px 25px;
}

.home-article-card h3 {
  font-size: clamp(1.5rem, 2vw, 1.85rem);
}

.closing-cta {
  min-height: 370px;
}

.closing-content {
  width: min(540px, calc(100% - 40px));
  padding: 29px 32px;
}

.site-footer {
  padding-top: 62px;
}

.footer-bottom {
  margin-top: 48px;
}

@media (max-width: 1120px) {
  :root {
    --page: min(100% - 44px, 1020px);
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 84px;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-active {
    height: 84px;
  }

  .mobile-menu {
    height: calc(100svh - 84px);
  }

  .hero-display {
    font-size: clamp(3rem, 7vw, 3.55rem);
  }

  .about-media {
    height: 500px;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 32px);
    --header-height: 72px;
  }

  html {
    font-size: 15px;
  }

  body {
    font-size: 15px;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .section {
    padding-block: 56px;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-active {
    height: 72px;
  }

  .brand {
    width: 70px;
  }

  .brand img,
  .site-header.scrolled .brand img,
  .site-header.menu-active .brand img {
    height: 52px;
  }

  .mobile-menu {
    height: calc(100svh - 72px);
  }

  .hero {
    min-height: max(560px, 88svh);
  }

  .hero-content {
    width: calc(100% - 18px);
    padding-top: 48px;
  }

  .hero-display {
    font-size: clamp(2.35rem, 10.5vw, 2.9rem);
  }

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

  .services {
    min-height: 690px;
  }

  .project-slider {
    height: 520px;
  }

  .project-card {
    padding: 23px 20px;
  }

  .review-stage {
    min-height: 350px;
    padding: 35px 20px 68px;
  }

  .review-slide blockquote {
    font-size: 1.35rem;
  }

  .process-step,
  .process-step:last-child {
    padding-block: 20px;
  }

  .process-step span {
    font-size: 3.2rem;
  }

  .about-media {
    height: 385px;
  }

  .about-copy {
    padding: 31px 23px;
  }

  .home-insights-heading h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .closing-cta {
    min-height: 340px;
  }

  .site-footer {
    padding-top: 50px;
  }
}

/* Larger, better-balanced desktop navigation. Mobile keeps its compact controls. */
@media (min-width: 1121px) {
  :root {
    --header-height: 108px;
  }

  .header-inner {
    transform: translateX(clamp(12px, 1.15vw, 20px));
    gap: 32px;
  }

  .site-header.scrolled,
  .site-header.menu-active {
    height: 94px;
  }

  .brand {
    width: 118px;
  }

  .brand img {
    height: 84px;
  }

  .site-header.scrolled .brand img,
  .site-header.menu-active .brand img {
    height: 74px;
  }

  .desktop-nav {
    gap: clamp(19px, 2.15vw, 34px);
  }

  .desktop-nav > a,
  .nav-trigger {
    font-size: 16.5px;
    font-weight: 500;
  }

  .header-cta {
    min-width: 194px;
    min-height: 50px;
    transform: translateX(clamp(0px, calc((100vw - 1160px) * 0.2), 44px));
    font-size: 15px;
  }
}

@media (max-width: 1024px) and (max-height: 560px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
  }
}

/* Home-page heading scale: retain the compact layout while restoring visual hierarchy. */
.home-page .hero h1 {
  font-size: clamp(1.6rem, 2.25vw, 2rem);
}

.home-page .hero-display {
  font-size: clamp(4rem, 6.1vw, 4.75rem);
}

.home-page .section-heading h2,
.home-page .process-heading h2,
.home-page .reviews-heading h2,
.home-page .about-copy h2,
.home-page .closing-content h2 {
  font-size: clamp(2.2rem, 3.4vw, 2.85rem);
}

.home-page .area-copy h2 {
  font-size: clamp(2.55rem, 4.6vw, 3.9rem);
}

.home-page .faq-intro h2 {
  font-size: clamp(2.4rem, 3.6vw, 2.85rem);
}

.home-page .project-card h2 {
  font-size: clamp(2rem, 2.8vw, 2.35rem);
}

.home-page .service-card h3,
.home-page .advantage-card h3,
.home-page .process-step h3 {
  font-size: clamp(1.55rem, 2vw, 1.75rem);
}

.home-page .area-grid h3 {
  font-size: 1.55rem;
}

@media (max-width: 680px) {
  .home-page .hero h1 {
    font-size: clamp(1.35rem, 5.8vw, 1.55rem);
  }

  .home-page .hero-display {
    font-size: clamp(2.85rem, 12.5vw, 3.35rem);
  }

  .home-page .section-heading h2,
  .home-page .process-heading h2,
  .home-page .reviews-heading h2,
  .home-page .about-copy h2,
  .home-page .closing-content h2,
  .home-page .area-copy h2,
  .home-page .faq-intro h2 {
    font-size: clamp(2.2rem, 9.5vw, 2.65rem);
  }

  .home-page .project-card h2 {
    font-size: clamp(1.8rem, 7.7vw, 2rem);
  }

  .home-page .service-card h3,
  .home-page .advantage-card h3,
  .home-page .process-step h3,
  .home-page .area-grid h3 {
    font-size: 1.6rem;
  }
}
