:root {
  --black: #191b1a;
  --header: #2a2929;
  --paper: #f5f5f2;
  --paper-soft: #e9e9e5;
  --white: #ffffff;
  --muted: #5e5e5a;
  --soft-muted: #b9b9b4;
  --line: #121212;
  --shadow: rgba(0, 0, 0, 0.18);
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--black);
  background: linear-gradient(180deg, var(--paper), var(--paper-soft));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

button,
a {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.nav-shell {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: calc(100% - 72px);
  max-width: var(--max-width);
  padding: 13px 14px 13px 20px;
  color: var(--white);
  background: rgba(42, 41, 41, 0.94);
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  padding: 178px 20px 156px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(25, 27, 26, 0.62), rgba(25, 27, 26, 0.95)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #4d4d4b 0%, #2b2c2b 42%, #111 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -30px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.38;
  transform: rotate(-1deg) scale(1.04);
}

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scene-panel,
.scene-line {
  position: absolute;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.scene-panel {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.18);
}

.panel-one {
  left: 8vw;
  bottom: 14vh;
  width: 25vw;
  max-width: 340px;
  height: 210px;
}

.panel-two {
  right: 9vw;
  top: 18vh;
  width: 24vw;
  max-width: 330px;
  height: 260px;
}

.panel-three {
  right: 23vw;
  bottom: 10vh;
  width: 190px;
  height: 120px;
}

.scene-line {
  height: 2px;
  background: rgba(255, 255, 255, 0.34);
  border: 0;
}

.line-one {
  left: 5vw;
  top: 34vh;
  width: 22vw;
}

.line-two {
  right: 7vw;
  bottom: 34vh;
  width: 28vw;
}

.line-three {
  left: 37vw;
  bottom: 17vh;
  width: 17vw;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.hero-content {
  text-align: left;
}

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

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 20px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.72);
}

h1 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(3.7rem, 10vw, 7.5rem);
  text-transform: uppercase;
}

.hero-subtitle {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.lede {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-action-row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 14px;
  margin: 0 0 16px;
}

.action-box {
  display: grid;
  align-content: center;
  min-height: 74px;
  min-width: 226px;
  padding: 14px 28px;
  color: var(--black);
  background: var(--paper);
  border: 2px solid var(--white);
  border-radius: 0;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.32);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.action-box:hover,
.notice-feature:hover,
.bento-card:hover,
.quick-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 11px 11px 0 rgba(0, 0, 0, 0.24);
}

.action-box span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.action-box strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.secondary-action {
  color: var(--white);
  background: transparent;
}

.secondary-action span {
  color: rgba(255, 255, 255, 0.64);
}

.hero-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(420px, 100%);
  aspect-ratio: 0.78;
  border: 2px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
  z-index: 2;
}

.hero-portrait picture,
.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-portrait img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}

.hard-divider {
  height: 24px;
  background:
    linear-gradient(90deg, var(--black) 0 18px, #555 18px 36px) repeat-x;
  background-size: 36px 24px;
  border-bottom: 2px solid var(--line);
}

.notice-section,
.bento-section {
  padding: 64px 20px 82px;
}

.notice-section {
  background: linear-gradient(180deg, var(--paper), var(--paper-soft));
}

.bento-section {
  background: #deded9;
}

.notice-section > *,
.bento-section > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.eyebrow {
  color: var(--muted);
}

.section-heading h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  text-transform: uppercase;
}

.notice-board {
  max-width: 720px;
}

.notice-feature {
  display: block;
  padding: 30px;
  background: var(--paper);
  border: 2px solid var(--line);
  box-shadow: 8px 8px 0 var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.notice-meta {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.notice-feature h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.notice-feature p,
.notice-list strong,
.bento-card p,
.quick-card p,
.cozy-band p,
.contact-section p,
.social-links strong {
  color: var(--muted);
  font-weight: 750;
}

.notice-feature > strong,
.text-link {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice-list {
  margin-top: 18px;
  border-top: 2px solid var(--line);
}

.notice-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 4px;
  border-bottom: 2px solid var(--line);
}

.notice-list span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(196px, auto);
  gap: 18px;
}

.bento-card,
.quick-card {
  background: var(--paper);
  border: 2px solid var(--line);
  box-shadow: 8px 8px 0 var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.bento-card {
  padding: 28px;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.bento-bottom {
  margin-top: auto;
}

.bento-art {
  display: grid;
  place-items: center;
  min-height: 178px;
  margin-bottom: 34px;
  background: var(--black);
  border: 2px solid var(--line);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.18);
}

.website-mock {
  width: min(430px, 86%);
  min-height: 150px;
  padding: 14px;
  background: var(--paper);
  border: 3px solid var(--white);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.24);
}

.mock-top {
  display: flex;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--black);
}

.mock-top span {
  width: 10px;
  height: 10px;
  background: var(--black);
  border-radius: 50%;
}

.mock-nav {
  width: 44%;
  height: 10px;
  margin: 13px 0;
  background: var(--black);
}

.mock-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 10px 16px;
  align-items: center;
  padding: 15px;
  background: var(--black);
}

.mock-hero span,
.mock-hero strong,
.mock-hero em,
.mock-content span {
  display: block;
  background: var(--paper);
}

.mock-hero span {
  grid-column: 1;
  width: 78%;
  height: 15px;
}

.mock-hero strong {
  grid-column: 1;
  width: 100%;
  height: 20px;
}

.mock-hero em {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.mock-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.mock-content span {
  height: 38px;
  border: 3px solid var(--black);
  background: transparent;
}

.bento-card h3,
.quick-card h2 {
  margin: 0 0 12px;
  font-size: 1.06rem;
  text-transform: uppercase;
}

.stat-icon,
.quick-icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
}

.stat-icon::before,
.stat-icon::after,
.quick-icon::before,
.quick-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-setup::before {
  inset: 8px;
  border: 5px solid var(--black);
}

.icon-setup::after {
  left: 17px;
  top: 0;
  width: 20px;
  height: 54px;
  background:
    linear-gradient(var(--black), var(--black)) center / 20px 5px no-repeat,
    linear-gradient(var(--black), var(--black)) center / 5px 54px no-repeat;
}

.icon-local::before {
  left: 15px;
  top: 5px;
  width: 24px;
  height: 34px;
  background: var(--black);
  clip-path: polygon(50% 100%, 0 38%, 0 10%, 18% 0, 82% 0, 100% 10%, 100% 38%);
}

.icon-local::after {
  left: 22px;
  top: 13px;
  width: 10px;
  height: 10px;
  background: var(--paper);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: -18px 31px 0 -2px var(--black), 18px 31px 0 -2px var(--black);
}

.icon-seo::before {
  left: 3px;
  top: 3px;
  width: 30px;
  height: 30px;
  border: 6px solid var(--black);
  border-radius: 50%;
}

.icon-seo::after {
  right: 7px;
  bottom: 7px;
  width: 25px;
  height: 7px;
  background: var(--black);
  transform: rotate(45deg);
  transform-origin: center;
}

.icon-edits::before {
  left: 6px;
  top: 9px;
  width: 34px;
  height: 40px;
  border: 5px solid var(--black);
  background:
    linear-gradient(var(--black), var(--black)) 8px 11px / 18px 5px no-repeat,
    linear-gradient(var(--black), var(--black)) 8px 22px / 14px 5px no-repeat;
}

.icon-edits::after {
  right: 2px;
  top: 1px;
  width: 28px;
  height: 8px;
  background: var(--black);
  transform: rotate(-42deg);
  transform-origin: center;
  box-shadow: -17px 17px 0 -2px var(--black);
}

.icon-price::before {
  left: 4px;
  top: 13px;
  width: 42px;
  height: 28px;
  border: 5px solid var(--black);
  background:
    linear-gradient(var(--black), var(--black)) 8px 8px / 12px 5px no-repeat,
    linear-gradient(var(--black), var(--black)) 8px 18px / 22px 5px no-repeat;
}

.icon-price::after {
  right: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: -18px 34px 0 -7px var(--black);
}

.icon-pages::before {
  left: 7px;
  top: 4px;
  width: 30px;
  height: 38px;
  border: 5px solid var(--black);
  background:
    linear-gradient(var(--black), var(--black)) 7px 10px / 15px 4px no-repeat,
    linear-gradient(var(--black), var(--black)) 7px 20px / 20px 4px no-repeat;
}

.icon-pages::after {
  right: 6px;
  bottom: 4px;
  width: 30px;
  height: 38px;
  border-right: 5px solid var(--black);
  border-bottom: 5px solid var(--black);
}

.icon-extra::before {
  left: 6px;
  top: 12px;
  width: 38px;
  height: 30px;
  border: 5px solid var(--black);
}

.icon-extra::after {
  right: 1px;
  top: 0;
  width: 28px;
  height: 28px;
  background:
    linear-gradient(var(--black), var(--black)) center / 24px 5px no-repeat,
    linear-gradient(var(--black), var(--black)) center / 5px 24px no-repeat;
  border: 4px solid var(--paper);
  border-radius: 50%;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 64px max(20px, calc((100vw - var(--max-width)) / 2)) 58px;
  background: linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.quick-card {
  min-height: 270px;
  padding: 28px;
}

.quick-card .text-link {
  margin-top: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cozy-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 38px;
  padding: 68px max(20px, calc((100vw - var(--max-width)) / 2)) 88px;
  background: #d8d8d2;
}

.cozy-band h2,
.contact-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  text-transform: uppercase;
}

.social-links {
  align-content: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.social-links div {
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: 22px;
  background: var(--paper);
  border: 2px solid var(--line);
  box-shadow: 8px 8px 0 var(--shadow);
}

.social-links span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: 34px;
  align-items: stretch;
  padding: 72px max(20px, calc((100vw - var(--max-width)) / 2));
  background: var(--paper);
  border-top: 2px solid var(--line);
}

.contact-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 34px;
  color: var(--white);
  background: var(--black);
  border: 2px solid var(--line);
  outline: none;
}

.contact-card h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--white);
  font-weight: 900;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-card.is-highlighted {
  outline: 4px solid var(--white);
  outline-offset: -12px;
}

.site-footer {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 30px max(20px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: var(--header);
  border-top: 2px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer .footer-brand {
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 930px) {
  .nav-shell,
  .hero-inner,
  .bento-grid,
  .quick-grid,
  .cozy-band,
  .social-links,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    position: static;
    width: auto;
    max-width: none;
    margin: 0;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-content {
    text-align: center;
  }

  .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-action-row {
    justify-content: center;
  }

  .hero-portrait {
    justify-self: center;
    width: min(360px, 86vw);
  }

  .bento-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .hero-action-row {
    flex-direction: column;
  }

  .action-box {
    min-width: 0;
    width: 100%;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }

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

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-subtitle {
    letter-spacing: 0.16em;
  }

  .hero-inner {
    width: calc(100% - 36px);
    gap: 30px;
  }

  .notice-section,
  .bento-section,
  .quick-grid,
  .cozy-band,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-heading h2,
  .cozy-band h2,
  .contact-section h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .notice-list a {
    grid-template-columns: 1fr auto;
  }

  .notice-list span {
    grid-column: 1 / -1;
  }
}
