/* Supportz Mobility Services Limited
   Brand: cream ground, sunset orange, deep brown, near-black ink */

:root {
  --bg: #fff8ed;
  --bg-alt: #f6e6d2;
  --paper: #fffdf8;
  --ink: #1c140f;
  --muted: #5c4638;
  --line: #e4d0ba;
  --sun: #ea580c;
  --sun-hot: #dc2f02;
  --sun-soft: #ffedd5;
  --sun-deep: #9a3412;
  --brown: #3d2314;
  --brown-deep: #24150c;
  --success: #166534;
  --error: #991b1b;
  --focus: #9a3412;
  --shadow: 0 18px 40px rgba(36, 21, 12, 0.08);
  --radius: 20px;
  --header: 84px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Outfit", system-ui, sans-serif;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--sun-deep);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--sun-hot);
}

:focus {
  outline: none;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.15em;
  flex: 0 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--brown);
  color: #fff8ed;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  color: #fff8ed;
}

main {
  padding-bottom: 2.5rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 760px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(255, 248, 237, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(36, 21, 12, 0.06);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: auto;
  height: 68px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav ul {
  display: flex;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--sun-soft);
  color: var(--sun-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, box-shadow 0.28s ease;
}

.btn:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--sun-deep);
  color: #fffdf8;
  box-shadow: 0 10px 24px rgba(154, 52, 18, 0.25);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  animation: shine 4.5s ease-in-out infinite;
}

.btn-primary:hover {
  background: #7c2d12;
  color: #fffdf8;
  box-shadow: 0 18px 34px rgba(154, 52, 18, 0.38);
}

.btn-secondary {
  background: transparent;
  color: var(--sun-deep);
  border-color: var(--sun-deep);
}

.btn-secondary:hover {
  background: var(--sun-soft);
  color: var(--sun-deep);
}

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

.btn-light {
  background: #fff8ed;
  color: var(--brown-deep);
}

.btn-light:hover {
  background: #fff;
  color: var(--brown-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(61, 35, 20, 0.05) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  opacity: 0.35;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.28), rgba(255, 248, 237, 0) 68%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid,
.split,
.feature-split,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sun-deep);
  margin: 0 0 0.8rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

.lede,
.section-head p,
.hero-copy p {
  font-size: 1.125rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 1rem;
}

.hero-note {
  color: var(--muted);
  font-style: italic;
}

.sun-frame {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  animation: float 5.5s ease-in-out infinite;
}

.sun-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  animation: photoIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sun-frame::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9e2c, #ea580c 55%, #dc2f02);
  filter: blur(8px);
  z-index: 0;
  animation: spinGlow 16s linear infinite;
}

.trust-bar {
  background: var(--brown);
  color: #f8ead8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: center;
}

.trust-grid p {
  margin: 0;
  font-size: 0.95rem;
}

.trust-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  color: #fff8ed;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #f8ead8, #fff8ed);
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.photo-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-card img,
.photo-frame img {
  width: 100%;
  display: block;
}

.photo-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 0.9rem 1.1rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.live-photo {
  position: relative;
  margin: 0;
}

.live-photo-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.live-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  min-height: 280px;
  height: 100%;
  object-fit: cover;
}

.live-photo.is-contain .live-photo-frame {
  background: #fff8ed;
}

.live-photo.is-contain img {
  min-height: 0;
  object-fit: contain;
}

.live-photo-glow {
  position: absolute;
  inset: -30% -10% auto auto;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.45), rgba(255, 248, 237, 0) 70%);
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.live-photo-ring {
  position: absolute;
  inset: 10px;
  z-index: 3;
  pointer-events: none;
  border-radius: calc(var(--radius) - 6px);
  border: 1.5px solid rgba(234, 88, 12, 0.55);
  box-shadow: 0 0 18px rgba(234, 88, 12, 0.35), inset 0 0 12px rgba(255, 179, 71, 0.25);
  animation: ringPulse 3.2s ease-in-out infinite;
}

.live-photo-orb {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ea580c;
  box-shadow: 0 0 14px #ea580c, 0 0 2px #fff8ed;
  z-index: 4;
  pointer-events: none;
  offset-path: inset(14px round 14px);
  offset-rotate: 0deg;
}

.live-photo-orb-a {
  animation: photoOrbit 8s linear infinite;
}

.live-photo-orb-b {
  background: #ffb347;
  box-shadow: 0 0 14px #ffb347;
  animation: photoOrbit 11s linear infinite reverse;
}

.live-photo-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: photoShine 5.5s ease-in-out infinite;
}

.live-photo-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(36, 21, 12, 0.14);
}

.photo-card.live-photo {
  overflow: hidden;
}

.photo-card.live-photo .live-photo-frame {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.photo-card.live-photo img {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

@keyframes photoShine {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.55; box-shadow: 0 0 12px rgba(234, 88, 12, 0.25), inset 0 0 8px rgba(255, 179, 71, 0.15); }
  50% { opacity: 1; box-shadow: 0 0 22px rgba(234, 88, 12, 0.5), inset 0 0 16px rgba(255, 179, 71, 0.35); }
}

@keyframes photoOrbit {
  to { offset-distance: 100%; }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.plain-card,
.audience-grid article,
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 40px rgba(36, 21, 12, 0.12);
  border-color: #f4b183;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffedd5, #fed7aa);
  color: var(--sun-deep);
  margin-bottom: 1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .icon-badge {
  transform: translateY(-4px) scale(1.08);
}

.icon-badge.lg {
  width: 64px;
  height: 64px;
}

.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--sun-deep);
}

.text-link .icon {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.text-link:hover .icon {
  transform: translateX(6px);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: var(--paper);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
}

.steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sun-deep);
  color: #fff8ed;
  font-weight: 700;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.value-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: var(--paper);
  border-radius: 18px;
  padding: 1.1rem;
  border: 1px solid var(--line);
}

.value-list .icon {
  width: 28px;
  height: 28px;
  color: var(--sun-deep);
}

.cta-band {
  background: linear-gradient(135deg, #9a3412, #c2410c 45%, #ea580c);
  color: #fff8ed;
  padding: 3.5rem 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.cta-band h2,
.cta-band p {
  color: #fff8ed;
}

.cta-band p {
  opacity: 0.92;
}

.page-hero {
  padding: 4rem 0 1rem;
}

.facts {
  margin: 0;
}

.facts div {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.facts dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
}

.pull-quote {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--sun-deep);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.span-2 {
  grid-column: 1 / -1;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.pill-list li {
  background: var(--sun-soft);
  color: var(--sun-deep);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.stack-lg {
  display: grid;
  gap: 1rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.check-list .icon {
  color: var(--success);
  width: 22px;
  height: 22px;
}

.fine-print {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

.enquiry-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-intro,
.form-legal,
.field-hint {
  color: var(--muted);
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-field,
select,
textarea,
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid #c4a484;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

select.form-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%239A3412' stroke-width='2'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.4rem;
}

.form-field:hover {
  border-color: #9a3412;
}

.form-field:focus {
  border-color: var(--sun-deep);
  box-shadow: 0 0 0 4px rgba(154, 52, 18, 0.18);
}

.form-field.is-invalid,
.form-field[aria-invalid="true"] {
  border-color: var(--error);
}

.errorlist {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  color: var(--error);
  font-weight: 600;
}

.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-list li,
.contact-aside p {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}

.label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.legal-body {
  padding-bottom: 4rem;
}

.legal-body h2 {
  margin-top: 2rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  margin: 1rem 0 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  text-align: left;
  font-weight: 700;
  padding: 0.8rem 1rem 0;
}

th,
td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--sun-soft);
  color: var(--ink);
}

.site-footer {
  background: var(--brown-deep);
  color: #f3e0cc;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 0.8rem;
}

.footer-heading {
  font-size: 1rem;
  color: #fff8ed;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a,
.site-footer a {
  color: #f3e0cc;
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: #fff;
}

.footer-links li {
  margin: 0.45rem 0;
}

.social-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(243, 224, 204, 0.3);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.footer-base {
  border-top: 1px solid rgba(243, 224, 204, 0.18);
  padding: 1rem 0 1.3rem;
  font-size: 0.9rem;
}

.footer-base-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.whatsapp-dock {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #166534;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(22, 101, 52, 0.3);
  font-weight: 700;
  overflow: visible;
  animation: dockIn 0.7s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.whatsapp-dock::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid #166534;
  animation: ring 2.2s 1.2s ease-out infinite;
  pointer-events: none;
}

body:has(#cookie-banner:not([hidden])) .whatsapp-dock {
  bottom: 9.5rem;
}

.whatsapp-dock:hover {
  color: #fff;
  background: #14532d;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--brown-deep);
  color: #f8ead8;
  padding: 1rem 0 1.2rem;
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.2);
}

body:has(#cookie-banner:not([hidden])) {
  padding-bottom: 8.5rem;
}

.cookie-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  justify-content: space-between;
}

.cookie-banner h2,
.cookie-banner a {
  color: #fff8ed;
}

.cookie-kicker {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.3rem;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.message-stack {
  width: min(calc(100% - 2rem), var(--max));
  margin: 1rem auto 0;
}

.flash {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}

.flash-success {
  background: #dcfce7;
  color: var(--success);
}

.flash-error {
  background: #fee2e2;
  color: var(--error);
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.cookie-banner {
  animation: slideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .feature-split,
  .contact-grid,
  .card-grid,
  .card-grid.four,
  .audience-grid,
  .trust-grid,
  .footer-grid,
  .mission-grid,
  .cta-inner,
  .cookie-inner,
  .service-row,
  .footer-base-inner,
  .photo-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-inner,
  .cookie-inner {
    align-items: stretch;
  }

  .brand img {
    height: 54px;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: 0;
    right: 0;
    width: min(100%, 360px);
    height: 100vh;
    background: #fff8ed;
    flex-direction: column;
    align-items: stretch;
    padding: 6rem 1.4rem 2rem;
    transform: translateX(110%);
    transition: transform 0.28s ease;
    box-shadow: -20px 0 40px rgba(36, 21, 12, 0.12);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
  }

  .whatsapp-dock span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .whatsapp-dock {
    width: 56px;
    height: 56px;
    justify-content: center;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow,
  .sun-frame,
  .sun-frame::before,
  .sun-frame img,
  .btn-primary::after,
  .whatsapp-dock,
  .whatsapp-dock::before,
  .cookie-banner,
  .live-photo-glow,
  .live-photo-shine,
  .live-photo-ring,
  .live-photo-orb,
  .live-photo img {
    animation: none !important;
  }

  .live-photo-frame:hover {
    transform: none;
  }

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes pulse {
  0%,
  100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes spinGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes photoIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes shine {
  0%,
  55% { transform: translateX(0) skewX(-20deg); }
  75% { transform: translateX(420%) skewX(-20deg); }
  100% { transform: translateX(420%) skewX(-20deg); }
}

@keyframes dockIn {
  from { opacity: 0; transform: translateY(18px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ring {
  0% { transform: scale(0.92); opacity: 0.45; }
  100% { transform: scale(1.28); opacity: 0; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
