:root {
  --green: #075b3b;
  --green-deep: #043d2a;
  --green-soft: #eaf4ee;
  --red: #d7382f;
  --gold: #f4c744;
  --cream: #fff9eb;
  --ink: #13251d;
  --muted: #607068;
  --line: #dfe7e2;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  color: inherit;
}
img {
  display: block;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 1000;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 8px 30px #0002;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(7, 91, 59, 0.1);
  backdrop-filter: blur(14px);
}
.admission-bar {
  background: var(--green-deep);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.admission-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admission-inner > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.admission-inner div {
  display: flex;
  gap: 12px;
  color: #d9ece2;
}
.admission-inner a:hover {
  color: var(--gold);
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(244, 199, 68, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 7px rgba(244, 199, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 199, 68, 0);
  }
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 62px;
  height: 52px;
  object-fit: contain;
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand strong {
  color: var(--red);
  font-size: 21px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.brand small {
  margin-top: 5px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 650;
}
.nav-links > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--red);
  left: 0;
  right: 100%;
  bottom: 3px;
  transition: right 0.25s;
}
.nav-links > a:hover::after {
  right: 0;
}
.nav-links > a.active:not(.nav-cta) {
  color: var(--red);
}
.nav-links > a.active:not(.nav-cta)::after {
  right: 0;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  padding: 12px 18px;
}
.nav-cta:hover {
  background: var(--red);
}
.nav-cta svg {
  width: 17px;
}
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--green);
}

.hero {
  min-height: 780px;
  height: 100svh;
  max-height: 920px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
  padding-top: 110px;
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 42%;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 61, 42, 0.9),
    rgba(4, 61, 42, 0.08) 35%,
    rgba(4, 61, 42, 0.12)
  );
}
.hero-photo img {
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--green-deep) 0%,
    rgba(4, 61, 42, 0.98) 31%,
    rgba(4, 61, 42, 0.38) 60%,
    rgba(4, 61, 42, 0.08) 100%
  );
}
.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(244, 199, 68, 0.2);
  border-radius: 50%;
  left: -180px;
  bottom: -180px;
  box-shadow:
    0 0 0 65px rgba(244, 199, 68, 0.035),
    0 0 0 130px rgba(244, 199, 68, 0.025);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow {
  color: #fff1aa;
}
.eyebrow span {
  width: 31px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  max-width: 760px;
  margin: 24px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.4vw, 96px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero-content > p {
  max-width: 620px;
  margin: 0;
  color: #e6f0eb;
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button svg {
  width: 18px;
}
.button-primary {
  background: var(--gold);
  color: var(--green-deep);
}
.button-primary:hover {
  background: #fff;
}
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.button-ghost:hover {
  background: #fff;
  color: var(--green);
}
.hero-trust {
  display: flex;
  margin-top: 54px;
}
.hero-trust div {
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}
.hero-trust div:first-child {
  padding-left: 0;
}
.hero-trust div:last-child {
  border: 0;
}
.hero-trust strong,
.hero-trust span {
  display: block;
}
.hero-trust strong {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}
.hero-trust span {
  margin-top: 3px;
  color: #b9cec4;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  right: 30px;
  bottom: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right bottom;
}
.scroll-cue i {
  display: block;
  width: 54px;
  height: 1px;
  background: #fff8;
}

.section {
  padding: 110px 0;
}
.intro {
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
}
.section-copy h2,
.section-head h2,
.experience h2,
.faculty-section h2,
.gallery-heading h2,
.faq-title h2,
.contact-copy h2 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.section-copy h2 span,
.experience h2 span,
.faculty-section h2 span {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}
.intro-text .lead {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  color: var(--green);
  font-size: 23px;
  line-height: 1.45;
}
.intro-text p:not(.lead) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.text-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
}
.text-link svg {
  width: 18px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.value-cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e6ddc8;
  background: #fffdf8;
}
.value-cards article {
  min-height: 255px;
  padding: 32px;
  border-right: 1px solid #e6ddc8;
  position: relative;
}
.value-cards article:last-child {
  border: 0;
}
.value-cards article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.value-cards h3 {
  margin: 65px 0 10px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}
.value-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.facilities-section {
  background: var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.facilities-section::before {
  content: "";
  position: absolute;
  inset: -300px auto auto 65%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid #ffffff12;
  box-shadow:
    0 0 0 90px #ffffff08,
    0 0 0 180px #ffffff05;
}
.section-head {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  align-items: end;
  gap: 100px;
}
.section-kicker.light {
  color: var(--gold);
}
.section-head h2 {
  font-size: clamp(43px, 5vw, 64px);
}
.section-head > p {
  margin: 0 0 7px;
  color: #bfd0c7;
  line-height: 1.8;
}
.facility-grid {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ffffff20;
  border-left: 1px solid #ffffff20;
}
.facility-grid article {
  position: relative;
  min-height: 270px;
  padding: 34px;
  border-right: 1px solid #ffffff20;
  border-bottom: 1px solid #ffffff20;
  transition:
    background 0.25s,
    transform 0.25s;
}
.facility-grid article:hover {
  z-index: 2;
  background: #0a6b47;
  transform: translateY(-4px);
}
.facility-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff0d;
  color: var(--gold);
}
.facility-icon svg {
  width: 24px;
}
.facility-grid h3 {
  margin: 38px 0 11px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
}
.facility-grid p {
  max-width: 290px;
  margin: 0;
  color: #bcd0c6;
  font-size: 14px;
  line-height: 1.7;
}
.facility-number {
  position: absolute;
  right: 24px;
  top: 23px;
  color: #ffffff25;
  font-family: Georgia, serif;
  font-size: 32px;
}

.experience {
  background: #fff;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 110px;
  align-items: center;
}
.experience-images {
  height: 610px;
  position: relative;
}
.image-main {
  position: absolute;
  inset: 0 50px 90px 0;
  overflow: hidden;
  border-radius: 2px;
}
.image-main img,
.image-small img {
  object-fit: cover;
}
.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 235px;
  height: 275px;
  border: 10px solid #fff;
  overflow: hidden;
  box-shadow: 0 15px 45px #16372724;
}
.experience-badge {
  position: absolute;
  width: 145px;
  height: 145px;
  left: -42px;
  bottom: 10px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
}
.experience-badge strong {
  font-family: Georgia, serif;
  font-size: 26px;
  font-style: italic;
}
.experience-badge span {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.experience-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.experience-copy ul {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}
.experience-copy li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.experience-copy li i {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}
.experience-copy li strong {
  color: var(--ink);
}

.faculty-section {
  background: #f2f6f3;
}
.dark-head .section-kicker {
  color: var(--red);
}
.dark-head > p {
  color: var(--muted);
}
.faculty-wrap {
  margin-top: 54px;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(26, 59, 42, 0.08);
}
table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fff;
}
th {
  background: var(--green);
  color: #fff;
  padding: 18px 22px;
  text-align: left;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
td {
  padding: 17px 22px;
  border-bottom: 1px solid var(--line);
  color: #4c5d54;
  font-size: 14px;
}
td:first-child {
  width: 70px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}
td:nth-child(2) {
  color: var(--ink);
  font-weight: 800;
}
tbody tr:hover {
  background: var(--cream);
}
tbody tr:last-child td {
  border: 0;
}

.gallery-section {
  background: #fff;
}
.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 52px;
}
.gallery-heading h2 {
  font-size: clamp(42px, 5vw, 64px);
}
.gallery-heading p {
  max-width: 390px;
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.75;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
  background: var(--green-soft);
}
.gallery-item img {
  object-fit: cover;
  transition: transform 0.6s;
}
.gallery-item:hover img {
  transform: scale(1.045);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #00170fb8);
}
.gallery-item > span {
  position: absolute;
  z-index: 2;
  left: 21px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Georgia, serif;
  font-size: 18px;
  text-align: left;
}
.gallery-item > span i {
  font-style: normal;
  font-family: sans-serif;
}
.gallery-1 {
  grid-row: span 2;
}
.gallery-4 {
  grid-row: span 2;
}
.gallery-6 {
  grid-column: span 2;
}

.admissions-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--red);
  color: #fff;
}
.admissions-photo {
  min-height: 850px;
  position: relative;
}
.admissions-photo img {
  object-fit: cover;
}
.admissions-panel {
  padding: 95px clamp(40px, 7vw, 110px);
}
.admissions-panel h2 {
  max-width: 620px;
  margin: 20px 0;
  font-family: Georgia, serif;
  font-size: clamp(45px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.admissions-panel > p {
  max-width: 600px;
  color: #ffe8e5;
  line-height: 1.75;
}
.admission-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.admission-steps > div {
  border-top: 1px solid #ffffff45;
  padding-top: 14px;
  display: flex;
  gap: 10px;
}
.admission-steps span {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
}
.admission-steps p {
  margin: 0;
  color: #ffdcd8;
  font-size: 12px;
  line-height: 1.45;
}
.admission-steps strong {
  display: block;
  color: #fff;
  font-size: 13px;
}
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.enquiry-form label > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.enquiry-form input,
.enquiry-form select {
  width: 100%;
  height: 50px;
  border: 1px solid #ffffff54;
  border-radius: 8px;
  background: #ffffff14;
  color: #fff;
  padding: 0 14px;
  outline: 0;
}
.enquiry-form input::placeholder {
  color: #ffd6d1;
}
.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px #f4c74422;
}
.enquiry-form select option {
  color: #222;
}
.form-button {
  grid-column: span 2;
  margin-top: 4px;
  background: var(--gold);
  color: var(--green-deep);
}
.form-button:hover {
  background: #fff;
}
.enquiry-form small {
  grid-column: span 2;
  color: #ffd6d1;
  font-size: 10px;
  line-height: 1.5;
}

.faq-section {
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 100px;
}
.faq-title {
  position: sticky;
  top: 130px;
  align-self: start;
}
.faq-title p {
  color: var(--muted);
  line-height: 1.7;
}
.faq-list details {
  border-top: 1px solid #d8cfbb;
}
.faq-list details:last-child {
  border-bottom: 1px solid #d8cfbb;
}
.faq-list summary {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, serif;
  font-size: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-family: sans-serif;
  color: var(--red);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: -8px 45px 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-section {
  padding: 100px 0;
  background: var(--green-deep);
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 100px;
}
.contact-copy h2 {
  font-size: clamp(44px, 5vw, 66px);
}
.contact-copy p {
  color: #bcd0c6;
  line-height: 1.7;
}
.contact-cards {
  border-top: 1px solid #ffffff20;
}
.contact-cards > a {
  min-height: 114px;
  display: grid;
  grid-template-columns: 50px 1fr 20px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ffffff20;
  transition:
    padding 0.2s,
    background 0.2s;
}
.contact-cards > a:hover {
  padding-inline: 15px;
  background: #ffffff08;
}
.contact-cards > a > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff0c;
  color: var(--gold);
}
.contact-cards svg {
  width: 22px;
}
.contact-cards small {
  display: block;
  color: #94b0a2;
  margin-bottom: 5px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-cards strong {
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}
.contact-cards b {
  color: var(--gold);
}

footer {
  background: #022d20;
  color: #fff;
}
.footer-main {
  padding: 65px 0 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 70px;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}
.footer-brand img {
  width: 79px;
  height: 68px;
  object-fit: contain;
  background: #fff;
  border-radius: 7px;
}
.footer-brand strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 22px;
}
.footer-brand p,
.footer-main > div:last-child p {
  color: #94b0a2;
  line-height: 1.6;
  font-size: 13px;
}
.footer-main h3 {
  margin: 3px 0 16px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-main > div:not(:first-child) a {
  display: block;
  margin: 10px 0;
  color: #b7ccc2;
  font-size: 13px;
}
.footer-main a:hover {
  color: var(--gold);
}
.footer-bottom {
  min-height: 65px;
  border-top: 1px solid #ffffff13;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #739185;
  font-size: 11px;
}
.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover {
  color: var(--gold);
}
.mobile-call {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 25, 17, 0.93);
  padding: 40px;
  color: #fff;
}
.lightbox button {
  position: absolute;
  right: 28px;
  top: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-image {
  position: relative;
  width: min(1100px, 90vw);
  height: min(74vh, 760px);
}
.lightbox-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox > p {
  position: absolute;
  bottom: 22px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: 18px;
}

.page-hero {
  min-height: 580px;
  padding-top: 110px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
}
.page-hero-photo {
  position: absolute;
  inset: 0;
}
.page-hero-photo img {
  object-fit: cover;
  object-position: center;
}
.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 49, 33, 0.96),
      rgba(3, 49, 33, 0.72) 45%,
      rgba(3, 49, 33, 0.2)
    ),
    linear-gradient(0deg, rgba(3, 49, 33, 0.78), transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}
.page-hero h1 {
  max-width: 930px;
  margin: 20px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 500;
}
.page-hero h1 em {
  color: var(--gold);
  font-weight: 400;
}
.page-hero-content > p {
  max-width: 650px;
  margin: 0;
  color: #dfece6;
  font-size: 17px;
  line-height: 1.7;
}
.solid-green {
  margin-top: 22px;
  background: var(--green);
  color: #fff;
}
.solid-green:hover {
  background: var(--red);
}
.home-contact,
.contact-page {
  padding: 95px 0;
  background: var(--green-deep);
  color: #fff;
}
.inner-facilities {
  padding-top: 100px;
}
.full-gallery {
  grid-auto-rows: 300px;
}
.full-gallery .gallery-9 {
  grid-column: span 2;
}

.map-section {
  min-height: 530px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: #062f22;
  color: #fff;
}
.map-frame {
  min-height: 530px;
  background: #dde8e2;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
  border: 0;
}
.map-card {
  padding: 86px clamp(35px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-card h2 {
  margin: 18px 0;
  font-family: Georgia, serif;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.map-card p {
  max-width: 430px;
  margin: 0 0 28px;
  color: #bad0c5;
  line-height: 1.7;
}
.map-card .button {
  align-self: flex-start;
}

.admissions-page {
  background: var(--red);
  color: #fff;
}
.admissions-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 80px;
  align-items: start;
}
.admissions-grid h2 {
  margin: 18px 0 30px;
  font-family: Georgia, serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
}
.admission-steps.vertical {
  grid-template-columns: 1fr;
  gap: 0;
}
.admission-steps.vertical > div {
  padding: 20px 0;
}
.admission-steps.vertical p {
  font-size: 14px;
}
.admission-steps.vertical strong {
  font-size: 16px;
}
.form-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
}

.legal-page {
  background: var(--cream);
}
.legal-copy {
  max-width: 850px;
}
.legal-copy .updated {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.legal-copy h2 {
  margin: 42px 0 12px;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}
.legal-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.legal-copy a {
  color: var(--red);
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .nav-links {
    gap: 17px;
  }
  .hero-photo {
    left: 30%;
  }
  .intro-grid,
  .experience-grid,
  .contact-grid {
    gap: 60px;
  }
  .value-cards {
    grid-template-columns: 1fr 1fr;
  }
  .value-cards article:nth-child(2) {
    border-right: 0;
  }
  .value-cards article:nth-child(-n + 2) {
    border-bottom: 1px solid #e6ddc8;
  }
  .facility-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-grid {
    gap: 60px;
  }
  .admissions-panel {
    padding-inline: 48px;
  }
  .footer-main {
    gap: 35px;
  }
  .nav-links {
    gap: 9px;
    font-size: 11px;
  }
  .nav-cta {
    padding: 10px 12px;
  }
  .brand {
    gap: 9px;
  }
  .brand strong {
    font-size: 19px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }
  .container {
    width: min(100% - 34px, 720px);
  }
  .admission-bar {
    display: none;
  }
  .nav {
    min-height: 72px;
  }
  .menu-button {
    display: block;
  }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: grid;
    gap: 0;
    background: #fff;
    padding: 10px 22px 22px;
    box-shadow: 0 15px 25px #0d3d2514;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.2s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-links > a:not(.nav-cta) {
    padding: 13px 5px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }
  .nav-cta {
    margin-top: 13px;
    justify-content: center;
  }
  .hero {
    min-height: 760px;
    padding-top: 74px;
    align-items: end;
  }
  .hero-photo {
    inset: 72px 0 0;
  }
  .hero-photo::after {
    background: linear-gradient(
      0deg,
      var(--green-deep) 5%,
      rgba(4, 61, 42, 0.76) 55%,
      rgba(4, 61, 42, 0.15) 100%
    );
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      var(--green-deep) 0%,
      rgba(4, 61, 42, 0.92) 39%,
      rgba(4, 61, 42, 0.12) 78%
    );
  }
  .hero-content {
    padding-bottom: 45px;
  }
  .hero h1 {
    font-size: clamp(52px, 12vw, 76px);
  }
  .hero-content > p {
    font-size: 16px;
  }
  .scroll-cue {
    display: none;
  }
  .section {
    padding: 82px 0;
  }
  .intro-grid,
  .section-head,
  .experience-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .section-head {
    align-items: start;
  }
  .value-cards {
    margin-top: 50px;
  }
  .experience-images {
    order: 2;
    height: 520px;
  }
  .experience-copy {
    order: 1;
  }
  .experience-badge {
    left: -9px;
  }
  .gallery-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-6 {
    grid-column: auto;
  }
  .admissions-section {
    grid-template-columns: 1fr;
  }
  .admissions-photo {
    min-height: 380px;
  }
  .admissions-panel {
    padding: 72px max(24px, calc((100vw - 720px) / 2));
  }
  .faq-title {
    position: static;
  }
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-main > div:last-child {
    display: none;
  }
  .page-hero {
    min-height: 520px;
    padding-top: 72px;
  }
  .page-hero-content {
    padding-bottom: 56px;
  }
  .map-section {
    grid-template-columns: 1fr;
  }
  .map-frame,
  .map-frame iframe {
    min-height: 410px;
  }
  .admissions-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 30px);
  }
  .brand img {
    width: 52px;
    height: 44px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand small {
    font-size: 10px;
  }
  .hero {
    min-height: 720px;
    max-height: none;
    height: 100svh;
  }
  .hero h1 {
    margin-top: 16px;
    font-size: clamp(48px, 15vw, 68px);
  }
  .eyebrow {
    max-width: 290px;
    font-size: 10px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 300px;
  }
  .hero-trust {
    margin-top: 35px;
  }
  .hero-trust div {
    padding-inline: 13px;
  }
  .hero-trust strong {
    font-size: 17px;
  }
  .hero-trust span {
    font-size: 9px;
  }
  .section-copy h2,
  .section-head h2,
  .experience h2,
  .faculty-section h2,
  .gallery-heading h2,
  .faq-title h2,
  .contact-copy h2 {
    font-size: 41px;
  }
  .intro-grid {
    gap: 25px;
  }
  .intro-text .lead {
    font-size: 20px;
  }
  .value-cards {
    grid-template-columns: 1fr;
  }
  .value-cards article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid #e6ddc8;
  }
  .value-cards article:nth-child(2) {
    border-bottom: 1px solid #e6ddc8;
  }
  .value-cards h3 {
    margin-top: 38px;
  }
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .facility-grid article {
    min-height: 245px;
  }
  .experience-images {
    height: 430px;
  }
  .image-main {
    inset: 0 25px 70px 0;
  }
  .image-small {
    width: 155px;
    height: 190px;
    border-width: 7px;
  }
  .experience-badge {
    width: 112px;
    height: 112px;
    bottom: 3px;
  }
  .experience-badge strong {
    font-size: 21px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-1,
  .gallery-4 {
    grid-row: auto;
  }
  .admissions-panel {
    padding-inline: 20px;
  }
  .admission-steps {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .enquiry-form {
    grid-template-columns: 1fr;
  }
  .form-button,
  .enquiry-form small {
    grid-column: auto;
  }
  .contact-cards > a {
    grid-template-columns: 44px 1fr 14px;
    gap: 12px;
  }
  .contact-cards strong {
    font-size: 15px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-bottom {
    padding: 18px 0 86px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .mobile-call {
    position: fixed;
    z-index: 90;
    left: 15px;
    right: 15px;
    bottom: 14px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--green-deep);
    border: 1px solid #ffe78c;
    border-radius: 999px;
    box-shadow: 0 10px 35px #00180e5c;
    font-size: 14px;
    font-weight: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s;
  }
  .mobile-call.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mobile-call svg {
    width: 20px;
  }
  .lightbox {
    padding: 20px;
  }
  .lightbox-image {
    width: 100%;
    height: 72vh;
  }
  .page-hero {
    min-height: 470px;
  }
  .page-hero h1 {
    font-size: 48px;
  }
  .map-card {
    padding: 65px 22px;
  }
  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }
  .full-gallery .gallery-9 {
    grid-column: auto;
  }
  .form-card {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.page-hero-photo img,
.hero-photo img,
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item img {
  transition: transform 0.6s;
}
.image-main img,
.image-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.error-page {
  min-height: 70vh;
  align-items: center;
}
.error-page .page-hero-content {
  padding-bottom: 0;
}
.lightbox[hidden] {
  display: none;
}

/* Public mandatory disclosure */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.disclosure-hero {
  min-height: 550px;
}
.disclosure-hero .page-hero-photo img {
  object-position: center 42%;
}
.disclosure-overview {
  background: var(--cream);
}
.disclosure-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 90px;
}
.disclosure-intro h2,
.disclosure-toolbar h2 {
  margin: 19px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.disclosure-intro h2 span {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}
.disclosure-note {
  padding-left: 26px;
  border-left: 3px solid var(--gold);
}
.disclosure-note p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.disclosure-note span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.school-info {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid #e6ddc8;
  box-shadow: 0 18px 55px rgba(54, 64, 43, 0.07);
}
.school-info > div {
  min-height: 124px;
  padding: 25px;
  border-right: 1px solid #e6ddc8;
  border-bottom: 1px solid #e6ddc8;
}
.school-info > div:nth-child(4n) {
  border-right: 0;
}
.school-info > div:nth-last-child(-n + 4) {
  border-bottom: 0;
}
.school-info span,
.school-info strong {
  display: block;
}
.school-info span {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.school-info strong {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.school-info a:hover {
  color: var(--red);
}
.disclosure-documents {
  background: #f2f6f3;
}
.disclosure-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}
.disclosure-toolbar h2 {
  font-size: clamp(40px, 4.5vw, 58px);
}
.document-search {
  width: min(330px, 100%);
  height: 52px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.document-search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(7, 91, 59, 0.08);
}
.document-search svg {
  flex: 0 0 20px;
  width: 20px;
  color: var(--green);
}
.document-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}
.document-search input::placeholder {
  color: #819087;
}
.document-group {
  margin-top: 68px;
}
.document-group-title {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.document-group-title > span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}
.document-group-title h3 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}
.document-group-title p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.document-card {
  min-height: 154px;
  padding: 24px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 13px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(26, 59, 42, 0.045);
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.document-card:hover {
  transform: translateY(-3px);
  border-color: #b8d0c2;
  box-shadow: 0 16px 45px rgba(26, 59, 42, 0.09);
}
.document-card[hidden] {
  display: none;
}
.document-icon {
  width: 58px;
  height: 68px;
  display: grid;
  place-items: end center;
  padding-bottom: 13px;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  background: #fde9e7;
  color: var(--red);
  border-radius: 8px 8px 12px 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.document-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 15px solid #fff;
  border-left: 15px solid #efb9b4;
}
.document-copy span {
  display: block;
  margin-bottom: 5px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.document-copy h4 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}
.document-copy p {
  margin: 0;
  color: #819087;
  font-size: 11px;
}
.document-actions {
  display: flex;
  gap: 10px;
}
.document-actions a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}
.document-actions a:first-child {
  background: var(--green);
  color: #fff;
}
.document-actions a:first-child:hover {
  background: var(--red);
}
.document-empty {
  margin: 50px 0 0;
  padding: 30px;
  background: #fff;
  border: 1px dashed #b8c9be;
  border-radius: 12px;
  color: var(--muted);
  text-align: center;
}
.disclosure-help {
  margin-top: 70px;
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--cream);
  border-left: 5px solid var(--gold);
}
.disclosure-help strong {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}
.disclosure-help p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.disclosure-help .button {
  flex: 0 0 auto;
  margin-top: 0;
}

/* School Management Committee */
.smc-section {
  background: var(--cream);
}
.smc-heading {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 70px;
}
.smc-heading h2 {
  margin: 19px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.5vw, 58px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.smc-heading h2 span {
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}
.smc-heading > p {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.smc-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #e1d7c1;
  border-radius: 14px;
  box-shadow: 0 18px 55px rgba(54, 64, 43, 0.07);
}
.smc-table-wrap:focus-visible {
  outline: 3px solid rgba(7, 91, 59, 0.25);
  outline-offset: 4px;
}
.smc-table {
  width: 100%;
  min-width: 930px;
  border-collapse: collapse;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}
.smc-table th,
.smc-table td {
  padding: 18px 19px;
  border-right: 1px solid #e8e0d0;
  border-bottom: 1px solid #e8e0d0;
  text-align: left;
  vertical-align: top;
}
.smc-table th:last-child,
.smc-table td:last-child {
  border-right: 0;
}
.smc-table tbody tr:last-child td {
  border-bottom: 0;
}
.smc-table thead {
  background: var(--green);
  color: #fff;
}
.smc-table th {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.smc-table tbody tr:nth-child(even) {
  background: #faf8f2;
}
.smc-table tbody tr:hover {
  background: var(--green-soft);
}
.smc-table td:first-child {
  color: var(--red);
  font-weight: 800;
}
.smc-table td strong,
.smc-table td span {
  display: block;
}
.smc-table td strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
}
.smc-table td span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

@media (min-width: 1001px) and (max-width: 1220px) {
  .nav-links {
    gap: 13px;
    font-size: 12px;
  }
  .nav-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 900px) {
  .smc-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .disclosure-intro {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .school-info {
    grid-template-columns: repeat(2, 1fr);
  }
  .school-info > div:nth-child(4n) {
    border-right: 1px solid #e6ddc8;
  }
  .school-info > div:nth-child(2n) {
    border-right: 0;
  }
  .school-info > div:nth-last-child(-n + 4) {
    border-bottom: 1px solid #e6ddc8;
  }
  .school-info > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .document-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .smc-heading {
    margin-bottom: 30px;
  }
  .smc-heading > p {
    padding-left: 18px;
    font-size: 15px;
  }
  .smc-table th,
  .smc-table td {
    padding: 15px;
  }
  .disclosure-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 27px;
  }
  .document-search {
    width: 100%;
  }
  .school-info {
    grid-template-columns: 1fr;
  }
  .school-info > div,
  .school-info > div:nth-child(2n),
  .school-info > div:nth-child(4n),
  .school-info > div:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #e6ddc8;
  }
  .school-info > div:last-child {
    border-bottom: 0;
  }
  .document-group {
    margin-top: 52px;
  }
  .document-card {
    padding: 20px 17px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 14px;
  }
  .document-icon {
    width: 48px;
    height: 59px;
  }
  .document-copy h4 {
    font-size: 18px;
  }
  .document-actions {
    flex-wrap: wrap;
  }
  .document-actions a {
    padding-inline: 12px;
  }
  .disclosure-help {
    padding: 28px 23px;
    align-items: flex-start;
    flex-direction: column;
  }
}
