/* --- TOKENS --- */
:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --off:   #f7f7f5;
  --blue:  #1a52d4;
  --grey:  #686868;
  --mid:   #9a9a96;
  --rule:  #e5e5e2;
  --pad:   clamp(1.5rem, 5vw, 4rem);
  --gap:   clamp(4rem, 8vw, 7rem);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* --- LAYOUT --- */
.wrap {
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: var(--pad);
}
.ruled { padding-block: var(--gap); border-bottom: 1px solid var(--rule); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* --- TYPOGRAPHY --- */
h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h1 em { font-style: italic; color: var(--blue); }
h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
h2 em { font-style: italic; color: var(--blue); }
h3 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
.eyebrow-blue { color: var(--blue); }
.prose p {
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.prose p:last-child { margin-bottom: 0; }

/* --- SCROLL FADE --- */
.fade {
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade.visible { opacity: 1; transform: none; }

/* --- SKIP LINK --- */
.skip {
  position: absolute; top: -9rem; left: var(--pad);
  background: var(--black); color: #fff;
  padding: 0.5rem 1rem; font-size: 0.875rem;
  transition: top 0.2s; z-index: 999;
}
.skip:focus { top: 1rem; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--black); color: #fff;
  border: 1px solid var(--black);
  font-family: inherit; font-size: 0.81rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.875rem 1.875rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, gap 0.25s;
  text-decoration: none;
}
.btn::after { content: '->'; font-style: normal; }
.btn:hover { background: var(--blue); border-color: var(--blue); gap: 0.8rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: inherit; font-size: 0.81rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.875rem 1.875rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, gap 0.25s;
  text-decoration: none;
}
.btn-ghost::after { content: '->'; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.07); gap: 0.8rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.79rem; font-weight: 500;
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
  color: var(--grey);
  transition: color 0.2s, gap 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.text-link::after { content: '->'; }
.text-link:hover { color: var(--blue); gap: 0.6rem; }
.text-link-light { color: #888; border-color: #888; }
.text-link-light:hover { color: #fff; border-color: #fff; }

/* --- NAV --- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

/* --- LSF MARK --- */
.lsf-mark {
  display: inline-flex; gap: 3px;
  cursor: pointer; user-select: none;
  width: fit-content;
  flex-shrink: 0;
  text-decoration: none;
}
.lsf-tile {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem;
  font-weight: 700; font-size: 0.95rem; line-height: 1;
  border-radius: 3px;
  transition: background 0.18s, transform 0.22s;
}
.nav-mark .lsf-tile  { background: #2e2e2e; color: #fff; }
.foot-mark .lsf-tile { background: #2e2e2e; color: #fff; }
@media (hover: hover) {
  .nav-mark:hover .lsf-tile { background: var(--blue); }
  .nav-mark:hover .lsf-tile:nth-child(1) { transform: translateY(-3px); transition-delay:   0ms; }
  .nav-mark:hover .lsf-tile:nth-child(2) { transform: translateY(-3px); transition-delay:  55ms; }
  .nav-mark:hover .lsf-tile:nth-child(3) { transform: translateY(-3px); transition-delay: 110ms; }
}

@media (hover: hover) {
  .foot-mark:hover .lsf-tile { background: var(--blue); }
  .foot-mark:hover .lsf-tile:nth-child(1) { transform: translateY(-3px); transition-delay:   0ms; }
  .foot-mark:hover .lsf-tile:nth-child(2) { transform: translateY(-3px); transition-delay:  55ms; }
  .foot-mark:hover .lsf-tile:nth-child(3) { transform: translateY(-3px); transition-delay: 110ms; }
}

/* --- NAV LINKS --- */
.nav-links {
  display: flex; list-style: none;
  align-items: center; gap: 2.25rem;
}
.nav-links a {
  font-size: 0.83rem; color: var(--mid);
  position: relative; transition: color 0.2s;
  cursor: pointer; white-space: nowrap;
  text-decoration: none;
}
.nav-links a::after {
  content: ''; position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width 0.25s;
  pointer-events: none;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue); }

.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 0.5rem 1.2rem;
  font-size: 0.79rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { color: #fff !important; opacity: 0.82; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 1.3rem; height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* --- PAGE HEADER --- */
.page-header {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--rule);
}
.page-header .eyebrow { margin-bottom: 1.5rem; }

/* --- SCHOLAR CARDS --- */
.cards-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.story-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; background: #181818;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.story-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3rem rgba(26,82,212,0.12), 0 0.5rem 1rem rgba(0,0,0,0.1);
}
.story-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  opacity: 0.55;
  transition: opacity 0.4s, transform 0.5s;
}
.story-card:hover img { opacity: 0.4; transform: scale(1.04); }
.card-ph {
  position: absolute; inset: 0;
  background: #181818;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.65rem;
}
.card-ph-ring {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid #2d2d2d;
  display: flex; align-items: center; justify-content: center;
}
.card-ph span {
  font-size: 0.61rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: #2d2d2d;
}
.card-body {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}
.card-body .eyebrow { color: rgba(255,255,255,0.35); margin-bottom: 0.3rem; }
.card-body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1rem; font-weight: 400;
  color: #fff; line-height: 1.3; margin-bottom: 0.25rem;
}
.card-body p { font-size: 0.77rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* --- STORY ROWS --- */
.story-list { padding-block: var(--gap); }
.story-row {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-block: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--rule);
  align-items: start;
}
.story-row:first-child { border-top: none; }
.story-row-photo {
  aspect-ratio: 4/3; background: var(--off);
  overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.65rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.story-row-photo:hover { transform: translateY(-0.3rem); box-shadow: 0 1rem 2.5rem rgba(0,0,0,0.07); }
.story-row-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-row-ph-ring {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid #d5d5d2;
  display: flex; align-items: center; justify-content: center;
}
.story-row-photo > span {
  font-size: 0.61rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #c2c2be;
}
.story-row-body .eyebrow { margin-bottom: 0.6rem; }
.story-row-body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 400; letter-spacing: -0.01em;
  margin-bottom: 0.8rem; line-height: 1.2;
}
.story-row-body p { color: var(--grey); line-height: 1.8; font-size: 0.94rem; }

/* --- FOUNDER --- */
.founder-photo {
  aspect-ratio: 3/4; background: var(--off);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.65rem;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.founder-photo:hover { transform: translateY(-0.35rem); box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.07); }
.founder-photo > span {
  font-size: 0.61rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: #c2c2be;
}
.founder-ph-ring {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid #d5d5d2;
  display: flex; align-items: center; justify-content: center;
}
.founder-copy .eyebrow { margin-bottom: 1.25rem; }
.founder-copy h2 { margin-bottom: 1.25rem; }

/* --- STEPS (Apply page) --- */
.steps-header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: clamp(3rem, 5vw, 4.5rem);
  margin-top: clamp(3rem, 5vw, 4.5rem);
  border-top: 1px solid var(--rule);
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.step {
  display: grid; grid-template-columns: 4rem 1fr;
  gap: 1.75rem; padding-block: 1.75rem;
  border-top: 1px solid var(--rule); align-items: start;
}
.step-num { font-size: 0.78rem; color: var(--blue); letter-spacing: 0.1em; padding-top: 0.2rem; }
.step h3 { margin-bottom: 0.35rem; }
.step p { color: var(--grey); font-size: 0.93rem; line-height: 1.75; }

/* --- APPLICATION FORM --- */
.form-section { padding-block: var(--gap); }
.form-preamble {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--rule);
}
.form-preamble h2 { margin-bottom: 0.75rem; }
.form-preamble-body { color: var(--grey); font-size: 1rem; line-height: 1.82; margin-bottom: 1.75rem; }
.form-meta { display: flex; flex-direction: column; gap: 1.5rem; border-top: 1px solid var(--rule); padding-top: 1.5rem; }
.form-meta dt {
  font-size: 0.67rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mid);
  font-weight: 500; margin-bottom: 0.2rem;
}
.form-meta dd { font-size: 0.93rem; color: var(--grey); line-height: 1.6; }
.form-meta a { color: var(--blue); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.form-meta a:hover { border-color: var(--blue); }

/* Field system */
.form { display: grid; gap: 0; }
.form-block {
  padding-block: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
  display: grid; gap: 1.5rem;
}
.form-block:last-of-type { border-bottom: none; padding-bottom: 0; }
.form-block-label {
  font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; color: var(--blue);
  margin-bottom: 0.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.67rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--mid); font-weight: 500;
}
.field input, .field textarea, .field select {
  width: 100%; border: none;
  border-bottom: 1px solid var(--rule);
  background: transparent; padding: 0.7rem 0;
  font-family: inherit; font-size: 0.97rem; font-weight: 300;
  color: var(--black); transition: border-color 0.2s;
  -webkit-appearance: none; outline: none; border-radius: 0;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--blue); }
.field input::placeholder,
.field textarea::placeholder { color: #ceccca; }
.field textarea { resize: vertical; min-height: 7rem; line-height: 1.65; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6'%3E%3Cpath d='M1 1l4.5 4L10 1' stroke='%239a9a96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center;
  padding-right: 1.5rem; cursor: pointer;
}
.field-hint { font-size: 0.77rem; color: var(--mid); line-height: 1.55; margin-top: 0.2rem; }

.file-drop {
  border: 1px dashed var(--rule); padding: 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.file-drop:focus-within,
.file-drop:hover { border-color: var(--blue); background: #f4f8ff; }
.file-drop-label {
  font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid); font-weight: 500; display: block; margin-bottom: 0.45rem;
}
.file-drop-hint { font-size: 0.8rem; color: var(--mid); line-height: 1.6; margin-bottom: 0.65rem; }
.file-drop input[type="file"] {
  border: none; padding: 0; font-size: 0.875rem;
  color: var(--grey); cursor: pointer; width: 100%;
}
.form-note { font-size: 0.77rem; color: var(--mid); line-height: 1.6; }
.form-note a { border-bottom: 1px solid var(--rule); transition: color 0.2s, border-color 0.2s; }
.form-note a:hover { color: var(--blue); border-color: var(--blue); }
.form-submit { padding-top: clamp(2rem, 4vw, 3rem); display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* --- SUPPORT WAYS --- */
.ways {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: clamp(3rem, 5vw, 4.5rem);
}
.way {
  padding: 2.5rem 2.25rem;
  background: var(--white);
  transition: background 0.22s;
}
.way:hover { background: var(--off); }
.way .eyebrow { margin-bottom: 1rem; }
.way h3 { margin-bottom: 0.5rem; }
.way p { color: var(--grey); font-size: 0.93rem; line-height: 1.75; }

/* --- CTA STRIP --- */
.cta-strip { padding-block: var(--gap); }
.cta-strip-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--white);
}
.cta-strip-text { flex: 1; min-width: 14rem; }
.cta-strip-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.4rem; }
.cta-strip-text p { color: var(--grey); font-size: 0.93rem; line-height: 1.75; max-width: 42ch; }

/* --- CONTACT --- */
.contact-body {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  padding-block: var(--gap); align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-details dt {
  font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 0.25rem; font-weight: 500;
}
.contact-details dd { font-size: 0.94rem; color: #444; line-height: 1.65; }
.contact-details a { border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.contact-details a:hover { color: var(--blue); border-color: var(--blue); }

/* --- STATS STRIP --- */
.stats-strip { border-bottom: 1px solid var(--rule); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: clamp(2rem, 4vw, 2.75rem) var(--pad);
  border-right: 1px solid var(--rule);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.04em; line-height: 1;
  margin-bottom: 0.35rem; color: var(--black);
  transition: color 0.2s;
}
.stat-item:hover .stat-num { color: var(--blue); }
.stat-label { font-size: 0.83rem; color: var(--mid); }

/* --- HERO --- */
.hero {
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-logo {
  width: clamp(10rem, 14vw, 16rem);
  opacity: 0.88;
  flex-shrink: 0;
}
.hero .eyebrow { margin-bottom: 1.75rem; }
.hero h1 { margin-bottom: 1.75rem; max-width: 18ch; }
.hero-body {
  font-size: 1.1rem; color: var(--grey);
  max-width: 52ch; line-height: 1.82;
  margin-bottom: 2.75rem;
}
.hero-actions {
  display: flex; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
}

/* --- PRE-FOOTER --- */
.pre-footer { background: var(--black); padding-block: var(--gap); }
.pre-footer-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: end;
}
.pre-footer .eyebrow { color: #303030; margin-bottom: 1.5rem; }
.pre-footer h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.03em; line-height: 1.06;
  margin-bottom: 1.2rem;
}
.pre-footer h2 em { color: var(--blue); font-style: italic; }
.pre-footer p { color: #4e4e4e; font-size: 1rem; line-height: 1.85; max-width: 38ch; }
.pre-footer-actions {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 1.25rem;
}

/* --- FOOTER --- */
.footer { background: #0a0a0a; padding-block: 3.5rem; border-top: 1px solid #181818; }
.footer-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid #151515;
  margin-bottom: 2rem;
}
.footer-left {
  display: flex; flex-direction: column; gap: 2rem;
  align-items: flex-start;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav a {
  font-size: 0.85rem; color: #444; display: inline-block;
  cursor: pointer; transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-nav a:hover { color: var(--blue); transform: translateX(4px); }
.footer-enquiries { text-align: right; }
.footer-enquiries dt {
  font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #3a5068; margin-bottom: 0.3rem; font-weight: 500;
}
.footer-enquiries dd { font-size: 0.85rem; color: #444; line-height: 1.65; margin-bottom: 1.5rem; }
.footer-enquiries dd:last-child { margin-bottom: 0; }
.footer-enquiries a { color: #444; transition: color 0.2s; }
.footer-enquiries a:hover { color: var(--blue); }
.footer-bottom p { font-size: 0.73rem; color: #333; }

/* --- RESPONSIVE --- */
@media (max-width: 60rem) {
  .two-col,
  .pre-footer-inner,
  .contact-body,
  .form-preamble { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .story-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) {
    border-top: 1px solid var(--rule);
    padding-left: 0; border-right: none;
    grid-column: 1;
  }
  .ways { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-enquiries { text-align: left; }
  .pre-footer-actions { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .steps-header { flex-direction: column; gap: 0.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 48rem) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo { display: none; }
}

@media (max-width: 36rem) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 3.5rem; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 2.5rem var(--pad) 3rem;
    gap: 0; z-index: 99;
    border-top: 1px solid var(--rule);
    overflow-y: auto;
    height: calc(100dvh - 3.5rem);
  }
  .nav-links li { border-bottom: 1px solid var(--rule); }
  .nav-links a {
    display: block; padding: 1.1rem 0;
    font-size: 1.1rem; font-weight: 300; color: var(--black);
  }
  .nav-links a.nav-cta {
    background: none; color: var(--black) !important;
    padding: 1.1rem 0; font-size: 1.1rem;
    letter-spacing: 0; text-transform: none;
    opacity: 1 !important;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item {
    border-right: none !important;
    border-top: 1px solid var(--rule);
    padding-left: 0 !important;
    grid-column: 1 !important;
  }
  .stat-item:first-child { border-top: none; }
}
