:root {
  --blue: #073a78;
  --blue-deep: #082f6b;
  --blue-bright: #0067a8;
  --orange: #ef7d00;
  --ink: #151515;
  --muted: #747474;
  --warm: #f4f3ef;
  --peach: #ffe0bf;
  --line: #dedede;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--orange) var(--blue-deep);
  scrollbar-width: thin;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  background: var(--blue-deep);
}

html::-webkit-scrollbar-thumb {
  min-height: 54px;
  border: 3px solid var(--blue-deep);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffad4e 0%, var(--orange) 100%);
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffc16f 0%, #ff8b0a 100%);
}

html::-webkit-scrollbar-corner {
  background: var(--blue-deep);
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

[hidden] {
  display: none !important;
}

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

.section-anchor {
  scroll-margin-top: 124px;
}

.content-narrow,
.content-wide,
.content-grid {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.content-wide {
  width: min(1380px, calc(100% - 48px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
  padding: 0 max(38px, calc((100vw - 1240px) / 2));
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.brand {
  display: flex;
  align-items: center;
  width: 210px;
  height: 98px;
  overflow: hidden;
}

.brand img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

@media (min-width: 1121px) {
  .site-header {
    height: 130px;
    padding-left: 109px;
    padding-right: 129px;
  }

  .brand {
    width: 226px;
    height: 116px;
    transform: translateX(-12px);
  }

  .brand img {
    width: 226px;
    height: 226px;
    transform: translateY(2px);
  }

}

.main-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 30px;
}

.nav-link,
.footer button {
  position: relative;
  padding: 9px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: var(--blue-bright);
}

.contact-button,
.submit-button {
  min-width: 126px;
  padding: 13px 20px;
  border: 0;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-button:hover,
.contact-button:focus-visible,
.submit-button:hover,
.submit-button:focus-visible {
  background: #d96f00;
  transform: translateY(-1px);
}

@media (min-width: 1121px) {
  .main-nav {
    gap: 37px;
    transform: translateY(3px);
  }

  .contact-button {
    min-width: 124px;
    padding-block: 10px;
  }
}

.business-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.business-mega {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: -1;
  height: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 39, 91, 0.9), rgba(5, 48, 105, 0.86)),
    url("assets/hero.jpg") center 43% / cover;
  opacity: 0;
  pointer-events: none;
  transition: height 260ms ease, opacity 180ms ease;
}

.business-mega.is-open {
  z-index: 1;
  height: 436px;
  opacity: 1;
  pointer-events: auto;
}

.mega-inner {
  display: flex;
  width: min(1638px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding: 0;
  justify-content: flex-end;
  color: #fff;
}

.mega-intro {
  display: none;
}

.mega-intro span,
.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: #99c6e4;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.mega-intro strong {
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.mega-list {
  width: min(740px, 44vw);
  padding-top: 0;
}

.mega-list button,
.mega-list a {
  display: block;
  min-height: 60px;
  padding: 18px 72px 16px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
}

.mega-list button:first-child,
.mega-list a:first-child {
  min-height: 80px;
  padding-top: 20px;
}

.mega-list button:last-child,
.mega-list a:last-child {
  border-bottom: 0;
}

.mega-list button:hover,
.mega-list button:focus-visible,
.mega-list a:hover,
.mega-list a:focus-visible {
  color: #ffbd71;
}

.mega-list small {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.mega-list button:not(:first-child) small,
.mega-list a:not(:first-child) small {
  display: none;
}

.mega-list b {
  display: none;
}

.business-mega .mega-list a {
  opacity: 0;
  transform: translateX(28px);
  transition: color 180ms ease, opacity 360ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.business-mega.is-open .mega-list a {
  opacity: 1;
  transform: translateX(0);
}

.business-mega.is-open .mega-list a:nth-child(1) { transition-delay: 40ms; }
.business-mega.is-open .mega-list a:nth-child(2) { transition-delay: 85ms; }
.business-mega.is-open .mega-list a:nth-child(3) { transition-delay: 130ms; }
.business-mega.is-open .mega-list a:nth-child(4) { transition-delay: 175ms; }
.business-mega.is-open .mega-list a:nth-child(5) { transition-delay: 220ms; }

.business-mega.is-open .mega-list a:hover,
.business-mega.is-open .mega-list a:focus-visible {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 654px;
  background: url("assets/hero.jpg") center 12% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 52%, rgba(0, 0, 0, 0.05));
}

.hero-caption {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 68px;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-copy 800ms ease 180ms forwards;
}

.hero-caption span {
  color: #f5a445;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-caption h1 {
  margin: 16px 0 0;
  font-size: clamp(43px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

@keyframes hero-copy {
  to { opacity: 1; transform: translateY(0); }
}

.hero-arrows {
  position: absolute;
  right: calc((100vw - min(1180px, calc(100% - 48px))) / 2);
  bottom: 106px;
  z-index: 2;
  display: flex;
}

.hero-arrows button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(6, 26, 51, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 30px;
}

.hero-arrows button:hover,
.hero-arrows button:focus-visible {
  background: var(--orange);
}

.stats {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1470px, calc(100% - 48px));
  min-height: 113px;
  background: rgba(8, 54, 119, 0.96);
  color: #fff;
  transform: translateX(-50%);
}

.stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

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

.stats strong {
  color: #f3a23e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 600;
}

.stats span {
  margin-top: 3px;
  font-size: 14px;
}

@media (min-width: 1600px) {
  .stats {
    width: 1480px;
    transform: translateX(calc(-50% + 3.5px));
  }
}

.belief {
  overflow: hidden;
  background: linear-gradient(to bottom, #fff 0 59px, rgb(247.5 245 240) 59px 100%);
}

.content-grid {
  width: min(1260px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: end;
  min-height: 463px;
}

.belief-copy {
  align-self: center;
  max-width: 880px;
  padding: 0;
  transform: translate(-9px, 46px);
}

.section-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 7px;
  margin: 0 0 23px;
  color: var(--blue-bright);
  font-size: 31.2px;
  font-weight: 500;
  line-height: 1.15;
}

.section-title em {
  color: var(--orange);
  font-style: normal;
}

.belief .section-title {
  flex-wrap: nowrap;
  gap: 0 7px;
  margin-bottom: 23px;
  font-size: 31.2px;
  transform: translate(2px, -1px);
}

.belief .title-mark {
  height: 30px;
}

.title-mark {
  width: 6px;
  height: 30px;
  margin-right: 8px;
  background: var(--orange);
}

.about .section-title,
.business-showcase .section-title,
.awards .section-title,
.gallery .section-title {
  position: relative;
  left: 50%;
  width: min(1260px, calc(100vw - 48px));
  transform: translateX(calc(-50% - 7px));
}

.belief p,
.about p {
  margin: 0;
  color: #6f6f6f;
  font-size: 17px;
  line-height: 1.58;
}

.belief p {
  max-width: 875px;
  font-size: 20px;
  line-height: 1.36;
}

.founder {
  position: relative;
  align-self: end;
  height: 403px;
  margin: 0;
}

.founder img {
  position: absolute;
  top: -56px;
  right: -70px;
  width: 295px;
  max-width: none;
  height: auto;
}

.founder figcaption {
  position: absolute;
  right: 66px;
  bottom: 1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 187px;
  min-width: 187px;
  height: 69px;
  padding: 0 20px;
  box-sizing: border-box;
  background: #ee7b00;
  color: #111;
  font-size: 14px;
}

.founder figcaption span {
  margin-top: 2px;
  font-size: 11px;
}

.about {
  padding: 70px 0;
  background: #fff;
}

.about .content-narrow {
  max-width: 1180px;
}

.business-showcase {
  padding: 70px 0 78px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.business-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #dce3ea;
  border: 1px solid #dce3ea;
}

.business-cards article {
  min-height: 210px;
  padding: 30px 24px;
  background: #fff;
  transition: background 180ms ease, color 180ms ease;
}

.business-cards article:hover {
  background: var(--blue);
  color: #fff;
}

.business-cards article > span {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.business-cards h3 {
  margin: 52px 0 10px;
  font-size: 20px;
  font-weight: 500;
}

.business-cards p {
  margin: 0;
  color: #818181;
  font-size: 13px;
}

.business-cards article:hover p {
  color: #c9d8e9;
}

.awards {
  padding: 72px 0 88px;
  background: var(--warm);
}

.awards-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 1.12fr;
  align-items: center;
  gap: 75px;
}

.awards-grid img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.awards-grid ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.awards-grid li {
  position: relative;
  padding-left: 36px;
  color: #777;
  font-size: 16px;
  line-height: 1.38;
}

.awards-grid li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.journey {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
  background: #fff;
}

.journey-reference-frame {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.journey-reference-frame::-webkit-scrollbar {
  display: none;
}

.journey-heading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: max(100%, 1100px);
  height: clamp(56px, 5.05vw, 96px);
  background: #fff;
  pointer-events: none;
}

.journey-title,
.journey-heading-overlay .section-title {
  position: absolute;
  top: clamp(14px, 1.8vw, 34px);
  left: max(17px, calc((100% - 1260px) / 2 - 7px));
  flex-wrap: nowrap;
  margin: 0;
  font-size: 31.2px;
  white-space: nowrap;
}

.journey-reference {
  display: block;
  width: 100%;
  min-width: 1100px;
  height: auto;
}

.journey .content-wide {
  width: min(1260px, calc(100% - 48px));
}

.journey .section-title {
  flex-wrap: nowrap;
  gap: 0 7px;
  margin: 0;
  font-size: 31.2px;
}

.journey .section-title > span:not(.title-mark),
.journey .section-title > em {
  transform: none;
}

.journey .title-mark {
  height: 30px;
  margin-right: 8px;
}

.timeline {
  position: relative;
  left: 50%;
  display: flex;
  width: 100vw;
  min-width: 0;
  height: 512px;
  padding: 165.5px 48px 0 78px;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  transform: translateX(-50%);
}

.timeline::-webkit-scrollbar {
  display: none;
}

.milestone {
  position: relative;
  flex: 0 0 156px;
  height: 156px;
  margin-right: 25.5px;
}

.milestone:last-child {
  margin-right: 0;
}

.milestone::after {
  position: absolute;
  top: -52px;
  left: 85px;
  z-index: 0;
  width: 140px;
  height: 140px;
  border: 14px solid #555;
  box-sizing: border-box;
  border-radius: 50%;
  content: "";
}

.milestone::before {
  position: absolute;
  top: -43px;
  left: 94px;
  z-index: 1;
  width: 122px;
  height: 122px;
  border: 2px dashed #a5a5a5;
  box-sizing: border-box;
  border-radius: 50%;
  content: "";
}

.milestone.lower::after {
  top: 65px;
}

.milestone.lower::before {
  top: 74px;
}

.milestone:last-child::before,
.milestone:last-child::after {
  display: none;
}

.milestone strong {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  border: 3px solid transparent;
  box-sizing: border-box;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(from -45deg, #ebb527 0deg 180deg, #f7f7f7 180deg 360deg) border-box;
  box-shadow: 0 1px 14px rgba(0, 0, 0, 0.2);
  font-size: 25px;
  letter-spacing: 0.04em;
}

.milestone-detail {
  position: absolute;
  bottom: calc(100% + 78px);
  left: 50%;
  z-index: 4;
  width: 230px;
  min-height: 40px;
  color: #919191;
  font-size: 16px;
  line-height: 1.15;
  text-align: center;
  transform: translate(-50%, 7px);
}

.milestone:nth-child(1) .milestone-detail,
.milestone:nth-child(7) .milestone-detail {
  width: 170px;
}

.milestone:nth-child(5) .milestone-detail {
  width: 310px;
}

.milestone:nth-child(8) .milestone-detail {
  width: 180px;
}

.milestone:nth-child(10) .milestone-detail {
  width: 260px;
}

.milestone-detail::before,
.milestone-detail::after {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  background: #58aaff;
  content: "";
  transform: translate(-50%, -7px);
}

.milestone-detail::before {
  top: calc(100% + 54px);
  width: 16px;
  height: 16px;
}

.milestone-detail::after {
  top: calc(100% + 6px);
  width: 5px;
  height: 5px;
  box-shadow: 0 13px 0 #58aaff, 0 26px 0 #58aaff, 0 39px 0 #58aaff;
}

.milestone.lower .milestone-detail {
  top: calc(100% + 78px);
  bottom: auto;
}

.milestone.lower .milestone-detail::before {
  top: auto;
  bottom: calc(100% + 53px);
}

.milestone.lower .milestone-detail::after {
  top: auto;
  bottom: calc(100% + 7px);
  box-shadow: 0 -13px 0 #58aaff, 0 -26px 0 #58aaff, 0 -39px 0 #58aaff;
}

.sustainability {
  padding: 88px 0;
  background: var(--blue-deep);
  color: #fff;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 90px;
  align-items: end;
}

.sustainability h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.04;
}

.sustainability p {
  margin: 0 0 6px;
  color: #c7d4e4;
  font-size: 17px;
  line-height: 1.6;
}

.sustainability-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.sustainability-points span {
  padding: 26px 0 0;
  color: #fff;
  font-size: 19px;
}

.sustainability-points b {
  margin-right: 14px;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.gallery {
  padding: 78px 0 100px;
  background: var(--warm);
}

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

.gallery-grid button {
  position: relative;
  aspect-ratio: 1.72 / 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #ddd;
  cursor: pointer;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.04);
}

.gallery-grid button span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 58, 120, 0.88);
  color: #fff;
  font-size: 11px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-grid button:hover span,
.gallery-grid button:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.newsletter {
  padding: 34px 0;
  background: var(--peach);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  gap: 60px;
}

.newsletter-grid > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.newsletter strong {
  font-size: 16px;
}

.newsletter span {
  color: #6e6e6e;
  font-size: 13px;
}

.newsletter form {
  display: flex;
}

.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border: 0;
  border-radius: 25px 0 0 25px;
  outline: none;
}

.newsletter input:focus {
  box-shadow: inset 0 0 0 2px #4e87b5;
}

.newsletter button {
  padding: 15px 25px;
  border: 0;
  border-radius: 0 25px 25px 0;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}

.newsletter button span {
  color: #fff;
}

.footer {
  padding: 64px 0 25px;
  background: var(--blue-deep);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 0.8fr;
  gap: 70px;
  padding-bottom: 38px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact > img {
  width: 175px;
  height: 84px;
  margin: -18px 0 9px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.footer a,
.footer span,
.footer button {
  color: #9cb0cb;
  font-size: 13px;
  line-height: 1.45;
}

.footer a,
.footer button {
  margin-bottom: 11px;
}

.footer a:hover,
.footer a:focus-visible,
.footer button:hover,
.footer button:focus-visible {
  color: #fff;
}

.footer h3 {
  margin: 0 0 21px;
  color: #d8e2ef;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.socials a {
  margin: 0;
}

.socials img {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  object-fit: cover;
}

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

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

.footer-bottom a {
  margin: 0;
  font-size: 10px;
}

.footer-bottom span {
  font-size: 10px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow-y: auto;
  background: rgba(16, 23, 32, 0.72);
  backdrop-filter: blur(3px);
  animation: fade-in 180ms ease;
}

@keyframes fade-in { from { opacity: 0; } }

.contact-modal {
  position: relative;
  width: min(1120px, 100%);
  padding: 38px 40px 42px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  animation: modal-up 260ms ease;
}

@keyframes modal-up { from { opacity: 0; transform: translateY(18px); } }

.modal-close,
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1f1f1;
  cursor: pointer;
  font-size: 28px;
}

.modal-heading {
  padding-right: 50px;
}

.modal-heading > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.modal-heading h2 {
  margin: 8px 0 8px;
  color: #111;
  font-size: 34px;
  font-weight: 500;
}

.modal-heading p {
  margin: 0 0 28px;
  color: #777;
}

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

.contact-modal label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.contact-modal label b {
  display: contents;
  color: #67a9ae;
  font-weight: 400;
}

.contact-modal input,
.contact-modal textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
}

.contact-modal input:focus,
.contact-modal textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(0, 103, 168, 0.1);
}

.message-field {
  grid-column: 1 / -1;
}

.contact-modal textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-button {
  grid-column: 1 / -1;
  justify-self: end;
  min-width: 180px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 130;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 430px;
  padding: 15px 18px;
  border-left: 4px solid var(--orange);
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  animation: modal-up 220ms ease;
}

.toast button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 23px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 70px 95px;
  background: rgba(4, 17, 35, 0.94);
}

.lightbox > img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 140px);
  border-radius: 4px;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  top: 22px;
  right: 26px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  cursor: pointer;
  font-size: 38px;
  transform: translateY(-50%);
}

.lightbox-arrow.previous { left: 25px; }
.lightbox-arrow.next { right: 25px; }

.lightbox-count {
  position: absolute;
  bottom: 24px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.12em;
}

@media (max-width: 1120px) {
  .section-anchor {
    scroll-margin-top: 106px;
  }

  .site-header {
    height: 94px;
    padding-inline: 28px;
  }

  .brand {
    width: 175px;
    height: 84px;
  }

  .brand img {
    width: 175px;
    height: 175px;
  }

  .main-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 12px;
  }

  .contact-button {
    min-width: 110px;
    padding: 11px 14px;
  }

  .stats div {
    padding-inline: 20px;
  }

  .business-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .section-anchor {
    scroll-margin-top: 94px;
  }

  .content-narrow,
  .content-wide,
  .content-grid {
    width: min(100% - 34px, 680px);
  }

  .site-header {
    position: sticky;
    top: 0;
    height: 82px;
    padding-inline: 17px;
  }

  .belief {
    background: var(--warm);
  }

  .content-grid {
    min-height: 0;
  }

  .brand {
    width: 160px;
    height: 76px;
  }

  .brand img {
    width: 160px;
    height: 160px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-self: auto;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 82px);
    padding: 14px 20px 24px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.14);
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    padding: 15px 4px;
    border-bottom: 1px solid #ededed;
    text-align: left;
  }

  .business-nav {
    display: block;
  }

  .contact-button {
    margin-top: 15px;
  }

  .business-mega {
    top: 100%;
    z-index: 5;
  }

  .business-mega.is-open {
    height: min(470px, calc(100vh - 82px));
    overflow-y: auto;
  }

  .mega-inner {
    display: block;
    width: calc(100% - 40px);
    padding: 28px 0;
  }

  .mega-intro strong {
    font-size: 27px;
  }

  .mega-list {
    width: 100%;
    padding: 0;
  }

  .mega-list button,
  .mega-list a {
    min-height: 58px;
    padding: 17px 18px;
  }

  .mega-list button:first-child,
  .mega-list a:first-child {
    min-height: 72px;
    padding-top: 15px;
  }

  .hero {
    min-height: 610px;
    background-position: 50% center;
  }

  .hero-caption {
    width: calc(100% - 34px);
    padding-top: 54px;
  }

  .hero-caption h1 {
    font-size: 43px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 34px);
  }

  .stats div {
    min-height: 82px;
    padding: 13px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stats div:last-child {
    grid-column: 1 / -1;
  }

  .stats strong {
    font-size: 24px;
  }

  .stats span {
    font-size: 12px;
  }

  .hero-arrows {
    right: 17px;
    bottom: 263px;
  }

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

  .belief-copy {
    padding: 67px 0 18px;
    transform: none;
  }

  .belief .section-title {
    flex-wrap: wrap;
    transform: none;
  }

  .about .section-title,
  .business-showcase .section-title,
  .awards .section-title,
  .gallery .section-title {
    left: auto;
    width: auto;
    transform: none;
  }

  .founder {
    justify-self: center;
    width: 310px;
    height: 400px;
  }

  .founder img {
    position: static;
    width: 235px;
    height: 400px;
    margin: auto;
    object-fit: contain;
    object-position: bottom;
  }

  .founder figcaption {
    right: 12px;
  }

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

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sustainability-points {
    grid-column: auto;
  }

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

  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
  }

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

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

@media (max-width: 560px) {
  .journey-title,
  .journey-heading-overlay .section-title {
    left: 17px;
    font-size: 28px;
  }

  .belief .section-title,
  .journey .section-title {
    font-size: 28px;
  }

  .belief .title-mark,
  .journey .title-mark {
    height: 31px;
  }

  .hero {
    min-height: 625px;
  }

  .hero-caption span {
    font-size: 10px;
  }

  .hero-caption h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .title-mark {
    height: 31px;
  }

  .belief p,
  .about p,
  .sustainability p {
    font-size: 15px;
  }

  .about,
  .business-showcase,
  .awards,
  .gallery,
  .sustainability {
    padding-block: 58px;
  }

  .business-cards {
    grid-template-columns: 1fr;
  }

  .business-cards article {
    min-height: 160px;
  }

  .business-cards h3 {
    margin-top: 30px;
  }

  .awards-grid {
    gap: 32px;
  }

  .awards-grid li {
    padding-left: 26px;
    font-size: 14px;
  }

  .timeline {
    height: 470px;
    min-width: 0;
    padding: 150px 24px 0;
  }

  .journey {
    min-height: 0;
    padding: 0;
  }

  .sustainability h2 {
    font-size: 40px;
  }

  .sustainability-points {
    grid-template-columns: 1fr;
  }

  .sustainability-points span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .newsletter form {
    flex-direction: column;
    gap: 10px;
  }

  .newsletter input,
  .newsletter button {
    border-radius: 24px;
  }

  .footer {
    padding-top: 48px;
  }

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

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .modal-backdrop {
    align-items: start;
    padding: 12px;
  }

  .contact-modal {
    padding: 30px 20px;
    border-radius: 12px;
  }

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

  .message-field,
  .submit-button {
    grid-column: auto;
  }

  .submit-button {
    justify-self: stretch;
  }

  .modal-heading h2 {
    font-size: 28px;
  }

  .lightbox {
    padding: 68px 15px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 15px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .lightbox-arrow.previous { left: 15px; }
  .lightbox-arrow.next { right: 15px; }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    translate: 0 26px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

.reveal-item {
  opacity: 0;
  translate: 0 26px;
}

.reveal-item.is-visible {
  animation: reveal-up 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms) forwards;
}

.reveal-item.reveal-complete {
  opacity: 1;
  translate: none;
  animation: none;
}

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

  .reveal-item,
  .reveal-item.is-visible,
  .business-mega .mega-list a {
    opacity: 1;
    animation: none !important;
  }

  .reveal-item,
  .reveal-item.is-visible {
    translate: none;
  }

  .business-mega .mega-list a {
    transform: none;
  }
}
