@font-face {
  font-family: "Monsterrat Reg";
  src: url(../fonts/Montserrat/Montserrat-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kanit Regular";
  src: url(../fonts/Kanit/Kanit-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kanit SB";
  src: url(../fonts/Kanit/Kanit-SemiBold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #3558a9;
  --blue-dark: #263c7c;
  --blue-soft: #e8eefb;
  --red: #c4122f;
  --green: #34bd82;
  --green-soft: #d7f3df;
  --ink: #292737;
  --muted: #72717b;
  --line: #d7dbe6;
  --paper: #ffffff;
  --wash: #f4f5f8;
  --body-font: "Monsterrat Reg", Montserrat, Arial, sans-serif;
  --heading-font: "Kanit SB", "Kanit Regular", Arial, sans-serif;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(41, 39, 55, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 7px;
  row-gap: 0;
  align-items: baseline;
  min-width: 240px;
  letter-spacing: 0;
}

.brand-name,
.brand-mark {
  font-family: var(--heading-font);
  text-transform: uppercase;
  line-height: 1;
}

.brand-name {
  color: var(--red);
  font-size: 1.28rem;
}

.brand-mark {
  color: var(--ink);
  font-size: 1.03rem;
}

.brand-place {
  grid-column: 1 / -1;
  color: #a2a3aa;
  font-family: var(--heading-font);
  font-size: 0.72rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555460;
  font-family: var(--heading-font);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.nav a {
  border-bottom: 2px solid transparent;
  padding: 9px 8px 7px;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(135deg, #1f3171 0%, #3558a9 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: 0.92;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 52, 112, 0.95) 0%, rgba(53, 88, 169, 0.82) 45%, rgba(53, 88, 169, 0.38) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(37, 52, 112, 0.35));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(960px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: 76px 0 92px;
  color: #fff;
}

.kicker {
  width: fit-content;
  margin: 0 0 28px;
  padding-left: 26px;
  border-left: 3px solid rgba(255, 255, 255, 0.7);
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 5rem;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 36px;
  padding: 9px 20px 9px 12px;
  background: #2a2637;
  color: #fff;
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.location-pill img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.location-pill span {
  font-size: 0.96rem;
  letter-spacing: 0.22em;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: -68px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.quick-facts div {
  min-height: 136px;
  padding: 26px 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(38, 60, 124, 0.14);
}

.quick-facts strong {
  display: block;
  color: var(--blue);
  font-family: var(--heading-font);
  font-size: 1.7rem;
  line-height: 1.05;
}

.quick-facts span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 700px;
}

.section-line {
  display: block;
  width: 74px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--blue);
}

.section-line.green {
  background: var(--green);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: var(--heading-font);
  font-size: 1.08rem;
  text-transform: uppercase;
}

h2,
h3 {
  margin: 0;
  font-family: var(--heading-font);
  line-height: 1.08;
}

h2 {
  color: var(--blue);
  font-size: 3rem;
}

h3 {
  color: var(--ink);
  font-size: 1.35rem;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.location-copy {
  display: grid;
  gap: 34px;
}

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

.place-list div {
  border-left: 3px solid var(--line);
  padding-left: 16px;
}

.place-list dt {
  color: #b5b5bd;
  font-family: var(--heading-font);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.place-list dd {
  margin: 3px 0 0;
  font-size: 1.45rem;
}

.address-line {
  width: 100%;
  margin: -12px 0 0;
  padding: 10px 14px;
  border-left: 3px solid var(--blue);
  background: var(--blue-soft);
  color: #4a4c58;
  overflow-wrap: break-word;
}

.address-line strong {
  color: var(--blue-dark);
  font-family: var(--heading-font);
}

.city-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: center;
}

.city-note img {
  width: 180px;
  justify-self: start;
}

.bullet-list,
.spec-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--blue);
}

.map-panel {
  margin: 0;
  min-height: 480px;
  overflow: hidden;
  background: var(--wash);
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.nearby {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: end;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.nearby p:last-child {
  margin: 0;
  color: #44434e;
  font-size: 1.04rem;
}

.nearby img {
  width: 100%;
  max-width: 760px;
  justify-self: end;
  object-fit: contain;
}

.partners-section {
  width: min(1120px, calc(100% - 40px));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}

.partner-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-height: 164px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #fff;
}

.partner-logo {
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.partner-card h3 {
  font-size: 1.24rem;
}

.partner-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.partner-card a:hover,
.partner-card a:focus-visible {
  color: var(--blue-dark);
  text-decoration: underline;
}

.proximity-map {
  margin: 0;
  overflow: hidden;
  background: var(--wash);
}

.proximity-map img {
  width: 100%;
  object-fit: cover;
}

.access-panel {
  display: grid;
  grid-template-columns: 1.05fr 1.7fr 1.45fr 1.1fr;
  gap: 14px;
  margin-top: 22px;
}

.access-panel section {
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.access-panel h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.02rem;
}

.access-panel p {
  margin: 7px 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.35;
}

.access-panel strong {
  color: var(--ink);
  font-family: var(--heading-font);
}

.access-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.access-tags span {
  display: block;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.2;
}

.development-section {
  border-top: 1px solid var(--line);
}

.development-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 46px;
  align-items: center;
}

.spec-block {
  padding: 34px;
  background: var(--wash);
  border-left: 5px solid var(--blue);
}

.spec-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.spec-pair strong {
  display: block;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 1.9rem;
  line-height: 1;
}

.spec-pair span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.spec-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.spec-icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.spec-list strong,
.spec-list span {
  display: block;
}

.spec-list strong {
  font-family: var(--heading-font);
  font-size: 1.18rem;
}

.spec-list span {
  color: var(--muted);
}

.feature-image,
.visual-grid figure,
.wide-visual {
  margin: 0;
  overflow: hidden;
  /*background: var(--wash);*/
}

.feature-image img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-grid img,
.wide-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.feature-image {
  min-height: 360px;
}

.feature-image img {
  min-height: 360px;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 18px;
}

.visual-grid figure {
  min-height: 0;
}

.visual-grid.two-col {
  grid-template-columns: 1fr 0.75fr;
}

.wide-visual {
  min-height: 0;
}

.wide-visual img {
  min-height: 0;
}

.limitless-section {
  padding-top: 0;
}

.energy-section {
  background: linear-gradient(180deg, #fff 0%, #fff 28%, var(--green-soft) 28%, var(--green-soft) 100%);
}

.energy-visual {
  max-height: 580px;
  overflow: hidden;
}

.energy-visual img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.energy-content {
  padding-top: 78px;
}

.energy-content .eyebrow,
.energy-content h2 {
  color: var(--green);
}

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

.energy-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.energy-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.energy-item h3 {
  font-size: 1.18rem;
}

.energy-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.possibilities-section {
  padding-bottom: 96px;
}

.possibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.possibility-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(41, 39, 55, 0.11);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.possibility-card:hover,
.possibility-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(41, 39, 55, 0.16);
}

.possibility-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.possibility-card div {
  padding: 22px 24px 26px;
  border-top: 5px solid var(--red);
}

.possibility-card.green div {
  border-color: var(--green);
}

.possibility-card h3 {
  font-size: 1.35rem;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.possibility-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.possibility-card strong {
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 1.34rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
  font-family: var(--heading-font);
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .quick-facts,
  .location-layout,
  .nearby,
  .development-layout,
  .energy-grid,
  .possibility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-layout,
  .nearby,
  .development-layout {
    gap: 30px;
  }

  .map-panel,
  .map-panel img {
    min-height: 390px;
  }

  .partner-grid,
  .access-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .energy-item {
    grid-template-columns: 70px 1fr;
  }
}

@media (max-width: 720px) {
  .energy-section{
    background: linear-gradient(180deg, #fff 0%, #fff 28%, var(--green-soft) 32%, var(--green-soft) 100%)
  }
  .energy-visual img {
    max-height: 180px;
  }
  .site-header {
    min-height: 0;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .brand-mark {
    font-size: 0.9rem;
  }

  .brand-place {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .nav {
    gap: 2px;
    font-size: 0.74rem;
  }

  .hero,
  .hero-content {
    min-height: 570px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(37, 52, 112, 0.92) 0%, rgba(53, 88, 169, 0.78) 68%, rgba(37, 52, 112, 0.64) 100%);
  }

  .hero-content {
    width: min(100% - 36px, 560px);
    padding: 54px 0 76px;
  }

  .kicker {
    padding-left: 18px;
    font-size: 1.02rem;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .location-pill {
    align-items: center;
    gap: 10px;
    padding-right: 14px;
  }

  .location-pill img {
    width: 34px;
    height: 34px;
  }

  .location-pill span {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .quick-facts,
  .location-layout,
  .place-list,
  .city-note,
  .nearby,
  .partner-grid,
  .access-panel,
  .development-layout,
  .spec-pair,
  .visual-grid,
  .visual-grid.two-col,
  .energy-grid,
  .energy-item,
  .possibility-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    margin-top: 0;
    padding: 0;
  }

  .quick-facts div {
    min-height: 112px;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
  }

  .section {
    width: min(100% - 36px, 620px);
    padding: 78px 0;
  }

  h2 {
    font-size: 2.3rem;
  }

  .place-list {
    gap: 14px;
  }

  .city-note img {
    width: 170px;
  }

  .map-panel,
  .map-panel img {
    min-height: 320px;
  }

  .nearby {
    margin-top: 42px;
  }

  .spec-block {
    padding: 26px 22px;
  }

  .spec-pair strong {
    font-size: 1.55rem;
  }

  .feature-image,
  .feature-image img,
  .visual-grid figure {
    min-height: 250px;
  }

  .wide-visual,
  .wide-visual img {
    min-height: 0;
  }

  .energy-content {
    padding-top: 64px;
  }

  .energy-item {
    min-height: 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 20px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.62rem;
  }

  .location-pill span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  h2 {
    font-size: 2rem;
  }

  .quick-facts strong {
    font-size: 1.45rem;
  }
}
