:root {
  --black: #020303;
  --panel: #070808;
  --panel-soft: #101111;
  --ink: #08090c;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-dark: rgba(8, 9, 12, 0.64);
  --gold: #a97922;
  --gold-light: #e8bd66;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(8, 9, 12, 0.12);
  --body-sans: "Segoe UI", Arial, sans-serif;
  --title-serif: "Noto Serif Hebrew", "Frank Ruhl Libre", "David Libre", Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --hero-progress: 0;
  --gs-progress: 0;
  --gs-cloud-cover: 0;
  --footer-progress: 0;
  --footer-cover-opacity: 0.22;
  --footer-cover-y: -118px;
  --footer-bg-y: -34px;
  --footer-bg-shift: -6%;
  --footer-bg-scale: 1.04;
  --footer-brand-y: 0px;
  --footer-brand-scale: 1;
  --footer-brand-opacity: 1;
  --footer-title-y: 0px;
  --footer-title-opacity: 1;
  --footer-details-y: 0px;
  --footer-details-opacity: 1;
  --footer-nav-y: 0px;
  --footer-nav-opacity: 1;
}

* {
  box-sizing: border-box;
}

html {
  background: #000;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #000;
  color: var(--ink);
  font-family: var(--body-sans);
  letter-spacing: 0;
}

body.menu-open,
body.contact-open {
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
}

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

button {
  font: inherit;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 14px;
  right: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: #e9f7ff;
}

.site-shell::after {
  content: "";
  position: fixed;
  z-index: 55;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.16) 0%, rgba(2, 3, 3, 0.08) 38%, rgba(2, 3, 3, 0.46) 100%),
    radial-gradient(circle at 78% 16%, rgba(232, 189, 102, 0.2), transparent 30%),
    radial-gradient(ellipse at 96% 52%, rgba(169, 121, 34, 0.24), transparent 38%),
    rgba(2, 3, 3, 0.24);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(2px) saturate(108%);
  transition: opacity 700ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: opacity;
}

body.menu-open .site-shell::after,
body.contact-open .site-shell::after {
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  --header-scale: 1;
  --header-height: 144px;
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  direction: ltr;
  height: var(--header-height);
  padding: 0 clamp(34px, 6vw, 96px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  pointer-events: none;
  transition: height 320ms var(--ease), background 320ms ease, backdrop-filter 320ms ease, box-shadow 320ms ease;
}

body.header-compact .site-header {
  --header-scale: 0.8;
  --header-height: 116px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.42) 48%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(18px) saturate(118%);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
  box-shadow: 0 18px 54px rgba(8, 18, 28, 0.08);
}

.site-header > * {
  pointer-events: auto;
}

.header-left {
  position: absolute;
  top: calc(50% - 27px);
  right: clamp(34px, 6vw, 96px);
  display: flex;
  align-items: center;
}

.header-contact {
  position: absolute;
  top: calc(50% - 27px);
  left: clamp(34px, 6vw, 96px);
  display: flex;
  align-items: center;
}

.menu-button {
  display: grid;
  position: relative;
  z-index: 2;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(115, 83, 33, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.13)),
    radial-gradient(circle at 32% 20%, rgba(232, 189, 102, 0.22), transparent 46%);
  color: var(--ink);
  box-shadow:
    0 18px 50px rgba(8, 9, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: scale(var(--header-scale));
  transform-origin: center;
  transition: transform 320ms var(--ease), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.menu-button svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.85;
}

.contact-button {
  display: grid;
  position: relative;
  z-index: 2;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid rgba(115, 83, 33, 0.36);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.13)),
    radial-gradient(circle at 32% 20%, rgba(232, 189, 102, 0.22), transparent 46%);
  color: var(--ink);
  box-shadow:
    0 18px 50px rgba(8, 9, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transform: scale(var(--header-scale));
  transform-origin: center;
  transition: transform 320ms var(--ease), border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.contact-button svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.35;
}

.site-nav {
  position: fixed;
  z-index: 140;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: clamp(92px, 15dvh, 142px) minmax(0, 1fr) auto;
  gap: clamp(10px, 2dvh, 22px);
  width: clamp(390px, 26vw, 470px);
  min-width: 0;
  height: 100dvh;
  max-height: 100dvh;
  padding: clamp(34px, 3.9vw, 58px) clamp(30px, 3.3vw, 48px);
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(232, 189, 102, 0.7);
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.34), rgba(2, 3, 3, 0.58)),
    linear-gradient(90deg, rgba(232, 189, 102, 0.1), transparent 18%, rgba(2, 3, 3, 0.3) 100%),
    url("./assets/generated/menu-marble-background.png") center center / cover no-repeat,
    linear-gradient(145deg, #030404 0%, #111211 44%, #050505 70%, #010202 100%);
  box-shadow:
    -38px 0 96px rgba(0, 0, 0, 0.46),
    -12px 0 42px rgba(169, 121, 34, 0.18),
    inset 14px 0 42px rgba(232, 189, 102, 0.1),
    inset -1px 0 0 rgba(255, 255, 255, 0.08);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  text-align: right;
  transform: translate3d(106%, 0, 0);
  transform-origin: right center;
  transition:
    transform 860ms cubic-bezier(0.65, 0, 0.35, 1),
    opacity 660ms ease;
  backdrop-filter: blur(22px) saturate(125%);
  will-change: transform, opacity;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 42% at 78% 5%, rgba(255, 255, 255, 0.04), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.64;
}

.site-nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(232, 189, 102, 0.54) 18%, #f1c978 48%, rgba(232, 189, 102, 0.72) 78%, transparent 100%),
    linear-gradient(90deg, rgba(255, 247, 213, 0.82), rgba(169, 121, 34, 0.34));
  box-shadow:
    0 0 30px rgba(232, 189, 102, 0.55),
    12px 0 34px rgba(232, 189, 102, 0.18);
}

.menu-open .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 540ms ease;
}

.menu-drawer-head,
.menu-links,
.menu-cta {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 90ms;
  will-change: transform, opacity;
}

.menu-open .menu-drawer-head,
.menu-open .menu-links,
.menu-open .menu-cta {
  opacity: 1;
  transform: translateX(0);
}

.menu-open .menu-drawer-head {
  transition-delay: 180ms;
}

.menu-open .menu-links {
  transition-delay: 260ms;
}

.menu-open .menu-cta {
  transition-delay: 360ms;
}

.menu-drawer-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  direction: ltr;
  min-height: 0;
  gap: 18px;
  padding-right: 66px;
}

.menu-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: min(318px, 100%);
  min-height: 96px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.menu-logo::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -12px;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.86), transparent);
}

.menu-logo img {
  width: 100%;
  max-width: 310px;
  height: auto;
  transform: none;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.42));
}

.menu-close {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.menu-close svg {
  width: 26px;
  height: 26px;
  color: #e8bd66;
  stroke-width: 1.65;
}

.menu-links {
  min-height: 0;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 0;
}

.menu-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: clamp(42px, 7.1dvh, 70px);
  padding: 0 clamp(54px, 4.5vw, 76px) 0 clamp(14px, 1.4vw, 20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--title-serif);
  font-size: clamp(21px, 1.85vw, 31px);
  font-weight: 500;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.menu-links a[aria-current="page"] {
  color: #e8bd66;
}

.menu-links a[aria-current="page"]::before {
  content: "";
  width: 48px;
  height: 2px;
  margin-left: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #e8bd66);
  box-shadow: 0 0 18px rgba(232, 189, 102, 0.42);
}

.menu-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
  opacity: 0.72;
  transition: width 260ms var(--ease), opacity 260ms ease;
}

.menu-links a:last-child {
  border-bottom: 0;
}

.menu-cta {
  display: inline-flex;
  align-items: center;
  align-self: end;
  justify-content: center;
  gap: 14px;
  min-height: clamp(48px, 6.6dvh, 58px);
  padding: 0 24px;
  border: 1px solid rgba(232, 189, 102, 0.72);
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(169, 121, 34, 0.96), rgba(232, 189, 102, 0.82)),
    #a97922;
  color: #08090c;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(169, 121, 34, 0.26);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, filter 220ms ease;
}

.menu-cta svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.9;
}

.contact-drawer {
  position: fixed;
  z-index: 140;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-rows: clamp(92px, 15dvh, 142px) auto auto auto;
  align-content: start;
  gap: clamp(6px, 1.05dvh, 11px);
  width: clamp(390px, 26vw, 470px);
  min-width: 0;
  height: 100dvh;
  max-height: 100dvh;
  padding: clamp(18px, 2vw, 28px) clamp(24px, 2.8vw, 40px);
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scrollbar-width: none;
  border-right: 1px solid rgba(232, 189, 102, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.36), rgba(2, 3, 3, 0.6)),
    linear-gradient(270deg, rgba(232, 189, 102, 0.12), transparent 20%, rgba(2, 3, 3, 0.3) 100%),
    url("./assets/generated/menu-marble-background.png") center center / cover no-repeat,
    linear-gradient(145deg, #030404 0%, #111211 44%, #050505 70%, #010202 100%);
  box-shadow:
    38px 0 96px rgba(0, 0, 0, 0.46),
    12px 0 42px rgba(169, 121, 34, 0.18),
    inset -14px 0 42px rgba(232, 189, 102, 0.1),
    inset 1px 0 0 rgba(255, 255, 255, 0.08);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  text-align: right;
  transform: translate3d(-106%, 0, 0);
  transform-origin: left center;
  transition:
    transform 860ms cubic-bezier(0.65, 0, 0.35, 1),
    opacity 660ms ease;
  backdrop-filter: blur(22px) saturate(125%);
  will-change: transform, opacity;
}

.contact-drawer::-webkit-scrollbar {
  display: none;
}

.contact-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 42% at 22% 5%, rgba(255, 255, 255, 0.04), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 32%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.64;
}

.contact-drawer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(232, 189, 102, 0.54) 18%, #f1c978 48%, rgba(232, 189, 102, 0.72) 78%, transparent 100%),
    linear-gradient(270deg, rgba(255, 247, 213, 0.82), rgba(169, 121, 34, 0.34));
  box-shadow:
    0 0 30px rgba(232, 189, 102, 0.55),
    -12px 0 34px rgba(232, 189, 102, 0.18);
}

.contact-open .contact-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 540ms ease;
}

.contact-drawer-head,
.contact-panel-copy,
.contact-actions,
.contact-details {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 90ms;
  will-change: transform, opacity;
}

.contact-open .contact-drawer-head,
.contact-open .contact-panel-copy,
.contact-open .contact-actions,
.contact-open .contact-details {
  opacity: 1;
  transform: translateX(0);
}

.contact-open .contact-drawer-head {
  transition-delay: 180ms;
}

.contact-open .contact-panel-copy {
  transition-delay: 240ms;
}

.contact-open .contact-actions {
  transition-delay: 300ms;
}

.contact-open .contact-details {
  transition-delay: 390ms;
}

.contact-drawer-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  direction: ltr;
  min-height: 0;
  padding-left: 66px;
}

.contact-logo {
  display: grid;
  place-items: center;
  width: min(318px, 100%);
  min-height: 96px;
}

.contact-logo img {
  width: 100%;
  max-width: 310px;
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.42));
}

.contact-close {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

.contact-close svg {
  width: 26px;
  height: 26px;
  color: #e8bd66;
  stroke-width: 1.65;
}

.contact-panel-copy {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: clamp(8px, 1.1dvh, 14px) 0 clamp(8px, 1.1dvh, 14px);
  text-align: right;
}

.contact-panel-copy p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 250, 240, 0.86);
  font-family: var(--title-serif);
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 500;
  line-height: 1.25;
}

.contact-panel-copy span {
  width: min(198px, 58%);
  height: 1px;
  background: linear-gradient(270deg, transparent, rgba(232, 189, 102, 0.92));
  box-shadow: 0 0 18px rgba(232, 189, 102, 0.36);
}

.contact-actions {
  align-self: stretch;
  display: grid;
  gap: 7px;
}

.contact-person {
  display: grid;
  gap: 5px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(2, 3, 3, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.2);
}

.contact-person-title {
  display: grid;
  justify-items: start;
  gap: 2px;
  color: #fffaf0;
  text-align: right;
}

.contact-person-title small {
  color: rgba(232, 189, 102, 0.9);
  font-family: var(--body-sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.contact-person-title strong {
  color: #fffaf0;
  cursor: pointer;
  font-family: var(--title-serif);
  font-size: clamp(20px, 1.34vw, 26px);
  font-weight: 500;
  line-height: 1.08;
}

.contact-person-title em {
  color: rgba(255, 250, 240, 0.64);
  font-family: var(--body-sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
}

.contact-action,
.contact-person-mail,
.contact-details a,
.contact-details div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  text-align: right;
}

.contact-person-mail {
  gap: 9px;
  min-height: 30px;
  padding: 4px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 240, 0.9);
}

.contact-person-mail svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: #e8bd66;
  stroke-width: 1.75;
}

.contact-action {
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(232, 189, 102, 0.46);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(4, 5, 5, 0.54);
  color: #fffaf0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.24);
}

.contact-whatsapp {
  border-color: rgba(232, 189, 102, 0.72);
  background:
    linear-gradient(135deg, rgba(169, 121, 34, 0.96), rgba(232, 189, 102, 0.82)),
    #a97922;
  color: #070807;
}

.contact-action-icon {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  border: 1px solid rgba(232, 189, 102, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-whatsapp .contact-action-icon {
  border-color: rgba(8, 9, 12, 0.28);
  background: rgba(255, 255, 255, 0.18);
}

.contact-action svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.85;
}

.contact-action small,
.contact-person-mail small,
.contact-details small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 250, 240, 0.58);
  font-family: var(--body-sans);
  font-size: 10.5px;
  font-weight: 600;
}

.contact-whatsapp small {
  color: rgba(8, 9, 12, 0.64);
}

.contact-action span:last-child,
.contact-person-mail span,
.contact-details span {
  min-width: 0;
  font-family: var(--body-sans);
  font-size: clamp(13px, 0.84vw, 15.5px);
  font-weight: 700;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.contact-phone span:last-child {
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
}

.contact-whatsapp span:last-child {
  color: #11100d;
  font-weight: 700;
}

.contact-details {
  align-self: stretch;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-details a,
.contact-details div {
  min-height: 38px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 250, 240, 0.9);
}

.contact-details svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: #e8bd66;
  stroke-width: 1.75;
}

.gs-logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: clamp(116px, 8.4vw, 132px);
  transform: translate(-50%, -50%) scale(var(--header-scale));
  transform-origin: center;
  transition: transform 320ms var(--ease);
}

.gs-logo img,
.wave-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.wave-logo {
  display: none;
}

.wave-template .gs-logo {
  display: none;
}

.wave-template .wave-logo {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(128px, 10.5vw, 172px);
  transform: translate(-50%, -50%) scale(var(--header-scale));
  transform-origin: center;
  transition: transform 320ms var(--ease);
  filter:
    drop-shadow(0 1px 10px rgba(255, 255, 255, 0.52))
    drop-shadow(0 14px 30px rgba(0, 0, 0, 0.18));
}

.sky-story {
  position: relative;
  z-index: 5;
  overflow: visible;
  isolation: isolate;
  min-height: auto;
  background: #e9f7ff;
}

.sky-story::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(52% 28% at 10% 20%, rgba(255, 255, 255, 0.88) 0 32%, transparent 74%),
    radial-gradient(46% 24% at 84% 18%, rgba(255, 255, 255, 0.82) 0 34%, transparent 76%),
    radial-gradient(48% 28% at 4% 50%, rgba(255, 255, 255, 0.72) 0 31%, transparent 72%),
    radial-gradient(48% 28% at 96% 48%, rgba(255, 255, 255, 0.72) 0 31%, transparent 72%),
    radial-gradient(62% 28% at 50% 67%, rgba(255, 255, 255, 0.86) 0 36%, transparent 78%),
    linear-gradient(180deg, #eaf7ff 0%, #d8efff 24%, #eef8ff 50%, #ffffff 77%, #f8fcff 100%);
  opacity: 1;
}

.sky-story::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 22% at 16% 36%, rgba(255, 255, 255, 0.58) 0 30%, transparent 74%),
    radial-gradient(56% 24% at 82% 38%, rgba(255, 255, 255, 0.5) 0 30%, transparent 76%),
    radial-gradient(64% 22% at 50% 76%, rgba(255, 255, 255, 0.92) 0 35%, transparent 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.02) 24%, rgba(255, 255, 255, 0.18) 62%, rgba(255, 255, 255, 0.86) 100%);
}

.hero {
  position: relative;
  z-index: 3;
  min-height: min(840px, 94vh);
  overflow: visible;
  isolation: isolate;
  background:
    radial-gradient(52% 28% at 10% 20%, rgba(255, 255, 255, 0.58) 0 32%, transparent 74%),
    radial-gradient(46% 24% at 84% 18%, rgba(255, 255, 255, 0.5) 0 34%, transparent 76%),
    linear-gradient(180deg, rgba(215, 237, 249, 0.82) 0%, rgba(234, 247, 255, 0.66) 54%, rgba(255, 255, 255, 0.9) 100%),
    url("./assets/generated/hero-main-gal-shmul-3.png") center 50% / cover no-repeat,
    linear-gradient(180deg, #d7edf9 0%, #eaf7ff 54%, #ffffff 100%);
}

.hero-bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 50%;
}

@media (min-width: 1500px) {
  .hero {
    min-height: clamp(1000px, 64vw, 1280px);
  }

  .hero-bg {
    top: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
  }
}

.hero-cloud-layer {
  position: absolute;
  right: -12%;
  left: -12%;
  pointer-events: none;
}

.hero-cloud-layer::before,
.hero-cloud-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.hero-cloud-back {
  z-index: 2;
  top: 24%;
  height: 42%;
  opacity: calc(0.08 + var(--hero-progress) * 0.22);
  transform: translate3d(calc(var(--hero-progress) * 28px), calc(var(--hero-progress) * -42px), 0);
}

.hero-cloud-back::before {
  background:
    radial-gradient(ellipse at 4% 56%, rgba(255, 255, 255, 0.82) 0 18%, transparent 36%),
    radial-gradient(ellipse at 18% 48%, rgba(255, 255, 255, 0.72) 0 17%, transparent 35%),
    radial-gradient(ellipse at 82% 50%, rgba(255, 255, 255, 0.76) 0 18%, transparent 36%),
    radial-gradient(ellipse at 98% 54%, rgba(255, 255, 255, 0.86) 0 19%, transparent 37%);
  filter: blur(1.4px);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 38%, rgba(255, 255, 255, 0) 70%),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.38), transparent 34%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 16;
  right: -12%;
  bottom: -260px;
  left: -12%;
  height: 540px;
  pointer-events: none;
  background:
    radial-gradient(28% 42% at 7% 38%, rgba(255, 255, 255, 0.98) 0 30%, rgba(255, 255, 255, 0.72) 45%, transparent 72%),
    radial-gradient(30% 44% at 92% 36%, rgba(255, 255, 255, 0.98) 0 32%, rgba(255, 255, 255, 0.74) 48%, transparent 74%),
    radial-gradient(36% 42% at 50% 52%, rgba(255, 255, 255, 0.92) 0 30%, rgba(255, 255, 255, 0.62) 46%, transparent 76%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.82) 42%, #ffffff 66%, #ffffff 100%);
  filter: blur(1.2px);
  opacity: calc(0.52 + var(--hero-progress) * 0.48);
  transform: translate3d(0, calc(var(--hero-progress) * -250px), 0);
  will-change: transform, opacity;
}

.hero-mist {
  position: absolute;
  z-index: 14;
  right: -8%;
  bottom: -31%;
  left: -8%;
  height: 56%;
  background:
    url("./assets/generated/clouds-natural-bank-opaque.png") center top / min(1760px, 132%) auto no-repeat,
    radial-gradient(30% 46% at 9% 44%, rgba(255, 255, 255, 0.98) 0 28%, rgba(255, 255, 255, 0.7) 44%, transparent 70%),
    radial-gradient(32% 48% at 92% 42%, rgba(255, 255, 255, 0.98) 0 30%, rgba(255, 255, 255, 0.72) 46%, transparent 72%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.86) 58%, #ffffff 100%);
  filter: brightness(1.07) saturate(0.92) blur(0.25px);
  pointer-events: none;
  transform: translate3d(calc(var(--hero-progress) * -22px), calc(var(--hero-progress) * -330px), 0);
  opacity: calc(0.46 + var(--hero-progress) * 0.54);
}

.hero-cloud-front {
  z-index: 15;
  bottom: -31%;
  height: 56%;
  opacity: calc(0.44 + var(--hero-progress) * 0.56);
  transform: translate3d(calc(var(--hero-progress) * -28px), calc(var(--hero-progress) * -405px), 0);
}

.hero-cloud-front::before {
  background:
    url("./assets/generated/clouds-natural-bank-opaque.png") center top / min(1820px, 132%) auto no-repeat,
    radial-gradient(ellipse at 3% 68%, rgba(255, 255, 255, 0.98) 0 24%, transparent 46%),
    radial-gradient(ellipse at 19% 58%, rgba(255, 255, 255, 0.98) 0 24%, transparent 46%),
    radial-gradient(ellipse at 42% 64%, rgba(255, 255, 255, 0.94) 0 26%, transparent 48%),
    radial-gradient(ellipse at 64% 58%, rgba(255, 255, 255, 0.94) 0 24%, transparent 46%),
    radial-gradient(ellipse at 82% 64%, rgba(255, 255, 255, 0.98) 0 26%, transparent 48%),
    radial-gradient(ellipse at 100% 58%, rgba(255, 255, 255, 0.98) 0 26%, transparent 48%);
  filter: brightness(1.06) saturate(0.92) blur(0.5px);
}

.hero-cloud-front::after {
  background:
    radial-gradient(22% 44% at 90% 28%, rgba(255, 255, 255, 0.98) 0 34%, rgba(255, 255, 255, 0.72) 48%, transparent 78%),
    radial-gradient(28% 44% at 98% 45%, rgba(255, 255, 255, 0.96) 0 32%, rgba(255, 255, 255, 0.68) 48%, transparent 76%),
    radial-gradient(34% 44% at 10% 80%, rgba(255, 255, 255, 0.9) 0 36%, transparent 76%),
    radial-gradient(36% 42% at 41% 86%, rgba(255, 255, 255, 0.8) 0 34%, transparent 74%),
    radial-gradient(34% 44% at 82% 78%, rgba(255, 255, 255, 0.88) 0 36%, transparent 76%);
  filter: blur(1.6px);
}

.hero-cloud-bridge {
  z-index: 17;
  bottom: -286px;
  height: 560px;
  opacity: calc(0.58 + var(--hero-progress) * 0.42);
  transform: translate3d(0, calc(var(--hero-progress) * -338px), 0);
}

.hero-cloud-bridge::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.12) 18%, rgba(255, 255, 255, 0.92) 58%, #ffffff 100%),
    url("./assets/generated/hero-main-gal-shmul-3.png") center bottom / cover no-repeat;
  filter: brightness(1.08) saturate(0.96) blur(0.15px);
}

.hero-cloud-bridge::after {
  background:
    radial-gradient(42% 42% at 9% 46%, rgba(255, 255, 255, 0.94) 0 34%, rgba(255, 255, 255, 0.52) 58%, transparent 82%),
    radial-gradient(46% 44% at 91% 48%, rgba(255, 255, 255, 0.96) 0 34%, rgba(255, 255, 255, 0.56) 58%, transparent 84%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.78) 38%, #ffffff 72%, #ffffff 100%);
  filter: none;
  transform: none;
}

.hero-bottom-fade {
  position: absolute;
  z-index: 30;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(44px, 5vw, 72px);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 58%, #ffffff 100%);
}

@media (min-width: 1500px) {
  .hero-cloud-front {
    bottom: -30%;
    height: 56%;
    opacity: calc(0.46 + var(--hero-progress) * 0.54);
  }

  .hero-mist {
    bottom: -30%;
    height: 56%;
    opacity: calc(0.5 + var(--hero-progress) * 0.5);
  }
}

.gs-transition {
  position: relative;
  z-index: 5;
  min-height: clamp(330px, 36vw, 450px);
  margin-top: clamp(-82px, -5vw, -52px);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 -26px 42px 28px rgba(255, 255, 255, 0.98);
  background:
    radial-gradient(52% 32% at 50% 38%, rgba(237, 248, 255, 0.46), rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

.gs-transition::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -46px;
  right: 0;
  left: 0;
  height: clamp(126px, 12vw, 190px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.72) 42%, #ffffff 88%, #ffffff 100%),
    url("./assets/generated/hero-main-gal-shmul-3.png") center bottom / cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.gs-transition::after {
  content: "";
  position: absolute;
  z-index: 8;
  right: -20%;
  bottom: clamp(-260px, -18vw, -166px);
  left: -20%;
  height: clamp(390px, 38vw, 590px);
  pointer-events: none;
  background:
    radial-gradient(38% 48% at 4% 44%, rgba(255, 255, 255, 0.98) 0 36%, transparent 74%),
    radial-gradient(34% 44% at 25% 58%, rgba(255, 255, 255, 0.96) 0 36%, transparent 76%),
    radial-gradient(38% 48% at 51% 42%, rgba(255, 255, 255, 0.94) 0 35%, transparent 74%),
    radial-gradient(34% 44% at 75% 58%, rgba(255, 255, 255, 0.96) 0 36%, transparent 76%),
    radial-gradient(38% 48% at 96% 44%, rgba(255, 255, 255, 0.98) 0 36%, transparent 74%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.9) 48%, #ffffff 76%, #ffffff 100%);
  filter: blur(2px);
  opacity: calc(var(--gs-cloud-cover) * 0.74);
  transform: translate3d(calc(var(--gs-cloud-cover) * -24px), calc(48px - var(--gs-cloud-cover) * 330px), 0) scale(calc(1 + var(--gs-cloud-cover) * 0.04));
  transform-origin: 50% 72%;
  will-change: transform, opacity;
}

.gs-clouds {
  position: absolute;
  right: -18%;
  left: -18%;
  pointer-events: none;
  will-change: transform;
}

.gs-clouds::before,
.gs-clouds::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.gs-clouds-back {
  z-index: 1;
  top: 12%;
  height: 62%;
  opacity: 0.46;
  transform: translate3d(calc(var(--gs-progress) * 28px), calc(var(--gs-progress) * -78px), 0);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.42) 58%, #000000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 30%, rgba(0, 0, 0, 0.42) 58%, #000000 100%);
}

.gs-clouds-back::before {
  background-image: url("./assets/generated/clouds-natural-ridge.png");
  background-size: 122% auto;
  background-position: center top;
  filter: blur(1.2px) brightness(1.12) saturate(0.9);
  opacity: 0.62;
}

.gs-clouds-back::after {
  background-image: url("./assets/generated/clouds-natural-bank-opaque.png");
  background-size: 86% auto;
  background-position: right 8% bottom -72px;
  filter: blur(4px) brightness(1.12) saturate(0.9);
  opacity: 0.58;
  transform: scaleX(-1);
}

.gs-clouds-front {
  z-index: 7;
  top: auto;
  bottom: -16%;
  height: 42%;
  opacity: calc(var(--gs-cloud-cover) * 0.78);
  transform: translate3d(calc(var(--gs-cloud-cover) * -26px), calc(var(--gs-cloud-cover) * -300px), 0) scale(calc(1 + var(--gs-cloud-cover) * 0.04));
  transform-origin: 50% 76%;
}

.gs-clouds-front::before {
  background:
    radial-gradient(ellipse at 3% 68%, rgba(255, 255, 255, 0.96) 0 19%, transparent 38%),
    radial-gradient(ellipse at 19% 58%, rgba(255, 255, 255, 0.96) 0 20%, transparent 40%),
    radial-gradient(ellipse at 42% 64%, rgba(255, 255, 255, 0.92) 0 22%, transparent 42%),
    radial-gradient(ellipse at 64% 58%, rgba(255, 255, 255, 0.9) 0 19%, transparent 38%),
    radial-gradient(ellipse at 82% 64%, rgba(255, 255, 255, 0.96) 0 22%, transparent 41%),
    radial-gradient(ellipse at 100% 58%, rgba(255, 255, 255, 0.98) 0 22%, transparent 41%);
  filter: blur(0.4px);
}

.gs-clouds-front::after {
  background:
    radial-gradient(34% 44% at 10% 80%, rgba(255, 255, 255, 0.72) 0 32%, transparent 74%),
    radial-gradient(36% 42% at 41% 86%, rgba(255, 255, 255, 0.52) 0 30%, transparent 72%),
    radial-gradient(34% 44% at 82% 78%, rgba(255, 255, 255, 0.68) 0 32%, transparent 74%);
  filter: blur(1px);
  opacity: 0.9;
}

.gs-mark {
  position: absolute;
  z-index: 12;
  top: clamp(34px, 4vw, 68px);
  right: 0;
  left: 0;
  direction: ltr;
  margin: 0 auto;
  width: min(1080px, calc(100vw - 56px));
  display: grid;
  justify-items: center;
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.gs-word,
.gs-subtitle {
  position: relative;
  color: transparent;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 27, 54, 0.02) 46%, rgba(0, 9, 18, 0.14)),
    url("./assets/generated/hero-main-gal-shmul-3.png");
  background-blend-mode: soft-light, normal;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size:
    cover,
    100% auto;
  background-position:
    center 18%,
    center 28%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0 transparent;
  paint-order: normal;
}

.gs-word {
  z-index: 3;
  font-family: "Arial Rounded MT Bold", "Arial Black", "Segoe UI Black", sans-serif;
  width: 100%;
  font-size: clamp(198px, 29.1vw, 444px);
  font-weight: 1000;
  line-height: 0.66;
  letter-spacing: 0;
  opacity: 1;
  filter: drop-shadow(0 24px 54px rgba(0, 37, 67, 0.16));
}

.gs-subtitle {
  z-index: 9;
  margin-top: clamp(2px, 0.28vw, 5px);
  font-family: "Segoe UI", Arial, sans-serif;
  width: 100%;
  background-image:
    linear-gradient(180deg, rgba(3, 11, 22, 0.12), rgba(255, 255, 255, 0.02) 46%, rgba(3, 11, 22, 0.2)),
    url("./assets/generated/hero-main-gal-shmul-3.png");
  background-blend-mode: soft-light, normal;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size:
    cover,
    100% auto;
  background-position:
    center 18%,
    center 30%;
  font-size: clamp(80px, 12.8vw, 186px);
  font-weight: 1000;
  line-height: 0.9;
  white-space: nowrap;
  opacity: var(--gs-subtitle-opacity, 1);
  filter: drop-shadow(0 18px 38px rgba(0, 37, 67, 0.1));
}

.gs-subtitle-foreground {
  position: relative;
  z-index: 9;
  left: auto;
  direction: ltr;
  text-align: center;
  transform: none;
  will-change: opacity;
}

@media (prefers-reduced-motion: no-preference) {
  .gs-clouds-back::before {
    animation: gsCloudDriftA 18s ease-in-out infinite alternate;
  }

  .gs-clouds-back::after {
    animation: gsCloudDriftB 24s ease-in-out infinite alternate;
  }

  .gs-clouds-front::before {
    animation: gsCloudDriftC 16s ease-in-out infinite alternate;
  }

  .gs-clouds-front::after {
    animation: gsCloudDriftD 21s ease-in-out infinite alternate;
  }

  .gs-transition::after {
    animation: gsCloudBreath 14s ease-in-out infinite alternate;
  }
}

@keyframes gsCloudDriftA {
  from {
    transform: translate3d(-1.5%, 0, 0) scale(1);
  }

  to {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.018);
  }
}

@keyframes gsCloudDriftB {
  from {
    transform: scaleX(-1) translate3d(-1%, 1%, 0) scale(1.01);
  }

  to {
    transform: scaleX(-1) translate3d(2%, -1%, 0) scale(1.03);
  }
}

@keyframes gsCloudDriftC {
  from {
    transform: translate3d(-1%, 0, 0) scale(1);
  }

  to {
    transform: translate3d(1.8%, -1.4%, 0) scale(1.018);
  }
}

@keyframes gsCloudDriftD {
  from {
    transform: scaleX(-1) translate3d(-4%, 0.8%, 0) scale(1.01);
  }

  to {
    transform: scaleX(-1) translate3d(-1%, -1%, 0) scale(1.026);
  }
}

@keyframes gsCloudBreath {
  from {
    filter: brightness(1.04) saturate(0.92);
  }

  to {
    filter: brightness(1.09) saturate(0.9);
  }
}

.hero-copy {
  position: absolute;
  z-index: 12;
  top: clamp(172px, 16.8vw, 218px);
  right: 50%;
  width: min(1160px, calc(100% - 48px));
  transform: translateX(50%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  color: #05070b;
  font-size: clamp(58px, 6.4vw, 104px);
  font-weight: 900;
  line-height: 0.98;
  white-space: nowrap;
}

.hero-copy h1 span {
  color: #735321;
}

.hero-copy p {
  margin: 13px 0 24px;
  color: rgba(8, 9, 12, 0.68);
  font-size: clamp(21px, 1.85vw, 30px);
  font-weight: 700;
}

.primary-cta,
.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 62px;
  border-radius: 999px;
  font-size: clamp(17px, 1.32vw, 22px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.primary-cta {
  position: relative;
  isolation: isolate;
  min-width: min(100%, 426px);
  padding: 0 36px;
  overflow: hidden;
  border: 1px solid rgba(232, 189, 102, 0.62);
  background:
    linear-gradient(90deg, rgba(232, 189, 102, 0.12), transparent 18% 82%, rgba(232, 189, 102, 0.16)),
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #151515 0%, #030303 100%);
  color: #fffaf0;
  font-family: var(--title-serif);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(232, 189, 102, 0.28),
    0 18px 40px rgba(0, 0, 0, 0.24),
    0 0 34px rgba(232, 189, 102, 0.1);
}

.primary-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5px;
  border: 1px solid rgba(232, 189, 102, 0.18);
  border-radius: inherit;
}

.primary-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: -38%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-18deg);
  opacity: 0.62;
}

.primary-cta svg,
.outline-cta svg {
  width: 27px;
  height: 27px;
  color: var(--gold-light);
  stroke-width: 1.85;
}

.scroll-cue {
  display: none !important;
}

.services {
  position: relative;
  z-index: 4;
  overflow: visible;
  margin-top: -92px;
  background: linear-gradient(180deg, #ffffff 0 500px, #050606 500px 100%);
  color: var(--white);
  padding: 72px 0 46px;
}

.services::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -118px;
  right: -16%;
  left: -16%;
  height: 238px;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 72%, rgba(255, 255, 255, 0) 100%);
  filter: none;
  opacity: 1;
  transform: none;
}

.services::after {
  display: none;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 96px));
  margin: 0 auto;
}

.services-head {
  position: relative;
  z-index: 3;
  color: var(--ink);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  margin-bottom: 86px;
}

.services-copy {
  justify-self: end;
  max-width: 760px;
  text-align: right;
}

.section-label {
  width: fit-content;
  margin: 0 0 12px auto;
  color: rgba(232, 189, 102, 0.86);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.services-copy h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #08090c;
  font-family: var(--title-serif);
  font-size: clamp(46px, 4.7vw, 78px);
  font-weight: 500;
  line-height: 1.16;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 42px rgba(93, 115, 128, 0.18);
}

.services-copy h2::after {
  content: "";
  display: block;
  width: clamp(62px, 8vw, 98px);
  height: 2px;
  margin: 22px 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.96) 28%, #f6d88a 50%, rgba(232, 189, 102, 0.96) 72%, transparent);
  box-shadow: 0 0 16px rgba(232, 189, 102, 0.54);
}

.services-copy > p:not(.section-label) {
  margin: 18px 0 0;
  color: rgba(8, 9, 12, 0.72);
  font-size: clamp(18px, 1.4vw, 23px);
  font-weight: 600;
  line-height: 1.6;
}

.outline-cta {
  min-width: 252px;
  padding: 0 24px;
  border: 1.5px solid rgba(232, 189, 102, 0.9);
  color: #08090c;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px rgba(93, 115, 128, 0.16);
}

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

.service-card {
  position: relative;
  direction: ltr;
  min-height: 248px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 40%) minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #030404;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.38);
}

.service-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.78) 35%, rgba(0, 0, 0, 0.3) 58%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(270deg, rgba(0, 0, 0, 0.44), transparent 42%);
  pointer-events: none;
}

.service-card img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.service-card strong {
  position: relative;
  z-index: 2;
  justify-self: start;
  padding-left: clamp(34px, 4vw, 58px);
  color: #fff5df;
  font-size: clamp(122px, 12vw, 210px);
  font-weight: 300;
  line-height: 0.82;
  text-shadow:
    0 0 14px rgba(232, 189, 102, 0.62),
    0 0 38px rgba(232, 189, 102, 0.3);
}

.service-content {
  position: relative;
  z-index: 2;
  direction: rtl;
  justify-self: start;
  width: min(360px, 86%);
  color: var(--white);
  text-align: right;
}

.service-content h3 {
  margin: 0 0 16px;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(29px, 2.5vw, 41px);
  font-weight: 500;
  line-height: 1.16;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 22px rgba(255, 255, 255, 0.12);
}

.service-content h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin: 11px 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.96), transparent);
  box-shadow: 0 0 12px rgba(232, 189, 102, 0.5);
}

.service-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 600;
  line-height: 1.55;
}

.service-content a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-top: 22px;
  border: 1.5px solid var(--gold-light);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.18);
}

.service-content a svg {
  width: 24px;
  height: 24px;
}

.metrics {
  direction: rtl;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px 0 46px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 189, 102, 0.86);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 18px 48px rgba(0, 0, 0, 0.2);
}

.metrics div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, max-content);
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: clamp(11px, 1.25vw, 18px);
  row-gap: 3px;
  min-height: 122px;
  padding: clamp(18px, 2vw, 26px) clamp(12px, 1.8vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  text-align: right;
}

.metrics div:last-child {
  border-left: 0;
}

.metrics svg {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: clamp(38px, 3vw, 52px);
  height: clamp(38px, 3vw, 52px);
  color: var(--gold-light);
  stroke-width: 1.5;
}

.metrics dt {
  grid-column: 2;
  direction: ltr;
  color: var(--white);
  font-size: clamp(31px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.metrics dd {
  grid-column: 2;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
}

.press-strip {
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.46);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 800;
}

.press-strip span,
.press-strip a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.project-atlas {
  position: relative;
  z-index: 4;
  overflow: hidden;
  scroll-margin-top: 116px;
  padding: clamp(72px, 8vw, 118px) 0 0;
  background:
    radial-gradient(56% 42% at 74% 40%, rgba(232, 189, 102, 0.1), transparent 68%),
    radial-gradient(42% 34% at 16% 72%, rgba(255, 255, 255, 0.055), transparent 70%),
    linear-gradient(180deg, #050606 0%, #090b0b 52%, #020303 100%),
    #050606;
  color: var(--white);
  isolation: isolate;
}

.project-atlas::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.78), transparent);
  opacity: 0.7;
}

.project-atlas::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -16% -220px;
  height: 360px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.05) 42%, rgba(232, 189, 102, 0.08) 100%);
  pointer-events: none;
}

.project-atlas-inner {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 96px));
  margin: 0 auto;
}

.project-anchor {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.project-atlas-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.project-atlas-copy {
  max-width: 820px;
  text-align: right;
}

.project-atlas-copy h2 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 500;
  line-height: 1.12;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 24px 58px rgba(0, 0, 0, 0.56);
}

.project-atlas-copy h2::after {
  content: "";
  display: block;
  width: clamp(72px, 8vw, 118px);
  height: 2px;
  margin: 22px 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.92), #fff0b8, rgba(232, 189, 102, 0.92), transparent);
  box-shadow: 0 0 18px rgba(232, 189, 102, 0.42);
}

.project-atlas-copy > p:not(.section-label) {
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 600;
  line-height: 1.7;
}

.project-atlas-stat {
  display: none !important;
}

.project-map-shell {
  direction: ltr;
  display: grid;
  justify-items: center;
  min-height: 0;
}

.project-map-stage,
.project-panel {
  border: 1px solid rgba(232, 189, 102, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.018)),
    #060707;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 34px 90px rgba(0, 0, 0, 0.5);
}

.project-map-stage {
  position: relative;
  justify-self: center;
  overflow: hidden;
  width: min(100%, clamp(560px, 50vw, 860px));
  min-height: 0;
  aspect-ratio: 2 / 3;
  container-type: inline-size;
  --project-pin-hit: clamp(26px, 4cqw, 34px);
  --project-pin-marker: clamp(16px, 2.6cqw, 21px);
  --project-pin-dot: clamp(4px, 0.75cqw, 6px);
  isolation: isolate;
  background:
    radial-gradient(48% 42% at 14% 24%, rgba(218, 244, 250, 0.82), transparent 70%),
    radial-gradient(52% 42% at 72% 72%, rgba(111, 128, 88, 0.32), transparent 76%),
    linear-gradient(135deg, #c7e9ef 0%, #eef0df 44%, #788870 100%);
}

.project-map-stage::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    radial-gradient(42% 46% at 24% 31%, rgba(255, 255, 255, 0.24), transparent 72%),
    radial-gradient(46% 42% at 74% 62%, rgba(27, 37, 26, 0.16), transparent 76%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.09), transparent 30% 70%, rgba(2, 3, 3, 0.15)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 34%, rgba(2, 3, 3, 0.12) 100%);
  pointer-events: none;
}

.project-map-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.project-map-pins {
  position: absolute;
  z-index: 5;
  inset: 0;
}

.project-map-card {
  position: absolute;
  z-index: 8;
  right: 50%;
  bottom: clamp(240px, 32%, 380px);
  left: auto;
  width: min(72%, 620px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 24px);
  align-items: center;
  min-height: clamp(138px, 14vw, 184px);
  padding: clamp(18px, 2.4vw, 30px) clamp(20px, 3vw, 38px);
  border: 1px solid rgba(232, 189, 102, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026)),
    rgba(5, 6, 6, 0.88);
  color: #fff8dc;
  text-align: right;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 24px 56px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(232, 189, 102, 0.18);
  backdrop-filter: blur(18px) saturate(112%);
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  transform: translate(50%, 12px) scale(0.96);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.project-map-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 4, 4, 0.18), rgba(3, 4, 4, 0.52) 44%, rgba(3, 4, 4, 0.96) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.24)),
    var(--project-card-image, none) center bottom / cover no-repeat;
  opacity: 0.88;
  filter: saturate(1.06) contrast(1.04) brightness(0.9);
  pointer-events: none;
}

.project-map-card > div {
  position: relative;
  z-index: 1;
}

.project-map-card > div {
  justify-self: end;
  width: min(430px, 58%);
}

.project-map-card.is-visible {
  opacity: 1;
  transform: translate(50%, 0) scale(1);
  pointer-events: auto;
}

.project-map-card img {
  display: none;
}

.project-map-card > div > span {
  display: block;
  color: rgba(232, 189, 102, 0.88);
  font-size: 12px;
  font-weight: 1000;
  line-height: 1.2;
}

.project-map-card h3 {
  margin: 5px 0 12px;
  color: #fffaf0;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 900;
  line-height: 1.18;
}

.project-map-card a,
.project-map-cta,
.project-page-map-link,
.project-strip-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(232, 189, 102, 0.78);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(232, 189, 102, 0.18), rgba(232, 189, 102, 0.04)),
    rgba(255, 255, 255, 0.05);
  color: #fff4ca;
  font-size: 14px;
  font-weight: 1000;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.project-map-card a svg,
.project-map-cta svg,
.project-page-map-link svg,
.project-strip-action svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.project-pin {
  position: absolute;
  top: var(--pin-y, 50%);
  left: var(--pin-x, 50%);
  display: grid;
  place-items: center;
  width: var(--project-pin-hit);
  height: calc(var(--project-pin-hit) * 1.25);
  padding: 0;
  border: 0;
  background: transparent;
  color: #251804;
  cursor: pointer;
  transform: translate(-50%, -86%);
  transition: transform 240ms var(--ease), filter 240ms ease;
}

.project-pin::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 4px;
  width: calc(var(--project-pin-marker) * 0.9);
  height: calc(var(--project-pin-marker) * 0.34);
  border-radius: 999px;
  background: rgba(2, 3, 3, 0.42);
  filter: blur(5px);
  transform: translateY(10px);
}

.project-pin-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--project-pin-marker);
  height: var(--project-pin-marker);
  border: 1px solid rgba(255, 250, 220, 0.96);
  border-radius: 50% 50% 50% 0;
  background:
    radial-gradient(circle at 30% 24%, #ffffff 0 10%, #fff4bd 18%, transparent 34%),
    conic-gradient(from 218deg at 50% 50%, #6f4510, #f7cf6d, #fff4bf, #c68a24, #5c370a, #f1bd4d, #6f4510);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.68),
    inset 0 -2px 0 rgba(57, 33, 4, 0.42),
    0 8px 20px rgba(0, 0, 0, 0.42),
    0 0 0 3px rgba(232, 189, 102, 0.08),
    0 0 18px rgba(232, 189, 102, 0.32);
  transform: rotate(-45deg);
}

.project-pin-marker::before {
  content: "";
  width: var(--project-pin-dot);
  height: var(--project-pin-dot);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff, #fff2be 34%, #4a2b08 100%);
  box-shadow:
    inset 0 1px 2px rgba(0, 0, 0, 0.38),
    0 0 7px rgba(255, 244, 190, 0.44);
}

.project-pin-label {
  position: absolute;
  top: 32px;
  min-width: max-content;
  max-width: 190px;
  padding: 8px 12px;
  border: 1px solid rgba(232, 189, 102, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(2, 3, 3, 0.84);
  color: #fff8dc;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.project-pin-card {
  position: absolute;
  z-index: 8;
  bottom: 68px;
  left: 50%;
  width: min(230px, 36vw);
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 9px;
  border: 1px solid rgba(232, 189, 102, 0.64);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(5, 6, 6, 0.9);
  color: #fff8dc;
  text-align: right;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 46px rgba(0, 0, 0, 0.46),
    0 0 26px rgba(232, 189, 102, 0.16);
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.96);
  transform-origin: 50% 100%;
  transition: opacity 190ms ease, transform 190ms var(--ease);
  pointer-events: none;
  backdrop-filter: blur(14px);
}

.pin-card-left .project-pin-card {
  left: auto;
  right: 50%;
  transform: translate(12%, 8px) scale(0.96);
  transform-origin: 88% 100%;
}

.pin-card-right .project-pin-card {
  left: 50%;
  transform: translate(-12%, 8px) scale(0.96);
  transform-origin: 12% 100%;
}

.project-pin-card img {
  width: 74px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.project-pin-card span,
.project-pin-card strong,
.project-pin-card small {
  display: block;
  min-width: 0;
}

.project-pin-card strong {
  color: #fffaf0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.project-pin-card small {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
}

.project-pin:hover,
.project-pin:focus-visible,
.project-pin.is-active {
  transform: translate(-50%, -90%) scale(1.06);
  filter: saturate(1.08) brightness(1.05);
}

.project-pin:not(.is-active):hover .project-pin-label {
  opacity: 1;
  transform: translateY(0);
}

.project-pin:focus-visible .project-pin-card,
.project-pin.is-active .project-pin-card {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.pin-card-left:focus-visible .project-pin-card,
.pin-card-left.is-active .project-pin-card {
  transform: translate(12%, 0) scale(1);
}

.pin-card-right:focus-visible .project-pin-card,
.pin-card-right.is-active .project-pin-card {
  transform: translate(-12%, 0) scale(1);
}

.project-pin.is-active .project-pin-marker {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(57, 33, 4, 0.48),
    0 10px 24px rgba(0, 0, 0, 0.42),
    0 0 0 6px rgba(232, 189, 102, 0.12),
    0 0 28px rgba(232, 189, 102, 0.48);
}

@media (prefers-reduced-motion: no-preference) {
  .project-pin.is-active .project-pin-marker {
    animation: projectPinGlow 1.8s ease-in-out infinite alternate;
  }
}

@keyframes projectPinGlow {
  from {
    filter: brightness(1) saturate(1);
  }

  to {
    filter: brightness(1.1) saturate(1.12);
  }
}

.project-panel {
  direction: rtl;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  scroll-margin-top: 126px;
  overflow: visible;
  background:
    linear-gradient(145deg, rgba(232, 189, 102, 0.1), rgba(255, 255, 255, 0.026) 44%, rgba(0, 0, 0, 0.22)),
    #060707;
}

.project-panel-preview {
  display: grid;
  gap: clamp(20px, 2vw, 30px);
  padding: clamp(22px, 2.3vw, 34px);
  border-bottom: 1px solid rgba(232, 189, 102, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 48%),
    radial-gradient(64% 58% at 76% 16%, rgba(232, 189, 102, 0.12), transparent 76%);
}

.project-preview-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 189, 102, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(70% 80% at 50% 28%, rgba(255, 255, 255, 0.08), transparent 72%),
    linear-gradient(145deg, rgba(232, 189, 102, 0.12), rgba(255, 255, 255, 0.035)),
    #070807;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 58px rgba(0, 0, 0, 0.34);
}

.project-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.project-preview-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.project-preview-copy {
  display: grid;
  justify-items: start;
  text-align: right;
  gap: 6px;
}

.project-preview-copy > span {
  direction: ltr;
  color: rgba(232, 189, 102, 0.86);
  font-size: clamp(17px, 1.4vw, 23px);
  font-weight: 900;
  letter-spacing: 0;
}

.project-preview-copy h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(42px, 4.1vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.5);
}

.project-preview-copy p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 800;
  line-height: 1.28;
}

.project-list {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 16px;
  overflow: visible;
}

.project-card {
  direction: rtl;
  width: 100%;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 102px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.045);
  color: inherit;
  text-align: right;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.project-card img {
  width: 96px;
  height: 76px;
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.project-card strong,
.project-card small,
.project-card-number {
  display: block;
  min-width: 0;
}

.project-card-number {
  direction: ltr;
  width: fit-content;
  margin-bottom: 7px;
  padding: 3px 8px;
  border: 1px solid rgba(232, 189, 102, 0.52);
  border-radius: 999px;
  color: #e8bd66;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
}

.project-card strong {
  color: #fffaf0;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 900;
  line-height: 1.28;
}

.project-card small {
  margin-top: 6px;
  color: rgba(255, 250, 240, 0.62);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 800;
}

.project-card svg {
  width: 26px;
  height: 26px;
  color: rgba(232, 189, 102, 0.8);
  stroke-width: 1.8;
}

.project-card:hover,
.project-card:focus-visible,
.project-card.is-active {
  border-color: rgba(232, 189, 102, 0.58);
  background: rgba(232, 189, 102, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.project-empty {
  margin: 0;
  padding: 22px;
  border: 1px dashed rgba(232, 189, 102, 0.36);
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
}

.projects-page-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #020303;
  color: var(--white);
}

.projects-page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 650px;
  display: grid;
  align-items: end;
  padding: 158px 0 74px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 18%, rgba(2, 3, 3, 0.18) 42%, rgba(2, 3, 3, 0.72) 76%, rgba(2, 3, 3, 0.94) 100%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.28) 0%, rgba(2, 3, 3, 0.2) 44%, rgba(2, 3, 3, 0.04) 100%),
    url("./assets/site/israel-project-map.png") center 20% / cover no-repeat,
    #050606;
}

.projects-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(46% 38% at 76% 30%, rgba(232, 189, 102, 0.22), transparent 72%),
    radial-gradient(52% 44% at 14% 74%, rgba(255, 255, 255, 0.07), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(2, 3, 3, 0.82) 100%);
  pointer-events: none;
}

.projects-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 -1px;
  height: 190px;
  background: linear-gradient(180deg, transparent, #020303 86%);
  pointer-events: none;
}

.projects-page-hero-inner {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
  text-align: right;
}

.projects-page-hero h1 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(72px, 9vw, 148px);
  font-weight: 500;
  line-height: 0.96;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 58px rgba(0, 0, 0, 0.54);
}

.projects-page-hero h1::after {
  content: "";
  display: block;
  width: clamp(82px, 11vw, 152px);
  height: 2px;
  margin: 24px 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #e8bd66, #fff4bd, #e8bd66, transparent);
  box-shadow: 0 0 24px rgba(232, 189, 102, 0.5);
}

.projects-page-hero p:not(.section-label) {
  width: min(620px, 100%);
  margin: 24px 0 0 auto;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.75;
}

.project-page-map-link {
  margin-top: 28px;
}

.projects-strips-section {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vw, 74px) 0 clamp(86px, 9vw, 138px);
  background:
    radial-gradient(48% 34% at 18% 14%, rgba(232, 189, 102, 0.12), transparent 72%),
    radial-gradient(46% 38% at 86% 68%, rgba(255, 255, 255, 0.045), transparent 70%),
    linear-gradient(180deg, #020303, #080909 46%, #020303);
}

.projects-strips {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.project-strip {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(430px, 34vw, 520px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  padding: clamp(22px, 2.8vw, 38px);
  border: 1px solid rgba(232, 189, 102, 0.34);
  border-radius: 8px;
  background: #060707;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 72px rgba(0, 0, 0, 0.46);
}

.project-strip::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.74) 34%, rgba(0, 0, 0, 0.22) 60%, rgba(0, 0, 0, 0.86) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent 24%, rgba(0, 0, 0, 0.64) 100%),
    radial-gradient(54% 42% at 83% 28%, rgba(232, 189, 102, 0.16), transparent 74%);
  pointer-events: none;
}

.project-strip::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: clamp(24px, 3vw, 38px);
  bottom: clamp(22px, 2.8vw, 36px);
  width: clamp(64px, 7vw, 96px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.96), #fff0b8, rgba(232, 189, 102, 0.92));
  box-shadow: 0 0 16px rgba(232, 189, 102, 0.34);
}

.project-strip img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  filter: saturate(0.92) contrast(1.04) brightness(0.86);
  transform: scale(1.01);
  transition: transform 520ms var(--ease), filter 520ms ease;
}

.project-strip:hover img,
.project-strip:focus-within img {
  filter: saturate(1.02) contrast(1.08) brightness(0.92);
  transform: scale(1.045);
}

.project-strip > strong {
  position: relative;
  z-index: 2;
  direction: ltr;
  justify-self: start;
  align-self: start;
  padding-top: 6px;
  color: rgba(255, 245, 223, 0.24);
  font-family: Arial, sans-serif;
  font-size: clamp(86px, 9vw, 136px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(232, 189, 102, 0.18),
    0 22px 56px rgba(0, 0, 0, 0.5);
}

.project-strip-content {
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: end;
  width: min(390px, 100%);
  text-align: right;
  padding-bottom: clamp(28px, 4vw, 54px);
}

.project-strip-content > span {
  display: block;
  color: rgba(232, 189, 102, 0.94);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 1000;
  line-height: 1.25;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.48);
}

.project-strip-content h2 {
  margin: 10px 0 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(35px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.14),
    0 20px 44px rgba(0, 0, 0, 0.5);
}

.project-strip-content h2::after {
  content: none;
}

.project-strip-content p {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
  line-height: 1.62;
  text-wrap: balance;
}

.project-strip-action {
  appearance: none;
  font: inherit;
  cursor: pointer;
  width: 56px;
  height: 56px;
  min-height: 0;
  margin-top: 22px;
  padding: 0;
  place-items: center;
  border-radius: 999px;
}

.project-strip-action span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.project-strip-action svg {
  width: 25px;
  height: 25px;
}

.menu-links a[aria-current="page"]::after {
  width: 100%;
  opacity: 1;
}

.footer-nav a[aria-current="page"] {
  color: #f1c978;
}

.about-page {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #020303;
  color: var(--white);
}

.about-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  background:
    radial-gradient(60% 42% at 82% 36%, rgba(232, 189, 102, 0.14), transparent 68%),
    radial-gradient(42% 34% at 18% 64%, rgba(255, 255, 255, 0.06), transparent 72%),
    linear-gradient(180deg, #020303 0%, #080909 54%, #020303 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 3;
  direction: ltr;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
}

.about-hero-media {
  position: relative;
  z-index: 3;
  width: 100%;
  justify-self: stretch;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(232, 189, 102, 0.48);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #050606;
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.54),
    0 0 38px rgba(232, 189, 102, 0.08);
}

.about-hero-media img {
  width: 100%;
  height: clamp(520px, 52vw, 760px);
  max-width: none;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.96) contrast(1.03) brightness(0.98);
}

.about-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(232, 189, 102, 0.08), transparent 28% 72%, rgba(232, 189, 102, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%, rgba(255, 255, 255, 0.03));
}

.about-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -14%;
  bottom: -92px;
  left: -14%;
  height: clamp(210px, 18vw, 330px);
  pointer-events: none;
  background:
    url("./assets/generated/clouds-natural-bank-soft.png") center top / min(1760px, 116%) auto no-repeat,
    linear-gradient(180deg, rgba(2, 3, 3, 0) 0%, rgba(2, 3, 3, 0.82) 42%, #020303 76% 100%);
  filter: sepia(0.18) saturate(0.82) brightness(0.7);
  opacity: 0.58;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 96px));
  margin: 0 auto;
  padding: clamp(64px, 6vw, 104px) 0 clamp(78px, 7vw, 124px);
  direction: rtl;
}

.about-hero-copy {
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-hero h1 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(58px, 6.2vw, 104px);
  font-weight: 500;
  line-height: 1.08;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 56px rgba(0, 0, 0, 0.62),
    0 0 30px rgba(232, 189, 102, 0.16);
}

.about-hero-copy > p {
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(20px, 1.55vw, 27px);
  font-weight: 600;
  line-height: 1.65;
  text-shadow: 0 15px 36px rgba(0, 0, 0, 0.56);
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.about-outline-cta {
  color: #fffaf0;
  background: rgba(2, 3, 3, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.about-hero .primary-cta,
.about-hero .outline-cta,
.about-closing .primary-cta {
  min-height: clamp(48px, 4vw, 56px);
  min-width: auto;
  padding: 0 clamp(20px, 2vw, 28px);
  gap: 12px;
  font-size: clamp(15px, 1.05vw, 18px);
}

.about-hero .primary-cta {
  min-width: min(100%, 282px);
}

.about-hero .outline-cta {
  min-width: min(100%, 238px);
}

.about-closing .primary-cta {
  min-width: min(100%, 284px);
}

.about-hero .primary-cta svg,
.about-hero .outline-cta svg,
.about-closing .primary-cta svg {
  width: 22px;
  height: 22px;
}

.about-profile {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 128px;
  padding: clamp(104px, 8vw, 152px) 0 clamp(92px, 7vw, 128px);
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.82) 0%, rgba(2, 3, 3, 0.46) 42%, rgba(2, 3, 3, 0.84) 100%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.8), rgba(2, 3, 3, 0.18) 46%, rgba(2, 3, 3, 0.74)),
    radial-gradient(48% 38% at 80% 18%, rgba(232, 189, 102, 0.12), transparent 72%),
    url("./assets/home/city-aerial.jpg") center 48% / cover no-repeat,
    #020303;
}

.about-profile::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #020303 0%, rgba(2, 3, 3, 0.06) 18%, rgba(2, 3, 3, 0.1) 70%, #020303 100%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.72) 0%, rgba(2, 3, 3, 0.08) 42%, rgba(2, 3, 3, 0.72) 100%),
    radial-gradient(72% 44% at 50% 54%, rgba(255, 255, 255, 0.04), transparent 72%);
  opacity: 0.86;
}

.about-profile::after {
  content: attr(data-backdrop-word);
  position: absolute;
  z-index: 0;
  top: clamp(86px, 7vw, 130px);
  left: 50%;
  width: min(1220px, calc(100% - 96px));
  pointer-events: none;
  color: rgba(255, 250, 240, 0.055);
  font-family: "Arial Black", "Segoe UI Black", Arial, sans-serif;
  font-size: clamp(96px, 15.5vw, 244px);
  font-weight: 1000;
  line-height: 0.8;
  text-align: left;
  letter-spacing: 0;
  transform: translateX(-50%);
  text-shadow:
    0 0 44px rgba(232, 189, 102, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.48);
}

.about-profile .section-inner,
.about-mission .section-inner,
.about-closing .section-inner {
  z-index: 2;
}

.about-profile-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(44px, 6vw, 94px);
  min-height: clamp(260px, 24vw, 360px);
}

.about-section-heading h2,
.about-story-panel h2,
.about-closing h2 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(40px, 4.1vw, 72px);
  font-weight: 500;
  line-height: 1.18;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.54);
}

.about-section-heading h2::after,
.about-story-panel h2::after,
.about-closing h2::after {
  content: "";
  display: block;
  width: clamp(62px, 7vw, 104px);
  height: 2px;
  margin: 24px 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.94), #f6d88a, rgba(232, 189, 102, 0.94), transparent);
  box-shadow: 0 0 18px rgba(232, 189, 102, 0.5);
}

.about-copy {
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(17px, 1.22vw, 21px);
  font-weight: 500;
  line-height: 1.9;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 26px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 18px);
  margin: clamp(48px, 4.6vw, 68px) 0 0;
  padding: 0;
}

.about-highlights div {
  min-width: 0;
  min-height: 136px;
  padding: clamp(21px, 2vw, 28px);
  border: 1px solid rgba(232, 189, 102, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    radial-gradient(80% 60% at 92% 8%, rgba(232, 189, 102, 0.12), transparent 70%),
    rgba(0, 0, 0, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(3px) saturate(116%);
}

.about-highlights dt {
  margin: 0;
  color: #f1c978;
  font-family: var(--title-serif);
  font-size: clamp(24px, 1.9vw, 34px);
  font-weight: 600;
  line-height: 1.16;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.64);
}

.about-highlights dd {
  margin: 11px 0 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 500;
  line-height: 1.65;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.about-mission {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 128px;
  padding: clamp(96px, 8vw, 148px) 0 clamp(104px, 8vw, 152px);
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.86) 0%, rgba(8, 8, 7, 0.44) 48%, rgba(2, 3, 3, 0.88) 100%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.82), rgba(2, 3, 3, 0.18) 42%, rgba(2, 3, 3, 0.84)),
    url("./assets/home/night-street.jpg") center 54% / cover no-repeat,
    #020303;
}

.about-mission::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #020303 0%, rgba(2, 3, 3, 0.08) 18%, rgba(2, 3, 3, 0.1) 76%, #020303 100%),
    radial-gradient(48% 34% at 12% 44%, rgba(232, 189, 102, 0.14), transparent 72%),
    linear-gradient(90deg, rgba(232, 189, 102, 0.12), transparent 26% 74%, rgba(232, 189, 102, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 38%, rgba(255, 255, 255, 0.02));
}

.about-mission::after {
  content: attr(data-backdrop-word);
  position: absolute;
  z-index: 0;
  top: clamp(46px, 4.4vw, 78px);
  left: 50%;
  width: min(1220px, calc(100% - 96px));
  pointer-events: none;
  color: rgba(255, 250, 240, 0.05);
  font-family: "Arial Black", "Segoe UI Black", Arial, sans-serif;
  font-size: clamp(100px, 15vw, 236px);
  font-weight: 1000;
  line-height: 0.8;
  text-align: left;
  letter-spacing: 0;
  transform: translateX(-50%);
  text-shadow:
    0 0 44px rgba(232, 189, 102, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.46);
}

.about-orel-template .about-profile::after {
  top: clamp(42px, 3.8vw, 72px);
  font-size: clamp(82px, 11.5vw, 178px);
}

.about-orel-template .about-profile {
  padding-top: clamp(72px, 5.6vw, 104px);
}

.about-orel-template .about-mission::after {
  font-size: clamp(92px, 12.5vw, 178px);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.about-story-panel {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid rgba(232, 189, 102, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    radial-gradient(90% 70% at 88% 10%, rgba(232, 189, 102, 0.12), transparent 70%),
    rgba(3, 4, 4, 0.58);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(4px) saturate(118%);
}

.about-story-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.12), transparent);
}

.about-story-panel > * {
  position: relative;
  z-index: 1;
}

.about-story-panel p:not(.section-label) {
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(17px, 1.18vw, 20px);
  font-weight: 500;
  line-height: 1.86;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.about-community-panel {
  margin-top: clamp(58px, 6vw, 94px);
}

.about-closing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 128px;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 52vw, 760px);
  padding: clamp(88px, 8vw, 140px) 0 clamp(106px, 9vw, 168px);
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.86), rgba(2, 3, 3, 0.9)),
    url("./assets/home/night-street.jpg") center 52% / cover no-repeat,
    #020303;
}

.about-closing::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #020303 0%, rgba(2, 3, 3, 0.36) 26%, rgba(2, 3, 3, 0.52) 62%, #020303 100%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.9), rgba(2, 3, 3, 0.38) 48%, rgba(2, 3, 3, 0.9)),
    radial-gradient(70% 44% at 50% 46%, rgba(232, 189, 102, 0.16), transparent 70%);
}

.about-closing::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.9), transparent);
  box-shadow: 0 0 24px rgba(232, 189, 102, 0.36);
}

.about-closing-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  opacity: 0.76;
  filter: saturate(1.04) contrast(1.05) brightness(0.82);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .about-closing-video {
    display: none;
  }
}

.about-closing-inner {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  max-width: 950px;
  text-align: center;
}

.about-closing h2::after {
  margin-right: auto;
  margin-left: auto;
}

.about-closing p {
  max-width: 820px;
  margin: 28px 0 34px;
  color: rgba(255, 250, 240, 0.8);
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 500;
  line-height: 1.82;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.78);
}

.press-page {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #020303;
  color: var(--white);
}

.press-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(188px, 16vw, 236px) 0 clamp(82px, 8vw, 132px);
  background:
    radial-gradient(58% 46% at 80% 28%, rgba(232, 189, 102, 0.18), transparent 70%),
    radial-gradient(42% 36% at 18% 72%, rgba(255, 255, 255, 0.075), transparent 74%),
    linear-gradient(180deg, #020303 0%, #090b0b 58%, #020303 100%);
}

.press-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -18% -128px;
  height: clamp(250px, 22vw, 380px);
  pointer-events: none;
  background:
    url("./assets/generated/clouds-natural-bank-soft.png") center top / min(1780px, 118%) auto no-repeat,
    linear-gradient(180deg, transparent 0%, rgba(2, 3, 3, 0.72) 48%, #020303 100%);
  filter: sepia(0.16) saturate(0.84) brightness(0.7);
  opacity: 0.54;
}

.press-hero::after,
.press-list-section::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.76), transparent);
  box-shadow: 0 0 24px rgba(232, 189, 102, 0.28);
}

.press-hero::after {
  bottom: 0;
}

.press-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: end;
  gap: clamp(36px, 5vw, 82px);
}

.press-hero-copy {
  max-width: 830px;
}

.press-hero h1 {
  margin: 10px 0 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(72px, 8vw, 128px);
  font-weight: 500;
  line-height: 1.02;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 56px rgba(0, 0, 0, 0.64),
    0 0 30px rgba(232, 189, 102, 0.16);
}

.press-hero-copy > p:not(.section-label) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 600;
  line-height: 1.72;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.58);
}

.press-source-wall {
  display: grid;
  gap: 12px;
  align-self: end;
}

.press-source-wall span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 0 20px;
  border: 1px solid rgba(232, 189, 102, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.28);
  color: #f1c978;
  font-family: var(--title-serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px) saturate(112%);
}

.press-list-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(86px, 8vw, 132px) 0 clamp(104px, 9vw, 152px);
  background:
    linear-gradient(180deg, #020303 0%, rgba(2, 3, 3, 0.76) 36%, #020303 100%),
    radial-gradient(56% 42% at 74% 18%, rgba(232, 189, 102, 0.12), transparent 72%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.78), rgba(2, 3, 3, 0.12) 50%, rgba(2, 3, 3, 0.78)),
    url("./assets/home/city-aerial.jpg") center 48% / cover no-repeat,
    #020303;
}

.press-list-section::before {
  top: 0;
}

.press-list-section::after {
  content: "PRESS";
  position: absolute;
  z-index: 0;
  top: clamp(54px, 5vw, 84px);
  left: 50%;
  width: min(1220px, calc(100% - 96px));
  pointer-events: none;
  color: rgba(255, 250, 240, 0.045);
  font-family: "Arial Black", "Segoe UI Black", Arial, sans-serif;
  font-size: clamp(112px, 16vw, 236px);
  font-weight: 1000;
  line-height: 0.8;
  text-align: left;
  letter-spacing: 0;
  transform: translateX(-50%);
  text-shadow:
    0 0 44px rgba(232, 189, 102, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.48);
}

.press-list-section .section-inner {
  position: relative;
  z-index: 1;
}

.press-list-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(26px, 5vw, 78px);
  margin-bottom: clamp(34px, 4vw, 58px);
}

.press-list-head h2 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(42px, 4.8vw, 78px);
  font-weight: 500;
  line-height: 1.12;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.54);
}

.press-list-head h2::after {
  content: "";
  display: block;
  width: clamp(62px, 7vw, 104px);
  height: 2px;
  margin: 24px 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.94), #f6d88a, rgba(232, 189, 102, 0.94), transparent);
  box-shadow: 0 0 18px rgba(232, 189, 102, 0.5);
}

.press-list-head p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 500;
  line-height: 1.82;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.press-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(232, 189, 102, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    radial-gradient(90% 70% at 88% 10%, rgba(232, 189, 102, 0.12), transparent 70%),
    rgba(3, 4, 4, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 58px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(4px) saturate(116%);
}

.press-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(232, 189, 102, 0.28);
  background: #050606;
}

.press-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0) 44%, rgba(2, 3, 3, 0.48) 100%),
    radial-gradient(70% 42% at 50% 0%, rgba(255, 255, 255, 0.14), transparent 68%);
}

.press-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(0.92);
  transition: transform 520ms var(--ease), filter 520ms ease;
}

.press-card-body {
  min-height: 390px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.4vw, 34px);
}

.press-source {
  margin: 0 0 16px;
  color: #f1c978;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.press-card h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.26;
  overflow-wrap: anywhere;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.56);
}

.press-card h3 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.press-card-body > p:not(.press-source):not(.press-credit) {
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(16px, 1.08vw, 19px);
  font-weight: 500;
  line-height: 1.78;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.press-credit {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.56);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.press-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(232, 189, 102, 0.58);
  border-radius: 999px;
  color: #fffaf0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  background:
    linear-gradient(135deg, rgba(232, 189, 102, 0.26), rgba(169, 121, 34, 0.14)),
    rgba(0, 0, 0, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 14px 32px rgba(0, 0, 0, 0.24);
}

.press-read-more svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.8;
}

@media (hover: hover) and (pointer: fine) {
  .press-card:hover .press-card-media img {
    transform: scale(1.035);
    filter: saturate(1.06) contrast(1.06) brightness(0.98);
  }

  .press-card h3 a:hover {
    text-decoration-line: underline;
  }

  .press-read-more:hover {
    background:
      linear-gradient(135deg, rgba(232, 189, 102, 0.36), rgba(169, 121, 34, 0.22)),
      rgba(0, 0, 0, 0.26);
  }
}

@media (max-width: 1120px) {
  .press-hero-inner,
  .press-list-head {
    grid-template-columns: 1fr;
  }

  .press-source-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .press-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  }

  .press-card-featured .press-card-media {
    min-height: 100%;
    border-bottom: 0;
    border-left: 1px solid rgba(232, 189, 102, 0.28);
  }
}

@media (max-width: 760px) {
  .press-hero {
    padding: 136px 0 68px;
  }

  .press-hero-inner {
    width: calc(100% - 28px);
    gap: 28px;
  }

  .press-hero h1 {
    font-size: clamp(54px, 17vw, 82px);
  }

  .press-hero-copy > p:not(.section-label) {
    font-size: 16px;
    line-height: 1.72;
  }

  .press-source-wall {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .press-source-wall span {
    min-height: 54px;
    font-size: 21px;
  }

  .press-list-section {
    padding: 70px 0 88px;
    background-position:
      center,
      center,
      center,
      56% 50%,
      center;
  }

  .press-list-section::after {
    top: 72px;
    width: calc(100% - 28px);
    color: rgba(255, 250, 240, 0.035);
    font-size: clamp(68px, 20vw, 86px);
    text-align: center;
  }

  .press-list-section .section-inner {
    width: calc(100% - 28px);
  }

  .press-list-head {
    gap: 18px;
    margin-bottom: 26px;
  }

  .press-list-head h2 {
    font-size: 38px;
  }

  .press-list-head p {
    font-size: 16px;
    line-height: 1.72;
  }

  .press-grid,
  .press-card-featured {
    grid-template-columns: 1fr;
  }

  .press-card-featured {
    display: flex;
  }

  .press-card-featured .press-card-media {
    min-height: 0;
    border-bottom: 1px solid rgba(232, 189, 102, 0.28);
    border-left: 0;
  }

  .press-card-body {
    min-height: auto;
    padding: 22px;
  }

  .press-card h3 {
    font-size: 25px;
  }

  .press-card-body > p:not(.press-source):not(.press-credit) {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .press-read-more {
    width: 100%;
    margin-top: 24px;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: 116px;
  min-height: clamp(780px, 58vw, 1040px);
  background: #020303;
  color: var(--white);
}

.footer-bg {
  position: absolute;
  z-index: 0;
  inset: -9% -2% -6%;
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.02) 0%, rgba(2, 3, 3, 0.18) 28%, rgba(2, 3, 3, 0.78) 60%, #020303 100%),
    radial-gradient(circle at 45% 23%, rgba(255, 214, 126, 0.24), transparent 18%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.36), transparent 24%, transparent 72%, rgba(2, 3, 3, 0.2)),
    url("./assets/generated/footer-telaviv-sunset.png");
  background-attachment: scroll, scroll, scroll, scroll;
  background-position:
    center,
    center,
    center,
    center calc(43% + var(--footer-bg-shift));
  background-size: cover, cover, cover, cover;
  transform: translate3d(0, var(--footer-bg-y), 0) scale(var(--footer-bg-scale));
  transform-origin: center;
  will-change: auto;
}

.footer-bg::before,
.footer-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  will-change: opacity;
}

.footer-bg::before {
  z-index: 1;
  inset: 25% -18% 30%;
  background:
    radial-gradient(ellipse at 7% 58%, rgba(255, 250, 232, 0.18) 0 16%, transparent 38%),
    radial-gradient(ellipse at 23% 48%, rgba(255, 243, 213, 0.12) 0 18%, transparent 42%),
    radial-gradient(ellipse at 45% 56%, rgba(255, 255, 255, 0.1) 0 15%, transparent 36%),
    radial-gradient(ellipse at 67% 50%, rgba(255, 236, 200, 0.14) 0 17%, transparent 40%),
    radial-gradient(ellipse at 92% 56%, rgba(255, 250, 232, 0.16) 0 16%, transparent 38%),
    linear-gradient(180deg, transparent 0%, rgba(255, 246, 225, 0.1) 42%, transparent 100%);
  background-size:
    42% 74%,
    48% 82%,
    50% 72%,
    44% 78%,
    42% 72%,
    100% 100%;
  background-position:
    0 58%,
    18% 46%,
    48% 60%,
    72% 44%,
    100% 58%,
    center;
  filter: blur(12px);
  opacity: 0.34;
  mix-blend-mode: screen;
}

.footer-bg::after {
  z-index: 2;
  inset: 0 -14% 54%;
  background:
    radial-gradient(ellipse at 18% 26%, rgba(255, 246, 222, 0.14) 0 8%, transparent 26%),
    radial-gradient(ellipse at 44% 16%, rgba(255, 255, 255, 0.12) 0 10%, transparent 30%),
    radial-gradient(ellipse at 72% 28%, rgba(255, 239, 205, 0.14) 0 9%, transparent 28%),
    linear-gradient(104deg, transparent 0%, rgba(255, 247, 224, 0.09) 28%, transparent 52%),
    linear-gradient(78deg, transparent 10%, rgba(255, 255, 255, 0.07) 44%, transparent 68%);
  background-size:
    38% 48%,
    52% 54%,
    42% 50%,
    82% 100%,
    72% 100%;
  background-position:
    8% 18%,
    46% 6%,
    88% 26%,
    0 0,
    100% 0;
  filter: blur(10px);
  opacity: 0.26;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: no-preference) {
  .footer-bg {
    animation: none;
  }

  .footer-bg::before {
    animation: none;
  }

  .footer-bg::after {
    animation: none;
  }
}

.footer::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.02) 0%, rgba(2, 3, 3, 0.1) 25%, rgba(2, 3, 3, 0.8) 62%, #020303 96%),
    radial-gradient(62% 48% at 50% 56%, rgba(2, 3, 3, 0.46), transparent 76%);
  pointer-events: none;
}

.footer-cloud-drift {
  position: absolute;
  z-index: 2;
  right: -16%;
  left: -16%;
  pointer-events: none;
  background-repeat: no-repeat;
  will-change: transform, background-position, opacity;
}

.footer-sun-glow {
  position: absolute;
  z-index: 2;
  top: 12%;
  left: 38%;
  width: clamp(190px, 18vw, 340px);
  height: clamp(150px, 14vw, 270px);
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 248, 214, 0.34) 0 6%, rgba(255, 211, 112, 0.18) 12%, transparent 35%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 198, 86, 0.18) 0 14%, transparent 62%);
  filter: blur(5px);
  mix-blend-mode: screen;
  opacity: 0.62;
  transform: translate3d(-50%, -50%, 0) scale(1);
  will-change: opacity, transform, filter;
}

.footer-sun-glow::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 247, 0.32) 0 7%, transparent 20%),
    conic-gradient(from -20deg at 50% 42%, transparent 0deg, rgba(255, 229, 158, 0.22) 18deg, transparent 44deg, transparent 172deg, rgba(255, 214, 130, 0.16) 194deg, transparent 230deg, transparent 360deg);
  filter: blur(7px);
  opacity: 0.66;
  mix-blend-mode: screen;
  transform-origin: 50% 42%;
}

.footer-sun-glow::after {
  content: "";
  position: absolute;
  inset: 18% 22% 44%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 238, 0.64) 0 9%, rgba(255, 218, 126, 0.28) 18%, transparent 48%),
    linear-gradient(90deg, transparent 0%, rgba(255, 230, 162, 0.34) 47%, rgba(255, 246, 218, 0.48) 50%, rgba(255, 230, 162, 0.3) 53%, transparent 100%);
  filter: blur(4px);
  mix-blend-mode: screen;
  opacity: 0.62;
  transform-origin: center;
}

.footer-cloud-drift-low {
  top: 24%;
  height: clamp(150px, 12vw, 220px);
  background:
    url("./assets/generated/clouds-natural-bank-soft.png"),
    url("./assets/generated/clouds-natural-bank-soft.png");
  background-size:
    86% auto,
    38% auto;
  background-position:
    -28% 62%,
    58% 72%;
  filter: blur(3px) sepia(0.2) saturate(0.72) brightness(0.58);
  opacity: 0.36;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 22%, #000 42%, #000 66%, transparent 92%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 22%, #000 42%, #000 66%, transparent 92%);
  mix-blend-mode: screen;
}

.footer-cloud-drift-sky {
  top: 21%;
  height: clamp(150px, 13vw, 225px);
  background:
    url("./assets/generated/clouds-natural-bank-opaque.png"),
    radial-gradient(ellipse at 42% 36%, rgba(255, 243, 214, 0.14) 0 12%, transparent 38%);
  background-size:
    34% auto,
    70% 68%;
  background-position:
    69% 62%,
    center;
  filter: blur(3.5px) sepia(0.18) saturate(0.68) brightness(0.54);
  opacity: 0.1;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 26%, #000 46%, #000 62%, transparent 82%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 26%, #000 46%, #000 62%, transparent 82%);
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: no-preference) {
  .footer-sun-glow {
    animation: footerSunBreath 4.4s ease-in-out infinite alternate;
  }

  .footer-sun-glow::before {
    animation: footerSunGlimmer 6.6s ease-in-out infinite alternate;
  }

  .footer-sun-glow::after {
    animation: footerSunSpark 3.7s ease-in-out infinite alternate;
  }

  .footer-cloud-drift-low {
    animation: footerVisibleLowerClouds 24s ease-in-out infinite alternate;
  }

  .footer-cloud-drift-sky {
    animation: footerVisibleSkyClouds 32s ease-in-out infinite alternate;
  }
}

.footer::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  right: 0;
  left: 0;
  height: clamp(170px, 18vw, 280px);
  pointer-events: none;
  background:
    linear-gradient(180deg, #020303 0%, rgba(2, 3, 3, 0.92) 30%, rgba(2, 3, 3, 0.48) 68%, transparent 100%),
    radial-gradient(60% 58% at 50% 0%, rgba(255, 250, 240, 0.18), transparent 72%);
  opacity: var(--footer-cover-opacity);
  transform: translate3d(0, var(--footer-cover-y), 0);
  will-change: opacity, transform;
}

.footer-content {
  position: relative;
  z-index: 3;
  width: min(1480px, calc(100% - 96px));
  min-height: clamp(780px, 58vw, 1040px);
  margin: 0 auto;
  padding: clamp(230px, 18vw, 328px) 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand-row {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(54px, 5vw, 86px);
  color: #d4a557;
  opacity: var(--footer-brand-opacity);
  transform: translate3d(0, var(--footer-brand-y), 0) scale(var(--footer-brand-scale));
  will-change: opacity, transform;
}

.footer-brand {
  width: clamp(230px, 18vw, 310px);
  display: grid;
  justify-items: center;
  color: #d6a85d;
  text-shadow: 0 0 24px rgba(232, 189, 102, 0.24);
}

.footer-logo-gs {
  width: clamp(174px, 13.3vw, 235px);
  height: auto;
}

.footer-logo-wave {
  width: clamp(188px, 14.1vw, 260px);
  height: auto;
}

.footer-logo-gs,
.footer-logo-wave {
  filter:
    saturate(1.28)
    brightness(1.16)
    contrast(1.08)
    drop-shadow(0 0 10px rgba(246, 216, 138, 0.72))
    drop-shadow(0 0 28px rgba(232, 189, 102, 0.42))
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.32));
  animation: footer-logo-glow 3.8s ease-in-out infinite alternate;
}

.footer-brand-gs {
  gap: 7px;
}

.footer-monogram {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 3.7vw, 70px);
  line-height: 0.86;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 2.4vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
}

.footer-brand small {
  margin-top: 8px;
  color: rgba(232, 189, 102, 0.88);
  font-size: clamp(10px, 0.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.52em;
}

.footer-brand-divider {
  width: 1px;
  height: clamp(104px, 8vw, 144px);
  background: linear-gradient(180deg, transparent, rgba(232, 189, 102, 0.96), transparent);
  box-shadow: 0 0 18px rgba(232, 189, 102, 0.36);
}

.footer-wave-mark {
  width: clamp(104px, 8vw, 154px);
  height: auto;
  margin-bottom: 10px;
  color: #d6a85d;
}

.footer-wave-mark path {
  stroke-width: 3.2;
}

.footer h2 {
  margin: clamp(52px, 5vw, 80px) 0 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(44px, 4.3vw, 78px);
  font-weight: 400;
  line-height: 1.16;
  opacity: var(--footer-title-opacity);
  transform: translate3d(0, var(--footer-title-y), 0);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 44px rgba(0, 0, 0, 0.62),
    0 0 24px rgba(255, 255, 255, 0.12);
  will-change: opacity, transform;
}

.footer-title-line {
  width: clamp(72px, 7vw, 106px);
  height: 2px;
  margin: 26px 0 24px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.92) 28%, #f1c978 50%, rgba(232, 189, 102, 0.92) 72%, transparent),
    linear-gradient(90deg, transparent 0%, rgba(255, 247, 213, 0.9) 48%, transparent 58%);
  background-size: 100% 100%, 220% 100%;
  background-position: center, calc(120% - var(--footer-progress) * 120%) center;
  box-shadow: 0 0 18px rgba(232, 189, 102, 0.54);
  opacity: var(--footer-title-opacity);
  transform: translate3d(0, var(--footer-title-y), 0);
  will-change: opacity, transform, background-position;
}

.footer-intro {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(16px, 1.08vw, 21px);
  font-weight: 500;
  line-height: 1.7;
  opacity: var(--footer-details-opacity);
  transform: translate3d(0, var(--footer-details-y), 0);
  will-change: opacity, transform;
}

.footer-contact-row {
  direction: rtl;
  display: grid;
  place-items: center;
  justify-content: center;
  margin-top: 30px;
  color: #d7a75b;
  opacity: var(--footer-details-opacity);
  transform: translate3d(0, var(--footer-details-y), 0);
  will-change: opacity, transform;
}

.footer-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: min(280px, 82vw);
  min-height: 58px;
  padding: 0 34px;
  border: 1px solid rgba(255, 229, 162, 0.72);
  border-radius: 8px;
  color: #08090c;
  background:
    linear-gradient(135deg, #f5d37c 0%, #c89435 42%, #f1c66a 72%, #9f6c1d 100%);
  box-shadow:
    0 18px 46px rgba(169, 121, 34, 0.34),
    0 0 34px rgba(232, 189, 102, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font: inherit;
  font-size: clamp(18px, 1.08vw, 22px);
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, filter 220ms ease, border-color 220ms ease;
}

.footer-contact-button svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.footer-contact-button:focus-visible {
  outline: 3px solid rgba(255, 250, 240, 0.92);
  outline-offset: 4px;
}

.footer-social {
  margin-top: 30px;
  display: grid;
  justify-items: center;
  gap: 15px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 15px;
  font-weight: 500;
  opacity: var(--footer-details-opacity);
  transform: translate3d(0, var(--footer-details-y), 0);
  will-change: opacity, transform;
}

.footer-social div {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2vw, 34px);
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #e0ad5d;
}

.footer-social svg {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}

.footer-glow-line {
  width: min(520px, 44vw);
  height: 2px;
  margin: clamp(34px, 3vw, 46px) 0 31px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.78), #f1c978, rgba(232, 189, 102, 0.78), transparent);
  box-shadow:
    0 0 18px rgba(232, 189, 102, 0.48),
    0 0 44px rgba(232, 189, 102, 0.18);
  opacity: var(--footer-nav-opacity);
  transform: translate3d(0, var(--footer-nav-y), 0);
  will-change: opacity, transform;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px 0;
  max-width: min(1020px, 100%);
  margin-inline: auto;
  padding-inline: 76px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(14px, 0.92vw, 17px);
  font-weight: 600;
  line-height: 1.35;
  opacity: var(--footer-nav-opacity);
  transform: translate3d(0, var(--footer-nav-y), 0);
  will-change: opacity, transform;
}

.footer-nav a {
  padding: 0 clamp(16px, 1.8vw, 30px);
  border-inline-start: 1px solid rgba(255, 250, 240, 0.34);
  white-space: nowrap;
}

.footer-nav a:first-child {
  border-inline-start: 0;
}

.footer-bottom {
  direction: rtl;
  width: min(100%, 1120px);
  margin: auto auto 0;
  padding: 18px 76px 0 76px;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  opacity: var(--footer-nav-opacity);
  transform: translate3d(0, var(--footer-nav-y), 0);
  will-change: opacity, transform;
}

.footer-bottom div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  min-width: 0;
}

.footer-bottom::before {
  content: none;
}

.footer-bottom div span {
  width: 1px;
  height: 18px;
  background: rgba(255, 250, 240, 0.28);
}

.footer-bottom p {
  justify-self: center;
  margin: 0;
  direction: rtl;
  max-width: 100%;
  white-space: normal;
}

.footer-bottom p span {
  color: #d7a75b;
  white-space: nowrap;
}

@keyframes footer-logo-glow {
  from {
    filter:
      saturate(1.2)
      brightness(1.1)
      contrast(1.06)
      drop-shadow(0 0 8px rgba(246, 216, 138, 0.58))
      drop-shadow(0 0 24px rgba(232, 189, 102, 0.34))
      drop-shadow(0 18px 36px rgba(0, 0, 0, 0.32));
  }

  to {
    filter:
      saturate(1.38)
      brightness(1.23)
      contrast(1.12)
      drop-shadow(0 0 14px rgba(246, 216, 138, 0.9))
      drop-shadow(0 0 40px rgba(232, 189, 102, 0.52))
      drop-shadow(0 18px 36px rgba(0, 0, 0, 0.32));
  }
}

@keyframes footerLivingImage {
  from {
    filter: saturate(1.02) contrast(1);
    transform: translate3d(-0.35%, calc(var(--footer-bg-y) - 1px), 0) scale(calc(var(--footer-bg-scale) + 0.006));
    background-position:
      center,
      center,
      center,
      48% calc(43% + var(--footer-bg-shift));
  }

  52% {
    filter: saturate(1.08) contrast(1.02);
    transform: translate3d(0.35%, calc(var(--footer-bg-y) - 5px), 0) scale(calc(var(--footer-bg-scale) + 0.014));
    background-position:
      center,
      center,
      center,
      51% calc(42.5% + var(--footer-bg-shift));
  }

  to {
    filter: saturate(1.04) contrast(1.01);
    transform: translate3d(-0.12%, calc(var(--footer-bg-y) - 3px), 0) scale(calc(var(--footer-bg-scale) + 0.01));
    background-position:
      center,
      center,
      center,
      50% calc(43.5% + var(--footer-bg-shift));
  }
}

@keyframes footerLowerCloudDrift {
  from {
    opacity: 0.3;
    transform: translate3d(-4.5%, 7px, 0) scale(1.025);
    background-position:
      0 58%,
      18% 46%,
      48% 60%,
      72% 44%,
      100% 58%,
      center;
  }

  to {
    opacity: 0.42;
    transform: translate3d(5%, -10px, 0) scale(1.06);
    background-position:
      8% 54%,
      26% 50%,
      54% 56%,
      76% 48%,
      94% 54%,
      center;
  }
}

@keyframes footerSkyCloudDrift {
  from {
    opacity: 0.2;
    transform: translate3d(4.5%, -4px, 0) scale(1.02);
    background-position:
      8% 18%,
      46% 6%,
      88% 26%,
      0 0,
      100% 0;
  }

  to {
    opacity: 0.32;
    transform: translate3d(-5.5%, 6px, 0) scale(1.045);
    background-position:
      0 22%,
      40% 10%,
      94% 22%,
      10% 0,
      90% 0;
  }
}

@keyframes footerVisibleLowerClouds {
  from {
    opacity: 0.28;
    transform: translate3d(-5%, -2px, 0) scale(1.018);
    background-position:
      -28% 62%,
      58% 72%;
  }

  48% {
    opacity: 0.4;
    transform: translate3d(0.5%, -7px, 0) scale(1.03);
    background-position:
      -20% 66%,
      54% 68%;
  }

  to {
    opacity: 0.32;
    transform: translate3d(5.5%, -4px, 0) scale(1.024);
    background-position:
      -12% 63%,
      49% 74%;
  }
}

@keyframes footerVisibleSkyClouds {
  from {
    opacity: 0.06;
    transform: translate3d(3.5%, -2px, 0) scale(1.012);
    background-position:
      69% 62%,
      center;
  }

  55% {
    opacity: 0.13;
    transform: translate3d(-0.5%, -6px, 0) scale(1.022);
    background-position:
      64% 58%,
      center;
  }

  to {
    opacity: 0.08;
    transform: translate3d(-3.5%, -3px, 0) scale(1.016);
    background-position:
      58% 65%,
      center;
  }
}

@keyframes footerMobileLowerClouds {
  from {
    opacity: 0.2;
    transform: translate3d(-2.5%, 0, 0) scale(1.01);
  }

  52% {
    opacity: 0.28;
    transform: translate3d(0.8%, -3px, 0) scale(1.018);
  }

  to {
    opacity: 0.22;
    transform: translate3d(2.6%, -1px, 0) scale(1.012);
  }
}

@keyframes footerMobileSkyClouds {
  from {
    opacity: 0.045;
    transform: translate3d(1.8%, 0, 0) scale(1.006);
  }

  55% {
    opacity: 0.085;
    transform: translate3d(-0.8%, -2px, 0) scale(1.012);
  }

  to {
    opacity: 0.055;
    transform: translate3d(-2%, 1px, 0) scale(1.008);
  }
}

@keyframes footerMobileSunBreath {
  from {
    opacity: 0.38;
    transform: translate3d(-50%, -50%, 0) scale(0.98);
  }

  to {
    opacity: 0.52;
    transform: translate3d(-50%, -50%, 0) scale(1.035);
  }
}

@keyframes footerSunBreath {
  from {
    opacity: 0.46;
    filter: blur(6px) saturate(1.05);
    transform: translate3d(-50%, -50%, 0) scale(0.94);
  }

  46% {
    opacity: 0.74;
    filter: blur(4px) saturate(1.16);
    transform: translate3d(-50%, -50%, 0) scale(1.06);
  }

  to {
    opacity: 0.58;
    filter: blur(5px) saturate(1.1);
    transform: translate3d(-50%, -50%, 0) scale(1.01);
  }
}

@keyframes footerSunGlimmer {
  from {
    opacity: 0.42;
    transform: rotate(-7deg) scale(0.96);
  }

  48% {
    opacity: 0.76;
    transform: rotate(5deg) scale(1.08);
  }

  to {
    opacity: 0.5;
    transform: rotate(11deg) scale(1.02);
  }
}

@keyframes footerSunSpark {
  from {
    opacity: 0.42;
    transform: translate3d(-5px, 0, 0) rotate(-3deg) scaleX(0.88);
  }

  45% {
    opacity: 0.86;
    transform: translate3d(5px, -2px, 0) rotate(2deg) scaleX(1.14);
  }

  to {
    opacity: 0.56;
    transform: translate3d(0, 1px, 0) rotate(4deg) scaleX(1);
  }
}

body {
  --a11y-letter-spacing: 0;
  --a11y-word-spacing: 0;
  --a11y-guide-y: 50vh;
}

body.a11y-grayscale .site-shell {
  filter: grayscale(1);
}

body.a11y-invert .site-shell {
  background: #fff;
  filter: invert(1) hue-rotate(180deg);
}

body.a11y-invert .site-shell img,
body.a11y-invert .site-shell video {
  filter: invert(1) hue-rotate(180deg);
}

body.a11y-high-contrast .site-shell {
  filter: contrast(1.35) saturate(1.15);
}

body.a11y-monochrome .site-shell {
  filter: grayscale(1) contrast(1.8);
}

body.a11y-typography .site-shell {
  letter-spacing: var(--a11y-letter-spacing) !important;
  word-spacing: var(--a11y-word-spacing) !important;
}

body.a11y-typography .site-shell * {
  letter-spacing: inherit !important;
  word-spacing: inherit !important;
}

body.a11y-readable-font .site-shell,
body.a11y-readable-font .site-shell * {
  font-family: Arial, "Segoe UI", sans-serif !important;
}

body.a11y-highlight-links .site-shell a {
  outline: 2px solid rgba(232, 189, 102, 0.88) !important;
  outline-offset: 3px;
  background: rgba(255, 246, 210, 0.22) !important;
  text-decoration: underline !important;
  text-decoration-thickness: 0.13em !important;
  text-underline-offset: 0.18em !important;
}

body.a11y-highlight-headings .site-shell :where(h1, h2, h3, h4, h5, h6) {
  outline: 3px solid rgba(232, 189, 102, 0.86) !important;
  outline-offset: 6px;
  background: rgba(8, 9, 12, 0.08) !important;
}

body.a11y-hide-images .site-shell img,
body.a11y-hide-images .site-shell video,
body.a11y-hide-images .site-shell picture {
  opacity: 0 !important;
}

body.a11y-hide-images .site-shell :where(.hero-bg, .footer-bg, .service-card img, .project-map-image, .project-map-card img, .project-preview-media img, .project-card img, .project-strip img, .about-hero-media img, .press-card-media img) {
  visibility: hidden !important;
}

body.a11y-hide-images .site-shell :where(.hero-cloud-layer, .gs-clouds, .footer-cloud-drift, .footer-sun-glow) {
  display: none !important;
}

body.a11y-screen-reader .skip-link {
  transform: translateY(0);
}

body.a11y-screen-reader .site-shell :where(a, button, input, textarea, select, summary) {
  outline-offset: 5px;
}

body.a11y-no-motion *,
body.a11y-no-motion *::before,
body.a11y-no-motion *::after {
  scroll-behavior: auto !important;
  transition-duration: 1ms !important;
  animation-duration: 1ms !important;
  animation-iteration-count: 1 !important;
}

body.a11y-cursor-light,
body.a11y-cursor-light * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Cpath d='M7 4v32l9-8 5 10 6-3-5-10h12Z' fill='%23fff' stroke='%23020303' stroke-width='3'/%3E%3C/svg%3E") 7 4, auto !important;
}

body.a11y-cursor-dark,
body.a11y-cursor-dark * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 42 42'%3E%3Cpath d='M7 4v32l9-8 5 10 6-3-5-10h12Z' fill='%23020303' stroke='%23fff' stroke-width='3'/%3E%3C/svg%3E") 7 4, auto !important;
}

.accessibility-button {
  position: fixed;
  z-index: 151;
  bottom: 24px;
  left: 0;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1px solid rgba(232, 189, 102, 0.72);
  border-left: 0;
  border-radius: 0 16px 16px 0;
  background:
    linear-gradient(145deg, rgba(232, 189, 102, 0.95), rgba(169, 121, 34, 0.92)),
    #a97922;
  color: #08090c;
  box-shadow:
    18px 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.accessibility-button[aria-expanded="true"] {
  border-color: rgba(255, 250, 240, 0.86);
  box-shadow:
    18px 18px 54px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(232, 189, 102, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.accessibility-button img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.accessibility-panel {
  position: fixed;
  z-index: 150;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: clamp(360px, 33.333vw, 520px);
  height: 100dvh;
  overflow: hidden;
  border-right: 1px solid rgba(232, 189, 102, 0.72);
  background:
    linear-gradient(180deg, rgba(2, 3, 3, 0.86), rgba(8, 9, 12, 0.94)),
    url("./assets/generated/menu-marble-background.png") center center / cover no-repeat,
    #070808;
  color: #fffaf0;
  box-shadow:
    34px 0 92px rgba(0, 0, 0, 0.48),
    inset -1px 0 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  text-align: right;
  transform: translateX(-104%);
  transition: transform 420ms var(--ease), opacity 240ms ease;
  backdrop-filter: blur(20px) saturate(120%);
}

.accessibility-panel[aria-hidden="true"] {
  visibility: hidden;
}

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

.accessibility-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(66% 34% at 18% 4%, rgba(232, 189, 102, 0.18), transparent 72%),
    linear-gradient(90deg, rgba(232, 189, 102, 0.12), transparent 24%);
  opacity: 0.84;
}

.accessibility-panel-head,
.accessibility-panel-scroll {
  position: relative;
  z-index: 1;
}

.accessibility-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 22px clamp(22px, 2.4vw, 32px) 18px;
  border-bottom: 1px solid rgba(232, 189, 102, 0.3);
  background: rgba(2, 3, 3, 0.52);
}

.accessibility-panel-title {
  display: grid;
  gap: 4px;
}

.accessibility-panel-title strong {
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(24px, 2vw, 33px);
  font-weight: 700;
  line-height: 1.1;
}

.accessibility-panel-title span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.accessibility-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(232, 189, 102, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8bd66;
  cursor: pointer;
}

.accessibility-close svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.accessibility-panel-scroll {
  min-height: 0;
  padding: 18px clamp(18px, 2.15vw, 28px) 92px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(232, 189, 102, 0.58) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

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

.accessibility-tile,
.accessibility-link,
.accessibility-reset,
.a11y-stepper button {
  border: 1px solid rgba(232, 189, 102, 0.48);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(2, 3, 3, 0.44);
  color: #fffaf0;
  cursor: pointer;
}

.accessibility-tile {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 112px;
  padding: 14px 8px;
  border-radius: 6px;
  text-align: center;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.accessibility-tile[aria-pressed="true"] {
  border-color: rgba(232, 189, 102, 0.92);
  background:
    linear-gradient(145deg, rgba(232, 189, 102, 0.98), rgba(169, 121, 34, 0.92)),
    #a97922;
  color: #08090c;
  box-shadow: 0 16px 36px rgba(169, 121, 34, 0.24);
}

.accessibility-tile svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.8;
}

.accessibility-tile span {
  max-width: 100%;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
}

.accessibility-controls {
  display: grid;
  gap: 22px;
  margin-top: 26px;
}

.accessibility-control {
  display: grid;
  gap: 12px;
}

.accessibility-control h3 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.a11y-stepper {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 12px;
}

.a11y-stepper button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  color: #e8bd66;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.a11y-meter {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.a11y-meter span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, #a97922, #e8bd66);
}

.a11y-meter output {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 68px;
  padding: 6px 10px;
  border: 1px solid rgba(232, 189, 102, 0.8);
  border-radius: 999px;
  background: #fffaf0;
  color: #08090c;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.a11y-range-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: rgba(255, 250, 240, 0.66);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.accessibility-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 189, 102, 0.28);
}

.accessibility-link,
.accessibility-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 6px;
  color: #fffaf0;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
}

.accessibility-link {
  border-color: rgba(232, 189, 102, 0.8);
  background:
    linear-gradient(135deg, rgba(169, 121, 34, 0.98), rgba(232, 189, 102, 0.84)),
    #a97922;
  color: #08090c;
}

.accessibility-credit {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

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

.accessibility-reading-guide {
  position: fixed;
  z-index: 149;
  top: calc(var(--a11y-guide-y) - 26px);
  right: 0;
  left: 0;
  display: none;
  height: 52px;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 22px, rgba(232, 189, 102, 0.82) 22px 28px, transparent 28px 100%),
    rgba(2, 3, 3, 0.08);
  box-shadow:
    0 -22px 36px rgba(255, 250, 240, 0.14),
    0 22px 36px rgba(255, 250, 240, 0.14);
}

body.a11y-reading-guide .accessibility-reading-guide {
  display: block;
}

.accessibility-statement-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 245, 235, 0.94)),
    #f8f5eb;
  color: #08090c;
  padding-top: clamp(148px, 15vw, 190px);
}

.accessibility-statement-hero,
.accessibility-statement-content {
  width: min(100% - 48px, 1080px);
  margin: 0 auto;
}

.accessibility-statement-hero {
  display: grid;
  gap: 18px;
  padding: 0 0 clamp(42px, 6vw, 74px);
}

.accessibility-statement-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(8, 9, 12, 0.72);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 600;
  line-height: 1.72;
}

.accessibility-statement-hero h1 {
  margin: 0;
  font-family: var(--title-serif);
  font-size: clamp(46px, 6.2vw, 86px);
  font-weight: 700;
  line-height: 1;
}

.accessibility-statement-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.accessibility-statement-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(169, 121, 34, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(8, 9, 12, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.accessibility-statement-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(22px, 4vw, 52px);
  padding-bottom: clamp(80px, 9vw, 128px);
}

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

.accessibility-statement-section,
.accessibility-statement-contact,
.accessibility-statement-toc {
  border: 1px solid rgba(8, 9, 12, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(8, 9, 12, 0.08);
}

.accessibility-statement-section,
.accessibility-statement-contact {
  padding: clamp(24px, 3vw, 34px);
}

.accessibility-statement-section h2,
.accessibility-statement-contact h2,
.accessibility-statement-toc h2 {
  margin: 0 0 14px;
  color: #08090c;
  font-family: var(--title-serif);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 700;
}

.accessibility-statement-section p,
.accessibility-statement-section li,
.accessibility-statement-contact p {
  color: rgba(8, 9, 12, 0.72);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.78;
}

.accessibility-statement-section p,
.accessibility-statement-contact p {
  margin: 0 0 14px;
}

.accessibility-statement-section p:last-child,
.accessibility-statement-contact p:last-child {
  margin-bottom: 0;
}

.accessibility-statement-section ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-right: 20px;
}

.accessibility-statement-section a,
.accessibility-statement-contact a,
.accessibility-statement-toc a {
  color: #7f5818;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.legal-document-page .accessibility-statement-section h3 {
  margin: 22px 0 10px;
  color: #08090c;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.35;
}

.legal-document-page .accessibility-statement-section ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-right: 22px;
}

.legal-document-page .accessibility-statement-section strong {
  color: #08090c;
}

.legal-document-note {
  border-inline-start: 4px solid #c89435;
  padding: 14px 18px;
  border-radius: 6px;
  background: rgba(232, 189, 102, 0.12);
}

.legal-page-footer {
  width: min(100% - 48px, 1080px);
  margin: 0 auto;
  padding: 0 0 54px;
  color: rgba(8, 9, 12, 0.68);
  text-align: center;
}

.legal-page-footer nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 12px;
}

.legal-page-footer a {
  color: #7f5818;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.accessibility-statement-aside {
  display: grid;
  align-content: start;
  gap: 18px;
}

.accessibility-statement-toc {
  position: sticky;
  top: 126px;
  padding: 22px;
}

.accessibility-statement-toc nav {
  display: grid;
  gap: 10px;
}

.accessibility-statement-contact {
  background:
    linear-gradient(145deg, rgba(8, 9, 12, 0.94), rgba(20, 18, 14, 0.96)),
    #08090c;
  color: #fffaf0;
}

.accessibility-statement-contact h2 {
  color: #fffaf0;
}

.accessibility-statement-contact p {
  color: rgba(255, 250, 240, 0.72);
}

.accessibility-statement-contact a {
  color: #e8bd66;
}

@media (hover: hover) {
  .footer-legal a:hover {
    color: var(--gold);
  }

  .menu-button:hover {
    transform: translateY(1px) scale(var(--header-scale));
    border-color: rgba(169, 121, 34, 0.68);
    box-shadow:
      0 22px 56px rgba(8, 9, 12, 0.16),
      0 0 26px rgba(232, 189, 102, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.48);
  }

  .contact-button:hover {
    transform: translateY(1px) scale(var(--header-scale));
    border-color: rgba(169, 121, 34, 0.68);
    box-shadow:
      0 22px 56px rgba(8, 9, 12, 0.16),
      0 0 26px rgba(232, 189, 102, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.48);
  }

  .footer-contact-button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 242, 199, 0.94);
    filter: saturate(1.08) brightness(1.04);
    box-shadow:
      0 22px 58px rgba(169, 121, 34, 0.42),
      0 0 46px rgba(232, 189, 102, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.56);
  }

  .menu-close:hover {
    border-color: rgba(232, 189, 102, 0.54);
    color: #fffaf0;
    background: rgba(232, 189, 102, 0.12);
  }

  .contact-close:hover {
    border-color: rgba(232, 189, 102, 0.54);
    color: #fffaf0;
    background: rgba(232, 189, 102, 0.12);
  }

  .contact-action:hover,
  .contact-details a:hover {
    transform: translateX(4px);
    border-color: rgba(232, 189, 102, 0.72);
  }

  .contact-whatsapp:hover {
    color: #070807;
    filter: saturate(1.08);
    box-shadow: 0 22px 54px rgba(169, 121, 34, 0.34);
  }

  .menu-links a:hover {
    color: #fffaf0;
    transform: translateX(-4px);
  }

  .menu-links a:hover::after {
    width: 100%;
    opacity: 1;
  }

  .menu-cta:hover {
    color: #08090c;
    transform: translateY(-1px);
    filter: saturate(1.08);
    box-shadow: 0 22px 54px rgba(169, 121, 34, 0.34);
  }

  .primary-cta:hover,
  .outline-cta:hover,
  .service-content a:hover,
  .project-map-card a:hover,
  .project-map-cta:hover,
  .project-page-map-link:hover,
  .project-strip-action:hover {
    transform: translateY(-1px);
  }

  .project-map-card a:hover,
  .project-map-cta:hover,
  .project-page-map-link:hover,
  .project-strip-action:hover {
    border-color: rgba(255, 244, 189, 0.92);
    background:
      linear-gradient(180deg, rgba(232, 189, 102, 0.28), rgba(232, 189, 102, 0.08)),
      rgba(255, 255, 255, 0.08);
    color: #fffaf0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 18px 42px rgba(0, 0, 0, 0.32),
      0 0 28px rgba(232, 189, 102, 0.18);
  }

  .primary-cta:hover {
    border-color: rgba(232, 189, 102, 0.9);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      inset 0 -1px 0 rgba(232, 189, 102, 0.38),
      0 22px 48px rgba(0, 0, 0, 0.28),
      0 0 44px rgba(232, 189, 102, 0.18);
  }

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

  .accessibility-button:hover {
    transform: translateX(2px);
    border-color: rgba(255, 250, 240, 0.88);
  }

  .accessibility-tile:hover,
  .accessibility-link:hover,
  .accessibility-reset:hover,
  .a11y-stepper button:hover {
    transform: translateY(-1px);
    border-color: rgba(232, 189, 102, 0.86);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-shell::after,
  .site-header,
  .site-nav,
  .contact-drawer,
  .header-left,
  .header-contact,
  .gs-logo,
  .menu-button,
  .contact-button,
  .footer-contact-button,
  .menu-close,
  .contact-close,
  .menu-links a,
  .menu-links a::after,
  .menu-cta,
  .contact-action,
  .contact-details a {
    transition: none;
  }
}

.primary-cta,
.outline-cta,
.service-content a,
.service-card img,
.site-nav a,
.contact-action,
.contact-details a,
.footer-legal a {
  transition: transform 220ms var(--ease), color 220ms ease, border-color 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

@media (max-width: 1040px) {
  .site-header {
    --header-height: 128px;
    padding: 0 28px;
  }

  body.header-compact .site-header {
    --header-height: 102px;
  }

  .header-left {
    right: 28px;
  }

  .header-contact {
    left: 28px;
  }

  .site-nav {
    gap: clamp(10px, 2dvh, 20px);
  }

  .hero {
    min-height: min(680px, 82vh);
  }

  .gs-transition {
    min-height: clamp(340px, 40vw, 460px);
    margin-top: clamp(-36px, -2.8vw, -18px);
  }

  .hero-copy h1 {
    font-size: clamp(48px, 7.5vw, 72px);
  }

  .section-inner {
    width: min(100% - 44px, 880px);
  }

  .services-head {
    grid-template-columns: 1fr;
  }

  .services-copy {
    justify-self: end;
  }

  .outline-cta {
    justify-self: end;
  }

  .service-card {
    grid-template-columns: minmax(250px, 42%) minmax(0, 1fr);
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    margin: 22px 0 42px;
  }

  .metrics div:nth-child(2) {
    border-left: 0;
  }

  .metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

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

  .project-atlas-inner {
    width: min(100% - 44px, 900px);
  }

  .project-atlas-head {
    grid-template-columns: 1fr;
  }

  .project-atlas-stat {
    justify-self: end;
  }

  .project-map-shell {
    direction: ltr;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-map-stage {
    width: min(100%, 760px);
    min-height: 0;
    aspect-ratio: 2 / 3;
  }

  .projects-page-hero-inner,
  .projects-strips {
    width: min(100% - 44px, 900px);
  }

  .projects-strips {
    grid-template-columns: 1fr;
  }

  .projects-page-hero {
    min-height: 600px;
    background-position: center top;
  }

  .project-strip {
    grid-template-columns: minmax(0, 1fr);
    min-height: clamp(390px, 54vw, 520px);
    padding: clamp(24px, 4vw, 44px);
  }

  .project-strip::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0.24) 62%, rgba(0, 0, 0, 0.86) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 24%, rgba(0, 0, 0, 0.58) 100%),
      radial-gradient(52% 44% at 82% 30%, rgba(232, 189, 102, 0.14), transparent 72%);
  }

  .project-strip > strong {
    position: absolute;
    top: clamp(24px, 4vw, 38px);
    left: clamp(24px, 4vw, 44px);
  }

  .project-strip-content {
    width: min(470px, 86%);
  }

  .project-panel {
    grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
    align-items: start;
  }

  .project-panel-preview {
    border-bottom: 0;
    border-left: 1px solid rgba(232, 189, 102, 0.22);
  }

  .project-list {
    max-height: none;
    overflow: visible;
  }

  .about-hero {
    padding: 0;
  }

  .about-hero-inner {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-hero-media {
    width: 100%;
    justify-self: stretch;
  }

  .about-hero-media img {
    height: clamp(430px, 64vw, 660px);
  }

  .about-hero-content {
    width: min(100% - 44px, 880px);
    padding: 58px 0 76px;
  }

  .about-hero-copy {
    width: min(610px, 100%);
  }

  .about-profile-grid,
  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-profile,
  .about-mission {
    padding-top: clamp(138px, 17vw, 176px);
  }

  .about-profile-grid {
    min-height: auto;
  }

  .about-profile::after,
  .about-mission::after {
    top: 28px;
    width: min(100% - 44px, 880px);
    color: rgba(255, 250, 240, 0.07);
    font-size: clamp(92px, 16vw, 150px);
    text-align: center;
  }

  .about-mission::after {
    top: 30px;
  }

  .about-orel-template .about-profile::after {
    font-size: clamp(74px, 11.5vw, 112px);
  }

  .about-orel-template .about-mission::after {
    font-size: clamp(82px, 12.5vw, 118px);
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-story-panel {
    min-height: auto;
  }

  .about-community-panel {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    --header-height: 108px;
    padding: 0 16px;
  }

  body.header-compact .site-header {
    --header-height: 86px;
  }

  .header-left {
    gap: 0;
    top: calc(50% - 22px);
    right: 18px;
  }

  .header-contact {
    top: calc(50% - 22px);
    left: 18px;
  }

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

  .contact-button {
    width: 44px;
    height: 44px;
  }

  .menu-button svg {
    width: 24px;
    height: 24px;
  }

  .contact-button svg {
    width: 22px;
    height: 22px;
  }

  .site-nav {
    left: auto;
    grid-template-rows: clamp(82px, 13dvh, 118px) minmax(0, 1fr) auto;
    gap: clamp(8px, 1.7dvh, 16px);
    width: min(390px, 82vw);
    padding: 22px 22px 24px;
  }

  .contact-drawer {
    right: auto;
    grid-template-rows: clamp(82px, 13dvh, 118px) auto auto auto;
    gap: clamp(5px, 0.95dvh, 8px);
    width: min(390px, 82vw);
    padding: 12px 14px 14px;
  }

  .menu-drawer-head {
    min-height: 0;
    padding-right: 58px;
  }

  .contact-drawer-head {
    min-height: 0;
    padding-left: 58px;
  }

  .menu-logo {
    width: min(238px, 100%);
    min-height: 76px;
    padding: 0;
  }

  .contact-logo {
    width: min(238px, 100%);
    min-height: 76px;
  }

  .menu-logo img {
    width: 100%;
    max-width: 230px;
    transform: none;
  }

  .contact-logo img {
    width: 100%;
    max-width: 230px;
  }

  .menu-close {
    width: 42px;
    height: 42px;
  }

  .contact-close {
    width: 36px;
    height: 36px;
  }

  .contact-panel-copy {
    gap: 8px;
    padding: 7px 0 8px;
  }

  .contact-panel-copy p {
    max-width: 220px;
    font-size: 18px;
  }

  .contact-actions {
    gap: 7px;
  }

  .contact-person {
    gap: 5px;
    padding: 7px;
  }

  .contact-person-title small {
    font-size: 9.5px;
  }

  .contact-person-title strong {
    font-size: 18px;
  }

  .contact-person-title em {
    font-size: 11px;
  }

  .contact-action {
    min-height: 39px;
    padding: 0 8px;
    gap: 8px;
  }

  .contact-person-mail {
    min-height: 27px;
    padding: 3px 6px 0;
    gap: 7px;
  }

  .contact-action-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
  }

  .contact-action svg {
    width: 16px;
    height: 16px;
  }

  .contact-action small,
  .contact-person-mail small,
  .contact-details small {
    margin-bottom: 2px;
    font-size: 9.5px;
  }

  .contact-action span:last-child,
  .contact-person-mail span,
  .contact-details span {
    font-size: 12.5px;
  }

  .contact-phone span:last-child {
    font-size: 14px;
  }

  .contact-details a,
  .contact-details div {
    min-height: 38px;
  }

  .menu-links a {
    min-height: clamp(40px, 6.9dvh, 58px);
    justify-content: flex-start;
    padding: 0 28px 0 10px;
    font-size: clamp(19px, 6.2vw, 28px);
  }

  .menu-cta {
    width: 100%;
    min-height: clamp(46px, 6.2dvh, 52px);
  }

  .gs-logo {
    width: 98px;
  }

  .hero {
    min-height: min(760px, 92svh);
  }

  .hero-bg {
    height: 100%;
    object-fit: cover;
    object-position: center 56%;
  }

  .hero::after {
    right: -32%;
    bottom: -214px;
    left: -32%;
    height: 430px;
    background:
      radial-gradient(46% 46% at 7% 38%, rgba(255, 255, 255, 0.99) 0 34%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.34) 72%, transparent 86%),
      radial-gradient(42% 44% at 92% 36%, rgba(255, 255, 255, 0.99) 0 34%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.34) 74%, transparent 88%),
      radial-gradient(56% 42% at 50% 48%, rgba(255, 255, 255, 0.97) 0 34%, rgba(255, 255, 255, 0.86) 50%, rgba(255, 255, 255, 0.32) 76%, transparent 90%),
      linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.54) 26%, rgba(255, 255, 255, 0.94) 52%, #ffffff 76%, #ffffff 100%);
    filter: blur(0.8px) brightness(1.04);
    opacity: calc(0.66 + var(--hero-progress) * 0.34);
    transform: translate3d(0, calc(var(--hero-progress) * -238px), 0);
  }

  .hero-mist {
    right: -24%;
    bottom: -24%;
    left: -24%;
    height: 45%;
    background:
      url("./assets/generated/clouds-natural-bank-opaque.png") center top / 176% auto no-repeat,
      radial-gradient(42% 46% at 7% 46%, rgba(255, 255, 255, 0.99) 0 34%, rgba(255, 255, 255, 0.9) 49%, rgba(255, 255, 255, 0.34) 72%, transparent 86%),
      radial-gradient(44% 48% at 94% 44%, rgba(255, 255, 255, 0.99) 0 35%, rgba(255, 255, 255, 0.9) 51%, rgba(255, 255, 255, 0.34) 74%, transparent 88%),
      linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.68) 42%, rgba(255, 255, 255, 0.97) 70%, #ffffff 100%);
    filter: brightness(1.13) saturate(0.86) blur(0.15px);
    opacity: calc(0.64 + var(--hero-progress) * 0.36);
    transform: translate3d(calc(var(--hero-progress) * -18px), calc(var(--hero-progress) * -318px), 0);
  }

  .hero-cloud-front {
    right: -26%;
    bottom: -25%;
    left: -26%;
    height: 46%;
    opacity: calc(0.64 + var(--hero-progress) * 0.36);
    transform: translate3d(calc(var(--hero-progress) * -22px), calc(var(--hero-progress) * -368px), 0);
  }

  .hero-cloud-front::before {
    background:
      url("./assets/generated/clouds-natural-bank-opaque.png") center top / 184% auto no-repeat,
      radial-gradient(ellipse at 3% 64%, rgba(255, 255, 255, 0.99) 0 28%, rgba(255, 255, 255, 0.82) 40%, transparent 56%),
      radial-gradient(ellipse at 22% 58%, rgba(255, 255, 255, 0.99) 0 28%, rgba(255, 255, 255, 0.8) 42%, transparent 58%),
      radial-gradient(ellipse at 48% 62%, rgba(255, 255, 255, 0.98) 0 30%, rgba(255, 255, 255, 0.76) 44%, transparent 60%),
      radial-gradient(ellipse at 76% 58%, rgba(255, 255, 255, 0.99) 0 28%, rgba(255, 255, 255, 0.82) 42%, transparent 58%),
      radial-gradient(ellipse at 100% 62%, rgba(255, 255, 255, 0.99) 0 30%, rgba(255, 255, 255, 0.84) 44%, transparent 60%);
    filter: brightness(1.12) saturate(0.86) blur(0.35px);
  }

  .hero-cloud-bridge {
    bottom: -260px;
    height: 450px;
    opacity: calc(0.7 + var(--hero-progress) * 0.3);
    transform: translate3d(0, calc(var(--hero-progress) * -304px), 0);
  }

  .hero-cloud-bridge::before {
    background:
      url("./assets/generated/clouds-natural-bank-opaque.png") center 16% / min(1760px, 128%) auto no-repeat,
      linear-gradient(180deg, transparent 0 16%, rgba(255, 255, 255, 0.98) 42%, #ffffff 62%, #ffffff 100%);
    filter: brightness(1.05) saturate(0.92);
  }

  .hero-cloud-bridge::after {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.96) 34%, #ffffff 58%, #ffffff 100%);
    filter: none;
    transform: none;
  }

  .gs-transition {
    min-height: 260px;
    margin-top: -96px;
    background-position: center top, center;
  }

  .gs-transition::before {
    top: -3px;
    height: 18px;
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.78) 34%, rgba(255, 255, 255, 0) 100%);
    opacity: 1;
  }

  .gs-transition::after {
    display: block;
    right: -58%;
    bottom: -250px;
    left: -58%;
    height: 370px;
    opacity: calc(var(--gs-cloud-cover) * 0.76);
    transform: translate3d(calc(var(--gs-cloud-cover) * -18px), calc(92px - var(--gs-cloud-cover) * 300px), 0) scale(calc(1 + var(--gs-cloud-cover) * 0.034));
    animation: none;
  }

  .gs-clouds-back {
    top: 12%;
    height: 60%;
    transform: none;
    will-change: auto;
  }

  .gs-clouds-back::before {
    background-size: 184% auto;
    background-position: center top;
  }

  .gs-clouds-back::after {
    background-size: 136% auto;
    background-position: right 12% bottom -56px;
  }

  .gs-clouds-front {
    top: auto;
    bottom: -34%;
    height: 44%;
    opacity: calc(var(--gs-cloud-cover) * 0.78);
    transform: translate3d(calc(var(--gs-cloud-cover) * -18px), calc(46px - var(--gs-cloud-cover) * 264px), 0) scale(calc(1 + var(--gs-cloud-cover) * 0.034));
    will-change: auto;
  }

  .gs-clouds-front::after {
    opacity: 0.9;
  }

  .gs-clouds-back::before,
  .gs-clouds-back::after,
  .gs-clouds-front::before,
  .gs-clouds-front::after {
    animation: none;
  }

  .gs-mark {
    top: -4px;
    width: min(360px, calc(100vw - 24px));
  }

  .gs-word,
  .gs-subtitle {
    background-size:
      cover,
      118% auto;
    background-position:
      center 18%,
      center 28%;
  }

  .gs-subtitle {
    background-position:
      center 18%,
      center 31%;
  }

  .gs-word {
    font-size: clamp(120px, 38.4vw, 172px);
    line-height: 0.68;
  }

  .gs-subtitle {
    margin-top: 2px;
    font-size: clamp(47px, 15vw, 67px);
  }

  .gs-subtitle-foreground {
    width: 100%;
  }

  .hero-copy {
    top: 104px;
    width: calc(100% - 28px);
  }

  .hero-copy h1 {
    white-space: normal;
    font-size: clamp(46px, 13vw, 74px);
  }

  .hero-copy p {
    margin: 8px 0 18px;
    font-size: 20px;
  }

  .primary-cta {
    min-width: min(100%, 330px);
    min-height: 54px;
    padding: 0 22px;
    font-size: 17px;
  }

  .services {
    margin-top: -70px;
    padding-top: 66px;
    background: linear-gradient(180deg, #ffffff 0 560px, #050606 560px 100%);
  }

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

  .services-copy h2 {
    font-size: 38px;
  }

  .service-card {
    min-height: 430px;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 28px 22px;
  }

  .service-card::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 34%, rgba(0, 0, 0, 0.48) 68%, rgba(0, 0, 0, 0.82) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.08) 100%);
  }

  .service-card img {
    object-position: 58% center;
    opacity: 1;
  }

  .service-card strong {
    align-self: start;
    padding: 0;
    font-size: clamp(84px, 27vw, 130px);
  }

  .service-content {
    width: 100%;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 34px;
  }

  .metrics div {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-content: center;
    min-height: 148px;
    padding: 18px 10px;
    row-gap: 8px;
    text-align: center;
  }

  .metrics svg,
  .metrics dt,
  .metrics dd {
    grid-column: 1;
  }

  .metrics svg {
    grid-row: auto;
    width: 38px;
    height: 38px;
  }

  .metrics dt {
    font-size: clamp(30px, 9vw, 46px);
    text-align: center;
  }

  .metrics dd {
    margin: 0;
    font-size: clamp(13px, 3.8vw, 15px);
    text-align: center;
  }

  .press-strip {
    grid-template-columns: repeat(2, 1fr);
    font-size: 24px;
  }

  .project-atlas {
    padding: 58px 0 0;
  }

  .project-atlas-inner {
    width: 100%;
  }

  .project-atlas-head {
    width: calc(100% - 28px);
    margin-inline: auto;
    gap: 22px;
  }

  .project-atlas-copy h2 {
    font-size: 38px;
  }

  .project-atlas-copy > p:not(.section-label) {
    font-size: 16px;
  }

  .project-atlas-stat {
    justify-self: stretch;
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    text-align: right;
  }

  .project-atlas-stat strong {
    font-size: 42px;
  }

  .project-atlas-stat span {
    margin: 0;
  }

  .project-map-stage {
    width: 100%;
    min-height: 0;
    aspect-ratio: 2 / 3;
    --project-pin-hit: clamp(22px, 4.1cqw, 26px);
    --project-pin-marker: clamp(12px, 2.25cqw, 14px);
    --project-pin-dot: 4px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .project-map-card {
    right: 50%;
    bottom: 14px;
    left: auto;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    min-height: 142px;
    gap: 0;
    padding: 14px 16px;
  }

  .project-map-card::before {
    background:
      linear-gradient(90deg, rgba(3, 4, 4, 0.18), rgba(3, 4, 4, 0.58) 42%, rgba(3, 4, 4, 0.96) 78%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28)),
      var(--project-card-image, none) center bottom / cover no-repeat;
  }

  .project-map-card > div {
    width: min(74%, 360px);
    justify-self: end;
  }

  .project-map-card h3 {
    margin: 3px 0 8px;
    font-size: 16px;
  }

  .project-map-card a,
  .project-map-cta,
  .project-page-map-link,
  .project-strip-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .project-map-card a svg {
    width: 18px;
    height: 18px;
  }

  .project-pin {
    width: var(--project-pin-hit);
    height: calc(var(--project-pin-hit) * 1.25);
  }

  .project-pin-marker {
    width: var(--project-pin-marker);
    height: var(--project-pin-marker);
  }

  .project-pin-marker::before {
    width: var(--project-pin-dot);
    height: var(--project-pin-dot);
  }

  .project-pin-label,
  .project-pin-card {
    display: none;
  }

  .project-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .project-panel-preview {
    border-left: 0;
    border-bottom: 1px solid rgba(232, 189, 102, 0.22);
    padding: 18px;
  }

  .project-preview-copy h3 {
    font-size: clamp(33px, 9vw, 46px);
  }

  .project-preview-copy p {
    font-size: clamp(20px, 5.8vw, 28px);
  }

  .project-list {
    max-height: none;
    padding: 12px;
    overflow: visible;
  }

  .project-card {
    grid-template-columns: 84px minmax(0, 1fr) 24px;
    min-height: 90px;
  }

  .project-card img {
    width: 84px;
    height: 66px;
  }

  .projects-page-hero {
    min-height: 560px;
    padding: 132px 0 52px;
    background:
      linear-gradient(180deg, rgba(2, 3, 3, 0.34), rgba(2, 3, 3, 0.88) 66%, rgba(2, 3, 3, 0.98)),
      url("./assets/site/israel-project-map.png") center top / cover no-repeat,
      #050606;
  }

  .projects-page-hero-inner,
  .projects-strips {
    width: calc(100% - 28px);
  }

  .projects-page-hero h1 {
    font-size: 48px;
    line-height: 1.04;
  }

  .projects-page-hero p:not(.section-label) {
    font-size: 16px;
  }

  .projects-strips-section {
    padding: 34px 0 74px;
  }

  .projects-strips {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-strip {
    min-height: clamp(430px, 112vw, 520px);
    grid-template-columns: 1fr;
    align-items: end;
    padding: 20px;
  }

  .project-strip::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.96) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 54%, rgba(0, 0, 0, 0.64)),
      radial-gradient(74% 52% at 72% 72%, rgba(232, 189, 102, 0.16), transparent 72%);
  }

  .project-strip img {
    object-position: center;
    filter: saturate(0.94) contrast(1.04) brightness(0.86);
  }

  .project-strip > strong {
    top: 28px;
    left: 24px;
    font-size: clamp(74px, 22vw, 100px);
  }

  .project-strip-content {
    width: 100%;
    padding-bottom: 52px;
  }

  .project-strip-content h2 {
    font-size: clamp(34px, 9.8vw, 46px);
  }

  .project-strip-content p {
    font-size: 15px;
  }

  .project-strip-action {
    width: 52px;
    height: 52px;
    min-height: 0;
    margin-top: 18px;
    padding: 0;
  }

  .about-hero {
    padding: 0;
  }

  .about-hero-inner {
    width: 100%;
    gap: 0;
  }

  .about-hero-media {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow:
      0 18px 54px rgba(0, 0, 0, 0.34),
      0 0 26px rgba(232, 189, 102, 0.08);
  }

  .about-hero-media img {
    width: 100%;
    height: clamp(275px, 78vw, 340px);
    object-fit: cover;
    object-position: center 48%;
  }

  .about-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(255, 255, 255, 0.02)),
      radial-gradient(92% 44% at 50% 18%, rgba(232, 189, 102, 0.12), transparent 72%);
  }

  .about-hero::after {
    right: -52%;
    left: -52%;
    bottom: -78px;
    height: 240px;
    background-size: 178% auto, 100% 100%;
    opacity: 0.5;
  }

  .about-hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 46px 0 62px;
  }

  .about-hero-copy {
    width: 100%;
  }

  .about-hero h1 {
    font-size: clamp(46px, 13vw, 70px);
  }

  .about-hero-copy > p {
    font-size: 17px;
    line-height: 1.68;
  }

  .about-hero-actions {
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .about-hero-actions .primary-cta,
  .about-hero-actions .outline-cta {
    width: min(100%, 310px);
    min-width: 0;
    min-height: 48px;
    font-size: 15px;
  }

  .about-closing .primary-cta {
    width: min(100%, 310px);
    min-height: 48px;
    font-size: 15px;
  }

  .about-hero .primary-cta svg,
  .about-hero .outline-cta svg,
  .about-closing .primary-cta svg {
    width: 20px;
    height: 20px;
  }

  .about-profile,
  .about-mission,
  .about-closing {
    padding-right: 0;
    padding-left: 0;
  }

  .about-profile {
    padding-top: 82px;
    padding-bottom: 68px;
    background-position:
      center,
      center,
      center,
      56% 50%,
      center;
  }

  .about-profile::after {
    top: 92px;
    width: calc(100% - 28px);
    color: rgba(255, 250, 240, 0.035);
    font-size: clamp(56px, 17vw, 66px);
    text-align: center;
    text-shadow:
      0 0 30px rgba(232, 189, 102, 0.08),
      0 18px 54px rgba(0, 0, 0, 0.46);
  }

  .about-gal-template .about-profile::after {
    top: 50px;
  }

  .about-mission {
    padding-top: 120px;
    padding-bottom: 78px;
    background-position:
      center,
      center,
      center 46%,
      center;
    background-size:
      auto,
      auto,
      cover,
      auto;
  }

  .about-mission::after {
    top: 52px;
    width: calc(100% - 28px);
    color: rgba(255, 250, 240, 0.07);
    font-size: clamp(84px, 24vw, 96px);
    text-align: center;
    text-shadow:
      0 0 34px rgba(232, 189, 102, 0.12),
      0 18px 54px rgba(0, 0, 0, 0.46);
  }

  .about-orel-template .about-profile::after {
    top: 64px;
    font-size: clamp(38px, 10.5vw, 50px);
  }

  .about-orel-template .about-mission::after {
    font-size: clamp(64px, 18vw, 78px);
  }

  .about-closing {
    min-height: 620px;
    padding-top: 92px;
    padding-bottom: 98px;
  }

  .about-closing-video {
    object-position: center center;
    opacity: 0.66;
  }

  .about-section-heading h2,
  .about-story-panel h2,
  .about-closing h2 {
    font-size: 36px;
  }

  .about-copy,
  .about-story-panel p:not(.section-label) {
    font-size: 16px;
    line-height: 1.82;
  }

  .about-highlights {
    gap: 10px;
    margin-top: 34px;
  }

  .about-highlights div {
    min-height: auto;
    padding: 20px;
  }

  .about-highlights dt {
    font-size: 28px;
  }

  .about-story-panel {
    min-height: auto;
    padding: 28px 22px;
  }

  .about-closing p {
    font-size: 17px;
  }

  .footer {
    scroll-margin-top: 92px;
    min-height: 860px;
  }

  .footer-bg {
    inset: -5% -42% -4%;
    background-attachment: scroll, scroll, scroll, scroll;
    background-position:
      center,
      center,
      center,
      58% top;
    animation: none !important;
    transform: none;
    will-change: auto;
  }

  .footer-bg::before,
  .footer-bg::after {
    animation: none !important;
    transform: none;
    will-change: auto;
  }

  .footer::before {
    background:
      linear-gradient(180deg, rgba(2, 3, 3, 0.28) 0%, rgba(2, 3, 3, 0.24) 26%, rgba(2, 3, 3, 0.82) 58%, #020303 96%),
      radial-gradient(74% 48% at 50% 48%, rgba(2, 3, 3, 0.52), transparent 76%);
  }

  .footer::after {
    transform: none;
    will-change: auto;
  }

  .footer-cloud-drift {
    right: -46%;
    left: -46%;
    animation: none !important;
    transform: none;
    will-change: auto;
  }

  .footer-cloud-drift-low {
    top: 24%;
    height: 150px;
    opacity: 0.24;
  }

  .footer-cloud-drift-sky {
    top: 22%;
    height: 170px;
    opacity: 0.07;
  }

  .footer-sun-glow {
    top: 8%;
    left: 9%;
    width: 210px;
    height: 170px;
    opacity: 0.46;
    animation: footerMobileSunBreath 7.2s ease-in-out infinite alternate;
  }

  .footer-content {
    width: calc(100% - 36px);
    min-height: 860px;
    padding: 154px 0 28px;
  }

  .footer-brand-row,
  .footer h2,
  .footer-title-line,
  .footer-intro,
  .footer-contact-row,
  .footer-social,
  .footer-glow-line,
  .footer-nav,
  .footer-bottom {
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  @media (prefers-reduced-motion: no-preference) {
    .footer-cloud-drift-low {
      animation: footerMobileLowerClouds 28s ease-in-out infinite alternate !important;
      will-change: transform, opacity;
    }

    .footer-cloud-drift-sky {
      animation: footerMobileSkyClouds 38s ease-in-out infinite alternate !important;
      will-change: transform, opacity;
    }

    .footer-sun-glow {
      animation: footerMobileSunBreath 7.2s ease-in-out infinite alternate !important;
      will-change: transform, opacity;
    }
  }

  .footer-brand-row {
    gap: 18px;
  }

  .footer-brand {
    width: min(42vw, 152px);
  }

  .footer-logo-gs {
    width: min(30vw, 116px);
  }

  .footer-logo-wave {
    width: min(33.7vw, 131px);
  }

  .footer-brand strong {
    font-size: 22px;
    letter-spacing: 0.12em;
  }

  .footer-brand small {
    font-size: 8px;
    letter-spacing: 0.32em;
  }

  .footer-brand-divider {
    height: 86px;
  }

  .footer h2 {
    max-width: 340px;
    margin-top: 50px;
    font-size: 38px;
    line-height: 1.2;
  }

  .footer-contact-row {
    width: min(100%, 430px);
    margin-top: 24px;
  }

  .footer-contact-button {
    width: min(100%, 330px);
    min-width: 0;
    min-height: 54px;
    padding: 0 24px;
    font-size: 18px;
  }

  .footer-glow-line {
    width: min(280px, 72vw);
  }

  .footer-nav {
    gap: 13px 0;
    padding-inline: 0;
    font-size: 15px;
  }

  .footer-nav a {
    padding: 0 14px;
  }

  .footer-bottom {
    padding: 12px 58px 0;
    justify-items: center;
    gap: 14px;
    text-align: center;
    font-size: 13px;
  }

  .footer-bottom div {
    gap: 12px;
  }
}

@media (max-width: 1040px) {
  .accessibility-panel {
    width: max(33.333vw, 340px);
  }

  .accessibility-statement-content {
    grid-template-columns: 1fr;
  }

  .accessibility-statement-toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .accessibility-button {
    bottom: 18px;
    width: 54px;
    height: 54px;
  }

  .accessibility-button img {
    width: 30px;
    height: 30px;
  }

  .accessibility-panel {
    width: calc(100vw * 2 / 3);
    min-width: 238px;
  }

  .accessibility-panel-head {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 12px;
    padding: 18px 16px 14px;
  }

  .accessibility-close {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 38px;
    height: 38px;
  }

  .accessibility-panel-title {
    padding-left: 46px;
  }

  .accessibility-panel-title strong {
    font-size: 23px;
  }

  .accessibility-panel-title span {
    font-size: 12px;
  }

  .accessibility-panel-scroll {
    padding: 14px 12px 86px;
  }

  .accessibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .accessibility-tile {
    min-height: 92px;
    padding: 10px 6px;
  }

  .accessibility-tile svg {
    width: 28px;
    height: 28px;
  }

  .accessibility-tile span {
    font-size: 12px;
  }

  .accessibility-controls {
    gap: 18px;
    margin-top: 20px;
  }

  .accessibility-control h3 {
    font-size: 16px;
  }

  .a11y-stepper {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .a11y-stepper button {
    width: 42px;
    height: 36px;
    font-size: 28px;
  }

  .a11y-meter output {
    min-width: 56px;
    padding: 5px 8px;
    font-size: 15px;
  }

  .a11y-range-labels {
    font-size: 10px;
  }

  .accessibility-actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .accessibility-link,
  .accessibility-reset {
    min-height: 44px;
    font-size: 13px;
  }

  .accessibility-statement-page {
    padding-top: 128px;
  }

  .accessibility-statement-hero,
  .accessibility-statement-content {
    width: calc(100% - 28px);
  }

  .accessibility-statement-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .accessibility-statement-hero p,
  .accessibility-statement-section p,
  .accessibility-statement-section li,
  .accessibility-statement-contact p {
    font-size: 16px;
  }

  .accessibility-statement-section,
  .accessibility-statement-contact,
  .accessibility-statement-toc {
    border-radius: 6px;
  }

  .accessibility-statement-section,
  .accessibility-statement-contact {
    padding: 22px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-bg {
    animation: none;
    transform: scale(1.035);
  }

  .footer::after {
    opacity: 0.22;
    transform: none;
  }

  .footer-cloud-drift {
    animation: none;
    opacity: 0.2;
    transform: none;
  }

  .footer-sun-glow {
    animation: none;
    opacity: 0.34;
    transform: translate3d(-50%, -50%, 0);
  }

  .footer-sun-glow::before {
    animation: none;
  }

  .footer-sun-glow::after {
    animation: none;
  }

  .footer-brand-row {
    transform: none;
  }

  .footer-brand-row,
  .footer h2,
  .footer-title-line,
  .footer-intro,
  .footer-contact-row,
  .footer-social,
  .footer-glow-line,
  .footer-nav,
  .footer-bottom {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

.wave-template .site-shell {
  background: #020303;
}

.wave-page {
  position: relative;
  overflow: hidden;
  background: #020303;
  color: var(--white);
}

.wave-hero {
  position: relative;
  isolation: isolate;
  min-height: min(890px, 94svh);
  display: grid;
  align-items: end;
  padding: clamp(172px, 14vw, 220px) 0 clamp(56px, 6vw, 92px);
  overflow: hidden;
  background: #050606;
}

.wave-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(232, 189, 102, 0.14) 50%, transparent 100%) center calc(100% - 2px) / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 74%, rgba(232, 189, 102, 0.08));
  pointer-events: none;
}

.wave-hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
}

.wave-hero-video {
  transform: scale(1.018);
  transform-origin: center;
  background: #050606;
}

.wave-hero-noscript {
  display: block;
}

.wave-hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(54% 48% at 72% 30%, rgba(232, 189, 102, 0.2), transparent 70%),
    radial-gradient(42% 42% at 22% 62%, rgba(80, 120, 132, 0.16), transparent 74%),
    linear-gradient(90deg, rgba(2, 3, 3, 0.24) 0%, rgba(2, 3, 3, 0.24) 32%, rgba(2, 3, 3, 0.72) 76%, rgba(2, 3, 3, 0.96) 100%),
    linear-gradient(180deg, rgba(2, 3, 3, 0.1) 0%, rgba(2, 3, 3, 0.18) 36%, #020303 100%);
  pointer-events: none;
}

.wave-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -10%;
  bottom: -1px;
  left: -10%;
  height: clamp(100px, 12vw, 180px);
  background:
    linear-gradient(180deg, transparent, rgba(2, 3, 3, 0.84) 58%, #020303 100%),
    radial-gradient(70% 80% at 50% 100%, rgba(232, 189, 102, 0.1), transparent 70%);
  pointer-events: none;
}

.wave-hero-inner,
.wave-section-inner {
  position: relative;
  z-index: 2;
  width: min(1220px, calc(100% - 96px));
  margin: 0 auto;
}

.wave-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  justify-items: end;
  gap: clamp(30px, 4vw, 54px);
}

.wave-hero-copy {
  justify-self: end;
  width: min(880px, 100%);
  text-align: right;
}

.wave-hero-copy::before {
  content: "";
  display: block;
  width: clamp(74px, 7vw, 112px);
  height: 2px;
  margin: 0 0 clamp(24px, 2.6vw, 34px) auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.96) 28%, #f6d88a 50%, rgba(232, 189, 102, 0.96) 72%, transparent);
  box-shadow: 0 0 18px rgba(232, 189, 102, 0.46);
}

.wave-hero h1 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(44px, 4.65vw, 78px);
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.66);
}

.wave-hero-copy > p {
  max-width: 820px;
  margin: clamp(20px, 2vw, 28px) 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 600;
  line-height: 1.74;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.62);
}

.wave-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: clamp(28px, 3vw, 42px);
}

.wave-hero-actions .primary-cta {
  min-width: min(100%, 382px);
}

.wave-hero-actions .outline-cta {
  min-width: min(100%, 322px);
}

.wave-outline-cta {
  color: #fffaf0;
  background: rgba(2, 3, 3, 0.38);
  border-color: rgba(255, 250, 240, 0.46);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.wave-hero-proof {
  justify-self: end;
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 189, 102, 0.52);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(2, 3, 3, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px) saturate(112%);
}

.wave-hero-proof div {
  display: grid;
  grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 250, 240, 0.16);
  border-bottom: 0;
}

.wave-hero-proof div:last-child {
  border-left: 0;
}

.wave-hero-proof dt {
  direction: ltr;
  color: #f1c978;
  font-size: clamp(30px, 2.8vw, 48px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
}

.wave-hero-proof dd {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  line-height: 1.5;
}

.wave-intro {
  position: relative;
  z-index: 2;
  padding: clamp(82px, 8vw, 132px) 0;
  background:
    radial-gradient(48% 36% at 18% 14%, rgba(232, 189, 102, 0.1), transparent 70%),
    linear-gradient(180deg, #020303 0%, #070808 100%);
}

.wave-intro::before,
.wave-services-section::before,
.wave-why::before {
  content: "";
  position: absolute;
  inset: -1px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 189, 102, 0.68), transparent);
  opacity: 0.78;
}

.wave-intro-grid,
.wave-why-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}

.wave-section-heading h2,
.wave-method-head h2,
.wave-services-head h2,
.wave-why h2 {
  margin: 0;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 500;
  line-height: 1.16;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
}

.wave-copy {
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(17px, 1.22vw, 22px);
  font-weight: 500;
  line-height: 1.86;
}

.wave-copy p {
  margin: 0;
}

.wave-copy p + p {
  margin-top: 20px;
}

.wave-method {
  position: relative;
  padding: clamp(86px, 9vw, 146px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    radial-gradient(46% 42% at 82% 32%, rgba(90, 164, 182, 0.16), transparent 72%),
    radial-gradient(40% 34% at 18% 74%, rgba(232, 189, 102, 0.1), transparent 70%),
    #070808;
}

.wave-method-head {
  width: min(860px, 100%);
  margin: 0 0 clamp(34px, 5vw, 66px) auto;
  text-align: right;
}

.wave-method-head > p:not(.section-label) {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: clamp(17px, 1.22vw, 22px);
  font-weight: 500;
  line-height: 1.78;
}

.wave-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wave-method-grid article {
  min-height: 286px;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    #090a0a;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.wave-method-grid span {
  direction: ltr;
  display: block;
  color: rgba(232, 189, 102, 0.88);
  font-size: 15px;
  font-weight: 900;
}

.wave-method-grid h3 {
  margin: 34px 0 14px;
  color: #fffaf0;
  font-family: var(--title-serif);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}

.wave-method-grid p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 500;
  line-height: 1.7;
}

.wave-services-section {
  position: relative;
  padding: clamp(82px, 8vw, 132px) 0;
  background:
    radial-gradient(52% 40% at 72% 18%, rgba(232, 189, 102, 0.1), transparent 72%),
    linear-gradient(180deg, #080909 0%, #020303 100%);
}

.wave-services-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  margin-bottom: clamp(30px, 4vw, 58px);
}

.wave-services-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wave-services-list li {
  position: relative;
  min-height: 158px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(232, 189, 102, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(16px, 1.05vw, 19px);
  font-weight: 700;
  line-height: 1.58;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wave-services-list li::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1c978, rgba(232, 189, 102, 0.16));
  box-shadow: 0 0 14px rgba(232, 189, 102, 0.36);
}

.wave-why {
  position: relative;
  padding: clamp(90px, 9vw, 152px) 0 clamp(102px, 10vw, 168px);
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.78), rgba(2, 3, 3, 0.96)),
    radial-gradient(44% 34% at 16% 34%, rgba(90, 164, 182, 0.16), transparent 72%),
    radial-gradient(42% 32% at 88% 78%, rgba(232, 189, 102, 0.14), transparent 70%),
    url("./assets/home/city-aerial.jpg") center center / cover no-repeat,
    #020303;
}

.wave-why .wave-copy {
  color: rgba(255, 250, 240, 0.82);
}

.wave-why strong {
  display: block;
  margin-top: 28px;
  color: #f1c978;
  font-family: var(--title-serif);
  font-size: clamp(25px, 2.4vw, 42px);
  font-weight: 500;
  line-height: 1.38;
}

.wave-why .primary-cta {
  margin-top: 34px;
}

body.a11y-hide-images .site-shell :where(.wave-hero-image, .wave-hero-video, .wave-hero-noscript) {
  visibility: hidden;
}

@media (max-width: 1040px) {
  .wave-template .wave-logo {
    width: clamp(116px, 14vw, 148px);
  }

  .wave-hero-inner,
  .wave-intro-grid,
  .wave-why-grid {
    grid-template-columns: 1fr;
  }

  .wave-hero-inner,
  .wave-section-inner {
    width: min(100% - 44px, 900px);
  }

  .wave-hero-copy {
    justify-self: start;
  }

  .wave-hero-proof {
    width: min(100%, 720px);
  }

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

@media (max-width: 760px) {
  .wave-template .wave-logo {
    width: 118px;
  }

  .wave-hero {
    min-height: auto;
    padding: 132px 0 58px;
  }

  .wave-hero-media {
    object-position: 50% 76%;
  }

  .wave-hero-video {
    transform: scale(1.28);
    transform-origin: center bottom;
  }

  .wave-hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 3, 3, 0.18) 0%, rgba(2, 3, 3, 0.48) 28%, rgba(2, 3, 3, 0.92) 76%, #020303 100%),
      linear-gradient(90deg, rgba(2, 3, 3, 0.28), rgba(2, 3, 3, 0.58));
  }

  .wave-hero-inner,
  .wave-section-inner {
    width: calc(100% - 28px);
  }

  .wave-hero h1 {
    font-size: clamp(38px, 10.6vw, 52px);
  }

  .wave-hero-copy > p {
    font-size: 16px;
    line-height: 1.74;
  }

  .wave-hero-actions {
    justify-content: stretch;
  }

  .wave-hero-actions .primary-cta,
  .wave-hero-actions .outline-cta,
  .wave-why .primary-cta {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 50px;
    font-size: 15px;
  }

  .wave-hero-proof div {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 18px 20px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.16);
  }

  .wave-hero-proof div:last-child {
    border-bottom: 0;
  }

  .wave-hero-proof {
    grid-template-columns: 1fr;
  }

  .wave-hero-proof dt,
  .wave-hero-proof dd {
    text-align: right;
  }

  .wave-intro,
  .wave-method,
  .wave-services-section,
  .wave-why {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .wave-section-heading h2,
  .wave-method-head h2,
  .wave-services-head h2,
  .wave-why h2 {
    font-size: 36px;
  }

  .wave-copy,
  .wave-method-head > p:not(.section-label) {
    font-size: 16px;
    line-height: 1.78;
  }

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

  .wave-method-grid article {
    min-height: auto;
    padding: 24px 22px;
  }

  .wave-method-grid h3 {
    margin-top: 24px;
  }

  .wave-services-head {
    grid-template-columns: 1fr;
  }

  .wave-services-list li {
    min-height: auto;
    padding: 22px 20px 20px;
  }

  .wave-why {
    background-position: center center;
  }

  .wave-why strong {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-template .wave-logo {
    transition: none;
  }
}
