/* Hjólastillingar ehf. Monochrome, taken from the existing logo; one signal accent for booking. */

@font-face { font-family: "Barlow Condensed"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/barlow-condensed-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-style: normal; font-display: swap; src: url("../fonts/barlow-condensed-700.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 400; font-style: normal; font-display: swap; src: url("../fonts/barlow-400.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 500; font-style: normal; font-display: swap; src: url("../fonts/barlow-500.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 600; font-style: normal; font-display: swap; src: url("../fonts/barlow-600.woff2") format("woff2"); }

:root {
  --bg: #f2f2f0;
  --surface: #e7e8e5;
  --surface-raised: #f8f8f6;
  --field: #fdfdfc;
  --ink: #141516;
  --ink-2: #4a4d50;
  --line: #cfd1cd;
  --line-strong: #141516;
  --accent: #ffc21a;
  --accent-hover: #f0b000;
  --on-accent: #141516;
  --danger: #b3261e;
  --success: #1f6f43;
  --map-filter: grayscale(1) contrast(1.05);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  --radius: 2px;
  --header-h: 68px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111213;
    --surface: #191b1c;
    --surface-raised: #1c1e20;
  --field: #131516;
    --ink: #ededea;
    --ink-2: #a5a8aa;
    --line: #2e3133;
    --line-strong: #ededea;
    --accent-hover: #ffd04d;
    --danger: #ff8a80;
    --success: #7fd6a4;
    --map-filter: grayscale(1) invert(0.9) contrast(0.9);
  }
}

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

[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, iframe { display: block; max-width: 100%; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--on-accent); }

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

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: currentColor;
}
.icon--sm { width: 1em; height: 1em; }
.icon--lg { width: 2rem; height: 2rem; }
.icon--xl { width: 3rem; height: 3rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: -100px;
  z-index: 20;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 52px;
  padding: 0 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms var(--ease-out), border-color 160ms var(--ease-out), color 160ms var(--ease-out), transform 120ms var(--ease-out);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

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

.btn--compact { min-height: 40px; padding: 0 0.9rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

.btn[aria-disabled="true"] { opacity: 0.7; cursor: progress; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
.text-link:hover { text-decoration-thickness: 2px; }
.text-link--strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-decoration: none;
}
.text-link--strong:hover { text-decoration: underline; }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}

.brand__mark {
  width: 48px;
  height: 30px;
  flex: none;
  fill: var(--ink);
  overflow: visible;
}
.brand__arc, .brand__rule {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
}

.brand__text { display: grid; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand__owner {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.site-nav { display: none; gap: 28px; }
.site-nav a {
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 160ms var(--ease-out);
}
.site-nav a:hover { border-bottom-color: var(--ink); }

.site-header__actions { display: flex; align-items: center; gap: 8px; }

.lang-toggle {
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  background: none;
  color: var(--ink);
  font: 500 0.9375rem/1 var(--font-body);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
  cursor: pointer;
}
.lang-toggle:hover { text-decoration-thickness: 2px; }

.header-phone__number { display: none; }
.header-phone { padding: 0 10px; }
.header-book { display: none; }

@media (min-width: 560px) {
  .header-book { display: inline-flex; }
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .header-phone { padding: 0 0.9rem; }
  .header-phone__number { display: inline; }
}

@media (max-width: 380px) {
  .brand__name { font-size: 1.125rem; letter-spacing: 0.08em; }
  .brand__mark { width: 40px; }
}

/* Hero */

.hero { border-bottom: 1px solid var(--line); }

.hero__inner {
  display: grid;
  gap: 40px;
  padding-block: 48px 56px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-2);
}
.status__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink-2);
  flex: none;
}
.status[data-state="open"] .status__dot { background: var(--success); box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 22%, transparent); }
.status[data-state="closed"] .status__dot { background: transparent; border: 2px solid var(--ink-2); }
.status:not([data-state]) .status__dot { display: none; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 1rem + 4.4vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 16ch;
}

.hero__lead {
  margin-top: 20px;
  max-width: 34ch;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.45;
  color: var(--ink-2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__visual {
  justify-self: center;
  width: 100%;
  max-width: 360px;
}

.align { width: 100%; height: auto; overflow: hidden; }
.align__rule { fill: none; stroke: var(--ink); stroke-width: 2.5; }
.align__rule--thin { stroke-width: 1; }
.align__post { fill: var(--bg); stroke: var(--ink); stroke-width: 2; stroke-linejoin: round; }
.align__runway, .align__ramp, .align__plate { fill: none; stroke: var(--ink-2); stroke-width: 1.5; stroke-linecap: round; }
.align__center { fill: none; stroke: var(--ink-2); stroke-width: 1.5; stroke-dasharray: 14 5 2 5; }
.align__tick { fill: none; stroke: var(--ink); stroke-width: 2.5; }
.align__line { fill: none; stroke: var(--ink); stroke-width: 1.5; }
.align__body { fill: var(--bg); stroke: var(--ink); stroke-width: 2.5; stroke-linejoin: round; }
.align__cabin { fill: none; stroke: var(--ink-2); stroke-width: 1.5; stroke-linejoin: round; stroke-linecap: round; }
.align__tire { fill: var(--bg); stroke: var(--ink); stroke-width: 2.5; }
.align__target {
  fill: var(--accent);
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linejoin: round;
  transform-box: fill-box;
  transform-origin: center;
}
.align__lift, .align__drift, .align__wheel { transform-box: view-box; }
.align__lift { transform-origin: 210px 102px; }
.align__drift { transform-origin: 200px 102px; }
.align__wheel--rl { transform-origin: 140px 53px; }
.align__wheel--rr { transform-origin: 140px 151px; }
.align__wheel--fl { transform-origin: 258px 53px; }
.align__wheel--fr { transform-origin: 258px 151px; }

@media (prefers-reduced-motion: no-preference) {
  /* The service in one sequence: a car that pulls to one side drives onto the lift,
     the lift rises, the lines show how far off it is, the back and then the front
     wheels are wiggled straight, and the targets lock. */
  .align__drive { animation: align-drive 1600ms 150ms both; }
  .align__drift { animation: align-drift 1600ms cubic-bezier(0.45, 0, 0.55, 1) 150ms both; }
  .align__lift { animation: align-lift 6400ms cubic-bezier(0.45, 0, 0.55, 1) both; }
  .align__measure { animation: align-fade 450ms var(--ease-out) 2450ms both; }
  .align__draw {
    stroke-dasharray: 1;
    animation: align-draw 500ms var(--ease-out) 2450ms both;
  }
  .align__wheel--rl { animation: align-rear-l 1000ms cubic-bezier(0.45, 0, 0.55, 1) 2950ms both; }
  .align__wheel--rr { animation: align-rear-r 1000ms cubic-bezier(0.45, 0, 0.55, 1) 2950ms both; }
  .align__wheel--fl { animation: align-front-l 1500ms cubic-bezier(0.45, 0, 0.55, 1) 3750ms both; }
  .align__wheel--fr { animation: align-front-r 1500ms cubic-bezier(0.45, 0, 0.55, 1) 3750ms both; }
  .align__target { animation: align-lock 450ms var(--ease-out) 5250ms both; }
}

/* Without motion the finished scene stays put and only the measurement fades in. */
@media (prefers-reduced-motion: reduce) {
  .align__measure, .align__draw { animation: align-fade 400ms ease-out 200ms both; }
  .align__target { animation: align-fade 400ms ease-out 600ms both; }
}

@keyframes align-drive {
  0% { transform: translateX(-340px); animation-timing-function: cubic-bezier(0.2, 0.6, 0.35, 1); }
  84% { transform: translateX(5px); animation-timing-function: cubic-bezier(0.45, 0, 0.55, 1); }
  100% { transform: translateX(0); }
}
@keyframes align-drift {
  0% { transform: translateY(12px) rotate(-3deg); }
  30% { transform: translateY(-7px) rotate(2.5deg); }
  58% { transform: translateY(4px) rotate(-1.2deg); }
  80% { transform: translateY(-1px) rotate(0.4deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes align-lift {
  0%, 30% { transform: scale(1); }
  38%, 90% { transform: scale(1.05); }
  98%, 100% { transform: scale(1); }
}
@keyframes align-fade { from { opacity: 0; } }
@keyframes align-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes align-rear-l {
  0% { transform: rotate(4deg); } 45% { transform: rotate(-0.8deg); } 60% { transform: rotate(0.7deg); }
  74% { transform: rotate(-0.4deg); } 87% { transform: rotate(0.15deg); } 100% { transform: rotate(0deg); }
}
@keyframes align-rear-r {
  0% { transform: rotate(-4deg); } 45% { transform: rotate(0.8deg); } 60% { transform: rotate(-0.7deg); }
  74% { transform: rotate(0.4deg); } 87% { transform: rotate(-0.15deg); } 100% { transform: rotate(0deg); }
}
@keyframes align-front-l {
  0% { transform: rotate(-9deg); } 40% { transform: rotate(-1.2deg); } 52% { transform: rotate(1.4deg); }
  62% { transform: rotate(-1deg); } 72% { transform: rotate(0.7deg); } 82% { transform: rotate(-0.35deg); }
  91% { transform: rotate(0.15deg); } 100% { transform: rotate(0deg); }
}
@keyframes align-front-r {
  0% { transform: rotate(9deg); } 40% { transform: rotate(1.2deg); } 52% { transform: rotate(-1.4deg); }
  62% { transform: rotate(1deg); } 72% { transform: rotate(-0.7deg); } 82% { transform: rotate(0.35deg); }
  91% { transform: rotate(-0.15deg); } 100% { transform: rotate(0deg); }
}
@keyframes align-lock { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: none; } }

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
    min-height: min(720px, calc(100dvh - var(--header-h)));
    padding-block: 64px;
  }
  .hero__visual { max-width: 520px; justify-self: end; }
}

/* Sections */

.section { padding-block: clamp(64px, 9vw, 112px); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-lead {
  margin-top: 16px;
  max-width: 44ch;
  font-size: 1.1875rem;
  line-height: 1.5;
  color: var(--ink-2);
}

/* Prices */

.prices__inner { display: grid; gap: 40px; }

.prices__intro .btn { margin-top: 28px; }
.prices__note { margin-top: 12px; font-size: 0.9375rem; color: var(--ink-2); }

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--line-strong);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 16px;
  padding-block: 22px;
}
.price-row + .price-row { border-top: 1px solid var(--line); }

.price-row__name {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.price-row__detail { margin-top: 4px; font-size: 0.9375rem; color: var(--ink-2); }

.price-row__price {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 1.3rem + 2.2vw, 3rem);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (min-width: 900px) {
  .prices__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 72px;
    align-items: start;
  }
  .prices__intro { position: sticky; top: calc(var(--header-h) + 32px); }
}

/* How it works */

.how { background: var(--surface); border-block: 1px solid var(--line); }
.how__title { max-width: 18ch; }

.how__grid {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 2px solid var(--line-strong);
}

.how-option { padding-block: 32px; }
.how-option + .how-option { border-top: 1px solid var(--line); }

.how-option__time {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 2.4rem + 4.4vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}

.how-option__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.how-option__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.how-option__body { margin-top: 12px; max-width: 46ch; color: var(--ink-2); }

@media (min-width: 768px) {
  .how__grid { grid-template-columns: 1fr 1fr; }
  .how-option { padding: 40px 48px 8px 0; }
  .how-option + .how-option {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 48px;
  }
}

/* Contact */

.contact__grid {
  display: grid;
  gap: 48px;
  margin-top: 40px;
}

.info-list { display: grid; gap: 24px; }
.info-item dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.info-item dd { margin-top: 6px; }

.hours { border-collapse: collapse; width: 100%; max-width: 420px; }
.hours th, .hours td {
  padding: 6px 0;
  text-align: left;
  font-weight: 400;
  vertical-align: baseline;
}
.hours td { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; padding-left: 16px; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid var(--line); }
.hours tr[data-today] th, .hours tr[data-today] td { font-weight: 600; }
.hours__today {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.3;
  vertical-align: 1px;
}

.map { margin-top: 32px; }
.map__frame {
  width: 100%;
  height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  filter: var(--map-filter);
  background: var(--surface);
}

.form-panel {
  padding: clamp(24px, 4vw, 40px);
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-top: 4px solid var(--line-strong);
  border-radius: var(--radius);
}

.form-panel__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

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

.field { display: grid; gap: 6px; align-content: start; }
.field label { font-weight: 600; font-size: 0.9375rem; }
.field__optional { font-weight: 400; color: var(--ink-2); }

.field input, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--ink) 45%, var(--bg));
  border-radius: var(--radius);
  background: var(--field);
  color: var(--ink);
  font: inherit;
  font-size: 1.0625rem;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.field input[name="plate"] { text-transform: uppercase; letter-spacing: 0.06em; }
.field input:hover, .field textarea:hover { border-color: var(--ink); }
.field input:focus-visible, .field textarea:focus-visible {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 1px var(--danger);
}

.field__error { font-size: 0.875rem; font-weight: 500; color: var(--danger); }
.field__error:empty { display: none; }

.field-row { display: grid; gap: 18px; }
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field--trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--danger);
  border-left-width: 4px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.9375rem;
}
.form-alert[hidden] { display: none; }
.form-alert .icon { color: var(--danger); margin-top: 2px; }
.form-alert--static { display: block; margin: 0; }

.form-privacy { font-size: 0.875rem; color: var(--ink-2); }

.form-success {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-block: 24px;
}
.form-success[hidden] { display: none; }
.form-success:focus { outline: none; }
.form-success .icon { color: var(--success); }
.form-success__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.form-success .btn { margin-top: 12px; }

@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 72px;
    align-items: start;
  }
}

/* Footer */

.site-footer {
  border-top: 2px solid var(--line-strong);
  padding-block: 40px 48px;
  font-size: 0.9375rem;
}
.site-footer__inner {
  display: grid;
  gap: 20px;
}
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer__meta { color: var(--ink-2); line-height: 1.6; }
.site-footer__meta .text-link { color: var(--ink); }

@media (min-width: 768px) {
  .site-footer__inner {
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 40px;
  }
  .site-footer__copy { text-align: right; }
}

/* Scroll reveal: main.js only marks elements that start below the fold, so nothing visible ever blinks. */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal].is-pending {
    opacity: 0;
    transform: translateY(18px);
  }
  [data-reveal].is-shown {
    opacity: 1;
    transform: none;
    transition: opacity 600ms var(--ease-out), transform 700ms var(--ease-out);
  }
}
