
@font-face {
  font-family: 'Degular Display';
  src: url('/fonts/degulardisplay-regular-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Degular Display';
  src: url('/fonts/degulardisplay-regularitalic-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Degular Display';
  src: url('/fonts/degulardisplay-medium-webfont.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Degular Display';
  src: url('/fonts/degulardisplay-semibold-webfont.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Degular Display';
  src: url('/fonts/degulardisplay-semibolditalic-webfont.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Degular Display';
  src: url('/fonts/degulardisplay-bold-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Degular Display';
  src: url('/fonts/degulardisplay-bolditalic-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Degular Display';
  src: url('/fonts/degulardisplay-lightitalic-webfont.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Amerigo BT';
  src: url('/fonts/amerigo_bt-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Amerigo BT';
  src: url('/fonts/amerigo_italic_bt-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Amerigo BT';
  src: url('/fonts/amerigo_bold_bt-webfont.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ls-break {
  display: none;
}

html, body {
  width: 100%;
  height: 100%;
  background: #F2DFD5;
  font-family: 'Degular Display', -apple-system, sans-serif;

  transition: background-color 0.8s ease;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: calc(env(safe-area-inset-top, 0px) + 20px)
           calc(env(safe-area-inset-right, 0px) + 14px)
           20px
           calc(env(safe-area-inset-left, 0px) + 24px);
}

.logo {
  position: relative;
  display: block;
}

.logo img {
  height: 28px;
  width: auto;
  display: block;
  transition: opacity 0.5s ease;
}

.logo .logo-white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  touch-action: manipulation;

  transform: translateY(2px);
}

.hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  margin: -1px 0 0 -12px;
  background: white;
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
}

.hamburger span:nth-child(1) { transform: translateY(-7px); }
.hamburger span:nth-child(3) { transform: translateY(7px); }

.hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

.menu-overlay {
  position: fixed;

  inset: 0 0 -160px;
  z-index: 90;

  background: linear-gradient(90deg, #F2DFD5 0%, #EA4932 100%);
  display: flex;
  align-items: center;

  padding: 0 calc(env(safe-area-inset-right, 0px) + 32px)
           160px calc(env(safe-area-inset-left, 0px) + 32px);
  opacity: 0;
  visibility: hidden;

  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}

.menu-links {
  list-style: none;
}

.menu-links a {
  display: block;
  padding: 8px 0;
  color: #EA4932;
  text-decoration: none;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
}

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

.menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.menu-social a:first-child { margin-left: -13px; }

.menu-social img {
  width: 18px;
  height: 18px;
  display: block;
}

.menu-links li,
.menu-social {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

body.menu-open .menu-links li,
body.menu-open .menu-social {
  opacity: 1;
  transform: none;
}

body.menu-open .menu-links li:nth-child(1) { transition-delay: 0.10s; }
body.menu-open .menu-links li:nth-child(2) { transition-delay: 0.16s; }
body.menu-open .menu-links li:nth-child(3) { transition-delay: 0.22s; }
body.menu-open .menu-links li:nth-child(4) { transition-delay: 0.28s; }
body.menu-open .menu-links li:nth-child(5) { transition-delay: 0.34s; }
body.menu-open .menu-links li:nth-child(6) { transition-delay: 0.40s; }
body.menu-open .menu-links li:nth-child(7) { transition-delay: 0.46s; }
body.menu-open .menu-social             { transition-delay: 0.54s; }

.header-nav {
  display: none;
}

@media (min-width: 700px), (orientation: landscape) and (max-height: 500px) {
  .hamburger,
  .menu-overlay {
    display: none;
  }

  header {

    padding: 45px calc(5% + 15px) 20px calc(5% + 15px);
    align-items: flex-start;
  }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 8px 0;
    transition: opacity 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .header-nav a:hover {
    opacity: 0.65;
  }
}

#sections {
  display: grid;
}

.section {
  grid-area: 1 / 1;
  position: relative;
  width: 100%;
  min-height: calc(100vh + 160px);
  overflow: hidden;
  display: grid;
  align-items: center;
  align-content: center;
  justify-items: start;
  padding: 0 calc(env(safe-area-inset-right, 0px) + 24px)
           160px calc(env(safe-area-inset-left, 0px) + 24px);
  z-index: 1;
  opacity: 0;
  visibility: hidden;

  transition: none;
}

.section.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: opacity 0.8s ease;
}

.section.is-below {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: none;
}

.section-hero {
  background: linear-gradient(90deg, #F2DFD5 0%, #EA4932 100%);
}

.section-two {
  background: #fff;
}

.section-two .context {
  color: #EA4932;
  font-size: 40px;
  line-height: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 560px;
}

.section-two .context em {
  font-family: 'Amerigo BT', serif;
  font-style: italic;
}

.track-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 8%;
  align-items: center;
  width: 100%;
}

.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.track-grid a {
  display: block;
}

.track-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.sub-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
  color: #EA4932;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.sub-link-arrow {
  width: 41px;
  height: 41px;
  flex-shrink: 0;
}

.sub-link:hover {
  opacity: 0.65;
}

.section-three {
  background: linear-gradient(90deg, #EA4932 0%, #F2DFD5 100%);
}

.stories-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 8%;
  align-items: center;
  width: 100%;
}

.history-text {
  color: #fff;
  font-size: 40px;
  line-height: 44px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.history-text em {
  font-family: 'Amerigo BT', serif;
  font-style: italic;
}

.sub-link-light {
  color: #fff;
}

.sub-link-back {
  margin-top: 56px;
}

.history-list {
  position: relative;
  max-width: 560px;
  justify-self: end;
}

.history-list::before {
  content: '';
  position: absolute;
  left: 11px;
  top: -40px;
  bottom: 16px;
  width: 2px;

  background: linear-gradient(to bottom,
    transparent 0%, #EA4932 12%, #EA4932 88%, transparent 100%);
}

.history-content {
  display: block;
  position: relative;
  padding-left: 43px;
  padding-bottom: 56px;
  margin-right: 60px;
  color: #EA4932;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.history-content:hover {
  opacity: 0.7;
}

.history-content:last-child {
  padding-bottom: 0;
}

.history-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background: #EA4932;
  border-radius: 50%;
}

.history-date {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding-bottom: 6px;
}

.history-title {
  display: block;
  font-size: 30px;
  line-height: 33px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.history-arrow {
  position: absolute;
  right: -45px;
  top: calc(50% - 38px);
  width: 11px;
  height: 20px;
}

.section-four {
  background: #fff;
}

.contact-layout {
  max-width: 640px;
}

.explain {
  color: #EA4932;
  font-size: 40px;
  line-height: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 600px;
}

.explain em {
  font-family: 'Amerigo BT', serif;
  font-style: italic;
}

.contact-need {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  color: #EA4932;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.contact-lead {
  color: #000;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 620px;
  margin-bottom: 48px;
}

.contact-lead em {
  font-family: 'Amerigo BT', serif;
  font-style: italic;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 50px;
}

.offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 45px;
}

.office h6 {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.03em;
  color: #EA4932;
}

.office address {
  font-style: normal;
  font-size: 25px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000;
  margin-top: 15px;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 45px;
  color: #EA4932;
}

.mail-icon {
  height: 22px;
  width: auto;
  display: block;
}

.contact-social img {
  height: 22px;
  width: auto;
  display: block;
}

.contact-social a {
  color: #EA4932;
  transition: opacity 0.3s ease;
}

.contact-social a:hover {
  opacity: 0.65;
}

.copyright {
  position: absolute;
  bottom: 195px;
  left: calc(5% + 15px);
  font-size: 14px;
  font-weight: 500;
  color: #EA4932;
}

body[data-section="track-record"] .header-nav a,
body[data-section="stories"] .header-nav a,
body[data-section="contact"] .header-nav a {
  color: #EA4932;
}

@media (min-width: 700px) {
  body[data-section="stories"] .logo .logo-red { opacity: 0; }
  body[data-section="stories"] .logo .logo-white { opacity: 1; }
}

body[data-section="track-record"] .hamburger span,
body[data-section="contact"] .hamburger span {
  background: #EA4932;
}

body.menu-open .hamburger span {
  background: #fff;
}

.star-icon {
  display: block;
  position: fixed;

  bottom: calc(env(safe-area-inset-bottom, 0px) + 19px);
  right: 20px;
  width: 44px;
  height: 44px;
  background-color: #fff;
  -webkit-mask: url('/images/star-mask.png') no-repeat center / contain;
  mask: url('/images/star-mask.png') no-repeat center / contain;
  animation: star-spin 4s linear infinite;
  transition: background-color 0.8s ease;
  pointer-events: none;
  z-index: 50;
}

body[data-section="track-record"] .star-icon,
body[data-section="stories"] .star-icon,
body[data-section="contact"] .star-icon {
  background-color: #EA4932;
}

@keyframes star-spin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}

@media (min-width: 700px) {
  .star-icon {
    bottom: 25px;
    right: calc(5% - 31px);
    width: 71px;
    height: 71px;
  }
}

.hero-text {
  color: #EA4932;
  font-size: 25px;
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.03em;
}

@media (max-width: 699px) {
  .hero-text br {
    display: none;
  }

  .hero-text {
    max-width: 70%;
  }

  .track-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-two .context {
    font-size: 25px;
    line-height: 26px;
  }

  .track-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    scrollbar-width: none;
  }

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

  .track-grid a {
    flex: 0 0 80%;
    scroll-snap-align: start;
    margin-right: 10px;
  }

  .stories-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-three {
    background: linear-gradient(90deg, #F2DFD5 0%, #EA4932 100%);
  }

  .history-text {
    font-size: 25px;
    line-height: 26px;
    color: #EA4932;
    max-width: 55%;
  }

  .history-list {
    justify-self: start;
  }

  .history-content {
    color: #fff;
  }

  .section-three .sub-link-light {
    color: #EA4932;
  }

  .history-content:nth-child(3) {
    display: none;
  }

  .history-content:nth-child(2) {
    padding-bottom: 0;
  }

  .history-title {
    font-size: 20px;
    line-height: 22px;
  }

  .explain {
    font-size: 25px;
    line-height: 28px;
  }

  .offices {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .office address {
    font-size: 18px;
    line-height: 22px;
  }

  .history-arrow {
    right: 0;
  }

  .history-content {
    margin-right: 0;
    padding-right: 28px;
    padding-bottom: 36px;
  }

  .history-list::before {
    top: -24px;
  }

  .copyright {
    bottom: calc(160px + env(safe-area-inset-bottom, 0px) + 30px);
    left: 24px;
  }

  .track-grid {
    gap: 14px;
  }

  .track-grid img {
    border-radius: 12px;
  }

  .sub-link {
    margin-top: 28px;
  }

  .contact-links {
    gap: 0 32px;
    margin-top: 8px;
  }

  .contact-links .sub-link {
    margin-top: 12px;
  }

  .offices {
    gap: 20px;
  }

  .office address {
    margin-top: 6px;
  }

  .contact-social {
    margin-top: 24px;
  }

  body[data-section="stories"] .star-icon {
    background-color: #fff;
  }
}

.hero-text em {
  font-family: 'Amerigo BT', serif;
  font-style: italic;
  font-weight: 400;
}

.scroll-arrow {
  position: absolute;
  bottom: 195px;

  bottom: calc(100% - 100svh + 35px);
  left: calc(50% - 25px);
  width: 51px;
  height: 19px;
  pointer-events: none;
}

@media (min-width: 700px) {
  .section {

    padding-left: calc(5% + 15px);
    padding-right: calc(5% + 15px);
  }

  .hero-text {
    font-size: 40px;
    line-height: 44px;
  }
}

.moving-balls {
  display: block;
  position: absolute;

  width: 140%;
  right: -15%;
  bottom: 0;
  pointer-events: none;
}

.ball-path {
  stroke-dasharray: 1450;
  stroke-dashoffset: 0;
  animation: draw-path 1s linear;
}

@keyframes draw-path {
  from { stroke-dashoffset: 1400; }
  to   { stroke-dashoffset: 0; }
}

.ball {
  offset-path: path('M1.00006 794C84.0001 607.5 284 401 459 519C720.152 695.091 901.167 216.5 1010.5 1');
  offset-rotate: 0deg;
  opacity: 0;
  animation: ball-flow 3s linear infinite;
}

.ball-1 { animation-delay: 1s; }
.ball-2 { animation-delay: 2s; }

@keyframes ball-flow {
  0%   { offset-distance: 0%;   opacity: 1; }
  100% { offset-distance: 100%; opacity: 1; }
}

@media (min-width: 700px) {
  .moving-balls {
    width: 1003px;
    right: -100px;
    bottom: 160px;
  }
}

@media (min-width: 1920px) {
  .hero-text {
    font-size: 60px;
    line-height: 60px;
  }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-hero.is-active .hero-text {
  animation: fadeSlideDown 0.70s ease both;
  animation-delay: 0.10s;
}
.section-hero.is-active .scroll-arrow {
  animation: fadeSlideDown 0.55s ease both;
  animation-delay: 0.55s;
}

.section-two.is-active .track-intro {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.10s;
}
.section-two.is-active .track-grid a:nth-child(1) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.28s; }
.section-two.is-active .track-grid a:nth-child(2) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.38s; }
.section-two.is-active .track-grid a:nth-child(3) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.48s; }
.section-two.is-active .track-grid a:nth-child(4) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.58s; }

.section-three.is-active .history-text {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.10s;
}
.section-three.is-active .history-content:nth-child(1) { animation: fadeSlideDown 0.55s ease both; animation-delay: 0.28s; }
.section-three.is-active .history-content:nth-child(2) { animation: fadeSlideDown 0.55s ease both; animation-delay: 0.42s; }
.section-three.is-active .history-content:nth-child(3) { animation: fadeSlideDown 0.55s ease both; animation-delay: 0.56s; }

.section-four.is-active .explain {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.10s;
}
.section-four.is-active .contact-links {
  animation: fadeSlideDown 0.55s ease both;
  animation-delay: 0.26s;
}
.section-four.is-active .offices {
  animation: fadeSlideDown 0.55s ease both;
  animation-delay: 0.42s;
}
.section-four.is-active .contact-social {
  animation: fadeSlideDown 0.50s ease both;
  animation-delay: 0.56s;
}

.section-about-intro {
  background: #fff;
}

.section-about-intro .scroll-arrow path {
  stroke: #fff;
}

.about-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.about-lead {
  color: #EA4932;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 760px;
}

.about-lead em {
  font-family: 'Amerigo BT', serif;
  font-style: italic;
}

.why-core {
  position: relative;
  z-index: 0;
  padding: 36px 0 40px;
}

.why-core::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -9999px;
  right: -9999px;
  background: #EA4932;
  z-index: -1;
}

.why-core::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -9999px;
  right: -9999px;
  height: 5000px;
  background: #EA4932;
}

.why-label {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-box img {
  width: auto;
  height: 110px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.why-box span {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  width: 80%;
}

.section-what-we-do {
  background: #fff;
}

.what-layout {
  width: 100%;
  max-width: 960px;
}

.what-heading {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  color: #EA4932;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.what-lead {
  color: #000;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 620px;
  margin-bottom: 48px;
}

.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: start;
}

.what-service {
  color: #EA4932;
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.what-desc {
  color: #000;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.what-layout .sub-link {
  margin-top: 28px;
}

.section-sector-focus {
  background: #EA4932;
}

.sector-layout {
  width: 100%;
}

.sector-lead {
  color: #fff;
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.sector-lead em {
  font-style: italic;
}

.sector-desc {
  color: rgba(255,255,255,0.85);
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 680px;
  margin-bottom: 48px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px 16px;
}

.sector-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.sector-box-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

.sector-box img {
  width: auto;
  height: 80px;
  object-fit: contain;
}

.sector-box span {
  color: #fff;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

body[data-section="about-intro"] .hamburger span,
body[data-section="what-we-do"] .hamburger span  { background: #EA4932; }

body[data-section="about-intro"] .header-nav a,
body[data-section="what-we-do"] .header-nav a    { color: #EA4932; }

body[data-section="about-intro"] .star-icon       { background-color: #F2DFD5; }
body[data-section="what-we-do"] .star-icon        { background-color: #EA4932; }

body[data-section="sector-focus"] .logo .logo-red   { opacity: 0; }
body[data-section="sector-focus"] .logo .logo-white { opacity: 1; }
body[data-section="sector-focus"] .star-icon        { background-color: #F2DFD5; }

.section-sector-focus .copyright { color: #F2DFD5; }

.section-about-intro.is-active .about-lead {
  animation: fadeSlideDown 0.65s ease both;
  animation-delay: 0.15s;
}
.section-about-intro.is-active .why-label {
  animation: fadeSlideDown 0.55s ease both;
  animation-delay: 0.40s;
}
.section-about-intro.is-active .why-box:nth-child(1) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.52s; }
.section-about-intro.is-active .why-box:nth-child(2) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.62s; }
.section-about-intro.is-active .why-box:nth-child(3) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.72s; }
.section-about-intro.is-active .why-box:nth-child(4) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.82s; }

.section-what-we-do.is-active .what-heading {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.10s;
}
.section-what-we-do.is-active .what-lead {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.26s;
}
.section-what-we-do.is-active .what-col:nth-child(1) { animation: fadeSlideDown 0.55s ease both; animation-delay: 0.42s; }
.section-what-we-do.is-active .what-col:nth-child(2) { animation: fadeSlideDown 0.55s ease both; animation-delay: 0.57s; }

.section-sector-focus.is-active .sector-lead {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.10s;
}
.section-sector-focus.is-active .sector-desc {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.26s;
}
.section-sector-focus.is-active .sector-box:nth-child(1) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.40s; }
.section-sector-focus.is-active .sector-box:nth-child(2) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.48s; }
.section-sector-focus.is-active .sector-box:nth-child(3) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.56s; }
.section-sector-focus.is-active .sector-box:nth-child(4) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.64s; }
.section-sector-focus.is-active .sector-box:nth-child(5) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.72s; }
.section-sector-focus.is-active .sector-box:nth-child(6) { animation: fadeSlideDown 0.50s ease both; animation-delay: 0.80s; }

.section-get-in-touch.is-active .contact-need {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.10s;
}
.section-get-in-touch.is-active .contact-lead {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.24s;
}
.section-get-in-touch.is-active .contact-links {
  animation: fadeSlideDown 0.55s ease both;
  animation-delay: 0.38s;
}
.section-get-in-touch.is-active .offices {
  animation: fadeSlideDown 0.55s ease both;
  animation-delay: 0.52s;
}
.section-get-in-touch.is-active .contact-social {
  animation: fadeSlideDown 0.50s ease both;
  animation-delay: 0.64s;
}

.section-application.is-active .app-heading {
  animation: fadeSlideDown 0.60s ease both;
  animation-delay: 0.10s;
}
.section-application.is-active .app-box:nth-child(1) {
  animation: fadeSlideDown 0.55s ease both;
  animation-delay: 0.28s;
}
.section-application.is-active .app-box:nth-child(2) {
  animation: fadeSlideDown 0.55s ease both;
  animation-delay: 0.42s;
}

.section-get-in-touch {
  background: #fff;
}

.section-get-in-touch .scroll-arrow path {
  stroke: #EA4932;
}

.section-application {
  background: #EA4932;
}

.app-layout {
  width: 100%;
  max-width: 900px;
}

.app-heading {
  color: #EA4932;
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8%;
  align-items: start;
}

.app-box-title {
  color: #EA4932;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.app-box p:not(.app-box-title) {
  color: #000;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

.app-link {
  display: inline-block;
  color: #EA4932;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 20px;
  margin-bottom: 8px;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.app-link:hover { opacity: 0.65; }

.open-positions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.position-item {
  display: flex;
  flex-direction: column;
}

.position-item p {
  color: #000;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 4px;
}

.position-role {
  display: block;
  color: #EA4932;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.position-item .app-link {
  margin-top: auto;
  align-self: flex-start;
}

body[data-section="get-in-touch"] .hamburger span { background: #EA4932; }
body[data-section="get-in-touch"] .header-nav a   { color: #EA4932; }
body[data-section="get-in-touch"] .star-icon      { background-color: #EA4932; }

body[data-section="application"] .logo .logo-red   { opacity: 0; }
body[data-section="application"] .logo .logo-white { opacity: 1; }
body[data-section="application"] .star-icon        { background-color: #F2DFD5; }

.section-application .app-heading    { color: #fff; font-family: 'Amerigo BT', serif; }
.section-application .app-box-title  { color: #fff; }
.section-application .app-box p:not(.app-box-title) { color: rgba(255,255,255,0.8); }
.section-application .app-link       { color: #fff; border-color: rgba(255,255,255,0.6); }
.section-application .position-item p { color: rgba(255,255,255,0.8); }
.section-application .position-role  { color: #fff; }
.section-application .copyright      { color: #F2DFD5; }

@media (max-width: 699px) {
  .about-layout {
    gap: 24px;
  }

  .about-lead {
    font-size: 22px;
    line-height: 28px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

  .why-box img {
    height: 80px;
  }

  .why-box span {
    font-size: 16px;
    line-height: 21px;
  }

  .what-heading {
    font-size: 30px;
    line-height: 36px;
  }

  .what-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .what-lead {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 28px;
  }

  .what-desc {
    font-size: 18px;
    line-height: 23px;
  }

  .sector-lead {
    font-size: 28px;
    line-height: 34px;
  }

  .sector-desc {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 28px;
  }

  .sector-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 12px;
  }

  .sector-box img {
    height: 60px;
  }

  .sector-box-img {
    height: 70px;
  }

  .contact-need {
    font-size: 30px;
    line-height: 36px;
  }

  .contact-lead {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 28px;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .app-heading {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 28px;
  }

  .app-box-title {
    font-size: 20px;
    line-height: 26px;
  }

  .app-box p,
  .position-item p {
    font-size: 18px;
    line-height: 24px;
  }

  .position-role {
    font-size: 15px;
  }

  .open-positions {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}

@media (max-width: 699px), (orientation: landscape) and (max-height: 500px) {
  html.flow-scroll,
  html.flow-scroll body {
    height: auto;
    min-height: 100%;
  }

  html.flow-scroll body {
    position: relative;
  }

  html.flow-scroll .star-icon {
    position: absolute;
    top: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 24px);
    width: 64px;
    height: 64px;
    z-index: 5;
  }

  html.flow-scroll #sections {
    display: block;
  }

  html.flow-scroll header {
    position: absolute;
  }

  html.flow-scroll .section {
    min-height: auto;
    opacity: 1;
    visibility: visible;

    padding-top: 64px;
    padding-bottom: 56px;
  }

  html.flow-scroll .section-about-intro,
  html.flow-scroll .section-get-in-touch {
    padding-top: calc(env(safe-area-inset-top, 0px) + 132px);
  }

  html.flow-scroll .section-sector-focus,
  html.flow-scroll .section-application {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 112px);
  }

  html.flow-scroll .section-get-in-touch {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 156px);
  }

  html.flow-scroll .section-application {
    padding-top: 114px;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 238px);
  }

  html.flow-scroll .about-layout {
    gap: 64px;
  }

  html.flow-scroll .about-lead {
    font-weight: 500;
  }

  html.flow-scroll .scroll-arrow {
    display: none;
  }

  html.flow-scroll .copyright {
    position: absolute;
    top: auto;
    right: auto;
    left: calc(env(safe-area-inset-left, 0px) + 24px);
    bottom: calc(env(safe-area-inset-bottom, 0px) + 47px);
    margin: 0;
    z-index: 5;
  }
}

@media (orientation: landscape) and (max-height: 500px) {

  .moving-balls {
    display: block;
    width: 624px;
    height: 494px;
    right: -50px;
    bottom: 40px;
  }

  header { padding: 14px calc(5% + 15px); }

  .section {
    min-height: calc(100vh + 60px);
    padding-top: 64px;
    padding-bottom: 60px;
  }

  .scroll-arrow {
    bottom: 75px;
  }

  .copyright {
    bottom: calc(60px + env(safe-area-inset-bottom, 0px) + 20px);
  }

  .star-icon {
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
  }

  .hero-text {
    font-size: 24px;
    line-height: 1.1;
  }

  .section-two .context,
  .history-text,
  .explain {
    font-size: 22px;
    line-height: 26px;
  }

  .track-layout {
    grid-template-columns: 4fr 7fr;
    gap: 4%;
  }

  .track-grid {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 6px;
  }
  .track-grid img {
    width: auto;
    height: 155px;
    object-fit: contain;
  }

  .history-content:nth-child(3) { display: none; }
  .history-content:nth-child(2) { padding-bottom: 0; }
  .history-content { padding-bottom: 12px; }

  .history-title {
    font-size: 20px;
    line-height: 23px;
  }

  .contact-layout { transform: translateY(-12px); }

  .offices {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .office {
    display: block;
  }

  .office h6 {
    font-size: 17px;
    line-height: 1.3;
  }

  .office address {
    font-size: 12px;
    line-height: 1.35;
    margin-top: 2px;

    white-space: nowrap;
  }

  .office address br {
    display: none;
  }

  .contact-social { margin-top: 14px; }

  .sub-link { margin-top: 12px; }
}

.subpage-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  background: #fff;
}

.subpage-body header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

.sp-page {
  flex: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px calc(5% + 15px) 120px;
  width: 100%;
}

.sp-page-wide {
  flex: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px calc(5% + 15px) 120px;
  width: 100%;
}

.sp-page-full {
  flex: 1;
  width: 100%;
  padding: 40px calc(5% + 15px) 120px;

  background: #fff;
}

.sp-heading {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: #EA4932;
  margin-bottom: 48px;
}

.sp-footer {
  background: #fff;
  padding: 0 calc(5% + 15px) 36px;
}

.sp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-footer .copyright {
  position: static;
  bottom: auto;
  left: auto;
  color: #EA4932;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.sp-footer .star-icon {
  position: static;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  right: auto;
  bottom: auto;
  margin-right: -4px;
}

@media (min-width: 700px) {
  .sp-footer .star-icon {
    margin-right: -46px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

.filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}

.filter-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 28px;
  font-family: 'Amerigo BT', serif;
  font-size: 21px;
  font-weight: 400;
  color: rgba(234, 73, 50, 0.49);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  color: #EA4932;
  border-color: #EA4932;
}

.filter-select-wrap {
  display: none;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 48px 28px;
}

.people-grid--advisors {
  margin-top: 48px;
}

.person-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.person-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #f5f0ed;
  transition: transform 0.4s ease;
}

.person-card a:hover img { transform: scale(1.04); }

.person-card h3 {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: #EA4932;
  margin-top: 10px;
  margin-bottom: 2px;
}

.person-card h4 {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0;
}

.person-detail {
  max-width: 1024px;
}

.person-detail-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  margin-top: 24px;
}

.person-detail-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: #f5f0ed;
  border-radius: 12px;
}

.person-detail-name {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.03em;
  color: #EA4932;
  margin-bottom: 8px;
}

.person-detail-title {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.person-social {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 32px;
}

.person-social img {
  height: 22px;
  width: auto;
  display: block;
}

.person-social a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}
.person-social a:hover { opacity: 0.65; }

.person-spot {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: #000;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.person-bio {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(0,0,0,0.8);
  text-align: left;
  max-width: 600px;
}
.person-bio p { margin-bottom: 20px; }

.person-bio > p:first-child {
  font-family: 'Amerigo BT', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -0.015em;
  color: #000;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.card-grid-item {
  position: relative;
  overflow: hidden;
  background: #f5f0ed;
  border-radius: 12px;
}

.card-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-grid-item a:hover img { transform: scale(1.04); }

.inv-card {
  position: relative;
  overflow: hidden;
}
.inv-card img:last-child {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.inv-card:hover img:last-child { opacity: 1; }

.stories-hero {
  background: #EA4932;
  width: 100%;
  padding: 40px calc(5% + 15px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 0;
}

.stories-hero .sp-heading {
  color: #fff;
}

.stories-spotlight {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  padding-bottom: 72px;
}

.stories-spotlight a { text-decoration: none; color: inherit; display: block; }

.stories-spotlight img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.spotlight-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.spotlight-title {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.spotlight-spot {
  font-size: 17px;
  line-height: 25px;
  color: rgba(255,255,255,0.75);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 48px 32px;
}

.story-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.story-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}
.story-card a:hover img { opacity: 0.85; }

.story-card h2 {
  font-family: 'Amerigo BT', serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: #EA4932;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.story-card h5 {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.02em;
}

.story-detail {
  max-width: 800px;
}

.story-detail-title {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 50px;
  letter-spacing: -0.03em;
  color: #EA4932;
  margin-bottom: 16px;
}

.story-detail-date {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.story-detail img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
  border-radius: 12px;
}

.story-content {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  color: rgba(0,0,0,0.8);
}
.story-content p  { margin-bottom: 20px; }
.story-content h2 { font-size: 26px; line-height: 32px; font-weight: 700; margin: 36px 0 16px; color: #000; }
.story-content h3 { font-size: 21px; line-height: 27px; font-weight: 700; margin: 28px 0 12px; color: #000; }
.story-content ul,
.story-content ol { padding-left: 24px; margin-bottom: 20px; }
.story-content li { margin-bottom: 8px; }

.subscribe-form {
  max-width: 560px;
}

.subscribe-form p {
  font-size: 20px;
  line-height: 28px;
  color: rgba(0,0,0,0.7);
  margin-bottom: 40px;
}

.form-field {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.2);
  border-radius: 0;
  font-family: 'Degular Display', -apple-system, sans-serif;
  font-size: 16px;
  color: #000;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: #EA4932; }
.form-input::placeholder { color: rgba(0,0,0,0.35); }

.form-submit {
  display: inline-block;
  padding: 14px 40px;
  background: #EA4932;
  color: #fff;
  font-family: 'Degular Display', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
  -webkit-tap-highlight-color: transparent;
}
.form-submit:hover { opacity: 0.85; }

.form-notice {
  margin-top: 24px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0,0,0,0.45);
}
.form-notice a { color: #EA4932; }

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.apply-position {
  font-family: 'Amerigo BT', serif;
  font-size: 22px;
  font-weight: 700;
  color: #EA4932;
  margin-bottom: 32px;
}

.notfound p {
  font-size: 20px;
  line-height: 28px;
  color: rgba(0,0,0,0.7);
  max-width: 560px;
}
.notfound .sub-link { margin-top: 32px; }

.form-msg {
  padding: 16px 20px;
  font-size: 16px;
  margin-bottom: 28px;
}
.form-success { background: #f0faf0; color: #2d7a2d; border-left: 3px solid #2d7a2d; }
.form-error   { background: #fef0f0; color: #c0392b; border-left: 3px solid #c0392b; }

.subscribe-banner {
  background: #EA4932;
  padding: 80px calc(5% + 15px);
  margin-top: 80px;
}

.subscribe-banner-inner {
  max-width: none;
  margin: 0;
}

.subscribe-banner h2 {
  font-family: 'Amerigo BT', serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 46px;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}

.subscribe-banner p {
  font-size: 18px;
  line-height: 26px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 480px;
}

.subscribe-banner .sub-link {
  margin-top: 0;
  color: #fff;
}

.subpage-body .logo .logo-white { display: none; }
.subpage-body .hamburger span   { background: #EA4932; }
.subpage-body .header-nav a     { color: #EA4932; }
.subpage-body .header-nav a:focus,
.subpage-body .header-nav a:active { outline: none; text-decoration: none; }
.subpage-body .star-icon        { background-color: #EA4932; }

@media (max-width: 699px) {
  .sp-page,
  .sp-page-wide,
  .sp-page-full {
    padding: 24px 24px 80px;
  }

  .sp-heading {
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 36px;
  }

  .people-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 32px 16px;
  }

  .person-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
  }

  .person-detail-img { max-width: 280px; }

  .card-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
  }

  .stories-hero {
    padding: 24px 24px 0;
  }

  .stories-spotlight {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 40px;
  }

  .stories-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 32px 20px;
  }

  .story-detail-title {
    font-size: 30px;
    line-height: 36px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 16px;
  }

  .filter-nav:has(+ .filter-select-wrap) {
    display: none;
  }

  .filter-select-wrap {
    display: inline-block;
    position: relative;
    margin-bottom: 36px;
  }

  .filter-select {
    appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 1px solid #EA4932;
    border-radius: 10px;
    padding: 10px 52px 10px 20px;
    font-family: 'Amerigo BT', serif;
    font-size: 18px;
    font-weight: 400;
    color: #EA4932;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .filter-select-wrap::after {
    content: '';
    position: absolute;
    right: 22px;
    top: 50%;
    width: 9px;
    height: 9px;
    border-right: 2px solid #EA4932;
    border-bottom: 2px solid #EA4932;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }

  .sp-footer {
    padding: 0 24px 28px;
  }

  .subscribe-banner {
    padding: 48px 24px;
  }
  .subscribe-banner h2 { font-size: 28px; line-height: 34px; }
}

.subpage-body.stories-hero-visible header                { background: #EA4932; }
.subpage-body.stories-hero-visible .logo .logo-red       { opacity: 0; }
.subpage-body.stories-hero-visible .logo .logo-white     { display: block !important; opacity: 1; }
.subpage-body.stories-hero-visible .header-nav a         { color: #fff; }
.subpage-body.stories-hero-visible .hamburger span       { background: #fff; }

.subpage-body .menu-overlay                        { background: #fff; }
.subpage-body.stories-hero-visible .menu-overlay   { background: #EA4932; }

html.flow-scroll body[data-section="about-intro"] .menu-overlay,
html.flow-scroll body[data-section="what-we-do"] .menu-overlay,
html.flow-scroll body[data-section="get-in-touch"] .menu-overlay { background: #fff; }
html.flow-scroll body[data-section="sector-focus"] .menu-overlay,
html.flow-scroll body[data-section="application"] .menu-overlay   { background: #EA4932; }

body.subpage-body.menu-open .hamburger span { background: #EA4932; }
body.subpage-body.stories-hero-visible.menu-open .hamburger span { background: #fff; }

.subpage-body.stories-hero-visible .menu-links a,
html.flow-scroll body[data-section="sector-focus"] .menu-links a,
html.flow-scroll body[data-section="application"] .menu-links a { color: #fff; }

.subpage-body.stories-hero-visible .menu-social img,
html.flow-scroll body[data-section="sector-focus"] .menu-social img,
html.flow-scroll body[data-section="application"] .menu-social img { filter: brightness(0) invert(1); }

.subpage-body .menu-overlay,
html.flow-scroll .menu-overlay {
  inset: 0 0 -100px;

  padding-bottom: 100px;
  opacity: 1;
  transform: translateY(-100%);
  transition: transform 0.5s ease, visibility 0s linear 0.5s;
}

.subpage-body.menu-open .menu-overlay,
html.flow-scroll body.menu-open .menu-overlay {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.stories-page main.sp-page-full                  { padding-bottom: 72px; }
.stories-page .subscribe-banner                  { margin-top: 0; }
.stories-page .sp-footer                         { background: #EA4932; }
.stories-page .sp-footer .copyright             { color: #fff; }
.stories-page .sp-footer .star-icon             { background-color: #fff; }
