/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
  .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
:root {
  --navy: #18a393;
  --deep: #07574f;
  --gold: #ff8a24;
  --ink: #24403e;
  --cream: #f3faf7;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial,Helvetica,sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  height: 76px;
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 4vw;
  gap: 34px;
  position: relative;
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
}
.brand-mark {
  width: 40px;
  height: 48px;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font: 800 25px Georgia;
  clip-path: polygon(20% 0,80% 0,100% 100%,0 100%);
}
.brand strong {
  display: block;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: .4px;
  opacity: .88;
}
.site-header nav {
  display: flex;
  gap: 22px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
}
.site-header nav a:hover {
  color: var(--gold);
}
.profile-btn,.gold-btn {
  background: var(--gold);
  color: #08182a;
  padding: 14px 20px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
}
.hero {
  height: 650px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
  background: var(--deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 1.35s ease-in-out,transform 6.4s ease-out;
  will-change: opacity,transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg,rgba(1,17,33,.9) 0%,rgba(1,17,33,.55) 42%,rgba(1,17,33,.08) 76%),linear-gradient(0deg,rgba(3,20,38,.58),transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 115px 7vw 0;
  max-width: 790px;
}
.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 43%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(7,87,79,.28);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 33px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s,transform .25s,border-color .25s;
}
.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--deep);
  transform: scale(1.06);
}
.hero-arrow-left {
  left: 22px;
}
.hero-arrow-right {
  right: 22px;
}
.hero-dots {
  position: absolute;
  z-index: 4;
  right: 6vw;
  bottom: 116px;
  display: flex;
  gap: 9px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width .35s,background .35s;
}
.hero-dots button.is-active {
  width: 30px;
  background: var(--gold);
  border-color: var(--gold);
}
.eyebrow,.section-kicker {
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 12px;
}
.hero h1 {
  font-size: 58px;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 16px 0 20px;
  letter-spacing: -1.5px;
}
.hero-content>p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.6;
  max-width: 650px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.outline-btn {
  border: 1px solid rgba(255,255,255,.8);
  padding: 14px 22px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}
.stats {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3,20,38,.9);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding: 25px 6vw;
}
.stats div {
  padding: 0 30px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stats div:last-child {
  border: 0;
}
.stats strong {
  display: block;
  color: var(--gold);
  font-size: 25px;
}
.stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.intro {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 55px;
  padding: 80px 7vw;
  background: var(--cream);
}
.intro h2 {
  font-size: 42px;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 12px 0 24px;
}
.intro h2 em {
  font-style: normal;
  color: var(--gold);
}
.intro p {
  line-height: 1.8;
  color: #5c6570;
}
.intro-image {
  position: relative;
  min-height: 380px;
}
.intro-image img {
  object-fit: cover;
}
@media (max-width:980px) {
  .site-header nav {
    display: none;
  }
  .profile-btn {
    display: none;
  }
  .hero {
    height: 680px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .stats {
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }
  .stats div:nth-child(2) {
    border: 0;
  }
  .intro {
    grid-template-columns: 1fr;
  }
  .intro-image {
    min-height: 320px;
  }
}
@media (max-width:600px) {
  .site-header {
    height: 68px;
  }
  .hero-content {
    padding: 85px 24px 0;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .stats {
    padding: 18px 12px;
  }
  .stats div {
    padding: 0 12px;
  }
  .stats strong {
    font-size: 19px;
  }
  .stats span {
    font-size: 8px;
  }
  .intro {
    padding: 60px 24px;
  }
  .intro h2 {
    font-size: 34px;
  }
}
.section {
  padding: 82px 6vw;
}
.section-head {
  text-align: center;
  margin-bottom: 34px;
}
.section-head h2,.fleet-section h2,.finance h2 {
  margin: 7px 0 0;
  text-transform: uppercase;
  font-size: 34px;
}
.section-head.split {
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.section-head.split>a,.section-head.split>span {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: #69717a;
}
.intro-copy {
  padding: 10px 0;
}
.quality-row {
  display: flex;
  gap: 25px;
  margin-top: 28px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
.since {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--deep);
  color: #fff;
  padding: 20px 28px;
}
.since small {
  display: block;
}
.since strong {
  font-size: 42px;
  color: var(--gold);
}
.expertise {
  background: #fff;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.expertise-card {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.expertise-card>img {
  object-fit: cover;
  transition: transform .4s;
}
.expertise-card:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent,var(--deep));
}
.expertise-card:hover>img {
  transform: scale(1.04);
}
.expertise-card>div {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  padding: 18px;
}
.expertise-card h3 {
  text-transform: uppercase;
  margin: 5px 0;
  font-size: 17px;
}
.expertise-card p {
  font-size: 12px;
  line-height: 1.5;
  opacity: .8;
}
.expertise-card span {
  color: var(--gold);
  font-size: 28px;
}
.projects {
  background: #f3f4f5;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.project-card {
  background: #fff;
  box-shadow: 0 5px 20px rgba(3,20,38,.08);
}
.project-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.project-img img {
  object-fit: cover;
}
.hotel-project-img {
  background: #dce7e5;
}
.hotel-project-img:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -18px;
  background: url('/images/project-hotel-new.jpg') center/cover no-repeat;
  filter: blur(14px);
  opacity: .25;
  transform: scale(1.08);
}
.hotel-project-img img {
  z-index: 1;
  object-fit: contain;
  object-position: center;
  padding: 4px;
}
.project-body {
  padding: 20px;
}
.project-body h3 {
  font-size: 15px;
  text-transform: uppercase;
  min-height: 36px;
}
.project-body p {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #69717a;
}
.project-body p strong {
  color: var(--navy);
}
.project-body small {
  padding: 5px 9px;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 800;
}
.ongoing {
  background: #e8f0fb;
  color: #1d5d9b;
}
.complete {
  background: #e7f5e8;
  color: #34723e;
}
.numbers {
  background: var(--deep);
  color: #fff;
  padding: 60px 6vw;
}
.section-head.light h2 {
  color: #fff;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
}
.numbers-grid div {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
  padding: 12px;
}
.numbers-grid div:last-child {
  border: 0;
}
.numbers-grid strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
}
.numbers-grid span {
  font-size: 10px;
  text-transform: uppercase;
}
.fleet-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #fff;
}
.fleet-photo {
  position: relative;
  min-height: 500px;
}
.fleet-photo img {
  object-fit: cover;
}
.fleet-section>div:last-child {
  padding: 25px 0;
}
.fleet-section>div>p {
  color: #606a73;
  line-height: 1.7;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 25px;
}
.fleet-grid div {
  padding: 15px;
  background: #f3f4f5;
  border-left: 3px solid var(--gold);
}
.fleet-grid strong {
  display: block;
  color: var(--gold);
  font-size: 23px;
}
.fleet-grid span {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.finance {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 60px;
  background: var(--cream);
  align-items: center;
}
.finance p {
  line-height: 1.7;
  color: #65707b;
}
.banking {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.banking span {
  padding: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
}
.financial-visual {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(7,87,79,.1);
  border-radius: 18px;
  padding: 24px 26px 20px;
  box-shadow: 0 18px 45px rgba(7,87,79,.12);
}
.chart-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #e7eeec;
}
.chart-heading div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.chart-heading span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.chart-heading strong {
  color: var(--deep);
  font-size: 17px;
  letter-spacing: .2px;
}
.chart-heading small {
  color: #77817f;
  font-size: 9px;
  font-weight: 700;
}
.finance-legend {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin: 14px 0 4px;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  color: #48535d;
}
.finance-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.finance-legend span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.turnover-key::before {
  background: linear-gradient(135deg,#ffb45f,#ff7d12);
  box-shadow: 0 0 0 3px rgba(255,138,36,.12);
}
.networth-key::before {
  background: linear-gradient(135deg,#34baa7,#087568);
  box-shadow: 0 0 0 3px rgba(24,163,147,.12);
}
.chart {
  height: 265px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  border-left: 1px solid #d9e3e0;
  border-bottom: 1px solid #bdcbc7;
  padding: 0 12px 0;
  background: repeating-linear-gradient(to top,rgba(7,87,79,.08) 0,rgba(7,87,79,.08) 1px,transparent 1px,transparent 52px);
}
.chart-year {
  height: 245px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.bar-pair {
  height: 210px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
.bar {
  position: relative;
  display: block;
  width: 31%;
  max-width: 34px;
  min-height: 28px;
  border-radius: 8px 8px 2px 2px;
  box-shadow: 0 8px 16px rgba(7,87,79,.12);
  transition: transform .25s ease,filter .25s ease;
}
.bar::after {
  content: "";
  position: absolute;
  inset: 3px 4px auto;
  height: 24%;
  border-radius: 5px;
  background: linear-gradient(rgba(255,255,255,.34),rgba(255,255,255,0));
  pointer-events: none;
}
.bar:hover {
  transform: translateY(-5px);
  filter: saturate(1.12);
}
.turnover-bar {
  background: linear-gradient(180deg,#ffb45f 0%,#ff8a24 44%,#e66d08 100%);
}
.networth-bar {
  background: linear-gradient(180deg,#42c5b2 0%,#18a393 48%,#087568 100%);
}
.bar b {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  padding: 4px 5px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(7,87,79,.12);
  font-size: 8px;
  line-height: 1;
  color: #344641;
  white-space: nowrap;
}
.chart-year>strong {
  font-size: 10px;
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef6f3;
  color: var(--deep);
  letter-spacing: .3px;
}
.leadership {
  background: #fff;
}
.leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 1050px;
  margin: auto;
}
.leaders article {
  display: flex;
  gap: 22px;
  padding: 30px;
  border: 1px solid #e3e5e7;
}
.avatar {
  width: 95px;
  height: 110px;
  flex: 0 0 95px;
  background: var(--navy);
  color: var(--gold);
  font: 700 28px Georgia;
  display: grid;
  place-items: center;
}
.leader-photo {
  position: relative;
  overflow: hidden;
  background: #e6eceb;
}
.leader-photo img {
  object-fit: cover;
  object-position: center top;
}
.leaders h3 {
  margin: 4px 0;
}
.leaders strong {
  color: var(--gold);
  font-size: 12px;
}
.leaders p {
  font-size: 13px;
  color: #66707b;
  line-height: 1.6;
}
.gallery {
  background: #f4f4f3;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 8px;
}
.gallery-grid div {
  height: 190px;
  position: relative;
  overflow: hidden;
}
.gallery-grid img {
  object-fit: cover;
  transition: .35s;
}
.gallery-grid div:hover img {
  transform: scale(1.05);
}
.cta {
  padding: 55px 7vw;
  background: linear-gradient(90deg,rgba(3,20,38,.95),rgba(3,20,38,.72)),url('/images/hero-road.jpg') center/cover;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta p {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
}
.cta h2 {
  font-size: 34px;
  text-transform: uppercase;
  margin: 5px 0;
}
footer {
  background: var(--deep);
  color: #d8dde2;
  padding: 55px 6vw;
  display: grid;
  grid-template-columns: 1.4fr .7fr 1.3fr;
  gap: 45px;
}
footer h3 {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}
footer p,footer a {
  display: block;
  font-size: 11px;
  line-height: 1.8;
  margin: 5px 0;
}
.footer-brand p {
  max-width: 290px;
  margin-top: 18px;
}
.legal {
  margin-top: 22px;
  color: #8995a0;
}
.copyright {
  text-align: center;
  background: #020e1b;
  color: #7d8791;
  padding: 13px;
  font-size: 9px;
}
@media (max-width:1050px) {
  .expertise-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .project-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3,1fr);
  }
  .numbers-grid {
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
  }
  .numbers-grid div {
    border: 0;
  }
  .fleet-section,.finance {
    grid-template-columns: 1fr;
  }
  .leaders {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (max-width:620px) {
  .section {
    padding: 58px 22px;
  }
  .section-head h2,.fleet-section h2,.finance h2 {
    font-size: 28px;
  }
  .section-head.split {
    align-items: flex-start;
    gap: 10px;
  }
  .expertise-grid,.project-grid {
    grid-template-columns: 1fr;
  }
  .numbers-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .numbers-grid strong {
    font-size: 19px;
  }
  .fleet-photo {
    min-height: 300px;
  }
  .fleet-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .gallery-grid div {
    height: 140px;
  }
  .cta {
    display: block;
    padding: 45px 24px;
  }
  .cta h2 {
    font-size: 28px;
  }
  .cta a {
    display: inline-block;
    margin-top: 15px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .quality-row {
    flex-wrap: wrap;
  }
  .leaders article {
    display: block;
  }
  .avatar {
    margin-bottom: 18px;
  }
}
@media (max-width:620px) {
  .financial-visual {
    padding: 19px 12px 16px;
    border-radius: 14px;
  }
  .chart-heading strong {
    font-size: 14px;
  }
  .chart-heading small {
    max-width: 70px;
    text-align: right;
  }
  .finance-legend {
    justify-content: flex-start;
    font-size: 9px;
  }
  .chart {
    height: 240px;
    padding: 0 4px;
  }
  .chart-year {
    height: 220px;
  }
  .bar-pair {
    height: 188px;
    gap: 4px;
  }
  .bar {
    width: 35%;
    border-radius: 6px 6px 2px 2px;
  }
  .bar b {
    top: -21px;
    font-size: 7px;
    padding: 3px;
  }
  .chart-year>strong {
    font-size: 8px;
    padding: 3px 5px;
  }
}
@media (max-width:700px) {
  .hero-arrow {
    width: 38px;
    height: 38px;
    top: 47%;
    font-size: 27px;
  }
  .hero-arrow-left {
    left: 10px;
  }
  .hero-arrow-right {
    right: 10px;
  }
  .hero-dots {
    right: 18px;
    bottom: 154px;
  }
  .hero-dots button {
    width: 8px;
    height: 8px;
  }
  .hero-dots button.is-active {
    width: 24px;
  }
}
@media (prefers-reduced-motion:reduce) {
  .hero-slide {
    transition: opacity .25s linear;
    transform: none;
  }
  .hero-arrow,.hero-dots button {
    transition: none;
  }
}
.project-nav {
  height: 76px;
  background: var(--deep);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  gap: 35px;
}
.project-nav .brand {
  margin-right: auto;
}
.project-nav nav {
  display: flex;
  gap: 25px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}
.project-nav nav a:hover {
  color: var(--gold);
}
.projects-hero {
  height: 520px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.projects-hero>img {
  object-fit: cover;
}
.projects-hero>div {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(3,20,38,.94),rgba(3,20,38,.55) 52%,rgba(3,20,38,.12));
}
.projects-hero article {
  position: relative;
  z-index: 2;
  padding: 105px 7vw;
  max-width: 800px;
}
.projects-hero h1 {
  text-transform: uppercase;
  font-size: 54px;
  line-height: 1.03;
  margin: 14px 0;
}
.projects-hero article>p:last-child {
  max-width: 670px;
  line-height: 1.7;
  color: #dbe2e8;
}
.portfolio-intro {
  background: var(--navy);
  color: #fff;
  padding: 26px 6vw;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.portfolio-intro div {
  padding: 8px 25px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.portfolio-intro div:last-child {
  border: 0;
}
.portfolio-intro strong {
  display: block;
  color: var(--gold);
  font-size: 25px;
}
.portfolio-intro span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-sub {
  max-width: 660px;
  margin: 12px auto;
  color: #6a737d;
  line-height: 1.6;
}
.project-list {
  background: #f4f4f2;
}
.project-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1320px;
  margin: auto;
}
.project-feature {
  background: #fff;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 295px;
  box-shadow: 0 7px 28px rgba(3,20,38,.07);
  transition: transform .25s,box-shadow .25s;
}
.project-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 13px 32px rgba(3,20,38,.13);
}
.feature-image {
  position: relative;
  min-height: 295px;
  overflow: hidden;
}
.feature-image img {
  object-fit: cover;
  transition: transform .4s;
}
.project-feature:hover .feature-image img {
  transform: scale(1.04);
}
.feature-image>span {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--deep);
  font-size: 11px;
  font-weight: 900;
  padding: 8px;
}
.feature-copy {
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.feature-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-meta>span {
  text-transform: uppercase;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .8px;
}
.feature-copy h3 {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.25;
  margin: 16px 0 8px;
}
.feature-copy>p {
  font-size: 12px;
  line-height: 1.65;
  color: #646f79;
  margin: 0 0 18px;
}
.feature-copy dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid #e2e4e5;
}
.feature-copy dt {
  text-transform: uppercase;
  font-size: 8px;
  color: #8b939a;
}
.feature-copy dd {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  margin: 4px 0 0;
}
.projects-footer {
  background: var(--deep);
  color: #fff;
  padding: 38px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.projects-footer strong {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
}
.projects-footer p {
  margin: 5px 0;
  color: #82909c;
}
.projects-footer>div:last-child {
  display: flex;
  gap: 24px;
}
.projects-footer a {
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  color: #d3d9de;
}
@media (max-width:1050px) {
  .project-nav nav {
    display: none;
  }
  .project-list-grid {
    grid-template-columns: 1fr;
  }
  .project-feature {
    grid-template-columns: 40% 60%;
  }
}
@media (max-width:650px) {
  .project-nav .profile-btn {
    display: none;
  }
  .projects-hero {
    height: 500px;
  }
  .projects-hero article {
    padding: 95px 24px;
  }
  .projects-hero h1 {
    font-size: 37px;
  }
  .portfolio-intro {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 22px 12px;
  }
  .portfolio-intro div {
    border: 0;
    padding: 8px;
  }
  .portfolio-intro strong {
    font-size: 20px;
  }
  .project-feature {
    grid-template-columns: 1fr;
  }
  .feature-image {
    min-height: 220px;
  }
  .feature-copy {
    padding: 22px;
  }
  .projects-footer {
    display: block;
  }
  .projects-footer>div:last-child {
    margin-top: 20px;
    display: block;
  }
}
.contact-hero {
  height: 470px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.contact-hero>img {
  object-fit: cover;
}
.contact-hero>div {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(3,20,38,.94),rgba(3,20,38,.63) 55%,rgba(3,20,38,.15));
}
.contact-hero article {
  position: relative;
  z-index: 2;
  padding: 95px 7vw;
  max-width: 760px;
}
.contact-hero h1 {
  font-size: 54px;
  line-height: 1.02;
  text-transform: uppercase;
  margin: 12px 0 18px;
}
.contact-hero article>p:last-child {
  max-width: 590px;
  line-height: 1.7;
  color: #dbe1e6;
}
.contact-overlap {
  position: relative;
  z-index: 3;
  margin: -60px 6vw 0;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  background: #fff;
  box-shadow: 0 15px 45px rgba(3,20,38,.15);
}
.contact-overlap article {
  padding: 34px;
  border-right: 1px solid #e5e6e7;
  min-height: 260px;
}
.contact-overlap article:last-child {
  border: 0;
}
.contact-overlap article>span {
  font-size: 12px;
  color: var(--gold);
  font-weight: 900;
}
.contact-overlap h3 {
  text-transform: uppercase;
  color: var(--navy);
  font-size: 16px;
  margin: 14px 0;
}
.contact-overlap p {
  font-size: 12px;
  line-height: 1.7;
  color: #66717b;
}
.contact-overlap a {
  display: block;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 14px;
}
.contact-overlap .contact-big {
  font-size: 18px;
  color: var(--navy);
  text-transform: none;
}
.contact-overlap .email {
  font-size: 15px;
}
.contact-overlap small {
  display: block;
  font-size: 9px;
  color: #899198;
  margin-top: 8px;
}
.contact-main {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 70px;
  align-items: start;
}
.enquiry-copy h2,.map-copy h2 {
  text-transform: uppercase;
  font-size: 38px;
  line-height: 1.1;
  margin: 10px 0 20px;
}
.enquiry-copy>p {
  line-height: 1.75;
  color: #64707a;
}
.contact-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}
.contact-points div {
  background: var(--deep);
  color: #fff;
  padding: 18px;
}
.contact-points strong {
  display: block;
  color: var(--gold);
  font-size: 19px;
}
.contact-points span {
  font-size: 8px;
  text-transform: uppercase;
}
.contact-form {
  background: #f3f4f4;
  padding: 36px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: block;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .7px;
  color: #4d5964;
  margin-bottom: 19px;
}
.contact-form input,.contact-form select,.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid #d7dadd;
  background: #fff;
  padding: 14px;
  font: 12px Arial;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(217,155,36,.12);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form button {
  border: 0;
  cursor: pointer;
}
.contact-form>small {
  margin-left: 12px;
  color: #7e878f;
  font-size: 9px;
}
.map-section {
  display: grid;
  grid-template-columns: 36% 64%;
  background: var(--deep);
  color: #fff;
}
.map-copy {
  padding: 70px 5vw;
}
.map-copy p {
  color: #bdc5cc;
  line-height: 1.7;
}
.map-copy a {
  display: inline-block;
  margin-top: 15px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
}
.map-frame {
  min-height: 480px;
}
.map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
  filter: saturate(.75) contrast(1.05);
}
.contact-strip {
  background: var(--gold);
  color: var(--deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
}
.contact-strip p {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-strip div {
  display: flex;
  gap: 10px;
}
.contact-strip a {
  border: 1px solid var(--deep);
  padding: 12px 16px;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 900;
}
@media (max-width:900px) {
  .contact-overlap {
    grid-template-columns: 1fr;
    margin-top: -35px;
  }
  .contact-overlap article {
    border-right: 0;
    border-bottom: 1px solid #e5e6e7;
    min-height: auto;
  }
  .contact-main {
    grid-template-columns: 1fr;
  }
  .map-section {
    grid-template-columns: 1fr;
  }
  .map-frame {
    height: 430px;
  }
  .contact-strip {
    display: block;
  }
  .contact-strip div {
    margin-top: 14px;
  }
}
@media (max-width:600px) {
  .contact-hero {
    height: 470px;
  }
  .contact-hero article {
    padding: 80px 24px;
  }
  .contact-hero h1 {
    font-size: 36px;
  }
  .contact-overlap {
    margin: -25px 15px 0;
  }
  .contact-overlap article {
    padding: 25px;
  }
  .contact-main {
    gap: 35px;
  }
  .enquiry-copy h2,.map-copy h2 {
    font-size: 30px;
  }
  .contact-form {
    padding: 25px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form>small {
    display: block;
    margin: 12px 0 0;
  }
  .map-copy {
    padding: 55px 24px;
  }
  .contact-strip {
    padding: 30px 24px;
  }
  .contact-strip div {
    display: block;
  }
  .contact-strip a {
    display: block;
    margin: 8px 0;
  }
}
.profile-btn,.gold-btn {
  color: var(--deep);
}
.hero-shade {
  background: linear-gradient(90deg,rgba(7,87,79,.88) 0%,rgba(7,87,79,.52) 42%,rgba(7,87,79,.06) 76%),linear-gradient(0deg,rgba(7,87,79,.58),transparent 50%);
}
.stats {
  background: rgba(7,87,79,.9);
}
.gallery {
  background: #f4f7f6;
}
.cta {
  background: linear-gradient(90deg,rgba(7,87,79,.94),rgba(7,87,79,.68)),url('/images/hero-road.jpg') center/cover;
}
.copyright {
  background: #05413c;
  color: #9bc2bb;
}
.chart i {
  background: linear-gradient(#ffad61,#ff8a24);
}
.projects-hero>div {
  background: linear-gradient(90deg,rgba(7,87,79,.92),rgba(7,87,79,.54) 52%,rgba(7,87,79,.1));
}
.project-list,.contact-form {
  background: #f1f6f4;
}
.project-feature {
  box-shadow: 0 7px 28px rgba(6,63,59,.08);
}
.project-feature:hover {
  box-shadow: 0 13px 32px rgba(6,63,59,.16);
}
.contact-hero>div {
  background: linear-gradient(90deg,rgba(7,87,79,.92),rgba(7,87,79,.58) 55%,rgba(7,87,79,.11));
}
.contact-overlap {
  box-shadow: 0 15px 45px rgba(6,63,59,.16);
}
.contact-overlap {
  grid-template-columns: repeat(2,1fr);
}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(245,130,32,.14);
}
.brand-mark {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 10px;
  clip-path: none;
  background: #fff url('/images/sailaja-logo.jpg') center/contain no-repeat;
  color: transparent;
  font-size: 0;
  box-shadow: none;
  overflow: hidden;
}
.site-header {
  background: linear-gradient(102deg,#fff 0 106px,#e7f4f1 118px,#16766d 188px,#0b655d 42%,#064d48 100%);
  box-shadow: 0 4px 18px rgba(5,65,60,.16);
}
body {
  font-family: var(--font-geist-sans),"Segoe UI",Arial,sans-serif;
  font-feature-settings: "kern" 1,"liga" 1;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,.brand strong {
  font-family: var(--font-geist-sans),"Segoe UI",Arial,sans-serif;
  font-weight: 800;
}
.site-header .brand {
  white-space: nowrap;
}
.site-header .brand>span:last-child {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}
.site-header .brand strong,.site-header .brand small {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-geist-sans),"Segoe UI",Arial,sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 1;
}
.site-header nav,.profile-btn,.gold-btn,.outline-btn {
  font-family: inherit;
  letter-spacing: .72px;
}
.site-header nav {
  gap: 17px;
}
.group-concern {
  background: linear-gradient(120deg,var(--deep),#0c7368);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.group-concern>div {
  max-width: 760px;
}
.group-concern h2 {
  font-size: 38px;
  text-transform: uppercase;
  margin: 8px 0 14px;
}
.group-concern p:last-child {
  color: #c9e1dc;
  line-height: 1.75;
  margin: 0;
}
.group-concern .outline-btn {
  flex: 0 0 auto;
  border-color: rgba(255,255,255,.65);
}
@media (max-width:600px) {
  .site-header .brand {
    gap: 8px;
  }
  .site-header .brand-mark {
    width: 46px;
    height: 46px;
  }
  .site-header .brand>span:last-child {
    gap: 5px;
  }
  .site-header .brand strong,.site-header .brand small {
    font-size: 15px;
    letter-spacing: .75px;
  }
}
@media (max-width:760px) {
  .group-concern {
    display: block;
  }
  .group-concern h2 {
    font-size: 30px;
  }
  .group-concern .outline-btn {
    display: inline-block;
    margin-top: 24px;
  }
}
.project-img.hotel-project-img img {
  object-fit: contain !important;
  object-position: center !important;
}
.hotel-visual.hotel-photo-frame>img.hotel-full-photo {
  object-fit: contain !important;
  object-position: center !important;
}
.group-page {
  background: #f6faf8;
}
.group-page-nav {
  position: relative;
  z-index: 20;
  background: rgba(4,63,58,.98);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.group-page-nav .profile-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.group-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 95px 7vw 120px;
  color: #fff;
  background: radial-gradient(circle at 78% 30%,rgba(49,203,181,.24),transparent 27%),linear-gradient(128deg,#043f3a 0%,#07574f 47%,#0c766c 100%);
}
.group-hero:after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -250px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: linear-gradient(150deg,rgba(255,138,36,.28),rgba(255,255,255,.02));
  filter: blur(2px);
}
.group-hero article {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.group-hero h1 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin: 14px 0 22px;
}
.group-hero h1 em {
  font-style: normal;
  color: #ffad63;
}
.group-hero article>p:last-child {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.75;
  color: #d1e6e2;
}
.group-hero-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}
.group-hero-orbit-one {
  width: 490px;
  height: 490px;
  right: 4vw;
  top: 48px;
}
.group-hero-orbit-two {
  width: 330px;
  height: 330px;
  right: 9vw;
  top: 128px;
}
.group-scroll {
  position: absolute;
  z-index: 3;
  left: 7vw;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.4px;
  color: #c7dfda;
}
.group-scroll span {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.group-intro {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: end;
  background: #fff;
}
.group-intro h2 {
  margin: 8px 0 0;
  font-size: 42px;
  text-transform: uppercase;
}
.group-intro>p {
  margin: 0;
  max-width: 740px;
  color: #5b6c68;
  line-height: 1.8;
  font-size: 15px;
}
.concern-list {
  padding: 0 6vw 95px;
  display: grid;
  gap: 38px;
}
.concern-card {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 530px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(5,72,66,.11);
  overflow: hidden;
}
.concern-card:nth-child(even) {
  grid-template-columns: 44% 56%;
}
.concern-card:nth-child(even) .hotel-visual {
  order: 2;
}
.concern-copy {
  position: relative;
  padding: 66px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.concern-index {
  position: absolute;
  right: 34px;
  top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9aa8a5;
}
.concern-index span {
  font-size: 13px;
  font-weight: 900;
  color: var(--gold);
}
.concern-index small {
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 1px;
}
.concern-copy h2 {
  max-width: 530px;
  margin: 10px 0 18px;
  font-size: 35px;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--deep);
}
.concern-copy>p:not(.section-kicker) {
  max-width: 610px;
  color: #63716e;
  line-height: 1.78;
  font-size: 13px;
}
.concern-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 27px;
}
.concern-tags span {
  padding: 8px 11px;
  background: #edf6f3;
  color: #27645e;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .45px;
}
.concern-btn {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--deep);
  color: #fff;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .65px;
  transition: transform .25s,background .25s;
}
.concern-btn:hover {
  background: var(--gold);
  color: var(--deep);
  transform: translateY(-2px);
}
.concern-btn span {
  font-size: 16px;
}
.school-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 50px;
  background: linear-gradient(145deg,#064f48,#159185);
  color: #fff;
}
.school-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(120deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 1px,transparent 18px);
}
.school-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
}
.school-ring-one {
  width: 440px;
  height: 440px;
}
.school-ring-two {
  width: 310px;
  height: 310px;
}
.school-monogram {
  position: relative;
  z-index: 2;
  width: min(390px,85%);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  box-shadow: 0 0 0 17px rgba(255,255,255,.035),0 0 0 34px rgba(255,255,255,.025);
}
.school-monogram:before {
  content: "";
  width: 58px;
  height: 4px;
  border-radius: 3px;
  background: var(--gold);
  margin-bottom: 18px;
}
.school-monogram small {
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 2px;
  color: #d5eae6;
}
.school-monogram strong {
  display: block;
  margin: 8px 0 5px;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -3px;
}
.school-monogram span {
  font-size: 10px;
  letter-spacing: 1.2px;
  color: #c9e0dc;
}
.school-video-visual {
  padding: 0;
  background: #063f3b;
}
.school-video-visual:before {
  display: none;
}
.school-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.school-video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(4,63,58,.06),rgba(4,63,58,.16));
  pointer-events: none;
}
.hotel-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: #dce7e5;
}
.hotel-visual:before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -24px;
  background: url('/images/project-hotel-new.jpg') center/cover no-repeat;
  filter: blur(18px);
  opacity: .28;
  transform: scale(1.08);
}
.hotel-visual>img.hotel-full-photo {
  z-index: 1;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}
.hotel-visual-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg,rgba(7,34,51,.02),rgba(7,34,51,.1));
}
.group-closing {
  padding: 95px 7vw;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(4,51,48,.9),rgba(4,51,48,.94)),url('/images/hero-road.jpg') center/cover;
}
.group-closing h2 {
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 12px auto 28px;
}
.group-closing .gold-btn {
  display: inline-block;
}
.group-footer {
  border-top: 1px solid rgba(255,255,255,.1);
}
.hotel-coming-soon {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: #081829;
}
.hotel-coming-bg {
  object-fit: cover;
  object-position: center;
}
.hotel-coming-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(4,19,32,.93) 0%,rgba(4,19,32,.67) 42%,rgba(4,19,32,.2) 74%),linear-gradient(0deg,rgba(4,19,32,.72),transparent 42%);
}
.hotel-coming-soon header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 28px 4vw;
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 1.2px;
}
.hotel-coming-soon section {
  position: relative;
  z-index: 2;
  margin: auto 7vw;
  max-width: 620px;
  padding: 42px 0;
}
.hotel-coming-logo {
  position: relative;
  width: 285px;
  height: 118px;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  overflow: hidden;
}
.hotel-coming-logo img {
  object-fit: contain;
  padding: 10px;
}
.hotel-coming-soon section>p {
  text-transform: uppercase;
  color: #e6c79c;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 2.5px;
}
.hotel-coming-soon h1 {
  margin: 10px 0 13px;
  text-transform: uppercase;
  font-size: 68px;
  line-height: 1;
  letter-spacing: -2px;
}
.hotel-coming-soon section>span {
  display: block;
  max-width: 470px;
  color: #dce2e7;
  line-height: 1.7;
}
.hotel-coming-soon section>a {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.55);
  text-transform: uppercase;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .8px;
}
.hotel-coming-soon footer {
  position: relative;
  z-index: 2;
  display: block;
  padding: 24px 4vw;
  background: transparent;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}
@media (max-width:950px) {
  .group-hero h1 {
    font-size: 52px;
  }
  .group-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .concern-card,.concern-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .concern-card:nth-child(even) .hotel-visual {
    order: 0;
  }
  .school-visual,.hotel-visual {
    min-height: 450px;
  }
  .concern-copy {
    padding: 55px 45px;
  }
  .group-page-nav .profile-btn {
    display: none;
  }
}
@media (max-width:620px) {
  .group-page-nav {
    height: 68px;
  }
  .group-hero {
    min-height: 600px;
    padding: 80px 24px 105px;
  }
  .group-hero h1 {
    font-size: 39px;
    letter-spacing: -1px;
  }
  .group-hero article>p:last-child {
    font-size: 14px;
  }
  .group-scroll {
    left: 24px;
    bottom: 35px;
  }
  .group-intro {
    padding: 58px 24px;
  }
  .group-intro h2 {
    font-size: 32px;
  }
  .concern-list {
    padding: 0 16px 65px;
    gap: 24px;
  }
  .school-visual,.hotel-visual {
    min-height: 350px;
  }
  .school-monogram {
    width: 270px;
  }
  .school-monogram strong {
    font-size: 52px;
  }
  .school-ring-one {
    width: 320px;
    height: 320px;
  }
  .school-ring-two {
    width: 230px;
    height: 230px;
  }
  .concern-copy {
    padding: 50px 25px 35px;
  }
  .concern-copy h2 {
    font-size: 27px;
  }
  .concern-index {
    right: 24px;
    top: 22px;
  }
  .hotel-logo-panel {
    left: 18px;
    bottom: 18px;
    width: 190px;
    height: 86px;
  }
  .group-closing {
    padding: 70px 24px;
  }
  .group-closing h2 {
    font-size: 29px;
  }
  .hotel-coming-soon header {
    padding: 22px 18px;
  }
  .hotel-coming-soon section {
    margin: auto 24px;
  }
  .hotel-coming-logo {
    width: 230px;
    height: 96px;
  }
  .hotel-coming-soon h1 {
    font-size: 48px;
  }
  .hotel-coming-soon footer {
    padding: 20px 18px;
  }
}
