:root {
  --bg: #FDF9F0;
  --paper: var(--bg);
  --ink: #111111;
  --muted: #5f5f5f;
  --line: #d9d9d4;
  --soft: #ececea;
  --max: 1400px;
  --site-bg-color: #EBC5A0;
  --site-bg-image: url("https://storage.googleapis.com/amira-elghawaby/wall_background.png");
}

@font-face {
  font-family: "Canela";
  src: url("fonts/Canela-Family/Canela-Regular-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
  color: var(--bg);
}

#intro-overlay.is-exiting {
  pointer-events: none;
}

#intro-overlay.is-clearing {
  background: transparent;
}

#intro-overlay.is-clearing .intro-title,
#intro-overlay.is-clearing .intro-frames,
#intro-overlay.is-clearing .intro-shade {
  display: none;
}

.intro-frames {
  position: absolute;
  inset: clamp(14px, 3vw, 34px);
  overflow: hidden;
  background: #111111;
}

.intro-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(100%) contrast(1.05);
}

.intro-frame.is-active {
  opacity: 1;
}

.intro-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.82));
  opacity: 0.42;
  transition: opacity 4700ms ease;
}

#intro-overlay.is-ready .intro-shade {
  opacity: 1;
}

.intro-title {
  position: relative;
  z-index: 2;
  max-width: min(920px, 86vw);
  margin: 0;
  font-family: "Canela", "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.0;
  text-align: center;
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 4700ms ease, transform 4200ms cubic-bezier(0.16, 1, 0.3, 1);
}

#intro-overlay.is-ready .intro-title {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intro-slices {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  pointer-events: none;
}

.intro-slices span {
  flex: 1;
  transform: translateY(100%);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
}

.intro-slices span:nth-child(1) {
  background: #54073f;
}

.intro-slices span:nth-child(2) {
  background: #FDF9F0;
}

.intro-slices span:nth-child(3) {
  background: #9AA2C2;
}

.intro-slices span:nth-child(4) {
  background: #e09351;
}

.intro-slices span:nth-child(5) {
  background: #944400;
}

#intro-overlay.is-exiting .intro-slices span {
  transform: translateY(0);
}

#intro-overlay.is-clearing .intro-slices span {
  transform: translateY(-100%);
}

#intro-overlay.is-exiting .intro-slices span:nth-child(2) {
  transition-delay: 95ms;
}

#intro-overlay.is-exiting .intro-slices span:nth-child(3) {
  transition-delay: 190ms;
}

#intro-overlay.is-exiting .intro-slices span:nth-child(4) {
  transition-delay: 285ms;
}

#intro-overlay.is-exiting .intro-slices span:nth-child(5) {
  transition-delay: 380ms;
}

#intro-overlay.is-clearing .intro-slices span:nth-child(1) {
  transition-delay: 0ms;
}

#intro-overlay.is-clearing .intro-slices span:nth-child(2) {
  transition-delay: 95ms;
}

#intro-overlay.is-clearing .intro-slices span:nth-child(3) {
  transition-delay: 190ms;
}

#intro-overlay.is-clearing .intro-slices span:nth-child(4) {
  transition-delay: 285ms;
}

#intro-overlay.is-clearing .intro-slices span:nth-child(5) {
  transition-delay: 380ms;
}

#intro-overlay.is-exiting .intro-title,
#intro-overlay.is-exiting .intro-frames,
#intro-overlay.is-exiting .intro-shade {
  opacity: 0;
  transition: opacity 620ms ease;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  visibility: hidden;
}

.page-transition.is-active,
.page-transition.is-exiting {
  visibility: visible;
}

.page-transition span {
  flex: 1;
  transform: translateY(100%);
  transition: transform 500ms cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition span:nth-child(1) { background: #54073f; }
.page-transition span:nth-child(2) { background: #FDF9F0; }
.page-transition span:nth-child(3) { background: #9AA2C2; }
.page-transition span:nth-child(4) { background: #e09351; }
.page-transition span:nth-child(5) { background: #944400; }

.page-transition.is-exiting span {
  transform: translateY(0);
}

.page-transition.is-active span {
  transform: translateY(0);
  transition: none;
}

.page-transition.is-active.is-revealing span {
  transform: translateY(-100%);
  transition: transform 600ms cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition.is-exiting span:nth-child(2) { transition-delay: 60ms; }
.page-transition.is-exiting span:nth-child(3) { transition-delay: 120ms; }
.page-transition.is-exiting span:nth-child(4) { transition-delay: 180ms; }
.page-transition.is-exiting span:nth-child(5) { transition-delay: 240ms; }

.page-transition.is-active.is-revealing span:nth-child(1) { transition-delay: 0ms; }
.page-transition.is-active.is-revealing span:nth-child(2) { transition-delay: 60ms; }
.page-transition.is-active.is-revealing span:nth-child(3) { transition-delay: 120ms; }
.page-transition.is-active.is-revealing span:nth-child(4) { transition-delay: 180ms; }
.page-transition.is-active.is-revealing span:nth-child(5) { transition-delay: 240ms; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Anke", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  /* position: absolute;
  top: 0;
  left: 0;
  right: 0; */
  position: relative;
  z-index: 30;
  display: flex;
    max-width: var(--max);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 10vh;
    height: 10dvh;
    margin-inline: auto;
    padding: 3rem;
    background: transparent;
}

.hero .site-header {
  color: var(--bg);
}

body.menu-open .site-header {
  color: var(--bg);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  text-decoration: none;
}

.brand__stack {
  position: relative;
  display: block;
  width: 188px;
  height: 25px;
}

.brand__image {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 25px;
  opacity: 0;
  transform: translateY(12px);
}

@keyframes brandImageRise {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  55% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes brandImageRiseHover {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  55% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes brandImageRiseHold {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand__image--plum {
  filter: brightness(0) saturate(100%) invert(10%) sepia(41%) saturate(3976%) hue-rotate(293deg) brightness(82%) contrast(109%);
  animation-delay: 0ms;
}

.brand__image--mist {
  filter: brightness(0) saturate(100%) invert(94%) sepia(4%) saturate(210%) hue-rotate(318deg) brightness(95%) contrast(90%);
  animation-delay: 80ms;
}

.brand__image--rose {
  filter: brightness(0) saturate(100%) invert(80%) sepia(13%) saturate(577%) hue-rotate(285deg) brightness(91%) contrast(84%);
  animation-delay: 160ms;
}

.brand__image--orange {
  filter: brightness(0) saturate(100%) invert(46%) sepia(99%) saturate(2401%) hue-rotate(4deg) brightness(101%) contrast(104%);
  animation-delay: 240ms;
}

.brand__image--rust {
  filter: brightness(0) saturate(100%) invert(25%) sepia(95%) saturate(1749%) hue-rotate(18deg) brightness(88%) contrast(102%);
  animation-delay: 320ms;
}

.brand__image--white {
  z-index: 2;
  /* filter: brightness(0) invert(1); */
  animation-delay: 400ms;
}

.brand:hover .brand__image,
.brand:focus-visible .brand__image,
.brand.is-in-view .brand__image {
  animation-name: brandImageRise;
  animation-duration: 760ms;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-fill-mode: both;
}

.brand:hover .brand__image,
.brand:focus-visible .brand__image {
  animation-name: brandImageRiseHover;
}

.brand:hover .brand__image--white,
.brand:focus-visible .brand__image--white,
.brand.is-in-view .brand__image--white {
  animation-name: brandImageRiseHold;
  animation-duration: 520ms;
}

body.menu-open .brand__image--white {
  filter: brightness(0) invert(1);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  transition: color 0.45s ease 0.08s;
}

.menu-toggle svg {
  width: 24px;
  height: 18px;
  overflow: visible;
}

.menu-toggle .top,
.menu-toggle .middle,
.menu-toggle .bottom {
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.35s ease;
}

.menu-toggle .top {
  transform-origin: 50px 30px;
}

.menu-toggle .middle {
  transform-origin: 50px 50px;
}

.menu-toggle .bottom {
  transform-origin: 50px 70px;
}

.menu-toggle:hover .top {
  transform: translateY(8px);
}

.menu-toggle:hover .middle {
  transform: rotate(180deg);
}

.menu-toggle:hover .bottom {
  transform: translateY(-8px);
}

body.menu-open .menu-toggle {
  color: var(--bg);
}

body.menu-open .menu-toggle .top {
  transform: translateY(20px) rotate(45deg) scaleX(0.92);
}

body.menu-open .menu-toggle .middle {
  opacity: 0;
  transform: scaleX(0);
}

body.menu-open .menu-toggle .bottom {
  transform: translateY(-20px) rotate(-45deg) scaleX(0.92);
}

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 30vh;
  /* padding: 3rem 7rem 0 7rem; */
  color: var(--bg);
  pointer-events: none;
  overflow: hidden;
}

.menu-panel.is-open {
  pointer-events: auto;
}

.menu-panel__layers,
.menu-panel__layers span,
.menu-panel__surface {
  position: absolute;
  inset: 0;
}

.menu-panel__layers {
  z-index: 0;
  pointer-events: none;
}

.menu-panel__layers span,
.menu-panel__surface {
  transform: translateY(-100%);
  transition: transform 650ms cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-panel__layers span:nth-child(1) {
  z-index: 1;
  background: #54073f;
  transition-delay: 340ms;
}

.menu-panel__layers span:nth-child(2) {
  z-index: 2;
  background: #FDF9F0;
  transition-delay: 295ms;
}

.menu-panel__layers span:nth-child(3) {
  z-index: 3;
  background: #9AA2C2;
  transition-delay: 250ms;
}

.menu-panel__layers span:nth-child(4) {
  z-index: 4;
  background: #e09351;
  transition-delay: 205ms;
}

.menu-panel__layers span:nth-child(5) {
  z-index: 5;
  background: #944400;
  transition-delay: 160ms;
}

.menu-panel__surface {
  z-index: 6;
  background: #000000;
}

.menu-panel.is-open .menu-panel__layers span,
.menu-panel.is-open .menu-panel__surface {
  transform: translateY(0);
}

.menu-panel.is-open .menu-panel__layers span:nth-child(1) {
  transition-delay: 0ms;
}

.menu-panel.is-open .menu-panel__layers span:nth-child(2) {
  transition-delay: 45ms;
}

.menu-panel.is-open .menu-panel__layers span:nth-child(3) {
  transition-delay: 90ms;
}

.menu-panel.is-open .menu-panel__layers span:nth-child(4) {
  transition-delay: 135ms;
}

.menu-panel.is-open .menu-panel__layers span:nth-child(5) {
  transition-delay: 180ms;
}

.menu-panel.is-open .menu-panel__surface {
  transition-delay: 260ms;
}

.menu-panel__inner {
  position: relative;
  z-index: 7;
  display: flex;
  padding: 7rem 3rem 2rem 3rem;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-panel.is-open .menu-panel__inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 360ms;
}

.site-nav {
display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: inherit;
    font-family: Inter, "Anke", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-direction: column;
}

.menu-panel .site-nav {

}

.nav__animated-char {
  display: inline-block;
  color: currentColor;
}

.site-nav a:hover .nav__animated-char,
.site-nav a:focus-visible .nav__animated-char {
  animation: heroAccentColorCycle 1300ms linear 1;
  animation-delay: calc(var(--char-index) * 55ms);
}

.menu-panel__aside {
  display: flex;
  gap: 1rem;
}

.menu-panel__image {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.menu-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    color: #bdbdbd;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-direction: row;
    align-items: flex-end;
}

.menu-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-socials img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.site-nav a,
.menu-socials a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.menu-socials a:hover,
.site-footer a:hover {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 4px;
}


.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: var(--bg);
  /* background-image: var(--site-bg-image); */
  background-position: center;
  background-size: cover;
  color: var(--bg);
}

.hero-overlap-image {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 100dvh;
  background-image: url("https://storage.googleapis.com/amira-elghawaby/leafs_together.png");
  background-position: center;
  background-size: cover;
}

.advisory-section {
  position: relative;
  z-index: 3;
}

/* .hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  content: "";
  pointer-events: none;
} */

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 3rem 5rem 5rem 3rem;
    align-items: center;
    justify-self: center;
    height: 90vh;
    max-width: var(--max);
    height: 90dvh;
    gap: clamp(36px, 5vw, 60px); /* min 36px so the 30px layer expansion has clearance on both sides */
    max-width: var(--max);
}

.hero__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: #e09351;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label {
  font-family: "Canela", "Cormorant Garamond", Georgia, serif;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4.7rem, 13vw, 12rem);
}

.hero__title {
  max-width: 540px;
  margin-bottom: 14px;
  font-family: "Canela", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 7rem);
  text-align: left;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__image-title {
  display: none;
  font-family: "Canela", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

@keyframes heroImageTitleRiseCycle {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  13.75% {
    opacity: 1;
    transform: translateY(0);
  }

  25%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@keyframes heroImageTitleRiseHold {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }

  13.75%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__image-title-phrase,
.hero__image-title-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero__image-title-phrase {
  display: block;
  text-align: center;
}

.hero__image-title-text {
  display: block;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  animation-duration: 7200ms;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-fill-mode: both;
}

.hero__image-title.is-animating .hero__image-title-text {
  animation-name: heroImageTitleRiseCycle;
}

.hero__image-title.is-animating .hero__image-title-phrase:nth-child(4) .hero__image-title-text {
  animation-name: heroImageTitleRiseHold;
}

.hero__image-title-phrase:nth-child(1) .hero__image-title-text {
  --phrase-delay: 0ms;
}

.hero__image-title-phrase:nth-child(2) .hero__image-title-text {
  --phrase-delay: 1800ms;
}

.hero__image-title-phrase:nth-child(3) .hero__image-title-text {
  --phrase-delay: 3600ms;
}

.hero__image-title-phrase:nth-child(4) .hero__image-title-text {
  --phrase-delay: 5400ms;
}

.hero__image-title-text--plum {
  color: #2b0730;
  animation-delay: var(--phrase-delay, 0ms);
}

.hero__image-title-text--mist {
  color: #e8e1dc;
}

.hero__image-title-text--rose {
  color: #d8aeb8;
}

.hero__image-title-text--orange {
  color: #f36511;
}

.hero__image-title-text--rust {
  color: #97330b;
}

.hero__image-title-text--white {
  color: var(--bg);
}

.hero__image-title-text--mist {
  animation-delay: calc(var(--phrase-delay, 0ms) + 80ms);
}

.hero__image-title-text--rose {
  animation-delay: calc(var(--phrase-delay, 0ms) + 160ms);
}

.hero__image-title-text--orange {
  animation-delay: calc(var(--phrase-delay, 0ms) + 240ms);
}

.hero__image-title-text--rust {
  animation-delay: calc(var(--phrase-delay, 0ms) + 320ms);
}

.hero__image-title-text--white {
  animation-delay: calc(var(--phrase-delay, 0ms) + 400ms);
}

.hero__content h1 {
  max-width: 540px;
  margin-bottom: clamp(1rem, 2vw, 2.5rem);
  font-family: Inter, "Anke", sans-serif;
  font-size: clamp(1.25rem, 2vw, 2.5rem);
  font-weight: 400;
  text-align: left;
  letter-spacing: -0.06em;
  transition: color 2.5s ease-in;
}

.hero__content h1:has(.hero__accent.is-in-view) {
  color: #000000;
}

.hero__accent {
  display: block;
  font-family: Inter, "Anke", sans-serif;
  font-style: italic;
  letter-spacing: -0.06em;
}

.hero__animated-char {
  display: inline-block;
  color: currentColor;
}

.hero__title.is-in-view .hero__animated-char,
.hero__accent.is-in-view .hero__animated-char {
  animation: heroAccentColor 900ms ease both;
  animation-delay: calc(var(--char-index) * 55ms);
}

.hero__title:hover .hero__animated-char,
.hero__title:focus-within .hero__animated-char,
.hero__accent:hover .hero__animated-char,
.hero__accent:focus-within .hero__animated-char,
#hero-title:hover .hero__accent .hero__animated-char,
#hero-title:focus-within .hero__accent .hero__animated-char {
  animation: heroAccentColorCycle 1300ms linear 1;
  animation-delay: calc(var(--char-index) * 55ms);
}

@keyframes heroAccentColor {
  0% {
    color: currentColor;
  }

  12% {
    color: #54073f;
  }

  24% {
    color: #FDF9F0;
  }

  36% {
    color: #9AA2C2;
  }

  48% {
    color: #e09351;
  }

  60% {
    color: #944400;
  }

  100% {
    color: #000000;
  }
}

@keyframes heroAccentColorCycle {
  0%,
  100% {
    color: #54073f;
  }

  20% {
    color: #FDF9F0;
  }

  40% {
    color: #9AA2C2;
  }

  60% {
    color: #e09351;
  }

  80% {
    color: #944400;
  }
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.hero__dek {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.48;
}

.hero__image {
  position: relative;
  height: 100%;
}

.hero__image-layers,
.hero__image-layers span {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero__image-layers span {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__image-layers {
  z-index: 0;
  pointer-events: none;
}

.hero__image-layers span:nth-child(1) {
  inset: -6px;
  z-index: 5;
  background: #54073f;
  animation-delay: 0ms;
}

.hero__image-layers span:nth-child(2) {
  inset: -12px;
  z-index: 4;
  background: #FDF9F0;
  transition-delay: 45ms;
  animation-delay: 45ms;
}

.hero__image-layers span:nth-child(3) {
  inset: -18px;
  z-index: 3;
  background: #9AA2C2;
  transition-delay: 90ms;
  animation-delay: 90ms;
}

.hero__image-layers span:nth-child(4) {
  inset: -24px;
  z-index: 2;
  background: #e09351;
  transition-delay: 135ms;
  animation-delay: 135ms;
}

.hero__image-layers span:nth-child(5) {
  inset: -30px;
  z-index: 1;
  background: #944400;
  transition-delay: 180ms;
  animation-delay: 180ms;
}

.hero .who__image.is-in-view .hero__image-layers span {
  opacity: 1;
  transform: scale(1);
}

.hero .who__image:hover .hero__image-layers span,
.hero .who__image:focus-within .hero__image-layers span {
  animation-name: heroImageLayerPulse;
  animation-duration: 760ms;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-fill-mode: both;
}

@keyframes heroImageLayerPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  42% {
    opacity: 0;
    transform: scale(0.96);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero__image img {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center bottom;
  /* filter: grayscale(1); */
  transition: filter 260ms ease;
}

.hero__image:hover img:not(.who__image-bottom),
.hero__image:focus-within img:not(.who__image-bottom) {
  z-index: 10;
  filter: grayscale(0);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}


.button--layered {
  overflow: visible;
  border-radius: 3rem;
}

.button__layers,
.button__layers span {
  position: absolute;
  inset: 0;
}

.button__layers {
  z-index: 0;
  pointer-events: none;
}

.button__layers span {
  border-radius: 3rem;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button__layers span:nth-child(1) {
  inset: -4px;
  z-index: 5;
  background: #54073f;
}

.button__layers span:nth-child(2) {
  inset: -8px;
  z-index: 4;
  background: #FDF9F0;
  transition-delay: 45ms;
}

.button__layers span:nth-child(3) {
  inset: -12px;
  z-index: 3;
  background: #9AA2C2;
  transition-delay: 90ms;
}

.button__layers span:nth-child(4) {
  inset: -16px;
  z-index: 2;
  background: #e09351;
  transition-delay: 135ms;
}

.button__layers span:nth-child(5) {
  inset: -20px;
  z-index: 1;
  background: #944400;
  transition-delay: 180ms;
}

.button--layered:hover .button__layers span,
.button--layered:focus-visible .button__layers span {
  opacity: 1;
  transform: scale(1);
}

.button__label {
  position: relative;
  z-index: 1;
  font-family: Inter, "Anke", sans-serif;
  text-transform: none;
}

.button:hover {
  color: white;
}

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

.button--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

/* .who__image {
  align-self: center;
  width: min(100%, 430px);
  max-height: none;
} */

.who__image img {
  /* aspect-ratio: 4 / 5; */
}

.hero .who__image .who__image-bottom-stack {
  display: none;
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 4vw, 44px);
  z-index: 11;
  width: min(82%, 380px);
  pointer-events: none;
  transform: translateX(-50%);
}

.hero .who__image .who__image-bottom {
  position: absolute;
  inset: auto auto 0 50%;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translate(-50%, 24px);
}

@keyframes whoImageBottomRise {
  0% {
    opacity: 0;
    transform: translate(-50%, 24px);
  }

  55% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
}

@keyframes whoImageBottomRiseHover {
  0% {
    opacity: 0;
    transform: translate(-50%, 24px);
  }

  55% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
}

@keyframes whoImageBottomRiseHold {
  from {
    opacity: 0;
    transform: translate(-50%, 24px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero .who__image .who__image-bottom--plum {
  filter: brightness(0) saturate(100%) invert(10%) sepia(41%) saturate(3976%) hue-rotate(293deg) brightness(82%) contrast(109%);
  animation-delay: 0ms;
}

.hero .who__image .who__image-bottom--mist {
  filter: brightness(0) saturate(100%) invert(94%) sepia(4%) saturate(210%) hue-rotate(318deg) brightness(95%) contrast(90%);
  animation-delay: 80ms;
}

.hero .who__image .who__image-bottom--rose {
  filter: brightness(0) saturate(100%) invert(80%) sepia(13%) saturate(577%) hue-rotate(285deg) brightness(91%) contrast(84%);
  animation-delay: 160ms;
}

.hero .who__image .who__image-bottom--orange {
  filter: brightness(0) saturate(100%) invert(46%) sepia(99%) saturate(2401%) hue-rotate(4deg) brightness(101%) contrast(104%);
  animation-delay: 240ms;
}

.hero .who__image .who__image-bottom--rust {
  filter: brightness(0) saturate(100%) invert(25%) sepia(95%) saturate(1749%) hue-rotate(18deg) brightness(88%) contrast(102%);
  animation-delay: 320ms;
}

.hero .who__image .who__image-bottom--white {
  z-index: 2;
  filter: brightness(0) invert(1);
  animation-delay: 400ms;
}

.hero .who__image:hover .who__image-bottom,
.hero .who__image.is-in-view .who__image-bottom {
  animation-name: whoImageBottomRise;
  animation-duration: 760ms;
  animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
  animation-fill-mode: both;
}

.hero .who__image:hover .who__image-bottom--white,
.hero .who__image.is-in-view .who__image-bottom--white {
  animation-name: whoImageBottomRiseHold;
  animation-duration: 520ms;
}

.hero .who__image:hover .who__image-bottom,
.hero .who__image:focus-within .who__image-bottom {
  animation-name: whoImageBottomRiseHover;
}

.hero .who__image:hover .who__image-bottom--white,
.hero .who__image:focus-within .who__image-bottom--white {
  animation-name: whoImageBottomRiseHold;
}

/* .hero .who__image {
  align-self: stretch;
  height: 100%;
} */

.hero .who__image::after {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    height: 22%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
    content: "";
    pointer-events: none;
}

.hero .who__image img {
  height: 100%;
}



/* ── About Amira Section ─────────────────────────── */

.who-section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  padding: 9rem 7rem;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
}

.who-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -140px;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: url("https://storage.googleapis.com/amira-elghawaby/amira_logo_blue.png") center / cover no-repeat;
  opacity: 0.18;
  transform: rotate(15deg) translate(var(--blob-x, 0px), var(--blob-y, 0px));
  filter: blur(5px);
  transition: none;
  will-change: transform;
}

.who-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}

.who-body {
  max-width: 620px;
  margin-bottom: 48px;
}

.who-body p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.who-milestones h3 {
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* ── Who Carousel ─────────────────────────────────── */

.who-carousel {
  align-self: center;
  overflow: hidden;
  height: 100%;
  max-height: 950px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 6%, black 94%, transparent);
}

.who-carousel__track {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 30px;
  animation: whoCarouselDown 55s linear infinite;
}

.who-carousel__track:hover,
.who-carousel__track.is-paused {
  animation-play-state: paused;
}

.who-carousel__item {
  flex-shrink: 0;
}

.who-image-wrapper {
  position: relative;
}

.who-image-layers,
.who-image-layers span {
  position: absolute;
  inset: 0;
}

.who-image-layers {
  z-index: 0;
  pointer-events: none;
}

.who-image-layers span {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.who-image-layers span:nth-child(1) {
  inset: -6px;
  z-index: 5;
  background: #54073f;
}

.who-image-layers span:nth-child(2) {
  inset: -12px;
  z-index: 4;
  background: #FDF9F0;
  transition-delay: 45ms;
}

.who-image-layers span:nth-child(3) {
  inset: -18px;
  z-index: 3;
  background: #9AA2C2;
  transition-delay: 90ms;
}

.who-image-layers span:nth-child(4) {
  inset: -24px;
  z-index: 2;
  background: #e09351;
  transition-delay: 135ms;
}

.who-image-layers span:nth-child(5) {
  inset: -30px;
  z-index: 1;
  background: #944400;
  transition-delay: 180ms;
}

.who-carousel__item:hover .who-image-layers span,
.who-carousel__item.is-tapped .who-image-layers span {
  opacity: 1;
  transform: scale(1);
}

.who-image-wrapper img {
  position: relative;
  z-index: 10;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.who-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 11;
  background: #e09351;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.who-carousel__item:hover .who-image-wrapper::after,
.who-carousel__item.is-tapped .who-image-wrapper::after {
  opacity: 0;
}

@keyframes whoCarouselDown {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

@keyframes whoCarouselLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Overlap Image Sections ──────────────────────────── */

.overlap-image {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
}

.overlap-image--advisory {
  background-image: url("https://storage.googleapis.com/amira-elghawaby/newspaper_pattern.png");
}

.overlap-image--contact {
  background-image: url("https://storage.googleapis.com/amira-elghawaby/people_background.png");
}

/* ── Newsroom Section ────────────────────────────────── */

.newsroom-section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  padding: 9rem 7rem;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
}

.newsroom-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -160px;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: url("https://storage.googleapis.com/amira-elghawaby/amira_logo_purple.png") center / cover no-repeat;
  opacity: 0.14;
  transform: rotate(15deg) translate(var(--blob-x, 0px), var(--blob-y, 0px));
  filter: blur(5px);
  transition: none;
  will-change: transform;
}

.newsroom-intro {
  max-width: 680px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: var(--bg);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, background 260ms ease;
}

.article-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e09351;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #e09351;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.article-card:hover .article-card__image img,
.article-card:focus-within .article-card__image img {
  transform: scale(1.06);
}

.article-card:hover .article-card__image::after,
.article-card:focus-within .article-card__image::after {
  opacity: 0;
}

.article-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 34px;
}

.article-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #e09351;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover,
.article-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(84, 7, 63, 0.34);
  background: var(--bg);
}

.article-card:hover::before,
.article-card:focus-within::before {
  transform: scaleY(1);
  animation: serviceStripeColor 1300ms linear 1;
}

.article-card__category {
  display: inline-block;
  margin-bottom: 22px;
  color: #944400;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.article-card p {
  flex: 1;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1rem;
  line-height: 1.58;
}

.article-card__link {
  display: inline-block;
  margin-top: 22px;
  color: #54073f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 260ms ease;
}

.article-card:hover .article-card__link {
  color: #e09351;
}

.article-card__date {
  display: block;
  margin-top: 12px;
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.8rem;
}

.newsroom-cta {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.newsroom-follow {
  margin-top: 74px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.newsroom-follow__label {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsroom-follow__feeds {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.newsroom-follow__feeds > div {
  min-width: 0;
  max-width: 500px !important;
      border: 1px solid var(--line);
    border-radius: 20px;
      max-height: 580px;
    overflow-y: hidden;
    overflow-x: hidden;
        scrollbar-width: none;
}


#eapps-twitter-feed-1 .eapps-twitter-feed-container,
#eapps-instagram-feed-1 .eapps-instagram-feed-container {
  max-width: none !important;
}

/* ── Contact Section ─────────────────────────────────── */

.contact-section {
  position: relative;
  z-index: 3;
  padding: 9rem 7rem;
  background: #944400;
  color: rgba(255, 255, 255, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}

.contact-content .section-title {
  color: var(--bg);
}

.eyebrow--light {
  color: #e09351;
}

.contact-subtitle {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.3rem;
  line-height: 1.65;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bg);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 260ms ease, background 260ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form__field textarea {
  height: auto;
  padding: 14px;
  resize: vertical;
}

.contact-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.52)' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.contact-form__field select option {
  background: #1a1a1a;
  color: var(--bg);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #e09351;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact-form__actions {
  margin-top: 8px;
}

.contact-form .button {
  border-color: var(--bg);
  background: var(--bg);
  color: #050505;
}

.contact-form .button:hover {
  color: var(--bg);
}

.contact-direct {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.88rem;
}

.contact-direct a {
  color: #e09351;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 260ms ease;
}

.contact-direct a:hover {
  color: var(--bg);
}

/* ── Service Card Label ──────────────────────────────── */

.service-card__label {
  margin-top: 24px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero__animated-word {
  display: inline-block;
  white-space: nowrap;
}

[data-animate-chars] .hero__animated-char {
  display: inline-block;
  color: currentColor;
}

[data-animate-chars].is-in-view .hero__animated-char {
  animation: heroAccentColor 900ms ease both;
  animation-delay: calc(var(--char-index) * 38ms);
}

[data-animate-chars]:hover .hero__animated-char,
[data-animate-chars]:focus-within .hero__animated-char {
  animation: heroAccentColorCycle 1300ms linear 1;
  animation-delay: calc(var(--char-index) * 38ms);
}

.section--dark {
  color: var(--bg);
}

.section--dark::after {
  content: "";
  position: absolute;
  inset: 1.5rem;
  z-index: 1;
  border-radius: 5rem;
  background: radial-gradient(circle at 16% 20%, rgba(224, 147, 81, 0.24), transparent 24%), linear-gradient(135deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.9));
  pointer-events: none;
}

.section__inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  margin: 0;
  font-size: 6.4rem;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.section-title--dark {
  color: var(--ink);
}

.section-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.65;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.advisory-section {
  position: relative;
  isolation: isolate;
  padding: 9rem 7rem;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
}

.advisory-section::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: url("https://storage.googleapis.com/amira-elghawaby/amira_logo_beige.png") center / cover no-repeat;
  opacity: 0.28;
  transform: rotate(15deg) translate(var(--blob-x, 0px), var(--blob-y, 0px));
  filter: blur(5px);
  transition: none;
  will-change: transform;
}

.advisory-section .section-heading {
  max-width: 1080px;
  margin-bottom: 54px;
}

.advisory-section .eyebrow {
  color: #944400;
}

.marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 24px 0 70px;
  overflow: hidden;
  border-block: 1px solid rgba(17, 17, 17, 0.16);
  background: var(--bg);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 36s linear infinite;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  padding: 0 32px;
  color: #54073f;
  font-family: "Canela", "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
  white-space: nowrap;
}

.marquee__track span::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 32px;
  border-radius: 50%;
  background: #e09351;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }

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

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

.service-card {
  position: relative;
  min-height: 520px;
  padding: 34px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: var(--bg);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms ease, background 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #e09351;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover,
.service-card:focus-within,
.service-card.is-intro-animated {
  transform: translateY(-10px);
  border-color: rgba(84, 7, 63, 0.34);
  background: var(--bg);
}

.service-card:hover::before,
.service-card:focus-within::before,
.service-card.is-intro-animated::before {
  transform: scaleY(1);
  animation: serviceStripeColor 1300ms linear 1;
}

@keyframes serviceStripeColor {
  0%,
  100% {
    background: #54073f;
  }

  20% {
    background: #FDF9F0;
  }

  40% {
    background: #9AA2C2;
  }

  60% {
    background: #e09351;
  }

  80% {
    background: #944400;
  }
}

.service-card__number {
  display: block;
  margin-bottom: 28px;
  color: #e09351;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.6rem;
  font-style: italic;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.service-card:hover .service-card__number,
.service-card.is-intro-animated .service-card__number {
  animation: heroAccentColorCycle 1300ms linear 1;
}

.service-card h3 {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.service-card p {
  color: rgba(17, 17, 17, 0.72);
  font-size: 1rem;
  line-height: 1.58;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.service-card__tags span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.service-card__serves {
  margin-top: 30px;
  font-style: italic;
}

.topic-list {
  margin-top: 28px;
  padding-left: 0;
  list-style: none;
}

.topic-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e09351;
  box-shadow: 5px 0 0 #54073f;
}

.advisory-cta {
  display: flex;
  align-items: center;
  border-radius: 20px;
  justify-content: center;
  gap: 28px;
  margin-top: 74px;
  padding: 42px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: var(--bg);
}

.advisory-cta p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.04em;
}

.button--light {
  border-color: var(--bg);
  background: var(--bg);
  color: #050505;
}

.button--light:hover {
  color: #050505;
}

@media (max-width: 1280px) {

  .hero__content h1 {
    max-width: 100%;
  }
}

@media (max-width: 1100px) {
  .hero__content h1 {
    line-height: 1.22;
  }

  .hero__content .hero__accent {
    display: inline;
  }
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 10px;
}

.section-heading {
  /* max-width: 900px; */
  margin-bottom: clamp(42px, 7vw, 78px);
}

.newsletter label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  height: 48px;
  padding: 0 14px;
}

input:focus {
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

/* ── Footer ───────────────────────────────────────────── */

.site-footer {
  position: relative;
  z-index: 3;
  padding: 5rem 7rem 3rem 7rem;
  background: #050505;
  color: rgba(255, 255, 255, 0.72);
  font-family: Inter, "Anke", sans-serif;
}

.site-footer > * {
  max-width: var(--max);
  margin-inline: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 42px;
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
    margin: 0;
}



.site-footer h2 {
  margin-bottom: 8px;
  color: #000000;
  transition: color 2.5s ease-in;
  font-family: "Canela", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0;
}

.site-footer h2.is-in-view {
  color: var(--bg);
}

.contact-section [data-animate-chars].is-in-view .hero__animated-char,
.site-footer [data-animate-chars].is-in-view .hero__animated-char {
  animation-name: heroAccentColorToBg;
}

@keyframes heroAccentColorToBg {
  0% {
    color: currentColor;
  }

  12% {
    color: #54073f;
  }

  24% {
    color: #FDF9F0;
  }

  36% {
    color: #9AA2C2;
  }

  48% {
    color: #e09351;
  }

  60% {
    color: #944400;
  }

  100% {
    color: var(--bg);
  }
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: border-color 260ms ease, background 260ms ease;
}

.footer-socials a:hover {
  text-decoration: none;
  border-color: #e09351;
  background: rgba(224, 147, 81, 0.12);
}

.footer-socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsletter div {
  display: flex;
}

.newsletter input {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--bg);
  font-size: 0.9rem;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.newsletter input:focus {
  outline: none;
  border-color: #e09351;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter button {
  border: 1px solid var(--paper);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 18px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 260ms ease, color 260ms ease;
}

.newsletter button:hover {
  background: #e09351;
  border-color: #e09351;
  color: var(--bg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}

.copyright {
  margin: 0;
  font-size: 0.82rem;
}

.site-credit {
  margin: 0;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    padding-inline: 2rem;
  }

 .menu-panel {
   padding: 3rem 0 0 0;
 }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
  }

  .hero__inner {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding: 2rem 4rem;
    height: auto;
    min-height: 90vh;
    min-height: 90dvh;
    gap: 4rem;
  }

  .hero .who__image {
    order: 1;
    width: 100%;
    max-width: 800px;
    height: 100%;
  }

  .hero .who__image::after {
    display: block;
  }

  .hero__content > .hero__title {
    display: none;
  }

  .hero__content h1 {
    display: none;
  }



  .hero__image-title {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 20px;
    z-index: 15;
    display: block;
    text-align: center;
    margin: 0;
    font-size: 3.25rem;
    white-space: nowrap;
  }

  .hero__content {
    order: 2;
    align-items: flex-start;
    width: 100%;
    min-height: auto;
    margin: 0;
    padding-bottom: 0;
    padding-inline: 0;
    text-align: left;
    color: var(--paper);
    justify-content: center;
  }

  .hero__content .hero__accent {
    display: inline;
  }

  .hero__content .hero__dek {
    max-width: 34ch;
    color: currentColor;
    font-size: 13px;
    line-height: 1.36;
  }

  .button--layered {
    margin-inline: auto;
  }

  .hero-overlap-image {
    min-height: 100vh;
    min-height: 100dvh;
  }

  .menu-panel__aside {
    justify-content: space-between;
  }

  .menu-socials {
    justify-content: flex-start;
  }

  .split,
  .footer-actions {
    grid-template-columns: 1fr;
  }

  .menu-panel__inner {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 2rem 3rem 2rem;
  }
}

/* 700px block removed — mobile hero layout now handled at 900px */

@media (max-width: 620px) {
  .section {
    padding-top: calc(64px + 1.5rem);
    padding-bottom: calc(64px + 1.5rem);
  }

  
  .menu-panel__inner {
        flex-direction: column;
        padding: 4rem 2rem 2rem 2rem;
  }

  .brand img:first-child {
    height: 21px;
  }

  .brand img:last-child {
    height: 23px;
  }

  .site-nav {
    font-size: 0.72rem;
    gap: 10px 15px;
  }

  .menu-panel .site-nav {
        align-items: flex-start;
        flex-direction: column;
        font-size: 1.2rem;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }


  .hero__inner {
    padding: 2rem 4rem 4rem 4rem;
    gap: 3rem;
  }

  .contact-form__actions {
    margin-inline: auto;
  }

  .contact-direct {
    margin-inline: auto;
  }



  .site-footer nav {
    justify-content: center;
  }



  .footer-brand {
    margin-inline: auto;
  }

  .hero__image-title {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 2.15rem;
  }

  .hero__dek {
    max-width: 32ch;
    font-size: 0.72rem;
  }

  .hero-overlap-image {
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* .hero .who__image {
    width: 245px;
    margin: 2rem;
  } */

  .newsletter div {
    flex-direction: column;
  }

  .newsletter button {
    min-height: 46px;
  }
}

@media (max-width: 1280px) {
  .who-section,
  .newsroom-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .contact-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .advisory-section {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .section-title {
    font-size: 5.4rem;
  }

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

  .article-card h3 {
    font-size: 1.95rem;
  }
}

@media (max-width: 1100px) {
  .advisory-section,
  .who-section,
  .newsroom-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .contact-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .section-title {
    font-size: 4.75rem;
  }

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

  .service-card {
    min-height: 460px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .advisory-section,
  .who-section,
  .newsroom-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .contact-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section-title {
    font-size: 4rem;
    line-height: 0.94;
  }

  .advisory-cta {
    align-items: center;
    flex-direction: column;
  }

  .advisory-cta p {
    font-size: 2.8rem;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .who-carousel {
    max-height: none;
    height: auto;
    padding: 1rem 0;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
    mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  }

  .who-carousel__track {
    flex-direction: row;
    animation: whoCarouselLeft 18s linear infinite;
  }

  .who-carousel__item {
    width: 240px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

}

@media (max-width: 768px) {
  .advisory-section,
  .who-section,
  .newsroom-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .section-title {
    font-size: 3.3rem;
  }

  .section-copy {
    font-size: 1rem;
  }

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

  .marquee__track span {
    min-height: 68px;
    padding: 0 24px;
    font-size: 1.8rem;
  }

  .service-card {
    min-height: auto;
  }

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

  .newsroom-follow__feeds {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer {
    padding: 4rem 2rem 3rem 2rem;
  }

}

@media (max-width: 620px) {
  .advisory-section,
  .who-section,
  .newsroom-section {
    padding: 5rem 1rem;
  }

  .contact-section {
    padding: 5rem 1rem;
  }

  .section--dark::before,
  .section--dark::after {
    inset: 0.75rem;
    border-radius: 2rem;
  }

  .section-title {
    font-size: 2.65rem;
    letter-spacing: -0.045em;
  }

  .advisory-section .section-heading {
    margin-bottom: 42px;
  }

  .marquee {
    margin-bottom: 44px;
  }

  .marquee__track span {
    min-height: 58px;
    padding: 0 18px;
    font-size: 1.45rem;
  }

  .service-card,
  .advisory-cta {
    padding: 24px;
  }

  .service-card__number {
    font-size: 3.8rem;
  }

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

  .advisory-cta p {
    font-size: 2.2rem;
  }

  .article-card__body {
    padding: 24px;
  }

  .article-card h3 {
    font-size: 1.8rem;
  }

  .newsroom-follow__feeds {
    gap: 28px;
  }

  .contact-section .section-title {
    font-size: 2.65rem;
  }

    .footer-middle {
    align-items: center;
  }

  .site-footer {
    padding: 4rem 1rem 2rem 1rem;
  }

  .newsletter div {
    flex-direction: column;
  }

  .newsletter button {
    min-height: 46px;
  }

  .who-carousel__item {
    width: 180px;
  }

    .footer-bottom {
    align-items: center;
  }

  .who-carousel__track {
    gap: 48px;
    padding: 24px;
  }
}

/* ── Form submission status ─────────────────────────────────────────────── */
.form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.form-status--ok { color: #2e7d4f; }
.form-status--error { color: #b5482f; }
