@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 {
  --red: #bd162b;
  --red-dark: #8d1020;
  --red-soft: #f9e6e8;
  --green: #00aa79;
  --green-soft: #d7f1dd;
  --ink: #2c2a3b;
  --muted: #74727c;
  --line: #d7d8de;
  --paper: #ffffff;
  --wash: #f3f4f7;
  --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(44, 42, 59, 0.12);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 7px;
  align-items: baseline;
  min-width: 250px;
}

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

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

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

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

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #55535e;
  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(--red);
  color: var(--red-dark);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--red);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(189, 22, 43, 0.96) 0%, rgba(189, 22, 43, 0.86) 54%, rgba(189, 22, 43, 0.56) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(141, 16, 32, 0.18));
}

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

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

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

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  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 {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: -68px auto 0;
  padding: 0 20px;
}

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

.quick-facts strong {
  display: block;
  color: var(--red);
  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: 780px;
  margin-bottom: 42px;
}

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

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

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

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

.eyebrow.green {
  color: var(--green);
}

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

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

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

.location-section .section-heading {
  max-width: 1080px;
}

.location-section h2 {
  font-size: 3.55rem;
}

.location-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  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;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

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

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

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

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

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

.map-panel,
.wide-visual,
.site-plan,
.development-layout figure,
.visual-grid figure,
.office-band figure,
.photo-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--wash);
}

.map-panel img,
.wide-visual img,
.site-plan img,
.development-layout img,
.visual-grid img,
.office-band figure img,
.photo-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nearby-panel {
  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-routes {
  display: grid;
  gap: 16px;
}

.nearby-routes p {
  margin: 0;
  color: #44424e;
  font-size: 1.06rem;
}

.nearby-routes span,
.nearby-routes strong {
  font-family: var(--heading-font);
}

.nearby-routes span {
  display: block;
  color: #aaaab2;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nearby-routes strong {
  color: var(--red);
  white-space: nowrap;
}

.nearby-panel img {
  width: 100%;
  max-width: 780px;
  justify-self: end;
}

.railway-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.railway-copy p {
  max-width: 450px;
  margin: 0;
  color: #3f3d49;
  font-size: 1.1rem;
}

.partner-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  background: #fff;
}

.partner-panel h3 {
  margin-bottom: 18px;
}

.partner-list {
  display: grid;
  gap: 12px;
}

.partner-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.partner-list strong {
  font-family: var(--heading-font);
}

.partner-list span {
  color: var(--red);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

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

.railway-section .wide-visual {
  grid-column: 1 / -1;
  margin-top: 12px;
}

.hall-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 18px;
  margin-bottom: 28px;
}

.hall-summary article,
.office-free {
  min-height: 138px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hall-summary article strong,
.office-free strong {
  display: block;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 1.85rem;
  line-height: 1.05;
}

.hall-summary article span,
.office-free span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.hall-summary .highlight,
.office-free {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}

.hall-summary img,
.office-free img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.hall-summary .highlight strong,
.office-free strong {
  color: var(--green);
}

.halls-overview {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: start;
}

.halls-facts {
  display: grid;
  gap: 18px;
}

.halls-overview .hall-summary {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 0;
}

.halls-overview .hall-summary article {
  min-height: 104px;
  padding: 20px;
}

.halls-overview .hall-summary article strong {
  font-size: 1.7rem;
}

.halls-overview .hall-summary .highlight {
  grid-template-columns: 64px 1fr;
}

.halls-overview .hall-summary img {
  width: 58px;
  height: 58px;
}

.site-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.site-plan img {
  width: auto;
  max-width: 100%;
  max-height: 500px;
}

.development-copy {
  padding: 24px;
  border-left: 5px solid var(--red);
  background: var(--wash);
}

.development-copy p {
  margin: 14px 0 0;
  color: #3f3d49;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.development-visuals {
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 24px;
}

.development-visuals figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 10px;
}

.development-visuals img {
  width: auto;
  max-width: 100%;
  max-height: 260px;
}

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

.office-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 30px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 40px;
}

.office-copy h2 {
  color: var(--red);
}

.office-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.office-free {
  position: absolute;
  right: 36px;
  bottom: 4px;
  width: min(510px, 54%);
  box-shadow: 0 18px 44px rgba(44, 42, 59, 0.13);
}

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

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

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

.energy-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.energy-grid img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.energy-grid p {
  margin: 0;
  color: #000;
}

.energy-grid strong {
  color: var(--green);
  font-family: var(--heading-font);
}

.services-section {
  padding-top: 92px;
}

.service-list {
  max-width: 940px;
  font-size: 1.08rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.photo-grid .wide {
  grid-column: 1 / -1;
}

.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: 630px;
  }

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

  .quick-facts,
  .location-layout,
  .nearby-panel,
  .railway-section,
  .halls-overview,
  .hall-summary,
  .office-band,
  .energy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-section h2 {
    font-size: 3rem;
  }

  .halls-overview {
    grid-template-columns: 1fr;
  }

  .site-plan img {
    width: 100%;
    max-height: none;
  }

  .development-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hall-summary .highlight {
    grid-column: 1 / -1;
  }

  .partner-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .office-free {
    position: static;
    width: 100%;
    grid-column: 1 / -1;
  }

  .energy-grid article:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .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-image {
    object-position: center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(189, 22, 43, 0.94) 0%, rgba(189, 22, 43, 0.78) 100%);
  }

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

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

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

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

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

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

  .location-pill span {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .quick-facts,
  .location-layout,
  .place-list,
  .city-note,
  .nearby-panel,
  .railway-section,
  .halls-overview,
  .hall-summary,
  .visual-grid,
  .office-band,
  .energy-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section,
  .office-band {
    width: min(100% - 36px, 620px);
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: 2.3rem;
  }

  .location-section h2 {
    font-size: 2.3rem;
  }

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

  .nearby-panel {
    margin-top: 42px;
  }

  .partner-panel,
  .development-copy {
    padding: 24px 20px;
  }

  .site-plan {
    padding: 10px;
  }

  .office-band {
    padding-top: 70px;
  }

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

  .energy-grid article:first-child {
    grid-column: auto;
  }

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

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

  h2 {
    font-size: 2rem;
  }

  .quick-facts strong,
  .hall-summary article strong,
  .office-free strong {
    font-size: 1.45rem;
  }
}
