:root {
  /* Shared Evittone brand tokens from the main and organisation frontends. */
  --ink: #1a1a2e;
  --muted: #52526b;
  --line: #eceaf5;
  --paper: #fcf8ff;
  --sage: #e8e5ff;
  --lime: #7ef7e3;
  --orange: #ff6b35;
  --brand: #ab3500;
  --brand-dark: #c0431a;
  --surface-low: #f5f2ff;
  --inverse: #2f2e43;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  height: 80px;
  max-width: 1440px;
  margin: auto;
  padding: 0 5.2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 248, 255, 0.96);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -1.25px;
  font-size: 22px;
}
.brand-logo {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 5px;
}
.brand-name {
  color: var(--ink);
}
.links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}
.links > a {
  position: relative;
}
.links > a:not(.nav-cta):after {
  content: "";
  height: 1px;
  width: 0;
  background: var(--ink);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: width 0.2s;
}
.links > a:hover:after,
.links .active:after {
  width: 100%;
}
.nav-cta,
.button {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 18px;
}
.nav-cta {
  background: var(--ink);
  color: white !important;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 5px;
}
.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;
}
.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 74px 5.2vw 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 7vw;
  align-items: center;
}
.eyebrow {
  font:
    500 10px "DM Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 22px;
  color: var(--muted);
}
h1,
h2 {
  font-size: clamp(41px, 5.05vw, 76px);
  line-height: 1.07;
  letter-spacing: -0.06em;
  margin: 0;
  font-weight: 600;
}
h1 em,
h2 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}
.lede {
  font-size: 15px;
  line-height: 1.75;
  max-width: 500px;
  color: var(--muted);
  margin: 28px 0 30px;
}
.actions {
  display: flex;
  gap: 27px;
  align-items: center;
}
.button-dark {
  color: #fff;
  background: var(--ink);
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-dark:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 12px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.text-link span,
.button span,
.footer-contact span,
.areas a {
  font-size: 18px;
  line-height: 12px;
  transition: transform 0.2s;
}
.button:hover span,
.text-link:hover span,
.footer-contact:hover span,
.areas a:hover {
  transform: translate(3px, -3px);
}
.hero-image {
  position: relative;
  margin: 0;
}
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(0.78);
}
.hero-image figcaption {
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: absolute;
  right: -10px;
  bottom: 15px;
  writing-mode: vertical-rl;
  color: white;
}
.introduction {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 10vw;
  padding: 112px 11.5vw;
  background: #fff;
}
.introduction h2 {
  font-size: clamp(37px, 4.2vw, 59px);
  max-width: 760px;
}
.introduction > div:last-child > p {
  max-width: 570px;
  color: var(--muted);
  font-size: 16px;
  margin: 28px 0;
}
.image-statement {
  margin: 0 5.2vw;
  position: relative;
  height: 610px;
  background: var(--surface-low);
}
.image-statement > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55);
  opacity: 0.88;
}
.image-statement > div {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--lime);
  padding: 28px 35px;
  width: min(490px, 85%);
}
.image-statement span,
.timeline > article > span,
.areas article > span,
.values-grid article > span {
  font:
    500 10px "DM Mono",
    monospace;
  letter-spacing: 0.09em;
}
.image-statement p {
  font-size: 17px;
  line-height: 1.42;
  margin: 10px 0 0;
  font-weight: 600;
}
.mission {
  padding: 118px 5.2vw 110px;
  background: var(--inverse);
  color: #f2efff;
}
.mission .eyebrow {
  color: #c9c4dd;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.mission article {
  border-top: 1px solid #716d85;
  padding-top: 24px;
}
.mission article > span {
  color: var(--lime);
  font:
    500 10px "DM Mono",
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.mission h2 {
  font-size: clamp(34px, 3.55vw, 51px);
  margin: 24px 0;
}
.mission article > p {
  max-width: 470px;
  color: #d5d0e5;
  font-size: 14px;
}
.story {
  padding: 112px 5.2vw;
  background: var(--surface-lowest, #ffffff);
}
.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
}
.section-heading h2 {
  font-size: clamp(37px, 4.2vw, 59px);
}
.timeline {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.timeline article {
  padding: 27px 38px 0 0;
  min-height: 220px;
  border-right: 1px solid var(--line);
}
.timeline article + article {
  padding-left: 28px;
}
.timeline article:last-child {
  border: 0;
}
.timeline h3,
.areas h3,
.values h3 {
  font-size: 18px;
  letter-spacing: -0.045em;
  margin: 32px 0 10px;
}
.timeline p,
.areas p,
.values p {
  font-size: 13px;
  color: var(--muted);
  max-width: 285px;
  margin: 0;
}
.work {
  padding: 115px 11.5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  background: var(--sage);
}
.work h2 {
  font-size: clamp(37px, 4vw, 57px);
}
.work-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  margin-top: 25px;
}
.areas article {
  padding: 24px 0;
  border-top: 1px solid #c8c3dc;
  display: grid;
  grid-template-columns: 48px 1fr 30px;
  gap: 16px;
}
.areas article:last-child {
  border-bottom: 1px solid #c8c3dc;
}
.areas h3 {
  margin: 0 0 8px;
  font-size: 21px;
}
.areas a {
  align-self: start;
}
.values {
  padding: 112px 5.2vw 124px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  gap: 30px;
}
.values-grid article {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}
.values-grid h3 {
  font-size: 19px;
  margin: 30px 0 9px;
}
.people {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  background: #fff;
}
.people-image img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  display: block;
  filter: saturate(0.65);
}
.people-copy {
  padding: 13% 14%;
  align-self: center;
}
.people-copy h2 {
  font-size: clamp(37px, 4vw, 57px);
}
.people-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  margin: 26px 0;
}
.impact {
  margin: 0 5.2vw;
  padding: 64px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.impact article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.impact strong {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 600;
  letter-spacing: -0.06em;
  display: block;
}
.impact span {
  font-size: 12px;
  display: block;
  max-width: 180px;
  line-height: 1.4;
  margin-top: 8px;
  color: var(--muted);
}
.responsibility {
  margin: 0 5.2vw;
  padding: 100px 6.3vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  background: var(--surface-low);
}
.responsibility h2 {
  font-size: clamp(35px, 3.8vw, 53px);
}
.responsibility > div:last-child {
  padding-top: 37px;
  font-size: 15px;
  color: var(--muted);
}
.responsibility > div:last-child p {
  margin: 0 0 25px;
}
footer {
  background: var(--orange);
  padding: 104px 5.2vw 28px;
  color: #390c00;
}
footer .brand-name {
  color: #390c00;
}
footer h2 {
  font-size: clamp(48px, 6.3vw, 91px);
}
.footer-actions {
  margin-top: 43px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.button-light {
  background: #fff;
  transition: transform 0.2s;
}
.button-light:hover {
  transform: translateY(-2px);
}
.footer-contact {
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
}
.footer-bottom {
  border-top: 1px solid rgba(23, 32, 30, 0.4);
  margin-top: 104px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-family: "DM Mono", monospace;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom > a:last-child {
  text-decoration: underline;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition: none !important;
  }
}
@media (max-width: 760px) {
  .nav {
    height: 67px;
    padding: 0 6vw;
  }
  .menu-button {
    display: block;
  }
  .links {
    display: none;
  }
  .links-open {
    display: flex;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    padding: 25px 6vw 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero {
    padding: 46px 6vw 62px;
    display: block;
  }
  .hero h1 {
    font-size: 45px;
  }
  .lede {
    font-size: 14px;
  }
  .hero-image {
    margin-top: 50px;
  }
  .hero-image img {
    height: 340px;
  }
  .introduction {
    display: block;
    padding: 75px 8vw;
  }
  .introduction h2,
  .work h2,
  .people-copy h2,
  .responsibility h2 {
    font-size: 39px;
  }
  .introduction > div:last-child {
    margin-top: 38px;
  }
  .image-statement {
    margin: 0;
    height: 460px;
  }
  .image-statement > div {
    padding: 20px 22px;
  }
  .mission {
    padding: 76px 6vw;
  }
  .mission-grid,
  .work,
  .responsibility {
    display: block;
  }
  .mission article + article {
    margin-top: 55px;
  }
  .mission h2 {
    font-size: 38px;
  }
  .story,
  .values {
    padding: 75px 6vw;
  }
  .section-heading {
    display: block;
  }
  .timeline {
    display: block;
    margin-top: 43px;
  }
  .timeline article,
  .timeline article + article {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
  }
  .work {
    padding: 75px 8vw;
  }
  .areas {
    margin-top: 50px;
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
    margin-top: 42px;
  }
  .people {
    display: flex;
    flex-direction: column;
  }
  .people-image {
    order: 2;
  }
  .people-image img {
    min-height: 320px;
  }
  .people-copy {
    padding: 75px 8vw;
  }
  .impact {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 60px 0;
    margin: 0 8vw;
  }
  .impact strong {
    font-size: 48px;
  }
  .responsibility {
    margin: 0;
    padding: 70px 8vw;
  }
  .responsibility > div:last-child {
    padding-top: 30px;
  }
  footer {
    padding: 78px 6vw 25px;
  }
  footer h2 {
    font-size: 48px;
  }
  .footer-actions {
    display: block;
  }
  .footer-contact {
    display: table;
    margin-top: 24px;
  }
  .footer-bottom {
    margin-top: 74px;
    display: block;
  }
  .footer-bottom p {
    margin: 12px 0;
  }
  .footer-bottom > a:last-child {
    display: inline-block;
    margin-top: 8px;
  }
}
@media (max-width: 420px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .actions {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero h1 {
    font-size: 39px;
  }
}
