@font-face {
  font-family: "Barlow Condensed";
  src: url("/fonts/barlow-condensed-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-400.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f5f2e9;
  --ink: #20211d;
  --muted: #66665d;
  --line: #d6d3c8;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
}

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

html {
  min-width: 320px;
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--paper);
  background: var(--ink);
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.page-shell {
  display: flex;
  flex-direction: column;
  width: min(100% - 112px, 1408px);
  min-height: 100svh;
  margin-inline: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 122px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.brand-name {
  display: block;
  padding-left: 21px;
  border-left: 1px solid var(--line);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.brand-name span {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.community-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.hero {
  position: relative;
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 32px;
  padding-block: clamp(46px, 6vh, 86px) 60px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 25px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px #e6e3d8;
}

h1 {
  margin: 0 0 30px -4px;
  font-family: var(--font-display);
  font-size: clamp(108px, 10.5vw, 157px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.024em;
}

h1 span {
  display: block;
}

.outlined {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.intro {
  margin-bottom: 26px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
}

.intro p {
  margin: 0;
}

.intro .intro-title {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}

.instagram-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 14px 21px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.button-arrow {
  margin-left: 25px;
  transition: transform 180ms ease;
}

.instagram-button:hover {
  background: var(--paper);
  color: var(--ink);
}

.instagram-button:hover .button-arrow {
  transform: translate(2px, -2px);
}

.instagram-handle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.025em;
}

.hero-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-top: -20px;
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  top: -10%;
  left: -10%;
  display: block;
  width: 120%;
  max-width: none;
  height: 120%;
  object-fit: contain;
}

.footer {
  border-top: 1px solid var(--line);
}

.footer-statement,
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-statement {
  padding-block: 24px;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.13em;
}

.footer-statement strong {
  font-weight: 600;
}

.footer-note {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-meta {
  padding-block: 15px 21px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
}

@media (min-width: 1500px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1000px) {
  .page-shell {
    width: calc(100% - 72px);
  }

  .hero {
    gap: 4px;
    grid-template-columns: 1.1fr 1fr;
  }

  h1 {
    font-size: clamp(108px, 12.5vw, 136px);
  }

  .intro {
    max-width: 330px;
  }

  .desktop-break {
    display: none;
  }

}

@media (max-width: 700px) {
  .page-shell {
    width: calc(100% - 40px);
  }

  .header {
    min-height: 93px;
  }

  .brand {
    gap: 5px;
  }

  .brand-logo {
    width: 73px;
    height: 73px;
    margin-left: -7px;
  }

  .brand-name {
    padding-left: 12px;
    font-size: 14px;
  }

  .brand-name span {
    font-size: 7px;
    letter-spacing: 0.1em;
  }

  .community-label {
    gap: 5px;
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .community-label svg {
    width: 12px;
    height: 15px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-block: 43px 30px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  h1 {
    margin-left: -2px;
    margin-bottom: 27px;
    font-size: clamp(114px, 25vw, 163px);
  }

  .intro {
    max-width: 420px;
  }

  .intro .intro-title {
    font-size: 14px;
  }

  .hero-art {
    align-self: center;
    width: min(100%, 370px);
    margin: -5px auto 0;
  }

  .footer-statement {
    padding-block: 20px;
    font-size: 8px;
    gap: 12px;
  }

  .footer-note {
    gap: 9px;
    font-size: 10px;
  }

  .footer-note svg {
    width: 20px;
  }

  .footer-meta {
    align-items: flex-start;
    gap: 8px;
    font-size: 8px;
  }

  .footer-meta span:last-child {
    text-align: right;
  }
}

@media (max-width: 360px) {
  .brand-name {
    font-size: 12px;
  }

  .brand-name span {
    font-size: 6px;
  }

  .community-label {
    font-size: 7px;
  }

  .community-label svg {
    display: none;
  }

  h1 {
    font-size: clamp(96px, 30vw, 108px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@media (forced-colors: active) {
  .outlined {
    color: CanvasText;
    -webkit-text-stroke: 0;
  }

  .hero-art {
    display: none;
  }
}
