/* ============================================================
   HAHN & VO — Luxury Watches · Frankfurt
   Design system · Petrol #0E334F / Creme #FFFAE7 / White
   Type: Inter (variable 400–700) per brand guidelines
   ============================================================ */

@font-face {
  font-family: 'Inter';
  src: url('../vendor/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* wordmark serif — engraved roman caps, dial-typography feel */
@font-face {
  font-family: 'Marcellus';
  src: url('../vendor/fonts/marcellus.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --petrol: #0E334F;
  --petrol-deep: #081E30;
  --petrol-soft: #16405f;
  --creme: #FFFAE7;
  --creme-dim: #F7F1DC;
  --white: #FFFFFF;
  --ink: #0E334F;
  --ink-60: rgba(14, 51, 79, 0.6);
  --ink-40: rgba(14, 51, 79, 0.4);
  --line: rgba(14, 51, 79, 0.14);
  --line-strong: rgba(14, 51, 79, 0.3);
  --creme-line: rgba(255, 250, 231, 0.16);
  --creme-60: rgba(255, 250, 231, 0.62);
  --ok: #1E6B4E;
  --reserved: #8A6A1F;
  --sold: #8B8B83;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Marcellus', 'Times New Roman', serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --header-h: 76px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
/* the hidden attribute must always win over display rules */
[hidden] { display: none !important; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--creme);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--petrol); color: var(--creme); }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

/* ---------- type scale ---------- */
.display-xl {
  font-size: clamp(3.4rem, 11vw, 11rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}
.display-l {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.0;
  text-transform: uppercase;
}
.display-m {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.06;
}
.micro {
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.micro-dim { color: var(--ink-60); }
.num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }
.body-l { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; }

/* ---------- layout ---------- */
.wrap { padding-left: var(--gutter); padding-right: var(--gutter); max-width: 1680px; margin: 0 auto; }
.section { padding-top: clamp(72px, 9vw, 150px); padding-bottom: clamp(72px, 9vw, 150px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4.5vw, 64px); }
/* Schmale Displays: Schaltflaeche unter die Ueberschrift, sonst wird sie abgeschnitten */
@media (max-width: 760px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-head .btn { align-self: flex-start; }
}
.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.rule { border: 0; border-top: 1px solid var(--line); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.45s var(--ease-out), border-color 0.45s var(--ease-out), transform 0.5s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid { background: rgba(255, 250, 231, 0.94); border-bottom-color: var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header .wrap { width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }

.nav-left { display: flex; gap: clamp(16px, 2.2vw, 34px); }
.nav-link {
  font-size: 11.5px; font-weight: 560; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 0; position: relative; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 2px; height: 1px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.brand { display: flex; align-items: center; gap: 12px; justify-self: center; }
.brand-mark { width: 34px; height: 34px; color: currentColor; transition: transform 0.5s var(--ease-out); }
.brand:hover .brand-mark { transform: rotate(180deg); }
.brand-word { font-family: var(--font-brand); font-size: 16px; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; white-space: nowrap; }

.nav-right { display: flex; gap: clamp(14px, 2vw, 28px); justify-content: flex-end; align-items: center; }
.cart-btn { position: relative; display: flex; align-items: center; gap: 8px; }
.cart-count {
  min-width: 18px; height: 18px; border-radius: 50%;
  background: var(--petrol); color: var(--creme);
  font-size: 10px; font-weight: 640; display: grid; place-items: center;
  transition: transform 0.3s var(--ease-out);
}
.header-dark { color: var(--creme); }
.header-dark .cart-count { background: var(--creme); color: var(--petrol); }
.site-header.is-solid.header-dark { color: var(--ink); background: rgba(255, 250, 231, 0.94); }
.site-header.is-solid.header-dark .cart-count { background: var(--petrol); color: var(--creme); }

/* burger */
.burger { display: none; flex-direction: column; gap: 5px; padding: 10px 0; }
.burger span { display: block; width: 24px; height: 1.5px; background: currentColor; transition: transform 0.35s var(--ease-out), opacity 0.3s; }
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile menu — sibling of header, not child (backdrop-filter gotcha) */
.mobile-menu {
  position: fixed; inset: 0; z-index: 890; background: var(--petrol); color: var(--creme);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  clip-path: inset(0 0 100% 0); transition: clip-path 0.65s var(--ease-inout);
}
.mobile-menu.is-open { clip-path: inset(0 0 0% 0); }
.mobile-menu a { font-size: clamp(2rem, 8vw, 3.4rem); font-weight: 620; letter-spacing: -0.03em; text-transform: uppercase; padding: 10px 0; border-bottom: 1px solid var(--creme-line); }
.mobile-menu .mm-meta { margin-top: 40px; display: flex; gap: 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 34px; border-radius: 2px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), opacity .2s;
  white-space: nowrap;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  transform: translateY(101%); transition: transform 0.45s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn-solid { background: var(--petrol); color: var(--creme); }
.btn-solid::before { background: var(--petrol-deep); }
.btn-outline { border: 1px solid var(--line-strong); color: var(--ink); background: transparent; }
.btn-outline::before { background: var(--petrol); }
.btn-outline:hover { color: var(--creme); border-color: var(--petrol); }
.btn-creme { background: var(--creme); color: var(--petrol); }
.btn-creme::before { background: var(--white); }
.btn-ghost-creme { border: 1px solid var(--creme-line); color: var(--creme); }
.btn-ghost-creme::before { background: var(--creme); }
.btn-ghost-creme:hover { color: var(--petrol); border-color: var(--creme); }
.btn[disabled] { opacity: 0.35; pointer-events: none; }
.btn .arr { transition: transform 0.35s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }

/* ---------- status badges ---------- */
.status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 620; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 2px; background: var(--white); border: 1px solid var(--line);
}
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status-available { color: var(--ok); }
.status-reserved { color: var(--reserved); }
.status-sold { color: var(--sold); }
.status-available::before { box-shadow: 0 0 0 0 rgba(30,107,78,.5); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(30,107,78,.45); }
  70% { box-shadow: 0 0 0 7px rgba(30,107,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,107,78,0); }
}

/* ---------- Kontaktkacheln (Home + Ueber uns) ---------- */
.contact-tiles { display: grid; gap: 10px; margin-top: 26px; width: 100%; max-width: 360px; }
.contact-tile {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: 2px;
  padding: 16px 18px; transition: border-color .25s, transform .3s var(--ease-out), box-shadow .3s;
}
.contact-tile:hover { border-color: var(--petrol); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(14, 51, 79, 0.1); }
.contact-tile .ct-ic {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  background: var(--petrol); color: var(--creme); display: grid; place-items: center;
}
.contact-tile .ct-ic svg { width: 20px; height: 20px; }
.contact-tile .ct-label { font-size: 10.5px; font-weight: 620; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); }
.contact-tile .ct-value { font-size: 15px; font-weight: 620; letter-spacing: 0.01em; margin-top: 2px; font-variant-numeric: tabular-nums; }
.contact-tile .ct-sub { font-size: 11.5px; color: var(--ink-60); margin-top: 1px; }

/* ---------- product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
/* creme filler over leftover tracks in the last row */
.product-grid::after { content: ''; background: var(--creme); grid-column: auto / -1; }
.product-card { background: var(--creme); padding: 0; position: relative; display: flex; flex-direction: column; transition: background .4s var(--ease-out); }
.product-card:hover { background: var(--white); }
.pc-media { position: relative; aspect-ratio: 1 / 1.06; background: var(--white); overflow: hidden; }
.pc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 9%; transition: opacity 0.35s ease-in, transform 5s ease-out; }
.pc-media .img-b { opacity: 0; }
.product-card:hover .pc-media .img-a { opacity: 0; }
.product-card:hover .pc-media .img-b { opacity: 1; }
.product-card:hover .pc-media img { transform: scale(1.05); }
.product-card.is-sold .pc-media img { filter: grayscale(0.7) opacity(0.55); }
.product-card.is-sold:hover .pc-media .img-a { opacity: 1; }
.product-card.is-sold:hover .pc-media .img-b { opacity: 0; }
/* hanging status tab, flush with top edge (swing-tag) */
.pc-status {
  position: absolute; top: 0; right: 14px; z-index: 2;
  border-top: none; border-radius: 0 0 3px 3px;
}
.pc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pc-brand { font-size: 10.5px; font-weight: 620; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-60); }
.pc-title-zone { position: relative; min-height: 42px; }
.pc-name { font-size: 15.5px; font-weight: 590; letter-spacing: -0.01em; line-height: 1.3; transition: opacity .2s; }
.pc-specline {
  position: absolute; inset: 0; display: flex; align-items: flex-start; gap: 6px; flex-wrap: wrap;
  font-size: 12px; color: var(--ink-60); opacity: 0; transition: opacity .2s; line-height: 1.5; padding-top: 2px;
}
@media (pointer: fine) {
  .product-card:hover .pc-name { opacity: 0; }
  .product-card:hover .pc-specline { opacity: 1; }
}
.pc-meta { font-size: 12px; color: var(--ink-60); margin-top: 2px; }
.pc-price { margin-top: 12px; font-size: 16px; font-weight: 650; display: flex; align-items: baseline; gap: 10px; }
.pc-price .was { position: relative; font-size: 12.5px; font-weight: 480; color: var(--ink-40); }
.pc-price .was::after { content: ''; position: absolute; left: 0; right: 0; top: 0.55em; height: 1px; background: var(--ink-40); }
.pc-price .sold-label { font-weight: 560; color: var(--sold); }
.pc-link { position: absolute; inset: 0; z-index: 1; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-60); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 2px;
  padding: 15px 16px; transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230E334F' fill='none' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--petrol); }
.field textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .span2 { grid-column: span 2; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-grid .span2 { grid-column: span 1; } }
.form-success { background: var(--petrol); color: var(--creme); padding: clamp(28px, 4vw, 48px); border-radius: 2px; display: grid; gap: 10px; }
.form-success[hidden] { display: none; }

/* chips (radio cards) */
.chip-row { display: grid; gap: 12px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chip-face {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border: 1px solid var(--line); border-radius: 2px; background: var(--white);
  padding: 18px 20px; transition: border-color 0.25s, background 0.25s;
}
.chip input:checked + .chip-face { border-color: var(--petrol); box-shadow: inset 0 0 0 1px var(--petrol); }
.chip-face .chip-title { font-size: 14px; font-weight: 600; }
.chip-face .chip-sub { font-size: 12.5px; color: var(--ink-60); margin-top: 2px; }

/* ---------- cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 950; background: rgba(8, 30, 48, 0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease-out);
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 960;
  width: min(460px, 100vw); background: var(--creme);
  transform: translateX(102%); transition: transform 0.55s var(--ease-inout);
  display: flex; flex-direction: column; border-left: 1px solid var(--line);
}
.cart-drawer.is-open { transform: translateX(0); }
.cd-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.cd-items { flex: 1; overflow-y: auto; padding: 8px 28px; }
.cd-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cd-item-img { width: 84px; height: 84px; background: var(--white); border: 1px solid var(--line); display: grid; place-items: center; }
.cd-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cd-item-name { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.cd-item-brand { font-size: 10px; font-weight: 620; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-60); }
.cd-item-price { font-size: 13.5px; font-weight: 620; margin-top: 6px; }
.cd-remove { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-60); border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.cd-remove:hover { color: var(--ink); }
.cd-empty { padding: 60px 0; text-align: center; color: var(--ink-60); display: grid; gap: 18px; justify-items: center; }
.cd-empty[hidden] { display: none; }
.cd-foot { border-top: 1px solid var(--line); padding: 22px 28px 28px; display: grid; gap: 16px; background: var(--creme); }
.cd-total-row { display: flex; justify-content: space-between; align-items: baseline; }
.cd-total { font-size: 20px; font-weight: 650; }
.cd-note { font-size: 11.5px; color: var(--ink-60); line-height: 1.5; }

/* ---------- footer ---------- */
.site-footer { background: var(--petrol); color: var(--creme); position: relative; overflow: hidden; }
.sf-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 64px); padding-top: clamp(64px, 7vw, 110px); position: relative; z-index: 1; }
.sf-col h4 { font-size: 11px; font-weight: 620; letter-spacing: 0.16em; text-transform: uppercase; color: var(--creme-60); margin-bottom: 18px; }
.sf-col a, .sf-col p { display: block; font-size: 14.5px; padding: 5px 0; color: var(--creme); }
.sf-col a { opacity: 0.86; transition: opacity 0.25s, transform 0.3s var(--ease-out); }
.sf-col a:hover { opacity: 1; transform: translateX(4px); }
.sf-brandline { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.sf-brandline .brand-mark { width: 44px; height: 44px; }
.sf-tag { font-size: 14.5px; color: var(--creme-60); max-width: 34ch; line-height: 1.6; }
.sf-legal { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; padding: 26px 0 30px; margin-top: clamp(48px, 6vw, 90px); border-top: 1px solid var(--creme-line); font-size: 12px; color: var(--creme-60); position: relative; z-index: 1; }
.sf-legal .links { display: flex; gap: 22px; }
.sf-legal a:hover { color: var(--creme); }
.sf-watermark {
  position: absolute; left: 50%; bottom: -0.28em; transform: translateX(-50%);
  font-family: var(--font-brand);
  font-size: clamp(48px, 16vw, 280px); font-weight: 400; letter-spacing: 0.02em;
  color: rgba(255, 250, 231, 0.045); line-height: 1; white-space: nowrap; pointer-events: none;
  text-transform: uppercase; z-index: 0; max-width: 100vw;
}

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; position: relative; }
.marquee-track { display: flex; gap: 64px; width: max-content; will-change: transform; }
.marquee-item { font-size: clamp(1rem, 1.6vw, 1.3rem); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; color: var(--ink); opacity: 0.8; display: flex; align-items: center; gap: 64px; }
.marquee-item::after { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--petrol); opacity: 0.35; }

/* ---------- accordion (Q&A) ---------- */
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px 0; text-align: left; }
.acc-q { font-size: clamp(1.05rem, 1.7vw, 1.35rem); font-weight: 600; letter-spacing: -0.01em; }
.acc-icon { flex: none; width: 34px; height: 34px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; transition: transform 0.45s var(--ease-out), background 0.3s, color 0.3s; }
.acc-item.is-open .acc-icon { transform: rotate(45deg); background: var(--petrol); color: var(--creme); border-color: var(--petrol); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-inout); }
.acc-a { padding: 0 0 28px; max-width: 68ch; color: var(--ink-60); font-size: 15.5px; line-height: 1.65; }

/* ---------- reveals (GSAP hooks) ---------- */
/* padding-top keeps Ä/Ö/Ü diacritics inside the mask despite tight display line-heights */
.reveal-line { overflow: hidden; display: block; padding-top: 0.14em; margin-top: -0.14em; }
.reveal-line > span { display: block; transform: translateY(110%); }
.no-js .reveal-line > span, .no-motion .reveal-line > span { transform: none; }
[data-reveal] { opacity: 0; transform: translateY(28px); }
.no-js [data-reveal], .no-motion [data-reveal] { opacity: 1; transform: none; }
[data-clip] { clip-path: inset(0 0 100% 0); }
.no-js [data-clip], .no-motion [data-clip] { clip-path: none; }

@media print {
  [data-reveal], .reveal-line > span, [data-clip] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .site-header, .cart-drawer, .cart-overlay, .mobile-menu { display: none !important; }
  * { overflow: visible !important; }
}

/* ---------- page hero (subpages) ---------- */
.page-hero { padding-top: calc(var(--header-h) + clamp(48px, 7vw, 110px)); padding-bottom: clamp(36px, 5vw, 72px); }
.page-hero .crumb { display: flex; gap: 10px; align-items: center; margin-bottom: 26px; }
.page-hero .crumb a:hover { text-decoration: underline; }

/* ---------- misc ---------- */
.img-frame { background: var(--white); border: 1px solid var(--line); overflow: hidden; position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hairline-list > * + * { border-top: 1px solid var(--line); }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 2000; background: var(--petrol); color: var(--creme); padding: 12px 18px; }
.skip-link:focus { left: 0; }

@media (max-width: 900px) {
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .burger { display: flex; }
  .sf-grid { grid-template-columns: 1fr 1fr; }
  .brand { justify-self: start; }
  .site-header .wrap { grid-template-columns: auto 1fr auto; }
  .nav-right { justify-self: end; }
}
@media (max-width: 560px) {
  .sf-grid { grid-template-columns: 1fr; }
  .brand-word { font-size: 11px; letter-spacing: 0.18em; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
