:root {
  color-scheme: dark;
  --bg: #100d2b;
  --bg-deep: #0b0920;
  --surface: #1a1438;
  --surface-raised: #241b48;
  --text: #f7f5ff;
  --text-soft: #d0cbe2;
  --muted: #aaa3c3;
  --cyan: #22d3ee;
  --cyan-light: #8beeff;
  --violet: #9975ff;
  --border: #383052;
  --error: #ffb0bb;
  --radius: 18px;
  --radius-small: 10px;
  --container: 1180px;
  --shadow: 0 20px 60px rgb(0 0 0 / 22%);
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --font: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--bg);
  color: var(--text-soft);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--cyan);
  color: var(--bg);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--text);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 1.25rem;
}

a {
  color: var(--cyan-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

a:hover {
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: rgb(34 211 238 / 18%);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

svg,
img {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

figure {
  margin: 0;
}

strong {
  color: var(--text);
  font-weight: 650;
}

address {
  font-style: normal;
}

ul,
ol {
  padding-inline-start: 1.5rem;
  margin-block: 0 1.5rem;
}

li {
  padding-inline-start: 0.3rem;
  margin-block: 0.55rem;
}

li::marker {
  color: var(--cyan);
}

code {
  padding: 0.15em 0.4em;
  border-radius: 4px;
  background: rgb(153 117 255 / 12%);
  color: var(--cyan-light);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.87em;
  overflow-wrap: anywhere;
}

.container,
.header-inner,
.cookie-inner {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-small);
  background: var(--cyan);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
  color: var(--bg);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgb(208 203 226 / 10%);
  background: var(--bg);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 80px;
}

.brand,
.footer-brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-inline-end: auto;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  line-height: 1;
}

.brand-mark {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.primary-nav,
.header-cta {
  display: none;
}

.primary-nav {
  align-items: center;
  gap: 2rem;
}

.primary-nav a,
.mobile-navigation a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.mobile-navigation a:hover,
.mobile-navigation a[aria-current="page"] {
  color: var(--cyan);
}

.menu-toggle {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
  color: var(--text);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.menu-toggle[aria-expanded="true"] {
  border-color: var(--cyan);
  color: var(--cyan);
}

.mobile-navigation {
  display: grid;
  padding: 0.75rem var(--gutter) 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.mobile-navigation a {
  padding-block: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 50px;
  max-width: 100%;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--cyan);
  border-radius: var(--radius-small);
  background: var(--cyan);
  color: var(--bg);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover:not(:disabled) {
  border-color: var(--cyan-light);
  background: var(--cyan-light);
  color: var(--bg);
  box-shadow: 0 6px 24px rgb(34 211 238 / 16%);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
}

.button-secondary {
  border-color: #665b86;
  background: transparent;
  color: var(--text);
}

.button-secondary:hover:not(:disabled) {
  border-color: var(--cyan);
  background: rgb(34 211 238 / 8%);
  color: var(--cyan-light);
  box-shadow: none;
}

.text-link,
.card-link {
  font-weight: 650;
  text-decoration: none;
}

.text-link:hover,
.card-link:hover {
  text-decoration: underline;
}

.text-button {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--cyan-light);
  font-size: inherit;
  line-height: inherit;
  text-align: start;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.text-button:hover {
  color: var(--text);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: 0.73rem;
  font-weight: 750;
  line-height: 1.6;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(4rem, 9vw, 8.5rem);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.hero h1 {
  margin-bottom: 1.65rem;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
}

.accent-text {
  color: var(--cyan);
}

.hero-intro {
  max-width: 610px;
  margin-bottom: 2rem;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.65vw, 1.2rem);
  line-height: 1.8;
}

.hero-note {
  max-width: 560px;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-decoration {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-orb,
.floating-ring {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.orb-cyan {
  top: 14%;
  right: 1%;
  width: clamp(80px, 12vw, 150px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 25%, #abf6ff, #22d3ee 30%, #087a94 70%, #153152);
  box-shadow: 0 0 80px rgb(34 211 238 / 15%);
  opacity: 0.16;
}

.orb-violet {
  right: 13%;
  bottom: 14%;
  width: clamp(50px, 7vw, 90px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 30% 25%, #cab6ff, #8957ed 40%, #382365 80%);
  opacity: 0.25;
}

.floating-ring {
  top: 36%;
  right: 2%;
  width: clamp(100px, 17vw, 210px);
  aspect-ratio: 1;
  border: 2px solid rgb(153 117 255 / 25%);
  transform: rotate(-30deg) scaleY(0.65);
  box-shadow: 0 0 0 20px rgb(153 117 255 / 3%), inset 0 0 35px rgb(153 117 255 / 5%);
}

.section {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

#guides {
  padding-top: 1.5rem;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 2.25rem;
}

.section-heading .eyebrow {
  margin-bottom: 0.65rem;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(140deg, #221942, var(--surface));
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.card-topic {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.card-topic .eyebrow {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.09em;
}

.topic-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-card h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
}

.guide-card > p {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(208 203 226 / 12%);
  font-size: 0.85rem;
  line-height: 1.55;
}

.card-link span {
  flex-shrink: 0;
  font-size: 1.2rem;
}

.guide-card:focus-within {
  border-color: var(--cyan);
}

.supporting-section {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.supporting-section h2 {
  max-width: 440px;
}

.supporting-section > div > :last-child {
  margin-bottom: 0;
}

.reading-layout {
  width: min(calc(100% - var(--gutter) * 2), 820px);
  margin-inline: auto;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding-block: 1.75rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumbs a {
  color: var(--text-soft);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.breadcrumbs > span[aria-hidden] {
  color: #766b95;
}

.article-header {
  padding-block: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.article-header h1,
.contact-header h1 {
  margin-bottom: 1.5rem;
}

.article-lead {
  max-width: 720px;
  color: var(--text-soft);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  line-height: 1.7;
}

.article-meta {
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.article-section {
  margin-bottom: 2.75rem;
  overflow-wrap: anywhere;
}

.article-section h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}

.article-section p,
.article-section li {
  line-height: 1.9;
}

.article-section > :last-child {
  margin-bottom: 0;
}

.next-guide {
  position: relative;
  margin-top: 3.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid #4b3b74;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #28194c, #171b3b);
}

.next-guide h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.next-guide .button {
  margin-top: 0.5rem;
}

.table-wrap {
  max-width: 100%;
  margin-block: 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: var(--surface);
  scrollbar-color: #6a588e var(--surface);
}

table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  text-align: start;
  font-size: 0.9rem;
  line-height: 1.65;
}

caption {
  padding: 1rem 1.25rem;
  background: var(--bg-deep);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: start;
}

th,
td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  overflow-wrap: anywhere;
}

thead th {
  background: var(--surface-raised);
  color: var(--text);
  font-weight: 700;
}

tbody th {
  color: var(--cyan-light);
  font-weight: 600;
}

tbody tr:nth-child(even) {
  background: rgb(255 255 255 / 2%);
}

tbody tr:last-child > * {
  border-bottom: 0;
}

.contact-main {
  padding-bottom: 2rem;
}

.contact-header {
  max-width: 830px;
  padding-top: 2rem;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 1.5rem;
  padding-top: 2.5rem;
}

.contact-grid > *,
.contact-details > *,
.footer-grid > * {
  min-width: 0;
}

.contact-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow-wrap: anywhere;
}

.contact-panel h2 {
  font-size: 1.55rem;
}

.contact-panel > p {
  font-size: 0.92rem;
}

.contact-panel > :last-child {
  margin-bottom: 0;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-details address {
  margin-bottom: 1.25rem;
  font-size: 0.93rem;
}

.disclosure {
  padding: 1rem;
  border-inline-start: 3px solid var(--violet);
  border-radius: 0 6px 6px 0;
  background: rgb(153 117 255 / 8%);
  color: var(--text-soft);
  font-size: 0.8rem !important;
  line-height: 1.75;
}

form {
  margin-top: 1.75rem;
}

.field {
  margin-bottom: 1.4rem;
}

.field > label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
}

.required-note {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 400;
}

input:not([type="checkbox"]),
select,
textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #5a4d76;
  border-radius: 8px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

select {
  padding-inline-end: 2rem;
}

textarea {
  min-height: 175px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgb(34 211 238 / 12%);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-hint {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
}

.field-error {
  margin: 0.5rem 0 0;
  color: var(--error);
  font-size: 0.85rem;
  line-height: 1.55;
}

.field > .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 44px;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.7;
  cursor: pointer;
}

input[type="checkbox"] {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin: 0.3rem 0 0;
  accent-color: var(--cyan);
  cursor: pointer;
}

.form-status {
  margin: 1rem 0 0;
  color: var(--cyan-light);
  font-size: 0.9rem;
}

.form-status:empty {
  margin: 0;
}

.draft-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #337781;
  border-radius: var(--radius-small);
  background: rgb(34 211 238 / 6%);
}

.draft-result h3 {
  color: var(--cyan-light);
  font-size: 1.1rem;
  line-height: 1.4;
}

.draft-result p {
  font-size: 0.9rem;
}

.static-map {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.bengaluru-map-illustration {
  width: 100%;
  height: auto;
}

.static-map figcaption {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1.4rem;
  font-size: 0.9rem;
}

.static-map figcaption span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.contact-support {
  max-width: 800px;
  border-top: 1px solid var(--border);
}

.site-footer {
  padding-block: 3.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  font-size: 0.8rem;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.footer-grid p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.footer-heading {
  margin-bottom: 1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  letter-spacing: 0;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--text-soft);
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.footer-grid .text-button {
  color: var(--text-soft);
}

.cookie-banner {
  position: fixed;
  z-index: 50;
  inset: auto 0 0;
  max-height: 80vh;
  max-height: 80dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.5rem 0 max(1.5rem, env(safe-area-inset-bottom));
  border-top: 1px solid #62517f;
  background: #201837;
  box-shadow: 0 -12px 60px rgb(0 0 0 / 40%);
}

.cookie-inner {
  display: grid;
  gap: 1.25rem;
}

.cookie-inner > * {
  min-width: 0;
}

.cookie-banner h2 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.83rem;
  line-height: 1.7;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.cookie-actions .button {
  flex: 1 1 145px;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
}

.cookie-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.cookie-details .button {
  margin-top: 1rem;
}

.noscript-note {
  padding-block: 1.25rem;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (hover: hover) and (pointer: fine) {
  .guide-card:hover {
    border-color: #665386;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
  }
}

@media (min-width: 640px) {
  .header-inner {
    min-height: 88px;
  }

  .primary-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    margin-inline-start: 0.5rem;
  }

  .menu-toggle,
  .mobile-navigation {
    display: none;
  }

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

  .guide-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-grid > nav {
    grid-column: 1 / -1;
  }

  .article-header {
    padding-top: 3rem;
  }

  .article-section {
    font-size: 1.0625rem;
  }
}

@media (min-width: 960px) {
  .primary-nav {
    gap: 2.5rem;
  }

  .header-cta {
    margin-inline-start: 1.5rem;
  }

  .hero-decoration {
    inset-inline-end: -1rem;
  }

  .orb-cyan {
    opacity: 0.85;
  }

  .orb-violet {
    opacity: 0.8;
  }

  .floating-ring {
    top: 43%;
    border-color: rgb(153 117 255 / 60%);
  }

  .card-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .guide-card {
    grid-column: span 2;
    min-height: 350px;
  }

  .guide-card:nth-last-child(-n + 2) {
    grid-column: span 3;
    min-height: 305px;
  }

  .supporting-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.2fr 0.7fr;
    gap: 3rem;
  }

  .footer-grid > nav {
    grid-column: auto;
  }

  .cookie-inner {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    align-items: center;
    gap: 2rem;
  }

  .cookie-actions {
    flex-wrap: nowrap;
  }

  .cookie-actions .button {
    flex-basis: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .guide-card:hover,
  .button:hover:not(:disabled) {
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .guide-card,
  .contact-panel,
  .next-guide,
  .cookie-banner {
    border: 1px solid CanvasText;
  }

  .hero-decoration {
    display: none;
  }

  .topic-icon {
    stroke: CanvasText;
  }

  :focus-visible {
    outline-color: Highlight;
  }
}

@media print {
  :root {
    color-scheme: light;
    --text: #111;
    --text-soft: #222;
    --muted: #555;
    --cyan: #125266;
    --cyan-light: #125266;
    --border: #ccc;
  }

  body {
    background: #fff;
    color: #222;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .cookie-banner,
  .hero-decoration,
  .skip-link,
  .breadcrumbs,
  .menu-toggle,
  .next-guide,
  .noscript-note,
  .text-button {
    display: none !important;
  }

  .container,
  .reading-layout,
  .header-inner {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
  }

  .hero,
  .section,
  .article-header,
  .contact-header {
    padding-block: 1rem;
  }

  h1,
  .hero h1 {
    font-size: 30pt;
  }

  h2,
  .article-section h2 {
    font-size: 18pt;
  }

  h3 {
    font-size: 14pt;
  }

  h1,
  h2,
  h3 {
    break-after: avoid;
  }

  p,
  li {
    orphans: 3;
    widows: 3;
  }

  a {
    color: #125266;
    text-decoration: underline;
  }

  .card-grid,
  .contact-grid,
  .supporting-section {
    display: block;
  }

  .guide-card,
  .contact-panel,
  .static-map {
    margin-bottom: 1rem;
    background: #fff;
    box-shadow: none;
    break-inside: avoid;
  }

  .button {
    border-color: #777;
    background: transparent;
    color: #111;
    box-shadow: none;
  }

  input:not([type="checkbox"]),
  select,
  textarea,
  .table-wrap,
  thead th,
  caption {
    background: #fff;
    color: #111;
  }

  .table-wrap {
    overflow: visible;
  }

  table {
    min-width: 0;
    font-size: 9pt;
  }

  th,
  td {
    padding: 0.5rem;
  }

  tr {
    break-inside: avoid;
  }

  .article-section {
    margin-bottom: 1.5rem;
  }
}