:root {
  --page: #f7f9fb;
  --surface: #ffffff;
  --ink: #0d8367;
  --muted: #62706b;
  --line: #dbe5e1;
  --mint: #52bda8;
  --mint-dark: #0e725f;
  --gold: #a8792a;
  --coral: #a15c54;
  --shadow: 0 20px 60px rgba(29, 42, 38, 0.12);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #d3f0e3 0%, #d4e2dd 52%, #aae7cf 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

a:focus-visible {
  outline: 3px solid rgba(82, 189, 168, 0.45);
  outline-offset: 4px;
}

.site-header,
.hero,
.page-hero,
.section-grid,
.news-strip,
.site-footer {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  width: min(calc(100% - clamp(40px, 16vw, 160px)), 1240px);
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--mint-dark);
  font-weight: 850;
  letter-spacing: 0.14em;
}

.brand img {
  width: 40px;
  height: 40px;
}

.top-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--mint-dark);
  font-size: 0.95rem;
  text-align: right;
}

.top-nav a {
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.top-nav a:hover,
.top-nav a[aria-current="page"] {
  color: var(--mint-dark);
  border-color: var(--mint);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(52px, 8vw, 112px);
  align-items: center;
  padding: 48px 0 70px;
}

.hero-copy {
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.kicker {
  margin: 0 0 18px;
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-kicker {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 7ch;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 12vw, 8.8rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.lede {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.logo-map {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1.045;
  margin-left: auto;
  filter: drop-shadow(var(--shadow));
}

.interactive-logo {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.logo-piece {
  color: inherit;
  cursor: pointer;
  outline: none;
}

.piece-body,
.branch,
.branch-center {
  transition:
    opacity 260ms ease,
    stroke-width 260ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    fill 260ms ease;
  transform-box: view-box;
}

.hex-fill {
  fill: #49b99f;
  stroke: rgba(5, 95, 76, 0.16);
  stroke-width: 1.5;
}

.piece-calculators .hex-fill {
  fill: #4bbda5;
}

.piece-toys .hex-fill {
  fill: #4fc0a8;
}

.piece-label {
  pointer-events: none;
}

.piece-label text {
  fill: rgba(225, 255, 247, 0.973);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-anchor: middle;
  text-transform: uppercase;
  pointer-events: none;
}

.logo-branches {
  pointer-events: none;
}

.branch {
  stroke: #0a7a61;
  stroke-linecap: butt;
  stroke-width: 22;
}

.branch-center {
  fill: #0a7a61;
  stroke: #0a7a61;
  stroke-width: 0;
}

.logo-map[data-active="calculators"] .piece-calculators .piece-body {
  transform: translate(38px, -38px);
}

.logo-map[data-active="toys"] .piece-toys .piece-body {
  transform: translate(38px, 38px);
}

.logo-map[data-active="social"] .piece-social .piece-body {
  transform: translate(-46px, 0);
}

.logo-map[data-active="calculators"] .branch-calculators,
.logo-map[data-active="calculators"] .branch-right,
.logo-map[data-active="toys"] .branch-toys,
.logo-map[data-active="toys"] .branch-right,
.logo-map[data-active="social"] .branch-calculators,
.logo-map[data-active="social"] .branch-toys {
  opacity: 1;
  stroke: #0a7a61;
  stroke-width: 12;
}

.logo-map[data-active] .branch-center {
  fill: #0a7a61;
  opacity: 1;
  stroke: #0a7a61;
  transition: fill 260ms ease;
  transform: none;
  transform-origin: 255px 220px;
}

.logo-piece:hover ~ .logo-branches .branch-center,
.logo-piece:focus-visible ~ .logo-branches .branch-center {
  fill: #0a7a61;
  opacity: 1;
  stroke: #0a7a61;
  transition: fill 260ms ease;
  transform: none;
}

.logo-piece:focus-visible .hex-fill {
  stroke: rgba(21, 26, 24, 0.38);
  stroke-width: 3;
}

@media (min-width: 881px) {
  .hero[data-active="social"] .hero-copy {
    transform: translateX(-88px);
  }
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: clamp(26px, 7vw, 86px);
  align-items: center;
  padding: 58px 0 46px;
}

.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 6.6rem);
}

.page-logo {
  justify-self: end;
  width: 220px;
  filter: drop-shadow(var(--shadow));
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 38px 0 70px;
}

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

.tile {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--mint);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 34px rgba(29, 42, 38, 0.06);
}

.tile.gold {
  border-top-color: var(--gold);
}

.tile.coral {
  border-top-color: var(--coral);
}

.tile h2,
.tile h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0;
}

.tile p {
  color: var(--muted);
}

.toy-preview-grid {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 38px 0 76px;
}

.toy-preview-card {
  min-width: 0;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(14, 114, 95, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 36px rgba(29, 42, 38, 0.08);
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1050ms cubic-bezier(0.18, 0.82, 0.22, 1),
    transform 1050ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.js:not(.toy-previews-ready) .toy-preview-card {
  opacity: 0;
  transform: translateY(28px);
}

.toy-preview-card:nth-child(2) {
  transition-delay: 260ms;
}

.toy-preview-card:nth-child(3) {
  transition-delay: 520ms;
}

.toy-preview-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.toy-preview-card p:not(.kicker) {
  color: var(--muted);
}

.toy-button {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(14, 114, 95, 0.3);
  border-radius: 6px;
  color: var(--mint-dark);
  font-weight: 800;
}

.toy-button:hover {
  border-color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.48);
}

.toy-mock {
  height: 150px;
  min-width: 0;
  margin-bottom: 22px;
  border: 1px solid rgba(14, 114, 95, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
}

.morse-mock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  overflow: hidden;
  padding: 20px;
}

.morse-mock span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.morse-mock i {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #10231f;
}

.morse-mock .dot {
  width: 10px;
}

.morse-mock .dash {
  width: 34px;
}

.qr-mock {
  display: grid;
  place-items: center;
  padding: 16px;
  color: var(--mint-dark);
}

.qr-mock img {
  width: 112px;
  height: 112px;
}

.qr-mock:hover {
  border-color: rgba(14, 114, 95, 0.34);
  background: rgba(255, 255, 255, 0.42);
}

.draw-mock {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.roulette-wheel {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    conic-gradient(
      from -22deg,
      #49b99f 0 45deg,
      #0a7a61 45deg 90deg,
      #4fc0a8 90deg 135deg,
      #2d806e 135deg 180deg,
      #49b99f 180deg 225deg,
      #0a7a61 225deg 270deg,
      #4fc0a8 270deg 315deg,
      #2d806e 315deg 360deg
    );
  box-shadow: 0 18px 36px rgba(29, 42, 38, 0.12);
}

.roulette-center {
  position: absolute;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #10231f;
  color: #e8f4ef;
  font-weight: 900;
}

.roulette-pointer {
  position: absolute;
  top: 16px;
  width: 0;
  height: 0;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 22px solid #10231f;
  z-index: 2;
}

.link-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  position: relative;
  display: block;
  padding: 12px 28px 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 720;
}

.link-list li:last-child a {
  border-bottom: 1px solid var(--line);
}

.link-list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.55;
}

.link-list a:hover {
  color: var(--mint-dark);
}

.news-strip {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
  gap: clamp(20px, 4vw, 44px);
  padding: 28px 0 70px;
}

.news-strip h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
}

.news-strip p {
  color: var(--muted);
}

.news-item {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.news-item time {
  display: block;
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.social-hero,
.about-company,
.about-capabilities,
.privacy-band,
.social-directory,
.social-news {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.social-page {
  --social-accent: #8e5f58;
  --social-ink: #226f60;
  --about-panel: rgba(245, 252, 249, 0.56);
  --about-panel-soft: rgba(245, 252, 249, 0.34);
  --about-rule: rgba(14, 114, 95, 0.16);
  --about-rule-strong: rgba(14, 114, 95, 0.26);
}

.social-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 470px);
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  padding: 42px 0 46px;
}

.social-hero h1 {
  max-width: 10ch;
  margin-bottom: 24px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
}

.social-hero .lede {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  overflow-wrap: break-word;
}

.about-photo {
  margin: 0;
  width: 100%;
  justify-self: start;
}

.about-photo a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--about-rule);
  border-radius: 8px;
  background: var(--about-panel);
  box-shadow: 0 22px 70px rgba(29, 42, 38, 0.14);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.about-company {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: 40px 0 46px;
}

.about-company h2 {
  max-width: 500px;
  margin-bottom: 14px;
  color: var(--social-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.about-company p {
  max-width: 520px;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-facts {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid var(--about-rule);
  border-radius: 8px;
  background: var(--about-panel-soft);
}

.about-facts article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 0;
}

.about-facts article:first-child {
  padding-top: 0;
}

.about-facts article:last-child {
  padding-bottom: 0;
}

.about-facts strong {
  color: var(--social-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-facts span {
  color: #173d36;
  font-weight: 720;
  font-size: 0.98rem;
}

.about-capabilities {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(36px, 7vw, 76px);
  padding: 58px 0 70px;
  border-top: 1px solid var(--about-rule);
}

.about-capabilities h2 {
  max-width: 8.5ch;
  color: var(--social-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--about-rule-strong);
}

.capability-grid article {
  min-height: 190px;
  padding: 24px 28px 26px 0;
  border-bottom: 1px solid var(--about-rule);
}

.capability-grid article:nth-child(odd) {
  padding-right: 34px;
  border-right: 1px solid var(--about-rule);
}

.capability-grid article:nth-child(even) {
  padding-left: 34px;
}

.capability-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--social-accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.capability-grid h3 {
  margin-bottom: 10px;
  color: #173d36;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.social-directory {
  display: block;
  padding: 34px 0 44px;
}

.social-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(200px, 0.34fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.social-section-copy {
  min-width: 0;
}

.social-panel h2 {
  max-width: 10ch;
  margin-bottom: 12px;
  color: var(--social-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.social-panel-intro,
.social-news-heading p {
  color: var(--muted);
}

.social-panel-intro {
  max-width: 280px;
  margin-bottom: 0;
  font-size: 0.96rem;
  overflow-wrap: break-word;
}

.social-link-stack {
  display: grid;
  gap: 10px;
}

.social-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--about-panel-soft);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.social-row:hover {
  background: rgba(245, 252, 249, 0.5);
  color: var(--social-accent);
  transform: translateX(4px);
}

.social-row strong,
.social-row small {
  display: block;
}

.social-row strong {
  color: #173d36;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.2;
}

.social-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.social-row-action {
  align-self: center;
  color: var(--social-accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-band {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: start;
  padding: 44px 0 42px;
}

.privacy-band h2 {
  margin-bottom: 0;
  color: var(--social-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.privacy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.privacy-list article {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(14, 114, 95, 0.18);
  border-radius: 8px;
  background: rgba(245, 252, 249, 0.5);
  box-shadow: 0 14px 34px rgba(29, 42, 38, 0.08);
}

.privacy-list article + article {
  padding-right: 20px;
  padding-left: 20px;
}

.privacy-list strong {
  color: var(--social-accent);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.privacy-list span {
  color: var(--muted);
  font-size: 0.96rem;
}

.social-news {
  display: block;
  padding: 34px 0 58px;
}

.social-news-heading {
  margin-bottom: clamp(24px, 4vw, 38px);
  text-align: center;
}

.social-news-heading h2 {
  max-width: none;
  margin: 0 auto 12px;
  color: var(--social-ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.social-news-heading p {
  max-width: 34ch;
  margin-right: auto;
  margin-left: auto;
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 6vw, 72px);
  align-items: end;
}

.social-card {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
  color: #10231f;
  text-align: center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.social-card:hover {
  opacity: 0.92;
}

.social-icon-frame {
  width: clamp(150px, 15vw, 190px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.social-icon-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.social-card:hover .social-icon-frame,
.social-card:focus-visible .social-icon-frame {
  filter: drop-shadow(0 18px 28px rgba(18, 52, 45, 0.16));
  transform: translateY(-6px) scale(1.035);
}

.social-card:hover .social-icon-frame img,
.social-card:focus-visible .social-icon-frame img {
  transform: scale(1.02);
}

.email-frame {
  width: clamp(170px, 18vw, 230px);
  filter: drop-shadow(0 18px 34px rgba(29, 42, 38, 0.12));
}

.social-card-label {
  display: block;
  max-width: 100%;
  color: #10231f;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 520;
  line-height: 1.1;
  overflow-wrap: break-word;
}

.email-card .social-card-label {
  overflow-wrap: anywhere;
}

.beer-support {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 44px);
}

.beer-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--mint-dark);
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 850;
  box-shadow: 0 16px 34px rgba(14, 114, 95, 0.18);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.beer-button:hover {
  background: var(--ink);
  box-shadow: 0 20px 42px rgba(14, 114, 95, 0.24);
  transform: translateY(-3px);
}

.beer-button span[aria-hidden="true"] {
  font-size: 1.18rem;
  line-height: 1;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(0.18, 0.82, 0.22, 1),
    transform 720ms cubic-bezier(0.18, 0.82, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready.reveal-resetting [data-reveal] {
  transition: none !important;
}

.privacy-band [data-reveal] {
  transition-delay: 0ms !important;
}

.social-news [data-reveal] {
  transition-delay: 0ms !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--ink);
  font-weight: 750;
}

@media (max-width: 880px) {
  .hero,
  .page-hero,
  .social-hero,
  .about-company,
  .about-capabilities,
  .privacy-band,
  .social-directory,
  .social-news,
  .section-grid,
  .section-grid.two,
  .toy-preview-grid,
  .news-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .logo-map {
    margin: 0 auto;
  }

  .page-logo {
    justify-self: start;
    width: 180px;
  }

  .about-photo {
    max-width: 560px;
  }

  .social-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .social-link-stack {
    grid-column: 1;
    grid-row: auto;
  }

  .about-capabilities {
    padding: 46px 0 62px;
  }

  .about-capabilities h2 {
    max-width: 100%;
  }

  .privacy-band {
    gap: 18px;
  }

  .social-card-grid {
    gap: 28px;
  }

  .social-icon-frame {
    width: clamp(128px, 24vw, 160px);
  }

  .email-frame {
    width: clamp(150px, 28vw, 190px);
  }

  .social-card-label {
    font-size: clamp(1.08rem, 2.6vw, 1.45rem);
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .page-hero,
  .social-hero,
  .about-company,
  .about-capabilities,
  .privacy-band,
  .social-directory,
  .social-news,
  .section-grid,
  .toy-preview-grid,
  .news-strip,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    align-self: flex-end;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 16px;
  }

  .piece-label text {
    font-size: 11.5px;
  }

  .desktop-kicker {
    display: none;
  }

  .mobile-kicker {
    display: inline;
  }

  .social-hero {
    padding: 34px 0 36px;
  }

  .social-hero h1 {
    max-width: 7.5ch;
    font-size: clamp(2.45rem, 10.5vw, 3.05rem);
  }

  .about-photo img {
    max-height: 220px;
  }

  .about-company {
    padding: 30px 0 42px;
  }

  .about-facts {
    padding: 18px 16px;
    background: transparent;
  }

  .about-facts article:first-child {
    padding-top: 0;
  }

  .about-facts article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .privacy-list {
    grid-template-columns: 1fr;
  }

  .privacy-list article,
  .privacy-list article + article {
    padding: 14px 16px;
  }

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

  .capability-grid article,
  .capability-grid article:nth-child(odd),
  .capability-grid article:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }

  .social-directory {
    padding: 32px 0 46px;
  }

  .social-news {
    padding: 34px 0 50px;
  }

  .social-news-heading h2 {
    max-width: 9ch;
  }

  .social-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .email-card {
    grid-column: 1 / -1;
  }

  .social-icon-frame {
    width: min(100%, 110px);
  }

  .email-frame {
    width: min(100%, 138px);
  }

  .social-card-label {
    font-size: 1rem;
    font-weight: 650;
  }

  .email-card .social-card-label {
    font-size: 1rem;
  }

  .social-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 0 34px;
  }

  .social-hero h1 {
    max-width: 7ch;
    font-size: clamp(3.4rem, 17vw, 4.6rem);
    line-height: 0.9;
  }

  .social-hero .lede {
    max-width: 30ch;
    font-size: clamp(1.05rem, 4.4vw, 1.25rem);
  }

  .about-photo img {
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .about-company,
  .privacy-band {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-company-copy h2,
  .privacy-band h2,
  .social-news-heading h2 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    line-height: 0.95;
  }

  .privacy-list {
    gap: 14px;
  }

  .social-card-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .email-card {
    grid-column: auto;
  }

  .social-icon-frame {
    width: 118px;
  }

  .email-frame {
    width: 140px;
  }

  .social-page,
  .social-hero-copy,
  .about-photo figcaption,
  .about-company-copy,
  .about-facts,
  .about-facts article,
  .privacy-copy,
  .privacy-list,
  .privacy-list article,
  .social-news-heading,
  .social-card,
  .beer-support {
    text-align: center;
  }

  .site-footer {
    align-items: center;
    text-align: center;
  }

  .social-hero h1,
  .social-hero .lede,
  .about-company h2,
  .about-company p,
  .privacy-band h2,
  .social-news-heading p {
    margin-right: auto;
    margin-left: auto;
  }

  .about-photo {
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .about-facts article,
  .privacy-list article {
    justify-items: center;
  }

  .reveal-ready [data-reveal] {
    transform: translateY(24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .piece-body,
  .branch,
  .branch-center,
  .hero-copy {
    transition-duration: 1ms;
  }

  .toy-preview-card {
    transition-duration: 1ms;
    transition-delay: 0ms;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition-duration: 1ms;
    transition-delay: 0ms;
  }
}
