:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --surface-soft: #eef4ee;
  --ink: #111315;
  --muted: #5d6660;
  --line: #dbe2dc;
  --accent: #0f8f74;
  --accent-strong: #09624f;
  --accent-soft: #dff5ed;
  --coral: #e7624f;
  --gold: #d9a441;
  --black: #0c0f0e;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 19, 21, 0.12);
  --shadow-soft: 0 10px 30px rgba(17, 19, 21, 0.08);
  --radius: 8px;
  --container: min(1120px, calc(100% - 40px));
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-is-open,
body.modal-is-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(15, 143, 116, 0.42);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(12, 15, 14, 0.24);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: white;
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1;
  box-shadow: 0 10px 24px white;
}

.brand-text {
  max-width: 190px;
  overflow-wrap: anywhere;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-panel > a:not(.button) {
  padding: 10px 12px;
  color: currentColor;
  opacity: 0.88;
  border-radius: var(--radius);
  transition: background 160ms ease, opacity 160ms ease;
}

.nav-panel > a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-panel > a:hover {
  background: var(--surface-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
  background: var(--white);
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:first-of-type {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]:last-of-type {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 143, 116, 0.22);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("../img/hero-workspace.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 15, 14, 0.88), rgba(12, 15, 14, 0.6) 48%, rgba(12, 15, 14, 0.2)),
    linear-gradient(0deg, rgba(12, 15, 14, 0.72), rgba(12, 15, 14, 0.1) 40%);
}

.hero-content {
  max-width: 820px;
  padding: 128px 0 54px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow {
  color: #9ef0d4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 7vw, 5.7rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 740px;
  margin: 44px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-metrics div {
  padding-right: 24px;
}

.hero-metrics dt {
  color: #9ef0d4;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 104px 0;
}

.section-light {
  background: var(--surface);
}

.section-ink {
  background: var(--black);
  color: var(--white);
}

.section-accent {
  background: var(--surface-soft);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: start;
}

.section-copy h2,
.section-heading h2 {
  max-width: 780px;
}

.section-text {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-text p {
  margin: 0;
}

.section-text p + p {
  margin-top: 18px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin-bottom: 42px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.project-card,
.process-step,
.reason-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-card {
  min-height: 250px;
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 900;
}

.info-card p,
.process-step p,
.reason-item p,
.project-content p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section-ink .section-kicker {
  color: #9ef0d4;
}

.portfolio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

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

.project-card {
  overflow: hidden;
  background: #151918;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(158, 240, 212, 0.42);
  background: #18201e;
}

.project-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #222826;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.project-card:hover .project-media img {
  transform: scale(1.035);
}

.project-content {
  padding: 24px;
}

.project-content h3 {
  color: var(--white);
  font-size: 1.34rem;
}

.project-content p {
  color: rgba(255, 255, 255, 0.68);
}

.project-category {
  margin: 0 0 10px !important;
  color: #9ef0d4 !important;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.project-tech li,
.tech-stack span {
  border: 1px solid rgba(15, 143, 116, 0.22);
  border-radius: var(--radius);
  background: rgba(15, 143, 116, 0.1);
  color: var(--accent-strong);
  padding: 8px 10px;
  font-size: 0.84rem;
  font-weight: 800;
}

.section-ink .project-tech li {
  border-color: rgba(158, 240, 212, 0.22);
  background: rgba(158, 240, 212, 0.08);
  color: #9ef0d4;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: #9ef0d4;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link-muted {
  color: rgba(255, 255, 255, 0.76);
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-stack span {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  min-height: 260px;
  padding: 26px;
  position: relative;
}

.process-step span {
  display: block;
  margin-bottom: 50px;
  color: var(--coral);
  font-weight: 900;
}

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

.reason-item {
  padding: 26px;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 900;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.section-contact {
  background: var(--black);
  color: var(--white);
}

.section-contact .section-kicker {
  color: #9ef0d4;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

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

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}

.contact-list strong {
  color: var(--white);
}

.contact-list a {
  color: #9ef0d4;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-channels {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(158, 240, 212, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  font-size: 1.16rem;
  line-height: 1.2;
}

.contact-card small {
  min-height: 0;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.contact-note {
  padding: 22px;
  border: 1px solid rgba(158, 240, 212, 0.18);
  border-radius: var(--radius);
  background: rgba(158, 240, 212, 0.08);
}

.contact-note h3 {
  color: var(--white);
}

.contact-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

input {
  accent-color: var(--accent);
}

.button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.site-footer {
  padding: 54px 0 28px;
  background: #090b0b;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 34px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 14px 0 0;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-meta {
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.text-button,
.icon-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-size: 1.4rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  inset: auto 20px 20px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1050px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-modal h2 {
  margin: 0;
  font-size: 1.1rem;
}

.cookie-banner p,
.cookie-modal p {
  margin: 6px 0 0;
  color: var(--muted);
}

.cookie-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 15, 14, 0.58);
}

.cookie-modal-panel {
  width: min(640px, 100%);
  max-height: min(780px, calc(100svh - 40px));
  overflow: auto;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.modal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.cookie-option span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.modal-actions {
  margin-top: 18px;
}

.legal-page {
  background: var(--surface);
}

.legal-hero {
  padding: 140px 0 60px;
  background: var(--black);
  color: var(--white);
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.legal-hero p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-size: 1.52rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--accent-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.not-found-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--black);
  color: var(--white);
}

.not-found-content {
  width: min(760px, 100%);
}

.not-found-content .brand {
  margin-bottom: 54px;
}

.not-found-content h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.not-found-content p:not(.section-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 980px) {
  .card-grid-3,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-grid,
  .faq-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-content {
    padding-top: 120px;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  body {
    font-size: 15px;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: 68px 14px auto;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-panel > a:not(.button) {
    min-height: 44px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 15, 14, 0.9), rgba(12, 15, 14, 0.62)),
      linear-gradient(0deg, rgba(12, 15, 14, 0.76), rgba(12, 15, 14, 0.16) 44%);
  }

  .hero-content {
    padding: 104px 0 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-metrics div {
    padding-right: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .card-grid-3,
  .project-grid,
  .process-list,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .info-card,
  .process-step,
  .reason-item {
    min-height: auto;
    padding: 22px;
  }

  .card-icon,
  .process-step span {
    margin-bottom: 24px;
  }

  .contact-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 96px;
    padding: 16px;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    inset: auto 12px 12px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .cookie-actions,
  .modal-actions,
  .hero-actions {
    width: 100%;
  }

  .cookie-actions .button,
  .modal-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .cookie-option {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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