:root {
  --navy: #061d3b;
  --navy-2: #09284e;
  --navy-3: #0f3562;
  --gold: #e0b45a;
  --gold-soft: #f3d99c;
  --cream: #fbfaf7;
  --cream-2: #f2eee7;
  --ink: #061936;
  --muted: #56606d;
  --line: rgba(6, 29, 59, 0.14);
  --shadow: 0 20px 44px rgba(6, 29, 59, 0.12);
  --display: "Playfair Display", Georgia, serif;
  --script: "Playwrite AU QLD", "Segoe Script", cursive;
  --brand: "Cinzel", Georgia, serif;
  --body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8px 8px, rgba(6, 29, 59, 0.035) 1.3px, transparent 1.4px) 0 0 / 18px 18px,
    linear-gradient(180deg, rgba(224, 180, 90, 0.08), transparent 380px);
}

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

img,
svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: white;
  background: linear-gradient(90deg, var(--navy), #03142b);
  border-bottom: 1px solid rgba(224, 180, 90, 0.46);
  box-shadow: 0 12px 34px rgba(6, 29, 59, 0.1);
}

.site-header[data-scrolled] {
  box-shadow: 0 16px 36px rgba(6, 29, 59, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1210px, calc(100% - 44px));
  min-height: 86px;
  margin: 0 auto;
  padding: 13px 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-emblem {
  width: 68px;
  height: 58px;
  color: var(--gold);
  flex: 0 0 auto;
}

.brand-emblem svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text strong,
.footer-brand strong {
  display: block;
  color: var(--gold);
  font-family: var(--brand);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text small,
.footer-brand small {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.2vw, 42px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.call-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.call-button {
  min-width: 134px;
  padding: 0 20px;
  color: var(--ink);
  background: linear-gradient(180deg, #f0c978, var(--gold));
}

.call-button svg,
.primary-action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 88px);
  background:
    linear-gradient(112deg, var(--cream) 0 62%, transparent 62.2%),
    linear-gradient(135deg, transparent 0 54%, var(--navy) 54.2% 100%);
  border-bottom: 1px solid rgba(6, 29, 59, 0.08);
}

.hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -28vw;
  width: 65vw;
  height: 65vw;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: -8px -8px 0 var(--gold);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 46%;
  height: 52%;
  opacity: 0.17;
  background-image: radial-gradient(circle, var(--gold-soft) 1.7px, transparent 1.8px);
  background-size: 14px 14px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='170' viewBox='0 0 170 170'%3E%3Cg fill='none' stroke='%23061d3b' stroke-width='2'%3E%3Cpath d='M28 74c20 2 30 9 38 26 8-17 18-24 38-26v62c-20 2-30 8-38 23-8-15-18-21-38-23V74Z'/%3E%3Cpath d='M66 100v59'/%3E%3C/g%3E%3C/svg%3E") center / 300px 300px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  width: min(1210px, calc(100% - 44px));
  min-height: max(720px, calc(100svh - 88px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 88px) 0 clamp(62px, 8vw, 86px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--brand);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--gold);
}

h1 {
  max-width: 620px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 800;
  line-height: 0.98;
}

.subline {
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 23px;
  font-style: italic;
}

.subline::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 18px;
  background: var(--gold);
}

.hero-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
}

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-chip,
.card-icon,
.footer-icon,
.soft-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon-chip,
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--gold);
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(6, 29, 59, 0.2), inset 0 0 0 2px rgba(224, 180, 90, 0.14);
}

.icon-chip svg,
.card-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}

.primary-action {
  min-width: 185px;
  padding: 0 26px;
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 20px rgba(6, 29, 59, 0.22);
}

.secondary-action {
  min-width: 205px;
  padding: 0 24px;
  color: var(--navy);
  background: white;
  border: 0;
  box-shadow: 0 10px 20px rgba(6, 29, 59, 0.1);
}

.facebook-glyph {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: white;
  background: #244f9e;
}

.facebook-glyph svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.portrait-shell {
  position: relative;
  justify-self: end;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1.06;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(6, 29, 59, 0.24);
}

.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.portrait-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.info-grid,
.lower-grid,
.quote-banner {
  width: min(1210px, calc(100% - 44px));
  margin-inline: auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 54px 0 38px;
}

.info-card,
.wide-card,
.focus-card {
  position: relative;
  overflow: hidden;
  min-height: 348px;
  padding: 54px 26px 36px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(6, 29, 59, 0.1);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 74px;
  height: 74px;
  margin: -22px auto 24px;
  border: 2px solid var(--gold);
}

.card-icon.small {
  width: 76px;
  height: 76px;
  margin: 0;
}

.info-card h2,
.wide-card h2,
.focus-card h2 {
  color: var(--ink);
  font-family: var(--brand);
  font-size: 25px;
  line-height: 1.2;
  text-transform: uppercase;
}

.info-card h2::after,
.focus-card h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 18px auto 24px;
  background: var(--gold);
}

.center-list,
.academic-list,
.mode-list,
.location-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.center-list {
  display: grid;
  gap: 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
}

.center-list li + li {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.academic-list {
  display: grid;
  gap: 12px;
  text-align: left;
}

.academic-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(6, 29, 59, 0.1);
}

.academic-list strong {
  display: inline-flex;
  justify-content: center;
  padding: 5px 8px;
  color: var(--navy);
  background: rgba(224, 180, 90, 0.18);
  border: 1px solid rgba(224, 180, 90, 0.42);
  border-radius: 999px;
  font-family: var(--brand);
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.academic-list span {
  color: var(--ink);
  font-weight: 600;
}

.mode-list {
  display: grid;
  gap: 24px;
  text-align: left;
}

.mode-list li,
.focus-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mode-list li + li,
.focus-list li + li {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.soft-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cream-2);
  font-size: 25px;
}

.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.74fr);
  gap: 30px;
  padding: 0 0 30px;
  scroll-margin-top: 100px;
}

.visual-studies {
  width: min(1210px, calc(100% - 44px));
  margin: 0 auto;
  padding: 24px 0 44px;
  scroll-margin-top: 100px;
}

.visual-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.56fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
  margin-bottom: 28px;
}

.visual-feature {
  grid-row: span 3;
  align-self: stretch;
  min-height: 245px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.visual-feature img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  object-position: center;
}

.visual-heading h2 {
  font-family: var(--display);
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.02;
}

.visual-heading p:last-child {
  color: var(--muted);
}

.study-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
  grid-template-rows: repeat(2, 245px);
  gap: 22px;
  perspective: 1200px;
}

.study-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.study-card.tall {
  grid-row: span 2;
}

.study-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 26%, rgba(6, 29, 59, 0.82)),
    linear-gradient(90deg, rgba(6, 29, 59, 0.18), transparent 52%);
}

.study-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 520ms ease;
}

.study-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: white;
}

.study-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.study-card h3 {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.04;
}

.study-card:hover {
  box-shadow: 0 28px 60px rgba(6, 29, 59, 0.22);
}

.study-card:hover img {
  transform: scale(1.1);
}

.wide-card,
.focus-card {
  min-height: 390px;
  padding: 36px;
  text-align: left;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 22px;
}

.section-title h2 {
  max-width: 380px;
}

.section-title p {
  margin-top: 8px;
  color: var(--muted);
}

.locations-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(220px, 0.72fr);
  gap: 28px;
  align-items: center;
  margin-top: 28px;
}

.location-list {
  display: grid;
  gap: 4px;
}

.location-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px dashed rgba(6, 29, 59, 0.18);
  transition: color 180ms ease, transform 180ms ease;
}

.location-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--gold);
}

.location-list li.is-active {
  color: var(--navy);
  transform: translateX(5px);
}

.location-list span {
  font-weight: 700;
}

.sri-lanka-map {
  position: relative;
  width: min(390px, 100%);
  min-height: 430px;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(6, 29, 59, 0.1));
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  outline: none;
  transform: translate(-50%, -50%);
}

.map-pin span {
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--navy);
  filter: drop-shadow(0 5px 8px rgba(6, 29, 59, 0.25));
  transition: transform 180ms ease, background 180ms ease;
}

.map-pin strong {
  opacity: 0;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(6, 29, 59, 0.12);
  font-size: 13px;
  line-height: 1.2;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.map-pin:hover span,
.map-pin:focus-visible span,
.map-pin.is-active span {
  background: var(--gold);
  transform: scale(1.35);
}

.map-pin:hover strong,
.map-pin:focus-visible strong,
.map-pin.is-active strong {
  opacity: 1;
}

.pin-kirindiwela {
  left: 39.5%;
  top: 64.5%;
}

.pin-urapola {
  left: 42%;
  top: 61.5%;
}

.pin-palmada {
  left: 39%;
  top: 56%;
}

.pin-gampaha {
  left: 32%;
  top: 63%;
}

.focus-card {
  display: grid;
  align-content: center;
  text-align: center;
}

.focus-list {
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.focus-list li {
  align-items: flex-start;
}

.focus-list .soft-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  background: var(--navy);
  font-family: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.focus-list strong,
.focus-list small {
  display: block;
}

.focus-list strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
}

.focus-list small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.quote-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: min(1210px, calc(100% - 44px));
  min-height: 132px;
  margin: 0 auto 26px;
  padding: 26px 44px 26px 230px;
  color: white;
  background: linear-gradient(90deg, var(--navy), #04142c);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.quote-icon {
  display: grid;
  position: absolute;
  left: 40px;
  top: 50%;
  width: 220px;
  height: 180px;
  place-items: center;
  transform: translate(-42%, -50%) rotate(-7deg);
  z-index: 2;
  pointer-events: auto;
}

.quote-icon img {
  width: 220px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.32));
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, filter 220ms ease;
  will-change: transform;
}

.quote-icon:hover img {
  filter: drop-shadow(0 28px 26px rgba(0, 0, 0, 0.38));
  transform: translate3d(12px, -8px, 0) rotate(6deg) scale(1.08);
}

.quote-banner p {
  padding-left: 38px;
  border-left: 1px solid var(--gold-soft);
  font-family: var(--script);
  font-size: clamp(21px, 2.4vw, 31px);
  font-weight: 400;
  line-height: 1.35;
}

.quote-banner strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.site-footer {
  padding: 28px 0 22px;
  color: white;
  background: linear-gradient(90deg, var(--navy), #03142b);
}

.footer-inner {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  width: min(1210px, calc(100% - 44px));
  margin: 0 auto;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 54px;
}

.footer-icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
}

.footer-brand {
  justify-self: end;
}

.small-emblem {
  width: 62px;
  height: 52px;
}

.copyright {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  font-size: 13px;
}

.plixoo {
  background: #03142b;
  border-top: 1px solid rgba(224, 180, 90, 0.28);
  padding: 16px 0;
}

.plixoo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  width: min(1210px, calc(100% - 44px));
  margin: 0 auto;
  text-align: center;
}

.plixoo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.4;
}

.plixoo strong {
  color: var(--gold);
  font-weight: 800;
}

.plixoo-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.plixoo-btn svg {
  flex: none;
}

.plixoo-btn:hover,
.plixoo-btn:focus-visible {
  color: var(--navy);
  background: var(--gold);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 680ms ease, transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-card:hover,
.wide-card:hover,
.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(6, 29, 59, 0.16);
}

.info-card,
.wide-card,
.focus-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.locations-card:hover {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
  }

  .hero-content,
  .info-grid,
  .lower-grid,
  .locations-layout,
  .visual-heading,
  .study-gallery,
  .quote-banner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .study-gallery {
    grid-template-rows: none;
  }

  .visual-feature {
    grid-row: auto;
  }

  .study-card,
  .study-card.tall {
    grid-row: auto;
    min-height: 310px;
  }

  .portrait-shell {
    justify-self: center;
  }

  .quote-banner {
    text-align: center;
  }

  .quote-icon,
  .footer-brand {
    justify-self: center;
  }

  .quote-banner p {
    padding-left: 0;
    border-left: 0;
  }

  .footer-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 680px) {
  .header-inner {
    width: min(100% - 28px, 1120px);
    min-height: 76px;
    gap: 14px;
    padding-block: 10px;
  }

  .brand-emblem {
    width: 52px;
    height: 48px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text small {
    font-size: 10px;
  }

  .call-button {
    min-width: 46px;
    width: 46px;
    padding: 0;
    font-size: 0;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 22px;
    padding-bottom: 2px;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, var(--cream) 0 70%, var(--navy) 70% 100%);
  }

  .hero::before {
    right: -58vw;
    bottom: 14vw;
    width: 120vw;
    height: 120vw;
  }

  .hero-content {
    width: min(100% - 30px, 1120px);
    min-height: auto;
    padding-block: 42px 48px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .subline,
  .hero-list {
    font-size: 18px;
  }

  .hero-list-item {
    align-items: flex-start;
  }

  .hero-actions {
    gap: 12px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .info-grid,
  .visual-studies,
  .lower-grid,
  .quote-banner {
    width: min(100% - 28px, 1120px);
  }

  .academic-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .academic-list strong {
    width: fit-content;
  }

  .info-card,
  .wide-card,
  .focus-card {
    padding: 46px 20px 30px;
  }

  .wide-card,
  .focus-card {
    padding-top: 30px;
  }

  .section-title {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .location-list li {
    font-size: 15px;
  }

  .sri-lanka-map {
    min-height: 250px;
  }

  .map-pin text {
    display: none;
  }

  .quote-banner {
    gap: 18px;
    padding: 26px 20px;
  }

  .footer-inner {
    width: min(100% - 28px, 1120px);
  }
}
