/* Salersons — warm dark, Lora display, champagne accent, color photos
   Mobile-first
*/

:root {
  --bg: #0B0907;            /* warm near-black */
  --bg-2: #15110D;
  --ink: #F2EAD9;           /* warm cream */
  --ink-2: rgba(242, 234, 217, 0.72);
  --ink-3: rgba(242, 234, 217, 0.45);
  --line: rgba(242, 234, 217, 0.16);
  --line-soft: rgba(242, 234, 217, 0.10);

  --accent: #D4A86A;        /* champagne gold */
  --accent-soft: rgba(212, 168, 106, 0.18);

  --serif: "Lora", "Georgia", serif;
  --serif-ital: "EB Garamond", "Georgia", serif;
  --sans: "Geist", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --pad-x: 22px;
  --max: 1320px;
}

/* User-uploaded display fonts for the hero italic lines */
@font-face {
  font-family: "Calluna";
  src: url("uploads/Calluna-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "aBigDeal";
  src: url("uploads/aBigDeal.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jabrowzky";
  src: url("uploads/JABROWZKY.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
html, body {
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img, svg { display: block; max-width: 100%; height: auto; }
a, button { color: inherit; font: inherit; text-decoration: none; background: none; border: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--bg); }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ───── Photo cross-fade layer ───── */
.photo-stack {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--bg);
}
.photo-stack .photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform 16s linear;
  transform: scale(1.03);
}
.photo-stack .photo.on {
  opacity: 1;
  transform: scale(1.08);
}
.photo-stack::after {
  /* Soft vignette only — let the photos breathe */
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(11, 9, 7, 0.20) 0%,
      rgba(11, 9, 7, 0.00) 25%,
      rgba(11, 9, 7, 0.00) 65%,
      rgba(11, 9, 7, 0.35) 100%),
    radial-gradient(120% 100% at 50% 50%, transparent 50%, rgba(11, 9, 7, 0.35) 100%);
  pointer-events: none;
}

/* Per-section local scrim where text density is highest */
.scrim-bottom::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 9, 7, 0.55) 100%);
  z-index: -1;
  pointer-events: none;
}
.scrim-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 9, 7, 0.7) 0%, rgba(11, 9, 7, 0.25) 55%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

/* ───── Reveals (directional — slide from below on down-scroll,
                  slide from above on up-scroll. Inline transform set by JS) ───── */
.reveal {
  transform: translateY(24px);
  transition: transform .9s cubic-bezier(.2,.7,.1,1);
  will-change: transform;
}
.reveal.in { transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ───── Nav (minimal — just brand mark) ───── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(22px + env(safe-area-inset-top)) max(var(--pad-x), env(safe-area-inset-right)) 22px max(var(--pad-x), env(safe-area-inset-left));
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav__mark {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.nav__mark .dot { color: var(--accent); font-style: normal; }

/* ───── Section frame ───── */
.section {
  position: relative;
  isolation: isolate;
  padding: 120px 0;
  z-index: 1;
}
.section--tight { padding: 96px 0; }
.section--minh { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }

/* ───── Hero ───── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(96px + env(safe-area-inset-top)) max(var(--pad-x), env(safe-area-inset-right)) calc(56px + env(safe-area-inset-bottom)) max(var(--pad-x), env(safe-area-inset-left));
  isolation: isolate;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0; top: 0;
  /* Stronger scrim on mobile (less horizontal room for letterforms over
     photos -> needs more contrast). Desktop relaxes this in the 720+ block. */
  background: linear-gradient(180deg,
    rgba(11, 9, 7, 0.10) 0%,
    rgba(11, 9, 7, 0.30) 40%,
    rgba(11, 9, 7, 0.70) 75%,
    rgba(11, 9, 7, 0.86) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero__title {
  font-family: var(--hero-ital, "aBigDeal"), "EB Garamond", "Georgia", serif;
  font-weight: 400;
  font-size: calc(clamp(48px, 12.4vw, 148px) * var(--hero-scale, 1));
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 28px;
}
.hero__title .l {
  display: block;
  line-height: 0.95;
}
.hero__title .l + .l { margin-top: 0.04em; }
.hero__title .ital { font-style: italic; }
.hero__title .accent {
  color: var(--accent);
  font-style: italic;
}
.hero__sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 44ch;
  text-wrap: pretty;
}
.hero__sub strong { color: var(--ink); font-weight: 400; }
.hero__scroll {
  /* Hidden on mobile — competes with hero text for vertical space and
     phone users universally know to scroll. Shown again at 720+ below. */
  display: none;
  position: absolute;
  bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none;
}
.hero__scroll .line {
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, var(--accent));
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop {
  0% { transform: translateY(-8px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ───── Apply (high up) ───── */
.apply__inner {
  display: grid;
  gap: 48px;
}
.apply__h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 14ch;
}
.apply__h .ital { font-style: italic; color: var(--accent); font-family: var(--serif-ital); }
.apply__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 42ch;
  margin-top: 18px;
}
.apply__form {
  display: grid;
  gap: 0;
  background: rgba(11, 9, 7, 0.62);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 20px 24px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
  min-height: 420px;
}
.apply__form--sent {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 32px;
  text-align: center;
}
.apply__sent {
  max-width: 32ch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.apply__sent__mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 500;
}
.apply__sent__h {
  font-family: var(--serif-ital);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.apply__sent__p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.field {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.field:last-of-type { border-bottom: none; }
.field__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field__input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--ink);
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  padding: 0;
  caret-color: var(--accent);
}
.field__input::placeholder { color: var(--ink-3); font-weight: 400; }
.field__file {
  display: flex; align-items: baseline; gap: 12px;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--ink-3);
  cursor: pointer;
  transition: color .2s;
}
.field__file:hover { color: var(--ink); }
.field__file::before {
  content: "↑";
  font-family: var(--mono);
  font-style: normal;
  font-size: 14px;
  color: var(--accent);
}

.apply__submit {
  align-self: start;
  margin: 28px 0 8px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  transition: color .25s, border-color .25s, gap .25s;
}
.apply__submit:hover {
  color: var(--accent);
  border-color: var(--accent);
  gap: 22px;
}
.apply__submit .arr {
  font-family: var(--mono);
  font-style: normal;
  font-size: 16px;
  color: var(--accent);
}

/* ───── About / Manifesto ───── */
.about__body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 5vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 22ch;
  text-wrap: balance;
}
.about__body .dim { color: var(--ink-2); font-style: italic; font-family: var(--serif-ital); }
.about__body .accent { color: var(--accent); font-style: italic; font-family: var(--serif-ital); }
.about__sig {
  margin-top: 48px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 12px;
}
.about__sig::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
}

/* ───── Industries (asymmetric editorial) ───── */
.industries {
  padding: 128px 0;
}
.industries__head {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
  color: var(--ink);
  max-width: 24ch;
  margin-bottom: 72px;
  text-wrap: balance;
}
.industries__head .accent { color: var(--accent); font-style: italic; font-family: var(--serif-ital); }
.ind-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: flex-start;
}
.ind-name {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color .3s, transform .4s, font-style .2s;
  cursor: default;
  max-width: 100%;
  word-break: break-word;
}
@media (hover: hover) {
  .ind-name:hover {
    color: var(--accent);
    font-style: italic;
    transform: translateX(8px);
  }
}

/* ───── Process (rewritten — 3 stations, no time promises) ───── */
.process__h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  max-width: 14ch;
  text-wrap: balance;
}
.process__h .ital { font-style: italic; color: var(--accent); font-family: var(--serif-ital); }

.stations {
  display: grid;
  gap: 40px;
  position: relative;
}
.station {
  position: relative;
  padding-left: 32px;
  padding-bottom: 32px;
  border-left: 1px solid var(--line);
}
.station:last-child { border-left-color: transparent; padding-bottom: 0; }
.station::before {
  content: "";
  position: absolute;
  left: -5px; top: 6px;
  width: 9px; height: 9px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--bg);
}
.station__t {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.station__t .ital { font-style: italic; color: var(--accent); font-family: var(--serif-ital); }
.station__d {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}

/* ───── Locations (Israel first, 6 total) ───── */
.locations__head {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.12;
  color: var(--ink-2);
  max-width: 22ch;
  margin-bottom: 72px;
  text-wrap: balance;
}
.locations__head .accent { color: var(--accent); font-style: italic; font-family: var(--serif-ital); }
.cities {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: flex-start;
}
.city {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color .3s, font-style .2s, transform .4s;
  cursor: default;
  max-width: 100%;
  word-break: break-word;
}
.city.is-anchor {
  color: var(--accent);
  font-style: italic;
  font-family: var(--serif-ital);
}
.city .tail {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.16em;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-left: 12px;
  vertical-align: middle;
}
@media (hover: hover) {
  .city:hover:not(.is-anchor) {
    color: var(--accent);
    font-style: italic;
    transform: translateX(8px);
  }
}

/* ───── Closing CTA (minimalist, left-aligned, scrim for legibility) ───── */
.closing {
  padding: 160px 0 120px;
  text-align: left;
  position: relative;
  z-index: 1;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(90% 80% at 25% 60%, rgba(7, 6, 5, 0.78) 0%, rgba(7, 6, 5, 0.45) 45%, rgba(7, 6, 5, 0) 85%),
    linear-gradient(180deg, rgba(11, 9, 7, 0.25) 0%, rgba(11, 9, 7, 0.55) 100%);
}
.closing__eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}
.closing__h {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 44px;
  max-width: 16ch;
  text-wrap: balance;
  color: var(--ink);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}
.closing__h .ital {
  font-family: var(--serif-ital);
  font-style: italic;
  color: var(--accent);
}
.closing__cta {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(30px, 5.4vw, 52px);
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  transition: color .25s, border-color .25s, gap .25s;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}
.closing__cta:hover { color: var(--accent); border-color: var(--accent); gap: 28px; }
.closing__cta .arr { font-family: var(--mono); font-style: normal; font-size: 22px; color: var(--accent); }

/* ───── Footer ───── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 64px 0 calc(32px + env(safe-area-inset-bottom));
  position: relative;
  z-index: 2;
}
.footer__brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 6px;
}
.footer__brand .dot { color: var(--accent); font-style: normal; }
.footer__addr {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 28ch;
}
.footer__addr a { color: var(--ink-2); transition: color .2s; }
.footer__addr a:hover { color: var(--accent); }
.footer__grid {
  display: grid;
  gap: 40px 32px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
.footer h6 {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  transition: color .2s;
}
.footer ul a:hover { color: var(--accent); }
.footer__disclaimer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 92ch;
}
.footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__bottom a { transition: color .2s; }
.footer__bottom a:hover { color: var(--accent); }

/* ───── Desktop ───── */
@media (min-width: 720px) {
  :root { --pad-x: 40px; }
  .nav { padding: 28px var(--pad-x); }
  .nav__mark { font-size: 24px; }

  .section { padding: 160px 0; }
  .section--tight { padding: 120px 0; }

  .hero { padding: 120px var(--pad-x) 80px; }

  /* Relax the hero scrim on desktop — more horizontal room means text
     reads cleanly without the heavy mobile gradient. */
  .hero::before {
    top: 20%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 9, 7, 0.30) 50%, rgba(11, 9, 7, 0.65) 100%);
  }

  /* Bring back the Scroll indicator on tablet+ where there's room. */
  .hero__scroll { display: flex; }

  .apply__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .field__input { font-size: 24px; }

  .industries { padding: 200px 0; }
  .industries__head { margin-bottom: 120px; }
  .ind-grid { gap: 48px; }

  .stations { gap: 56px; }
  .station { padding-left: 44px; padding-bottom: 44px; }

  .locations__head { margin-bottom: 96px; }
  .cities { gap: 32px; }

  .closing { padding: 240px 0 180px; }

  /* ───── Desktop placement overrides ───── */

  /* Manifesto moves to the LEFT column (mirrored — person is on the right of the photo) */
  #about .container { display: flex; flex-direction: column; align-items: flex-start; }
  .about__body { text-align: left; }
  .about__sig { margin-right: auto; margin-left: 0; }

  /* Industries header centered */
  .industries__head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 18ch;
    font-size: clamp(28px, 4vw, 44px);
  }

  /* Process moves to the right column with mirrored timeline */
  #process .container { display: flex; flex-direction: column; align-items: flex-end; }
  .process__h { text-align: right; margin-left: auto; }
  .stations { margin-left: auto; max-width: 560px; width: 100%; }
  .station {
    padding-left: 0;
    padding-right: 44px;
    border-left: none;
    border-right: 1px solid var(--line);
    text-align: right;
  }
  .station::before { left: auto; right: -5px; }
  .station:last-child { border-right-color: transparent; }
  .station__d { margin-left: auto; }

  /* Locations header centered, cities zigzag */
  .locations__head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 18ch;
    font-size: clamp(28px, 4vw, 44px);
  }
  .cities { width: 100%; }
  .city { padding-left: 0 !important; }
  .city:nth-child(odd)  { align-self: flex-start; text-align: left; }
  .city:nth-child(even) { align-self: flex-end;   text-align: right; }
  .city.is-anchor { align-self: flex-start; }

  /* Closing — left-aligned, headline avoids the person on the right */
  .closing { text-align: left; }
  .closing__h { max-width: 12ch; margin-bottom: 56px; }
  .closing__h, .closing__eyebrow, .closing__cta { padding-left: 0; }

  .footer { padding: 96px 0 36px; }
  .footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 56px;
  }
}

@media (min-width: 1100px) {
  :root { --pad-x: 64px; }
  .footer__grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .photo-stack .photo { transition: opacity 0.4s; transform: none; }
  .hero__scroll .line { animation: none; }
}

/* Brand logo emblem (alongside the wordmark, on its left) */
.nav__mark { display: inline-flex; align-items: center; }
.nav__logo { height: 26px; width: auto; flex: 0 0 auto; margin-right: 9px; }
.footer__brand { display: inline-flex; align-items: center; }
.footer__logo { height: 22px; width: auto; flex: 0 0 auto; margin-right: 8px; opacity: .96; }
@media (min-width: 720px) { .nav__logo { height: 28px; } }
