:root {
  --scroll-soften: 0;
  --paper: #faf9f5;
  --paper-deep: #f0eee6;
  --ink: #24221f;
  --muted: #666158;
  --line: rgba(20, 20, 19, 0.16);
  --line-strong: rgba(20, 20, 19, 0.28);
  --paper-glass: rgba(250, 249, 245, 0.78);
  --page-effects:
    linear-gradient(180deg, rgba(250, 249, 245, 0.94), rgba(240, 238, 230, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(47, 146, 123, 0.12), transparent 28%),
    radial-gradient(circle at 16% 78%, rgba(195, 93, 42, 0.10), transparent 26%);
  --nav-scrolled: rgba(250, 249, 245, 0.92);
  --menu-bg: rgba(250, 249, 245, 0.96);
  --row-hover: rgba(240, 238, 230, 0.52);
  --selection: rgba(204, 120, 92, 0.5);
  --logo-filter: none;
  --dark: #11110f;
  --dark-soft: #1d1d1b;
  --green: #2f927b;
  --violet: #6b3b89;
  --blue: #365fae;
  --ember: #c35d2a;
  --max: 1240px;
  --section-top: 52px;
  --section-bottom: 82px;
  --font-sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

html[data-theme="dark"] {
  --paper: #11110f;
  --paper-deep: #181713;
  --ink: #ded8cc;
  --muted: #b8b2a4;
  --line: rgba(222, 216, 204, 0.16);
  --line-strong: rgba(222, 216, 204, 0.34);
  --paper-glass: rgba(17, 17, 15, 0.72);
  --page-effects:
    linear-gradient(180deg, rgba(17, 17, 15, 0.96), rgba(24, 23, 19, 0.96)),
    radial-gradient(circle at 80% 18%, rgba(47, 146, 123, 0.16), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(120, 160, 255, 0.10), transparent 28%);
  --nav-scrolled: rgba(17, 17, 15, 0.92);
  --menu-bg: rgba(17, 17, 15, 0.96);
  --row-hover: rgba(222, 216, 204, 0.05);
  --selection: rgba(130, 240, 200, 0.25);
  --logo-filter: invert(91%) sepia(7%) saturate(420%) hue-rotate(354deg) brightness(95%) contrast(88%);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--page-effects);
}

::selection {
  background: var(--selection);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.12em;
}

section,
header {
  scroll-margin-top: 92px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2.2s ease-out;
}

#aurora-bg.aurora-loaded {
  opacity: calc(0.74 - (var(--scroll-soften) * 0.28));
}

body.is-subpage #aurora-bg.aurora-loaded {
  opacity: calc(0.92 - (var(--scroll-soften) * 0.18));
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 72px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 72px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  margin: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 24px;
  background: rgba(250, 249, 245, 0);
  border-bottom: 1px solid transparent;
  transition:
    height 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.topbar.is-scrolled {
  height: 72px;
  background: var(--nav-scrolled);
  border-bottom-color: rgba(20, 20, 19, 0.1);
  box-shadow: 0 10px 28px rgba(20, 20, 19, 0.035);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  place-items: center;
  justify-self: start;
  width: 112px;
  height: 44px;
  position: relative;
  transform: translateX(-10px);
}

.brand img {
  width: 104px;
  height: auto;
  display: block;
  filter: var(--logo-filter);
  opacity: 1;
  transform-origin: left center;
  transition:
    width 240ms ease,
    transform 240ms ease;
}

.brand::before {
  content: "";
  display: none;
  width: 104px;
  aspect-ratio: 2.4;
  background: var(--ink);
  -webkit-mask: url("assets/amara-logo-adjusted.svg") center / contain no-repeat;
  mask: url("assets/amara-logo-adjusted.svg") center / contain no-repeat;
  transition:
    width 240ms ease,
    transform 240ms ease;
}

.topbar.is-scrolled .brand img {
  width: 104px;
  transform: none;
}

.topbar.is-scrolled .brand::before {
  width: 104px;
  transform: none;
}

.topbar.is-scrolled .lang-toggle,
.topbar.is-scrolled .theme-toggle,
.topbar.is-scrolled .menu-toggle,
.topbar.is-scrolled .nav-cta {
  min-height: 38px;
}

.nav-links,
.nav-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-self: center;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 400;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a {
  display: inline-block;
}

.nav-links a::after {
  content: attr(data-nav-text);
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  font-weight: 800;
}

.nav-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.nav-links a[aria-current="page"],
.menu-panel a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
}

.nav-links a,
.footer-links a,
.service-link {
  transition: color 180ms ease, opacity 180ms ease, text-underline-offset 180ms ease;
}

.nav-actions {
  justify-self: end;
  justify-content: end;
  gap: 8px;
}

.lang-toggle,
.theme-toggle,
.menu-toggle {
  width: 40px;
  min-width: 40px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  flex: 0 0 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-glass);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.theme-toggle {
  display: inline-flex;
  color: var(--ink);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  gap: 5px;
  flex-direction: column;
}

.menu-toggle span {
  width: 17px;
  height: 1px;
  background: var(--ink);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

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

.menu-panel {
  position: fixed;
  top: 66px;
  left: 16px;
  right: 16px;
  z-index: 999;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--menu-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 42px rgba(20, 20, 19, 0.08);
}

.menu-panel.is-open {
  display: grid;
}

.menu-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.menu-panel a:last-child {
  border-bottom: 0;
  font-weight: 650;
}

.lang-toggle,
.nav-cta,
.button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
}

.lang-toggle {
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-cta,
.button {
  padding: 0 16px;
  text-decoration: none;
  white-space: nowrap;
}

.button-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.nav-cta,
.button-secondary {
  background: var(--paper-glass);
  color: var(--ink);
}

.button,
.nav-cta,
.lang-toggle,
.theme-toggle {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.nav-cta:hover,
.lang-toggle:hover,
.theme-toggle:hover {
  transform: translateY(-1px);
}

.button-secondary:hover,
.lang-toggle:hover,
.theme-toggle:hover {
  border-color: var(--line-strong);
}

.hero-actions .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.hero {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  min-height: 510px;
  padding: 104px 0 58px;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.35;
  color: var(--muted);
}

.hero h1,
.page-header h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 90px);
  line-height: 0.95;
  font-weight: 750;
  letter-spacing: 0;
}

.hero h1 .emphasis {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.08em;
}

.hero h1 .word {
  display: inline;
  opacity: 0;
  transition: opacity 1080ms ease;
  transition-delay: calc(var(--word-index, 0) * 115ms);
}

.hero h1.is-ready .word {
  opacity: 1;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.18;
}

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

.button {
  min-width: 166px;
}

.intro-grid,
.thesis-section,
.belief-band,
.service-editorial,
.principle-grid,
.audience-band,
.quote-band,
.footer,
.page-main,
.legal-page {
  width: min(var(--max), calc(100% - 56px));
  margin-left: auto;
  margin-right: auto;
}

.thesis-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(280px, 1fr);
  align-items: start;
  gap: 80px;
  padding: var(--section-top) 0 var(--section-bottom);
  border-top: 1px solid var(--line);
}

.thesis-section h2,
.audience-band h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}

.belief-band p:not(.eyebrow) {
  margin: 0;
  max-width: 940px;
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.45vw, 34px);
  line-height: 1.12;
  letter-spacing: 0;
}

.thesis-copy {
  display: grid;
  gap: 24px;
  padding-top: 44px;
}

.thesis-copy p,
.audience-band p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.28;
}

.sector-line {
  color: var(--muted);
}

.client-groups {
  display: grid;
  gap: 28px;
}

.client-group {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 92px;
}

.client-group h3 {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.client-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-band span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 7px 10px;
  background: var(--paper-glass);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.1;
}

.belief-band,
.audience-band {
  padding: var(--section-top) 0 var(--section-bottom);
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: 80px;
  padding: var(--section-top) 0 var(--section-bottom);
  border-top: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-copy p,
.text-columns p,
.detail-section p,
.contact-card p,
.legal-page p,
.legal-page li {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.28;
}

.intro-copy {
  padding-top: 44px;
}

.service-editorial {
  margin-bottom: 32px;
  border-top: 1px solid var(--line);
}

#services {
  margin-bottom: 44px;
}

#services .service-row:last-child .service-main p {
  margin-bottom: 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  gap: 72px;
  padding: 20px 0 var(--section-bottom);
  border-top: 1px solid var(--line);
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 48px;
  padding-top: 44px;
}

.principle-list article {
  min-height: 190px;
  display: grid;
  grid-template-rows: 64px 1fr;
  align-content: start;
  row-gap: 14px;
  padding: 0;
}

.principle-list h3 {
  margin: 0;
  font-size: clamp(22px, 2.15vw, 31px);
  line-height: 1.02;
  letter-spacing: 0;
}

.principle-list p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.3;
}

.audience-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(280px, 1fr);
  gap: 80px;
}

.audience-band .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.service-row {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(280px, 1fr) minmax(188px, auto);
  gap: clamp(28px, 4.5vw, 68px);
  align-items: start;
  padding: clamp(34px, 5vw, 62px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: rgba(250, 249, 245, 0);
  transition: background-color 220ms ease;
}

.service-row:hover::before {
  background: var(--row-hover);
}

.service-editorial:has(+ .principle-grid) .service-row:last-child {
  border-bottom: 0;
}

.service-meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  padding-top: 7px;
}

.card-index {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-main {
  max-width: 760px;
}

.service-main h3,
.detail-section h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}

.service-main p {
  max-width: 560px;
  margin: 0 0 34px;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.28;
}

.service-link {
  min-width: 188px;
  min-height: 42px;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 7px;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
}

.service-link span[aria-hidden="true"] {
  transition: transform 180ms ease;
}

.service-row:hover .service-link span[aria-hidden="true"] {
  transform: translate(2px, -2px);
}

.quote-band {
  padding: var(--section-top) 0 112px;
  border-top: 1px solid var(--line);
}

.contact-line {
  margin-top: 26px !important;
  margin-bottom: 28px !important;
}

#standards {
  border-top-color: var(--line-strong);
}

#companies {
  border-top: 0;
}

#contact {
  border-top: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.quote-band p {
  max-width: 990px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.12;
}

.footer {
  min-height: 180px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.footer img {
  width: 92px;
  filter: var(--logo-filter);
}

.footer p {
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-links {
  gap: 22px;
  flex-wrap: wrap;
  justify-content: end;
  font-size: 15px;
  padding-bottom: 1px;
}

.page-main {
  padding: 92px 0 120px;
}

.page-header {
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  max-width: 1100px;
}

.detail-section {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px 72px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.detail-section .card-index {
  grid-row: span 3;
  margin-top: 0;
}

.detail-section p {
  max-width: 880px;
}

.detail-section ul {
  max-width: 780px;
  margin: 26px 0 0;
  padding-left: 1.1em;
  font-size: 18px;
  line-height: 1.42;
}

.detail-section li + li {
  margin-top: 10px;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  gap: 72px;
  padding: var(--section-top) 0 44px;
  border-bottom: 1px solid var(--line);
}

.proof-section h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}

.proof-list {
  display: grid;
  gap: 0;
  padding-top: 44px;
}

.proof-list p {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.28;
}

.proof-list p:first-child {
  padding-top: 0;
}

.proof-list p:last-child {
  border-bottom: 0;
}

.proof-list .service-link {
  margin-top: 28px;
  justify-self: start;
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  padding-top: 58px;
}

.contact-card {
  max-width: 760px;
  margin-top: 58px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: 72px;
  padding-top: 58px;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-glass);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
}

.booking-form textarea {
  resize: vertical;
}

.contact-card a {
  display: inline-block;
  margin-top: 28px;
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 700;
}

.legal-page {
  max-width: 880px;
  padding: 92px 0 120px;
}

.legal-page h1 {
  margin: 0 0 42px;
  font-size: clamp(36px, 4.8vw, 62px);
  line-height: 0.98;
}

.legal-page p + p {
  margin-top: 24px;
}

.article-page {
  max-width: 1040px;
}

.article-header h1 {
  max-width: 980px;
}

.article-body {
  max-width: 820px;
  padding-top: 58px;
}

.article-body h2 {
  margin: 58px 0 18px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.04;
  letter-spacing: 0;
}

.article-body p,
.article-body li {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.42;
}

.article-body p + p {
  margin-top: 22px;
}

.article-body ul {
  margin: 0;
  padding-left: 1.15em;
  display: grid;
  gap: 14px;
}

.article-tldr {
  padding: 0;
}

.article-cta {
  margin-top: 58px !important;
}

.article-cta .button {
  width: auto;
  max-width: 100%;
  min-height: 48px;
  padding: 0 20px;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 760px) {
  .topbar {
    width: 100%;
    height: auto;
    min-height: 78px;
    padding: 0 16px;
    grid-template-columns: auto auto;
    gap: 14px;
  }

  .topbar.is-scrolled {
    min-height: 78px;
    height: auto;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .lang-toggle,
  .theme-toggle,
  .menu-toggle {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    flex-basis: 46px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .intro-grid,
  .thesis-section,
  .audience-band,
  .service-editorial,
  .principle-grid,
  .quote-band,
  .footer,
  .page-main,
  .legal-page {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: 0;
    padding: 70px 0 42px;
  }

  .hero h1,
  .page-header h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .hero-copy {
    font-size: 20px;
  }

  .button {
    width: 100%;
  }

  .intro-grid,
  .thesis-section,
  .audience-band,
  .service-editorial,
  .principle-grid,
  .text-columns,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 28px;
    padding-bottom: 70px;
  }

  .intro-copy,
  .thesis-copy {
    padding-top: 0;
  }

  .thesis-section,
  .principle-grid,
  .audience-band {
    gap: 28px;
    padding: 42px 0 70px;
  }

  .belief-band {
    padding: 64px 0;
  }

  .principle-list {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .principle-list article {
    grid-template-rows: auto auto;
  }

  .proof-list {
    padding-top: 0;
  }

  .audience-band .eyebrow {
    margin-bottom: 0;
  }

  .card-index {
    margin-bottom: 0;
  }

  .service-row {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-meta {
    align-items: center;
    padding-top: 0;
  }

  .service-link {
    width: 100%;
    min-width: 0;
  }

  .detail-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .proof-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 58px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-section .card-index {
    grid-row: auto;
  }

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

  .article-body {
    padding-top: 42px;
  }

  .article-body h2 {
    margin-top: 46px;
  }

  .article-cta .button {
    width: 100%;
  }
}

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

  #aurora-bg {
    display: none;
  }

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
