:root {
  --paper: #f3efe7;
  --ink: #32312e;
  --muted: #777269;
  --line: rgba(50, 49, 46, 0.25);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Suisse Int'l", "Suisse International", "Helvetica Neue",
               Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 80px 28px;
}

.content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  text-align: center;
}

.kicker {
  margin: 0 0 23px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.logo-heading {
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.logo {
  display: block;
  width: min(570px, 94%);
  height: auto;
  margin: 0 auto;
}

.statement {
  margin: 28px 0 0;
  font-size: clamp(20px, 2.7vw, 29px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.divider {
  width: 42px;
  height: 1px;
  margin: 42px auto;
  background: var(--line);
}

.note {
  margin: 0 auto 34px;
  max-width: 510px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

address strong { font-weight: 500; }

a {
  color: inherit;
  text-decoration-color: rgba(50, 49, 46, 0.4);
  text-underline-offset: 4px;
}

a:hover { text-decoration-color: currentColor; }

.location {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.branch {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.96;
  transform-origin: 75% 75%;
  will-change: transform;
}

.branch-one {
  width: min(760px, 62vw);
  top: -14%;
  right: -13%;
  transform: rotate(-9deg);
  animation: sway-one 11s ease-in-out infinite alternate;
}

.branch-two {
  width: min(690px, 57vw);
  bottom: -17%;
  left: -13%;
  transform: rotate(9deg);
  animation: sway-two 13s ease-in-out infinite alternate;
}

@keyframes sway-one {
  from { transform: rotate(-9deg) translate3d(0, 0, 0); }
  to   { transform: rotate(-7.7deg) translate3d(-5px, 5px, 0); }
}

@keyframes sway-two {
  from { transform: rotate(9deg) translate3d(0, 0, 0); }
  to   { transform: rotate(7.8deg) translate3d(6px, -3px, 0); }
}

@media (max-width: 760px) {
  .page { padding: 76px 24px 90px; }
  .content { width: min(560px, 100%); }
  .logo { width: min(520px, 96%); }
  .statement { margin-top: 22px; }
  .note { font-size: 16px; }
  .branch-one { width: 118vw; top: -9%; right: -56%; }
  .branch-two { width: 112vw; bottom: -9%; left: -52%; }
}

@media (prefers-reduced-motion: reduce) {
  .branch { animation: none; }
}
