:root {
  --paper: #f4ead7;
  --paper-light: #fffaf0;
  --ink: #101c2f;
  --muted: #526071;
  --blue: #1552b8;
  --blue-dark: #0f376f;
  --orange: #ef4d23;
  --yellow: #efa91c;
  --white: #fffdf7;
  --line: rgba(16, 28, 47, 0.18);
  --shadow: 0 18px 36px rgba(42, 31, 18, 0.16);
  --max: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 12% 20%, rgba(114, 79, 32, 0.055) 0 0.8px, transparent 1px),
    radial-gradient(circle at 72% 68%, rgba(255, 255, 255, 0.5) 0 0.7px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.monogram {
  width: fit-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
}

.monogram span {
  color: var(--orange);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.2vw, 2.25rem);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  min-height: 48px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button--nav {
  justify-self: end;
  background: var(--yellow);
}

.button--primary {
  background: var(--orange);
  color: var(--white);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 690px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.8rem) 0 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  isolation: isolate;
  cursor: crosshair;
}

.hero a,
.hero button {
  cursor: pointer;
}

.hero__snake {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: multiply;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  margin: 0 0 1.4rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  transform: rotate(-1.5deg);
  background: var(--blue);
  color: var(--white);
}

.hero h1,
.section-heading h2,
.about h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.5rem, 6.5vw, 6.45rem);
  font-weight: 700;
}

.hero h1 em {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: var(--white);
  font-weight: inherit;
  font-style: italic;
  white-space: nowrap;
}

.hero h1 em::before {
  position: absolute;
  inset: 4% -3% -2%;
  z-index: -1;
  content: "";
  transform: rotate(-1deg);
  background: var(--orange);
  clip-path: polygon(1% 5%, 99% 0, 97% 96%, 3% 100%);
}

.hero__intro {
  max-width: 610px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.7;
}

.hero__actions {
  margin-top: 2.1rem;
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 2px solid currentColor;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.availability {
  margin: 1.8rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.availability span {
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
}

.hero__visual {
  position: relative;
  z-index: 2;
  height: 535px;
}

.paper-layer {
  position: absolute;
  box-shadow: var(--shadow);
}

.paper-layer--blue {
  inset: 8% 12% 11% 0;
  transform: rotate(-7deg);
  background: var(--blue);
  clip-path: polygon(3% 2%, 98% 0, 96% 100%, 0 96%);
}

.paper-layer--orange {
  inset: 3% -1% 14% 18%;
  transform: rotate(7deg);
  background: var(--orange);
  clip-path: polygon(1% 4%, 96% 0, 100% 96%, 4% 100%);
}

.paper-layer--yellow {
  inset: 28% -5% 0 8%;
  transform: rotate(-1.8deg);
  background: var(--yellow);
  clip-path: polygon(0 1%, 100% 5%, 97% 98%, 3% 100%);
}

.portrait-frame {
  position: absolute;
  inset: 8% 6% 8% 8%;
  z-index: 2;
  margin: 0;
  padding: 0.7rem;
  transform: rotate(1.8deg);
  overflow: hidden;
  background: var(--paper-light);
  box-shadow: 0 20px 40px rgba(34, 26, 14, 0.22);
  clip-path: polygon(1% 1%, 99% 0, 97% 100%, 0 98%);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  filter: saturate(0.96) contrast(1.02);
}

.portrait-label,
.portrait-note {
  position: absolute;
  z-index: 3;
  margin: 0;
  box-shadow: 5px 7px 18px rgba(30, 23, 15, 0.2);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portrait-label {
  right: -1rem;
  bottom: 2.9rem;
  padding: 0.75rem 1rem;
  transform: rotate(-2deg);
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
}

.portrait-label b {
  color: var(--yellow);
}

.portrait-note {
  top: 0;
  left: -0.5rem;
  padding: 0.75rem 0.9rem;
  transform: rotate(-6deg);
  background: var(--paper-light);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
}

.portrait-note span {
  color: var(--orange);
}

.snake-hint {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  z-index: 4;
  margin: 0;
  padding: 0.45rem 0.55rem 0.45rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transform: translateX(-50%) rotate(-1deg);
  border: 2px solid var(--ink);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.snake-hint strong {
  padding: 0.35rem 0.48rem;
  display: inline-flex;
  gap: 0.25rem;
  background: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform-origin: center;
}

.snake-hint strong.is-popping {
  animation: snake-score-pop 420ms cubic-bezier(0.2, 0.9, 0.28, 1.35);
}

@keyframes snake-score-pop {
  45% {
    transform: scale(1.22) rotate(3deg);
    background: var(--orange);
    color: var(--white);
  }
}

.hero__side-note {
  position: absolute;
  top: 50%;
  right: -5.7rem;
  z-index: 3;
  margin: 0;
  transform: rotate(90deg) translateY(-50%);
  color: rgba(16, 28, 47, 0.5);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.25em;
}

.brand-ribbon {
  border-block: 2px solid var(--ink);
  background: var(--ink);
  overflow: hidden;
}

.brand-ribbon__inner {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

.brand-ribbon__inner > p {
  margin: 0;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-ribbon ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  list-style: none;
}

.brand-chip {
  flex: 0 1 auto;
  padding: 0.5rem 0.8rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.8rem, 1.15vw, 1.03rem);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.brand-chip:nth-child(even) { transform: rotate(1.2deg); }
.brand-chip:nth-child(odd) { transform: rotate(-1.4deg); }
.brand-chip--blue { background: #cbdcff; }
.brand-chip--orange { background: #ffb09d; }
.brand-chip--yellow { background: #ffd271; }
.brand-chip--cream { background: var(--paper-light); }
.brand-chip--ink { color: var(--white); font-style: italic; }

.section {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.focus {
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  margin-bottom: 3.3rem;
  padding-bottom: 1.6rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 2px solid var(--ink);
}

.kicker {
  margin-bottom: 0.8rem;
  color: var(--orange);
}

.section-heading h2,
.about h2,
.contact h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
}

.section-number,
.about__index,
.contact__index {
  margin: 0;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.focus-card {
  position: relative;
  min-height: 290px;
  padding: 4.5rem 1.8rem 1.8rem;
  border: 2px solid var(--ink);
  overflow: hidden;
  background: var(--paper-light);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.focus-card:nth-child(2),
.focus-card:nth-child(5) {
  transform: translateY(1.4rem);
}

.focus-card:hover {
  transform: rotate(-0.8deg) translateY(-4px);
  box-shadow: 11px 11px 0 var(--ink);
}

.focus-card:nth-child(2):hover,
.focus-card:nth-child(5):hover {
  transform: rotate(0.8deg) translateY(1rem);
}

.focus-card::before {
  position: absolute;
  top: 1.6rem;
  right: 1.7rem;
  width: 68px;
  height: 16px;
  content: "";
  transform: rotate(-8deg);
  background: var(--card-accent);
  opacity: 0.95;
}

.focus-card--blue { --card-accent: var(--blue); }
.focus-card--orange { --card-accent: var(--orange); }
.focus-card--yellow { --card-accent: var(--yellow); }

.focus-card__number {
  position: absolute;
  top: 1rem;
  left: 1.7rem;
  margin: 0;
  color: var(--card-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
}

.focus-card h3 {
  margin: 0 0 0.7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.focus-card > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 2px solid var(--ink);
  background: var(--paper-light);
}

.about__story,
.about__principles {
  min-height: 650px;
  padding-block: clamp(3rem, 6vw, 6rem);
}

.about__story {
  position: relative;
  padding-left: max(1.5rem, calc((100vw - var(--max)) / 2));
  padding-right: clamp(2rem, 4vw, 5rem);
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.kicker--light {
  color: #ffd271;
}

.about__story h2 {
  max-width: 570px;
}

.about__story > p:not(.kicker) {
  position: relative;
  z-index: 2;
  max-width: 545px;
  margin: 2rem 0 2rem;
  color: rgba(255, 253, 247, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

.button--light {
  position: relative;
  z-index: 2;
  border-color: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover,
.button--light:focus-visible {
  box-shadow: 2px 2px 0 var(--yellow);
}

.about__collage {
  position: absolute;
  right: -3.5rem;
  bottom: 2.2rem;
  width: 400px;
  height: 215px;
  opacity: 0.97;
}

.about__shape {
  position: absolute;
  width: 175px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(16, 28, 47, 0.5);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.about__shape--one {
  top: 58px;
  left: 8px;
  transform: rotate(-8deg);
  background: var(--paper-light);
}

.about__shape--two {
  top: 10px;
  left: 115px;
  transform: rotate(7deg);
  background: var(--orange);
}

.about__shape--three {
  right: 4px;
  bottom: 0;
  transform: rotate(-3deg);
  background: var(--yellow);
}

.about__principles {
  position: relative;
  padding-left: clamp(2rem, 4vw, 5rem);
  padding-right: max(1.5rem, calc((100vw - var(--max)) / 2));
  background: var(--paper-light);
}

.about__index {
  margin-bottom: 3.4rem;
}

.about__principles article {
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  border-top: 1.5px solid var(--line);
}

.about__principles article:last-child {
  border-bottom: 1.5px solid var(--line);
}

.about__principles article > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--yellow);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
}

.about__principles article:nth-of-type(2) > span { background: #ffb09d; }
.about__principles article:nth-of-type(3) > span { background: #cbdcff; }

.about__principles h3 {
  margin: 0 0 0.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.2;
}

.about__principles article p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.contact__paper {
  position: relative;
  padding: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  border: 2px solid var(--ink);
  background: var(--yellow);
  box-shadow: 12px 12px 0 var(--ink);
  clip-path: polygon(0.5% 1%, 99.5% 0, 98.7% 98%, 0 100%);
}

.contact__paper::before {
  position: absolute;
  top: -18px;
  left: 47%;
  width: 110px;
  height: 38px;
  content: "";
  transform: rotate(2deg);
  background: rgba(255, 250, 240, 0.77);
  box-shadow: 0 2px 7px rgba(47, 33, 15, 0.12);
}

.contact__index {
  position: absolute;
  top: 1.3rem;
  right: 2rem;
  color: var(--ink);
}

.contact .kicker {
  color: var(--ink);
}

.contact h2 {
  max-width: 730px;
}

.contact h2 em {
  color: var(--blue);
  font-weight: inherit;
}

.contact__action {
  align-self: end;
}

.contact__action p {
  margin: 0 0 1.6rem;
  color: rgba(16, 28, 47, 0.75);
  font-weight: 600;
}

.button--ink {
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--orange);
}

.button--ink:hover,
.button--ink:focus-visible {
  box-shadow: 2px 2px 0 var(--orange);
}

.site-footer {
  border-top: 2px solid var(--ink);
  background: var(--paper-light);
}

.footer-grid {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 4.5rem 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.4fr;
  gap: 3.2rem;
}

.monogram--footer {
  display: block;
  font-size: 3.1rem;
}

.footer-brand p,
.footer-column p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.footer-brand p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.62rem;
}

.footer-column h2 {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a:not(.text-link) {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--orange);
}

.footer-column--wide p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.copyright {
  margin: 0;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  text-align: center;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    gap: 1.1rem;
    font-size: 0.72rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 3rem;
  }

  .hero__side-note {
    display: none;
  }

  .about__collage {
    right: -8rem;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    min-height: 76px;
  }

  .menu-button {
    justify-self: end;
    width: 52px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--ink);
    cursor: pointer;
  }

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

  .menu-button__lines {
    width: 24px;
    display: grid;
    gap: 6px;
  }

  .menu-button__lines i {
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] i:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 1.5rem;
    left: 1.5rem;
    padding: 1.3rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    border: 2px solid var(--ink);
    background: var(--paper-light);
    box-shadow: 8px 8px 0 var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .button--nav {
    display: none;
  }

  .hero {
    padding-top: 4.5rem;
    grid-template-columns: 1fr;
  }

  .hero__visual {
    width: min(100%, 610px);
    margin: 0 auto;
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-card:nth-child(2),
  .focus-card:nth-child(5) {
    transform: none;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about__story,
  .about__principles {
    min-height: auto;
    padding: 5rem max(1.5rem, calc((100vw - 700px) / 2));
  }

  .about__story {
    min-height: 660px;
  }

  .about__collage {
    right: 0;
  }

  .contact__paper {
    grid-template-columns: 1fr;
  }

  .contact__action {
    max-width: 560px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero,
  .section,
  .brand-ribbon__inner,
  .footer-grid {
    width: min(calc(100% - 2rem), var(--max));
  }

  .monogram {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
    padding: 3.75rem 0 4rem;
    gap: 3.5rem;
  }

  .snake-hint {
    bottom: 0.75rem;
    max-width: calc(100% - 1rem);
    gap: 0.45rem;
    padding-left: 0.6rem;
    font-size: 0.875rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.3rem;
  }

  .hero__visual {
    height: 430px;
  }

  .portrait-label {
    right: 0;
    max-width: 85%;
    font-size: 0.62rem;
  }

  .brand-ribbon__inner {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .brand-ribbon ul {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .brand-chip {
    font-size: 0.78rem;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .focus-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .focus-card {
    min-height: 250px;
  }

  .about__story {
    min-height: 700px;
  }

  .about__collage {
    right: -6.5rem;
    bottom: 1rem;
    transform: scale(0.85);
  }

  .about__principles article {
    grid-template-columns: 52px 1fr;
    gap: 1rem;
  }

  .about__principles article > span {
    width: 46px;
    height: 46px;
  }

  .contact__paper {
    padding: 3.6rem 1.5rem 2.5rem;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .contact__index {
    top: 1rem;
    right: 1.3rem;
  }

  .footer-grid {
    padding: 3.5rem 0;
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .footer-brand {
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--line);
  }
}

@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;
  }
}
