/* ==========================================================================
   AUX Maldives - shared stylesheet (v2)
   Mobile-first. Edit the tokens below to change colours, type and spacing.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --purple: #3C479D;
  --purple-dark: #2F3880;
  --purple-tint: #EEF0F9;
  --purple-tint-strong: #E1E4F5;
  --orange: #EF3827;
  --orange-dark: #D42F20;
  --red: #D51B5B;
  --ink: #22242E;
  --muted: #555A6E;
  --white: #FFFFFF;
  --surface: #F4F5FA;
  --border: #E1E3ED;

  /* WhatsApp brand green, used only on the Contact page WhatsApp card.
     #128C7E keeps white bold 18px button text above the 3:1 large-text contrast threshold. */
  --wa-green: #128C7E;
  --wa-green-dark: #0B6B5F;

  --font: Sen, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius-lg: 24px;
  --radius: 20px;
  --radius-sm: 12px;
  --pill: 999px;
  --shadow-soft: 0 2px 6px rgba(34, 36, 46, 0.04), 0 12px 32px rgba(60, 71, 157, 0.08);
  --shadow-hover: 0 4px 10px rgba(34, 36, 46, 0.05), 0 20px 44px rgba(60, 71, 157, 0.14);
  --container: 1240px;
  --gutter: 1.25rem;
  --section: 4.5rem;
}

@media (min-width: 900px) {
  :root {
    --gutter: 2rem;
    --section: 6rem;
  }
}

/* ---------- 2. Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.5rem, 7vw, 4rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.75rem); }
h3 { font-size: 1.3rem; font-weight: 700; color: var(--ink); letter-spacing: 0; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--purple); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--purple-dark); }

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

ul, ol { padding-left: 1.25rem; margin: 0 0 1rem; }
li { margin-bottom: 0.4rem; }

strong { font-weight: 700; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--purple);
  color: var(--white);
  border-radius: var(--pill);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; color: var(--white); }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

/* ---------- 3. Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: var(--section) 0; }
.section-tight { padding: calc(var(--section) * 0.6) 0; }

.section-heading { max-width: 40rem; margin-bottom: 3rem; }
.section-heading-wide { max-width: none; }
.section-heading p { font-size: 1.15rem; color: var(--muted); }
.section-heading.centred { margin-left: auto; margin-right: auto; text-align: center; }

.lead { font-size: 1.2rem; }
.muted { color: var(--muted); }
.measure { max-width: 40rem; }

.grid {
  display: grid;
  gap: 1.5rem;
}

/* Two-column editorial block: heading left, body right */
.split {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Soft rounded panel */
.panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
}
@media (min-width: 900px) {
  .panel { padding: 3.5rem 4rem; }
}

.panel-purple {
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
}
.panel-purple h2, .panel-purple h3 { color: var(--white); }
@media (min-width: 900px) {
  .panel-purple { padding: 3rem 4rem; }
}

/* ---------- 4. Buttons ---------- */
/* Button text is bold and at least 18px so white on orange meets the
   large-text contrast threshold. Keep orange off small text. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--pill);
  border: 0;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.btn .icon { width: 1.3em; height: 1.3em; }
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(239, 56, 39, 0.22);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(239, 56, 39, 0.28);
}

.btn-secondary {
  background: var(--purple-tint);
  color: var(--purple);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--purple);
  color: var(--white);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}
.btn-purple:hover, .btn-purple:focus-visible {
  background: var(--purple-dark);
  color: var(--white);
}

.btn-wa {
  background: var(--wa-green);
  color: var(--white);
}
.btn-wa:hover, .btn-wa:focus-visible {
  background: var(--wa-green-dark);
  color: var(--white);
}

.btn:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

/* ---------- 5. Header ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 64px; height: 64px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-actions .btn-whatsapp {
  min-height: 48px;
  min-width: 48px;
  padding: 0.6rem 0.8rem;
  box-shadow: none;
}
.header-actions .btn-whatsapp .btn-label { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--purple-tint);
  border: 0;
  border-radius: 50%;
  color: var(--purple);
  cursor: pointer;
}
.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.menu-toggle-bars { position: relative; }
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-toggle-bars::before { top: -6px; }
.menu-toggle-bars::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 120;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 0.75rem;
}
.site-nav.is-open { display: block; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav li { margin: 0; }
.site-nav a {
  display: block;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.site-nav a:hover { background: var(--surface); color: var(--purple); }
.site-nav a[aria-current="page"] { background: var(--purple-tint); color: var(--purple); }

@media (min-width: 900px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner { gap: 2.5rem; }
  .brand img { width: 80px; height: 80px; }
  .menu-toggle { display: none; }
  .header-actions .btn-whatsapp { padding: 0.7rem 1.35rem; }
  .header-actions .btn-whatsapp .btn-label { display: inline; }

  .site-nav {
    display: block;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
    margin-left: auto;
  }
  .site-nav ul {
    display: flex;
    gap: 0.35rem;
  }
  .site-nav a {
    padding: 0.6rem 1.1rem;
    border-radius: var(--pill);
    font-size: 1.05rem;
  }
}

/* ---------- 6. Hero and page headers ---------- */
.hero {
  padding: calc(var(--section) * 0.9) 0 var(--section);
}
.hero-inner { max-width: none; }
.hero h1 { margin-bottom: 1.25rem; }
.hero .support-line {
  font-size: 1.25rem;
  color: var(--muted);
}
.hero .btn-group { margin-top: 2.5rem; }

.page-header {
  padding: calc(var(--section) * 0.8) 0 calc(var(--section) * 0.6);
}
.page-header-inner { max-width: 46rem; }
/* Wider intro that balances its lines (used on Services) */
.page-header-wide { max-width: none; }
.page-header-wide p { text-wrap: balance; }
/* Full-width intro, lines run to the edge of the content area */
.page-header-full { max-width: none; }
.page-header p { font-size: 1.2rem; color: var(--muted); }
.page-header p + p { margin-top: 1rem; }

@media (min-width: 900px) {
  .hero .support-line { font-size: 1.4rem; }
}

/* ---------- 7. Cards ---------- */
.card {
  display: block;
  padding: 2rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); }

a.card { transition: box-shadow 0.2s ease, transform 0.2s ease; }
a.card:hover, a.card:focus-visible {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  color: inherit;
}
a.card:hover h3 { color: var(--purple); }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: var(--purple-tint);
  color: var(--purple);
}
.card-icon .icon { width: 28px; height: 28px; }

.grid-cards { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-cards { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

/* ---------- 8. Home sections ---------- */
.list-columns {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 1.75rem;
}
.list-columns li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
}
.list-columns .icon {
  position: absolute;
  left: 0; top: 0.35em;
  width: 1.15em; height: 1.15em;
  color: var(--purple);
}
@media (min-width: 640px) {
  .list-columns { columns: 2; column-gap: 3rem; }
  .list-columns li { break-inside: avoid; }
}

.grid-features { grid-template-columns: 1fr; gap: 2rem; }
.feature { padding-top: 1.25rem; border-top: 2px solid var(--purple-tint-strong); }
.feature h3 { margin-bottom: 0.4rem; color: var(--purple); }
.feature p { color: var(--muted); }
@media (min-width: 640px) { .grid-features { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 960px) { .grid-features { grid-template-columns: repeat(3, 1fr); gap: 3rem 2.5rem; } }

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3.75rem;
  margin: 0;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.75rem; height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
}
.steps strong { display: block; color: var(--purple); margin-bottom: 0.15rem; }
.steps li span { color: var(--muted); }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 2rem; }
  .steps li { padding-left: 0; padding-top: 3.75rem; }
}

.credibility p {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.cta-block {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}
.cta-block .btn-group { justify-content: center; }

/* ---------- 9. Services page ---------- */
.service-category { padding: calc(var(--section) * 0.55) 0; }
.service-category + .service-category { border-top: 1px solid var(--border); }
.category-heading {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2rem;
}
.category-heading .card-icon { margin: 0; flex: none; }
.category-heading h2 { margin: 0; font-size: clamp(1.6rem, 3.5vw, 2.1rem); }

.grid-services { grid-template-columns: 1fr; }
@media (min-width: 900px) { .grid-services { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }

.service .includes {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- 10. About page ---------- */
.grid-values { grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .grid-values { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 960px) { .grid-values { grid-template-columns: repeat(3, 1fr); gap: 3rem 2.5rem; } }
.value { padding-top: 1.25rem; border-top: 2px solid var(--purple-tint-strong); }
.value h3 { margin-bottom: 0.4rem; color: var(--purple); }
.value p { color: var(--muted); }

/* ---------- 11. Contact page ---------- */
.grid-contact { grid-template-columns: 1fr; }
@media (min-width: 960px) { .grid-contact { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.contact-card .card-icon { margin-bottom: 1rem; }
.contact-card h3 { margin-bottom: 1.1rem; }
.card-actions {
  display: grid;
  gap: 0.75rem;
  max-width: 22rem;
}
.card-actions .btn {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* WhatsApp card: same white card as the others, green icon and buttons only */
.contact-card-wa .card-icon { background: var(--wa-green); color: var(--white); }

.where {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .where { grid-template-columns: 1fr 1.25fr; gap: 3.5rem; align-items: start; }
}
.address { font-style: normal; font-weight: 700; font-size: 1.15rem; color: var(--purple); margin-bottom: 1.1rem; }
.map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}
.map-caption {
  padding: 0.9rem 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Form */
.form-wrap { max-width: 44rem; }
.form-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid .full { grid-column: 1 / -1; }
}

label, legend {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.optional { font-weight: 400; color: var(--muted); }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
input:focus, textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--purple);
}
textarea { min-height: 160px; resize: vertical; }

/* Multi-select dropdown (services) */
.multiselect { position: relative; }

.ms-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1.1rem;
  font: inherit;
  color: var(--ink);
  text-align: left;
  background: var(--surface);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.ms-button:hover { background: var(--purple-tint); }
.ms-button:focus-visible,
.ms-button[aria-expanded="true"] {
  outline: none;
  background: var(--white);
  border-color: var(--purple);
}
.ms-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ms-value.is-placeholder { color: var(--muted); }
.ms-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--purple);
  transition: transform 0.2s ease;
}
.ms-button[aria-expanded="true"] .ms-chevron { transform: rotate(180deg); }

.ms-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 30;
  max-height: min(24rem, 65vh);
  overflow-y: auto;
  padding: 0.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}
.ms-panel[hidden] { display: none; }

.ms-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 48px;
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-weight: 400;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.ms-option:hover { background: var(--surface); }
.ms-option.is-checked { background: var(--purple-tint); font-weight: 700; }
.ms-option:focus-within { outline: 3px solid var(--purple); outline-offset: -3px; }
.ms-option input {
  width: 1.3rem;
  height: 1.3rem;
  margin: 0;
  accent-color: var(--purple);
  flex: none;
}

.hp {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
}
.form-status[hidden] { display: none; }
.form-status.is-success { background: var(--purple-tint); }
.form-status.is-error { background: #FDECEF; }
.form-status h3 { margin-bottom: 0.3rem; }

/* Follow us pills on light sections (same shape as the footer pills) */
.social-pills {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.social-pills li { margin: 0; }
.social-pills a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.5rem 1.1rem;
  background: var(--purple-tint);
  color: var(--purple);
  border-radius: var(--pill);
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.social-pills a:hover, .social-pills a:focus-visible {
  background: var(--purple);
  color: var(--white);
}

/* ---------- 12. Footer ---------- */
.site-footer {
  background: var(--purple);
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
  margin-top: auto;
}
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--white); text-decoration-thickness: 2px; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
}

.footer-brand img { width: 96px; height: 96px; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 1.2rem; font-weight: 700; }

.site-footer h2 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  opacity: 0.85;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}
.footer-list li:last-child { margin-bottom: 0; }
.footer-list .icon { margin-top: 0.3em; opacity: 0.8; }
.footer-list address { font-style: normal; }

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  justify-content: start;
}
.footer-social li { margin: 0; }
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.5rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--pill);
  text-decoration: none;
  font-weight: 700;
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.18); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  opacity: 0.9;
}
.footer-bottom p { margin: 0; }

/* ---------- 13. Floating WhatsApp button (phones and tablets) ---------- */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(239, 56, 39, 0.35);
}
.whatsapp-float:hover { background: var(--orange-dark); color: var(--white); }
.whatsapp-float .icon { width: 30px; height: 30px; }
@media (min-width: 900px) {
  .whatsapp-float { display: none; }
}

/* ---------- 14. Cookie notice ---------- */
.cookie-notice {
  position: fixed;
  left: 1rem;
  right: 5.75rem;
  bottom: 1rem;
  z-index: 140;
  max-width: 34rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p {
  flex: 1 1 14rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-notice .btn { min-height: 44px; padding: 0.5rem 1.25rem; font-size: 1rem; }
@media (min-width: 900px) {
  .cookie-notice { right: 1rem; margin: 0 auto; }
}

/* ---------- 15. Page shell ---------- */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page main { flex: 1 0 auto; }

/* ---------- 16. Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .btn:hover, a.card:hover { transform: none; }
}
