:root {
  --navy: #0D182A;
  --teal: #00B2A9;
  --lime: #A9C93F;
  --grey: #5F6B7A;
  --light-grey: #D9DEE5;
  --white: #FFFFFF;
  --font-display: "Libre Baskerville", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 15%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 26%, rgba(255,255,255,0.84) 46%, rgba(255,255,255,0.25) 72%, rgba(255,255,255,0) 100%);
}

.content-wrap {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  padding: 84px 0 150px;
}

.brand-header {
  margin-bottom: clamp(120px, 14vh, 170px);
}

.logo {
  display: block;
  width: clamp(178px, 17vw, 270px);
  height: auto;
}

.hero-copy {
  position: relative;
  width: min(520px, 100%);
  padding-left: clamp(56px, 5.6vw, 90px);
}

.vertical-line {
  position: absolute;
  left: 0;
  top: 14px;
  width: 1.5px;
  height: 282px;
  background: var(--teal);
  opacity: 0.82;
}

.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(56px, 6.2vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.headline .word,
.headline .momentum-line {
  display: block;
}

.headline .building {
  color: var(--navy);
}

.headline .growth {
  color: var(--teal);
}

.headline .momentum-line em {
  color: var(--lime);
  font-style: italic;
  font-weight: 400;
}

.headline .period {
  color: var(--navy);
  font-style: normal;
  margin-left: 0.06em;
}

.small-rule {
  width: 62px;
  height: 2px;
  background: var(--teal);
  margin: 64px 0 42px;
}

.intro-copy,
.body-copy,
.enquiry-text p,
.footer p {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--grey);
}

.intro-copy {
  margin: 0 0 72px;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.status-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 26px;
  align-items: start;
}

.icon-circle {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
}

.icon-circle svg {
  width: 27px;
  height: 27px;
}

.label {
  margin: 4px 0 26px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.body-copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.body-copy span {
  color: var(--teal);
  font-weight: 400;
}

.divider-line {
  width: min(420px, 100%);
  height: 1px;
  background: rgba(13, 24, 42, 0.13);
  margin: 58px 0 54px;
}

.enquiry {
  margin-bottom: 120px;
}

.enquiry-text {
  position: relative;
  padding-left: 26px;
}

.enquiry-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 1px;
  height: 56px;
  background: rgba(13, 24, 42, 0.22);
}

.enquiry-text p {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.45;
}

.enquiry-text a {
  color: var(--teal);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.hero-image {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.72) 28%, rgba(255,255,255,0.12) 58%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 34%),
    url("assets/hero-desktop.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


.footer {
  position: relative;
  z-index: 3;
  min-height: 152px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
}

.footer-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.footer-accent {
  width: 54px;
  height: auto;
  display: block;
}

.footer-divider {
  height: 52px;
  width: 1px;
  background: rgba(0, 178, 169, 0.65);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  letter-spacing: -0.01em;
}

@media (max-width: 920px) {
  .content-wrap {
    width: min(100% - 48px, 720px);
    padding-top: 64px;
    padding-bottom: 120px;
  }

  .brand-header {
    margin-bottom: 96px;
  }

  .hero-copy {
    padding-left: 38px;
  }

  .vertical-line {
    height: 220px;
  }

  .hero-image {
    opacity: 0.9;
  }

  .small-rule {
    margin-top: 48px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .content-wrap {
    width: calc(100% - 36px);
    padding: 34px 0 80px;
  }

  .brand-header {
    margin-bottom: 82px;
  }

  /* Logo intentionally not reduced on mobile */
  .logo {
    width: 178px;
  }

  .hero-copy {
    padding-left: 0;
    width: 100%;
  }

  .vertical-line {
    display: none;
  }

  .headline {
    font-size: clamp(44px, 12.5vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.05em;
  }

  .small-rule {
    width: 52px;
    margin: 42px 0 34px;
  }

  .intro-copy {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 54px;
  }

  .status-card {
    grid-template-columns: 46px 1fr;
    column-gap: 18px;
  }

  .icon-circle {
    width: 42px;
    height: 42px;
  }

  .icon-circle svg {
    width: 22px;
    height: 22px;
  }

  .label {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .body-copy,
  .enquiry-text p,
  .enquiry-text a {
    font-size: 15px;
  }

  .divider-line {
    margin: 46px 0 42px;
  }

  .enquiry {
    margin-bottom: 90px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 18px 16px;
    border-radius: 18px;
  }

  .hero-image {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.86) 42%, rgba(255,255,255,0.22) 68%, rgba(255,255,255,0) 100%),
      url("assets/hero-mobile.webp");
    background-size: cover;
    background-position: 62% bottom;
  }

  .footer {
    min-height: 112px;
  }

  .footer-inner {
    width: calc(100% - 36px);
    gap: 20px;
  }

  .footer-accent {
    width: 42px;
  }

  .footer-divider {
    height: 42px;
  }

  .footer p {
    font-size: 14px;
  }
}
