@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;900&display=swap");

:root {
  --accent: #ff4b0b;
  --accent-red: #e12619;
  --ink: #060403;
  --coffee: #120905;
  --cream: #f7efe4;
  --muted: #b9ada2;
  --line: rgba(247, 239, 228, .16);
  --glass: rgba(255, 255, 255, .07);
  --shadow: 0 2.4rem 6rem rgba(0, 0, 0, .45);
}

* {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: .2rem solid var(--accent);
  outline-offset: .35rem;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  background: var(--ink);
}

html::-webkit-scrollbar { width: 1rem; }
html::-webkit-scrollbar-track { background: var(--ink); }
html::-webkit-scrollbar-thumb { background: var(--accent); }

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 75, 11, .12), transparent 28rem),
    linear-gradient(180deg, #090503 0%, #130804 46%, #050302 100%);
  color: var(--cream);
}

section { padding: 9rem 7%; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: .35rem;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-red));
  z-index: 2000;
  box-shadow: 0 0 2rem rgba(255, 75, 11, .7);
}

.heading,
.hero-title {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .86;
  text-transform: uppercase;
}

.heading {
  margin-bottom: 3rem;
  font-size: clamp(5rem, 10vw, 15rem);
  color: var(--cream);
}

.eyebrow {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .16rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1.35rem 2.4rem;
  background: var(--accent);
  color: var(--cream);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .08rem;
  text-transform: uppercase;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
}

.btn:hover {
  transform: translateY(-.4rem);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 1.6rem 4rem rgba(255, 75, 11, .28);
}

.btn.ghost {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 .1rem var(--line);
}

.btn.ghost:hover {
  background: var(--cream);
  color: var(--ink);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 7%;
  background: rgba(6, 4, 3, .58);
  border-bottom: .1rem solid var(--line);
  backdrop-filter: blur(18px);
  transition: padding .25s ease, background .25s ease;
}

.header.scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(6, 4, 3, .9);
}

.header .logo {
  font-family: "Anton", sans-serif;
  font-size: 2.8rem;
  color: var(--cream);
  line-height: .9;
  text-transform: uppercase;
  white-space: nowrap;
}

.header .logo span { color: var(--accent); }

.header .navbar {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.header .navbar a {
  position: relative;
  padding: 1rem 1.1rem;
  color: rgba(247, 239, 228, .72);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color .22s ease;
}

.header .navbar a::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: .55rem;
  height: .2rem;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.header .navbar a:hover,
.header .navbar a.active { color: var(--cream); }
.header .navbar a:hover::after,
.header .navbar a.active::after { transform: scaleX(1); }

.header .icons {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.header .icons button,
.language-switcher .lang-btn,
.contact-info .info i,
.contact-info .share a {
  height: 4.4rem;
  width: 4.4rem;
  background: var(--glass);
  color: var(--cream);
  cursor: pointer;
  text-align: center;
  font-size: 1.55rem;
  border: .1rem solid var(--line);
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.header .icons button:hover,
.language-switcher .lang-btn:hover,
.language-switcher .lang-btn.active,
.contact-info .info i:hover,
.contact-info .share a:hover {
  transform: translateY(-.25rem);
  background: var(--accent);
  color: var(--cream);
}

.header #menu-btn { display: none; }

.language-switcher {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-left: auto;
}

.language-switcher .lang-btn {
  min-width: 4.2rem;
  font-size: 1.2rem;
  font-weight: 900;
}

.header .search-form {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(70rem, 90vw);
  display: none;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(12, 6, 3, .96);
  border: .1rem solid var(--line);
  box-shadow: var(--shadow);
}

.header .search-form.active { display: flex; }

.header .search-form input {
  width: 100%;
  padding: 1.35rem 1.5rem;
  background: rgba(255,255,255,.08);
  color: var(--cream);
  font-size: 1.5rem;
}

.header .search-form label {
  font-size: 2.2rem;
  color: var(--accent);
  cursor: pointer;
  padding: 0 1rem;
}

.contact-info {
  position: fixed;
  top: 0;
  right: 0;
  width: min(38rem, 92vw);
  height: 100%;
  z-index: 1100;
  display: none;
  padding: 7rem 2.4rem 3rem;
  text-align: center;
  background: rgba(9, 5, 3, .96);
  border-left: .1rem solid var(--line);
  backdrop-filter: blur(20px);
}

.contact-info.active {
  display: block;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, .72);
}

.contact-info #close-contact-info {
  position: absolute;
  top: 1.6rem;
  right: 2rem;
  cursor: pointer;
  font-size: 3rem;
  color: var(--cream);
  background: transparent;
}

.contact-info .info { padding: 2.2rem 0; }
.contact-info .info h3 {
  padding: 1rem 0;
  font-size: 1.8rem;
  color: var(--cream);
  text-transform: uppercase;
}
.contact-info .info p {
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1.9;
}
.contact-info .share {
  display: flex;
  justify-content: center;
  gap: .8rem;
  padding-top: 2rem;
  border-top: .1rem solid var(--line);
}

.panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.home {
  display: grid;
  align-content: end;
  padding: 13rem 7% 6rem;
}

.hero-bg,
.section-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  will-change: transform;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=2200&q=85");
}

.hero-shade,
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6,4,3,.96) 0%, rgba(6,4,3,.62) 42%, rgba(6,4,3,.2) 100%),
    linear-gradient(0deg, rgba(6,4,3,.96), transparent 45%);
}

.panel::after {
  background:
    linear-gradient(180deg, rgba(6,4,3,.38), rgba(6,4,3,.82)),
    radial-gradient(circle at 82% 28%, rgba(255, 75, 11, .13), transparent 34rem);
}

.hero-title {
  max-width: 115rem;
  font-size: clamp(7.2rem, 17vw, 24rem);
  color: var(--accent);
  text-shadow: 0 2rem 4rem rgba(0, 0, 0, .55);
  transform-origin: left bottom;
  will-change: transform;
}

.hero-copy {
  max-width: 58rem;
  margin-top: 2rem;
}

.hero-copy p {
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 5.2vw, 7.2rem);
  line-height: .9;
  text-transform: uppercase;
  color: var(--cream);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.hero-orbit {
  position: absolute;
  right: 6%;
  bottom: 9%;
  width: clamp(17rem, 22vw, 38rem);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: .2rem solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
  background: linear-gradient(135deg, rgba(255, 75, 11, .28), rgba(255, 255, 255, .08));
}

.hero-orbit img,
.menu-card img,
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scroll-cue {
  position: absolute;
  right: 7%;
  bottom: 3rem;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .18rem;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.sticky-story {
  display: grid;
  grid-template-columns: minmax(28rem, .9fr) minmax(30rem, 1fr);
  gap: 8rem;
  align-items: start;
}

.sticky-story .section-media {
  background-image: url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=2200&q=85");
  opacity: .62;
}

.sticky-copy {
  position: sticky;
  top: 12rem;
  padding-top: 5rem;
}

.sticky-copy p:not(.eyebrow),
.shop-content p,
.menu-card p,
.product-card p {
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1.8;
}

.story-list {
  display: grid;
  gap: 2rem;
  padding-top: 10rem;
}

.story-card,
.menu-card,
.product-card,
.contact form {
  background: rgba(255, 255, 255, .065);
  border: .1rem solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.menu-card,
.product-card {
  background-image: linear-gradient(135deg, rgba(255, 75, 11, .12), rgba(255, 255, 255, .035));
}

.story-card {
  padding: 3rem;
  min-height: 24rem;
}

.story-card span,
.menu-card span,
.product-card span {
  display: inline-block;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .14rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.story-card h3,
.menu-card h3,
.product-card h3 {
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 3.4rem;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.story-card p {
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1.8;
}

.section-intro {
  max-width: 95rem;
  margin-bottom: 4rem;
}

.menu-board {
  background:
    linear-gradient(rgba(7, 4, 3, .88), rgba(7, 4, 3, .92)),
    url("https://images.unsplash.com/photo-1498804103079-a6351b050096?auto=format&fit=crop&w=2200&q=85") center/cover fixed;
}

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

.menu-card {
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 2.4rem;
  align-items: center;
  min-height: 25rem;
  padding: 1.5rem;
  width: 100%;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.menu-card:hover,
.product-card:hover {
  transform: translateY(-1rem) rotate(.4deg);
  border-color: rgba(255, 75, 11, .65);
  background: rgba(255, 75, 11, .09);
}

.menu-card img {
  aspect-ratio: 1;
  min-height: 18rem;
  background: linear-gradient(135deg, rgba(255, 75, 11, .24), rgba(247, 239, 228, .08));
  transform: rotate(-2deg) scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}

img.image-failed {
  opacity: 0;
}

.menu-card:hover img,
.product-card:hover img {
  transform: rotate(2deg) scale(1.08);
  filter: saturate(1.18) contrast(1.08);
}

.featured {
  background:
    linear-gradient(180deg, rgba(6, 4, 3, .92), rgba(20, 8, 4, .86)),
    url("https://images.unsplash.com/photo-1517701604599-bb29b565090c?auto=format&fit=crop&w=2200&q=85") center/cover;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.product-card {
  min-height: 56rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.product-card img {
  height: 36rem;
  margin-bottom: 2.4rem;
  transition: transform .45s ease, filter .45s ease;
}

.product-card h3,
.product-card p,
.product-card span,
.product-card strong {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}

.product-card strong,
.modal-copy strong {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding: .8rem 1rem;
  background: var(--accent);
  color: var(--cream);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: .06rem;
}

.btn.compact {
  min-height: 4.6rem;
  margin-top: 1rem;
}

.shop-strip {
  display: grid;
  place-items: center;
  min-height: 85vh;
  background:
    linear-gradient(90deg, rgba(6,4,3,.96), rgba(6,4,3,.74)),
    url("https://images.unsplash.com/photo-1559056199-641a0ac8b55e?auto=format&fit=crop&w=2200&q=85") center/cover fixed;
}

.marquee {
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
  overflow: hidden;
  opacity: .16;
  transform: rotate(-3deg);
}

.marquee span {
  display: block;
  white-space: nowrap;
  font-family: "Anton", sans-serif;
  font-size: clamp(8rem, 18vw, 24rem);
  color: var(--accent);
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.shop-content {
  position: relative;
  z-index: 2;
  max-width: 84rem;
}

.cta {
  display: grid;
  grid-template-columns: minmax(28rem, 1fr) minmax(30rem, .86fr);
  gap: 2rem;
  align-items: stretch;
  min-height: 90vh;
  background:
    linear-gradient(90deg, rgba(6,4,3,.45), rgba(6,4,3,.96)),
    url("https://images.unsplash.com/photo-1521017432531-fbd92d768814?auto=format&fit=crop&w=2200&q=85") center/cover;
}

.cta-map {
  min-height: 56rem;
  overflow: hidden;
  border: .1rem solid var(--line);
  box-shadow: var(--shadow);
}

.cta-map .map {
  width: 100%;
  height: 100%;
  min-height: 56rem;
  filter: grayscale(1) contrast(1.08) invert(.92) hue-rotate(176deg);
}

.contact form {
  padding: 3rem;
}

.contact form h2 {
  font-family: "Anton", sans-serif;
  font-size: clamp(4rem, 6vw, 8rem);
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact form .box {
  width: 100%;
  margin: .8rem 0;
  padding: 1.6rem 0;
  background: transparent;
  border-bottom: .1rem solid var(--line);
  color: var(--cream);
  font-size: 1.5rem;
}

.contact form .box:focus { border-color: var(--accent); }
.contact form textarea {
  height: 13rem;
  resize: none;
}

.footer {
  padding: 6rem 7% 4rem;
  background: #040302;
  border-top: .1rem solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr .7fr .7fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 4.2rem;
  line-height: .9;
  text-transform: uppercase;
}

.footer-brand span,
.footer h3,
.footer-credit span {
  color: var(--accent);
}

.footer h3 {
  margin-bottom: 1.4rem;
  font-size: 1.3rem;
  letter-spacing: .14rem;
  text-transform: uppercase;
}

.footer p,
.footer a:not(.footer-brand) {
  display: block;
  color: var(--muted);
  font-size: 1.45rem;
  line-height: 1.8;
}

.footer a:not(.footer-brand):hover {
  color: var(--cream);
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  padding-top: 2.4rem;
  border-top: .1rem solid var(--line);
  color: var(--muted);
  font-size: 1.35rem;
}

.footer-credit img {
  display: block;
  max-width: 11.6rem;
  height: auto;
  opacity: .86;
}

.reveal {
  opacity: 0;
  transform: translateY(6rem) scale(.98);
  transition: opacity .8s ease, transform .8s cubic-bezier(.19, 1, .22, 1);
}

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

.float-media {
  will-change: transform;
  transition: transform .2s linear;
}

.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: grid;
  place-items: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.menu-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(18px);
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(24rem, .82fr) minmax(28rem, 1fr);
  width: min(108rem, 94vw);
  max-height: min(82rem, 88vh);
  overflow: hidden;
  background: rgba(10, 5, 3, .9);
  border: .1rem solid rgba(255, 75, 11, .32);
  box-shadow: 0 4rem 10rem rgba(0, 0, 0, .72);
  transform: translateY(3rem) scale(.97);
  transition: transform .34s cubic-bezier(.19, 1, .22, 1);
}

.menu-modal.open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 2;
  width: 4.6rem;
  height: 4.6rem;
  background: var(--accent);
  color: var(--cream);
  cursor: pointer;
  font-size: 3rem;
  line-height: 1;
}

.modal-media {
  min-height: 44rem;
  background: linear-gradient(135deg, rgba(255, 75, 11, .22), rgba(247, 239, 228, .08));
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-copy {
  overflow: auto;
  padding: clamp(3rem, 5vw, 5.6rem);
}

.modal-copy h2 {
  margin-bottom: 1.6rem;
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: clamp(4.6rem, 7vw, 9rem);
  line-height: .9;
  text-transform: uppercase;
}

.modal-copy p {
  color: var(--muted);
  font-size: 1.55rem;
  line-height: 1.8;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.2rem 0;
}

.modal-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.modal-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, .06);
  border: .1rem solid var(--line);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.modal-item:hover {
  transform: translateX(.5rem);
  border-color: rgba(255, 75, 11, .55);
  background: rgba(255, 75, 11, .1);
}

.modal-item span {
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.5;
}

.modal-item strong {
  color: var(--accent);
  font-size: 1.35rem;
  white-space: nowrap;
}

body.modal-locked {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .header { padding-left: 3rem; padding-right: 3rem; }
  section { padding-left: 3rem; padding-right: 3rem; }
  .header #menu-btn { display: inline-block; }
  .header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    padding: 1rem 3rem 2rem;
    background: rgba(6, 4, 3, .96);
    border-bottom: .1rem solid var(--line);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path .28s ease;
  }
  .header .navbar.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
  .header .navbar a {
    display: block;
    padding: 1.4rem 0;
    font-size: 1.8rem;
  }
  .header .navbar a::after { left: 0; right: auto; width: 5rem; }
  .sticky-story,
  .cta { grid-template-columns: 1fr; }
  .sticky-copy { position: relative; top: auto; }
  .menu-grid,
  .product-row,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modal-panel { grid-template-columns: 1fr; overflow: auto; }
  .modal-media { min-height: 28rem; max-height: 36rem; }
}

@media (max-width: 760px) {
  html { font-size: 55%; }
  .header { gap: .8rem; padding-left: 1.5rem; padding-right: 1.5rem; }
  .header .logo { font-size: 2.3rem; }
  .language-switcher { margin-left: 0; }
  .language-switcher .lang-btn { width: 3.8rem; min-width: 3.8rem; height: 3.8rem; font-size: 1.1rem; }
  .header .icons button { height: 4rem; width: 4rem; line-height: 4rem; }
  section { padding: 7rem 1.7rem; }
  .home { padding: 12rem 1.7rem 5rem; min-height: 100svh; }
  .heading { font-size: clamp(5.2rem, 17vw, 8.4rem); }
  .hero-title { font-size: clamp(6.6rem, 24vw, 10.8rem); }
  .hero-copy p { font-size: clamp(3.4rem, 10.6vw, 5.2rem); }
  .hero-orbit { position: relative; right: auto; bottom: auto; width: min(78vw, 30rem); margin-top: 3rem; }
  .scroll-cue { display: none; }
  .menu-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .menu-card img { width: 100%; min-height: 24rem; }
  .product-card { min-height: auto; }
  .product-card img { height: 30rem; }
  .cta-map,
  .cta-map .map { min-height: 34rem; }
  .contact form { padding: 2rem; }
  .footer-grid,
  .footer-credit { grid-template-columns: 1fr; }
  .footer-grid { display: grid; }
  .footer-credit { display: grid; justify-items: start; }
  .modal-panel { width: 100%; max-height: 92vh; }
  .modal-copy { padding: 3rem 2rem; }
  .modal-actions .btn { width: 100%; }
}

@media (max-width: 430px) {
  html { font-size: 50%; }
  .header .icons button:nth-child(2),
  .header .icons button:nth-child(3),
  .header .icons button:nth-child(4) { display: none; }
  .btn { width: 100%; }
  .modal-item { grid-template-columns: 1fr; }
}

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