:root {
  --ink: #17201b;
  --muted: #5c6761;
  --line: #dde4df;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --green: #1d6b55;
  --green-dark: #0f3f33;
  --terracotta: #bf6544;
  --gold: #d9a441;
  --shadow: 0 24px 60px rgba(18, 31, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 19, 15, 0.74), rgba(8, 19, 15, 0));
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    min-height 220ms ease,
    padding 220ms ease;
}

.page-header,
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.page-header .nav-links,
.site-header.is-scrolled .nav-links {
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 63, 51, 0.22);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a {
  position: relative;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.page-header .nav-links a:hover,
.page-header .nav-links a.is-active,
.site-header.is-scrolled .nav-links a:hover,
.site-header.is-scrolled .nav-links a.is-active {
  color: var(--green-dark);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.page-header .menu-toggle,
.site-header.is-scrolled .menu-toggle {
  border-color: var(--line);
  background: var(--soft);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.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;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: 14px;
  white-space: nowrap;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(29, 107, 85, 0.26);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.brand:hover,
.nav-cta:hover,
.button:hover,
.service-index a:hover,
.support-route-grid a:hover {
  transform: translateY(-1px);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 36px rgba(29, 107, 85, 0.32);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(217, 164, 65, 0.72);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 14, 12, 0.86) 0%, rgba(7, 14, 12, 0.56) 38%, rgba(7, 14, 12, 0.08) 74%),
    linear-gradient(180deg, rgba(7, 14, 12, 0.22), rgba(7, 14, 12, 0.66));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 156px 0 64px;
  color: #fff;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.arrival-panel {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 24px;
  background: rgba(10, 24, 19, 0.74);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.panel-label,
.section-heading span,
.contact-copy span {
  display: block;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.arrival-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.arrival-panel ul,
.package-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.arrival-panel li,
.package-card li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.arrival-panel li::before,
.package-card li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  top: 0.6em;
  border-radius: 50%;
  background: var(--gold);
}

.intro-section,
.section,
.contact-section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 48px;
  padding: 56px 0 34px;
  border-bottom: 1px solid var(--line);
}

.intro-section h2,
.section-heading h2,
.contact-copy h2 {
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro-section p,
.service-card p,
.section-lede,
.timeline p,
.package-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-lede {
  max-width: 660px;
  margin: 18px 0 0;
}

.section-lede strong {
  color: var(--ink);
}

.inline-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 800;
}

.section {
  padding: 84px 0 0;
}

.section-heading {
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.service-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
}

.service-card {
  min-height: 270px;
}

.service-card h3,
.timeline h3,
.package-card h3 {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.2;
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
  font-weight: 850;
}

.process-section {
  width: 100%;
  max-width: none;
  margin-top: 84px;
  padding: 84px max(20px, calc((100vw - 1180px) / 2)) 92px;
  background: var(--soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 42px 0 0;
  list-style: none;
  border-top: 1px solid #cad5ce;
}

.timeline li {
  padding: 30px 26px 0 0;
  border-right: 1px solid #cad5ce;
}

.timeline li:last-child {
  border-right: 0;
}

.timeline span {
  color: var(--terracotta);
  font-weight: 850;
}

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

.package-card {
  min-height: 330px;
  background: var(--soft);
}

.package-card.featured {
  color: #fff;
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 255, 255, 0.84);
}

.package-card:not(.featured) li {
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 520px);
  gap: 54px;
  align-items: start;
  margin-top: 92px;
  margin-bottom: 84px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 63, 51, 0.94), rgba(29, 107, 85, 0.84)),
    var(--green-dark);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.35;
  background-color: #fff;
}

input:not([type="checkbox"]),
select {
  min-height: 50px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5 7 7l6-5.5' fill='none' stroke='%2317201b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 14px 9px;
}

select::-ms-expand {
  display: none;
}

textarea {
  min-height: 112px;
  line-height: 1.45;
  resize: vertical;
}

.checkbox-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  min-height: auto;
  padding: 0;
  margin-top: 2px;
  accent-color: var(--green);
}

.checkbox-label a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}

.footer-links a,
.footer-link-button {
  color: var(--green-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.footer-logo {
  display: block;
  width: 143px;
  height: 32px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.cookie-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.08;
}

.cookie-banner p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-banner .button.secondary {
  color: var(--green-dark);
  border-color: var(--line);
  background: #fff;
}

.services-page {
  background: var(--paper);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 156px 0 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero-copy span {
  display: block;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 780px;
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.legal-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 156px 0 52px;
  border-bottom: 1px solid var(--line);
}

.legal-hero span {
  display: block;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.legal-updated {
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 34px;
  width: min(980px, calc(100% - 40px));
  margin: 42px auto 84px;
  align-items: start;
}

.legal-summary,
.legal-content article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-summary {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--soft);
}

.legal-summary h2,
.legal-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
}

.legal-summary ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.legal-summary li {
  position: relative;
  padding-left: 22px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.legal-summary li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  top: 0.62em;
  border-radius: 50%;
  background: var(--gold);
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content article {
  padding: 26px;
}

.legal-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-panel {
  border-radius: 8px;
  padding: 26px;
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.quote-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.12;
}

.quote-panel ul {
  padding: 18px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.quote-panel li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.quote-panel li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  top: 0.6em;
  border-radius: 50%;
  background: var(--gold);
}

.quote-panel .button {
  width: 100%;
  margin-top: 24px;
}

.support-router {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 44px auto 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.support-router span,
.visa-primer span {
  display: block;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-router h2,
.visa-primer h3 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.support-router p,
.visa-primer p,
.support-route-grid strong {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.support-route-grid a {
  display: grid;
  gap: 10px;
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.support-route-grid a:hover {
  border-color: rgba(29, 107, 85, 0.34);
  box-shadow: 0 16px 34px rgba(18, 31, 25, 0.1);
}

.support-route-grid span {
  color: var(--green-dark);
}

.support-route-grid strong {
  font-weight: 700;
}

.service-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-index a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--soft);
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-index a:hover,
.service-index a.is-active {
  color: #fff;
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.visa-primer {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 34px;
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 63, 51, 0.98), rgba(29, 107, 85, 0.9)),
    var(--green-dark);
  box-shadow: var(--shadow);
}

.visa-primer span {
  color: var(--gold);
}

.visa-primer p {
  color: rgba(255, 255, 255, 0.82);
}

.visa-primer ol {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.visa-primer li {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.visa-primer li span {
  color: var(--gold);
  font-size: 12px;
}

.visa-primer strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.visa-primer li p {
  margin: 10px 0 0;
}

.operations-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 28px;
  margin-top: 34px;
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 63, 51, 0.98), rgba(29, 107, 85, 0.9)),
    var(--green-dark);
  box-shadow: var(--shadow);
}

.student-support,
.tax-routes {
  margin-top: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.student-copy,
.tax-routes-copy {
  max-width: 860px;
}

.student-copy span,
.tax-routes-copy span {
  display: block;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.student-copy h3,
.tax-routes-copy h3 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.student-copy p,
.student-grid p,
.student-universities p,
.tax-routes-copy p,
.regime-card p,
.regime-card li,
.tax-note {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.student-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.student-grid h4 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
}

.student-universities {
  margin-top: 18px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
}

.student-universities span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.student-universities p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.regime-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.regime-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.regime-card.featured {
  color: #fff;
  border-color: var(--green-dark);
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.regime-card span {
  display: block;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.regime-card.featured span,
.regime-card.featured p,
.regime-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.regime-card h4 {
  margin: 12px 0 0;
  font-size: 22px;
  line-height: 1.15;
}

.regime-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.regime-card li {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}

.regime-card li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 7px;
  height: 7px;
  top: 0.62em;
  border-radius: 50%;
  background: var(--gold);
}

.comparison-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.regime-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.regime-table th,
.regime-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.regime-table th {
  color: var(--green-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.regime-table tr:last-child td {
  border-bottom: 0;
}

.tax-note {
  max-width: 860px;
  margin: 18px 0 0;
}

.operations-copy span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operations-copy h3 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.operations-copy p,
.operations-grid p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

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

.operations-grid article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.operations-grid h4 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

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

.detail-grid.expanded {
  align-items: stretch;
}

.detail-card,
.support-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

.detail-card h3,
.faq-card h3,
.support-card h3,
.services-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0;
}

.detail-card p,
.faq-card p,
.support-card p,
.pricing-note,
.services-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.detail-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 22px;
  margin-top: 10px;
  color: var(--muted);
}

.detail-card li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  top: 0.6em;
  border-radius: 50%;
  background: var(--gold);
}

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

.quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--soft);
}

.quote-card.featured {
  color: #fff;
  background: var(--green-dark);
  box-shadow: var(--shadow);
}

.quote-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
}

.quote-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.quote-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

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

.faq-card {
  background: #fff;
}

.pricing-note {
  max-width: 840px;
  margin: 22px 0 0;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 92px auto 84px;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
}

.services-cta p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.reveal-target {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    display: grid;
    grid-column: 1 / -1;
    flex: none;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    padding: 0 8px;
    border: 0 solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    background: rgba(10, 24, 19, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      max-height 260ms ease,
      padding 260ms ease,
      border-width 260ms ease,
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0ms linear 260ms;
  }

  .page-header .nav-links {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
  }

  .nav-links.is-open {
    max-height: 540px;
    padding: 8px;
    border-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition:
      max-height 260ms ease,
      padding 260ms ease,
      border-width 260ms ease,
      opacity 180ms ease,
      transform 220ms ease,
      visibility 0ms;
  }

  .nav-links a {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .page-header .nav-links a:hover {
    background: var(--soft);
  }

  .nav-cta {
    display: none;
  }

  .hero-content,
  .intro-section,
  .page-hero,
  .legal-layout,
  .support-router,
  .visa-primer,
  .operations-focus,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .package-grid,
  .support-route-grid,
  .student-grid,
  .regime-grid,
  .operations-grid,
  .detail-grid,
  .faq-grid,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-summary {
    position: static;
  }

  .timeline li:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    padding: 188px 0 36px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .arrival-panel {
    padding: 20px;
  }

  .service-grid,
  .timeline,
  .package-grid,
  .student-grid,
  .regime-grid,
  .operations-grid,
  .detail-grid,
  .faq-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 184px;
  }

  .legal-hero {
    padding-top: 184px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .operations-focus {
    padding: 24px 18px;
  }

  .support-router,
  .visa-primer,
  .student-support,
  .tax-routes {
    padding: 24px 18px;
  }

  .services-cta {
    width: calc(100% - 28px);
    padding: 24px 18px;
  }

  .timeline li,
  .timeline li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #cad5ce;
    padding: 24px 0;
  }

  .contact-section {
    width: calc(100% - 28px);
    padding: 24px 16px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: calc(100% - 28px);
    padding: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 180px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-target {
    opacity: 1;
    transform: none;
  }
}
