/* No. 24 Letterbox Works — image-free Swiss poster system */
:root {
  --paper: #f5f3ed;
  --ink: #111111;
  --red: #e10600;
  --line: rgba(17, 17, 17, 0.28);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1440px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

a:hover {
  text-decoration-color: var(--red);
}

button,
input,
textarea {
  font: inherit;
}

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

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

address {
  font-style: normal;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 12px 16px;
  background: var(--red);
  color: var(--paper);
  transform: translateY(-110%);
}

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

.top-rule {
  height: 5px;
  background: var(--red);
}

.header-grid {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.brand {
  grid-column: 1 / span 5;
  display: flex;
  align-items: baseline;
  gap: 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--red);
  font-family: var(--display);
  font-size: 28px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.header-meta {
  grid-column: 8 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-content: stretch;
  border-bottom: 1px solid var(--ink);
}

.hero-number {
  grid-column: 1 / span 3;
  display: flex;
  align-items: flex-start;
  padding-top: 34px;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(160px, 22vw, 350px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.105em;
  line-height: 0.77;
  white-space: nowrap;
}

.hero-copy {
  grid-column: 4 / span 6;
  padding: 38px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kicker {
  margin-bottom: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.privacy-hero h1 {
  max-width: 850px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(72px, 9.5vw, 150px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-action {
  grid-column: 10 / -1;
  padding: 38px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.hero-action p {
  max-width: 330px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--red);
  border-radius: 0;
  padding: 13px 20px;
  background: var(--red);
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 150ms ease, color 150ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--paper);
  color: var(--red);
  text-decoration: none;
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.services {
  padding-top: 34px;
  padding-bottom: 90px;
}

.section-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 42px;
}

.section-heading > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-item {
  min-height: 210px;
  padding: 24px 22px 30px 0;
}

.service-item + .service-item {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.service-item h3 {
  margin-bottom: 42px;
  font-family: var(--display);
  font-size: 24px;
  font-stretch: condensed;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-item p {
  max-width: 260px;
  margin-bottom: 0;
  font-size: 14px;
}

.facts-band {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  min-height: 255px;
  padding: 26px 28px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fact + .fact {
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.fact strong {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(76px, 9vw, 140px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.fact span {
  max-width: 290px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.method {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding-top: 100px;
  padding-bottom: 110px;
  border-bottom: 1px solid var(--ink);
}

.method-copy {
  grid-column: 1 / span 6;
  padding-right: 8%;
}

.method-copy > p {
  max-width: 680px;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}

.method-list {
  grid-column: 8 / -1;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.method-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  color: var(--red);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.method-list strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}

.method-list p {
  margin: 0;
  font-size: 14px;
}

.testimonial {
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--ink);
}

.testimonial blockquote {
  max-width: 1080px;
  margin: 0 0 0 16.66%;
  padding: 8px 0 8px 42px;
  border-left: 8px solid var(--red);
}

.testimonial blockquote p {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.testimonial blockquote footer {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding-top: 96px;
  padding-bottom: 110px;
}

.contact-intro {
  grid-column: 1 / span 5;
}

.contact-intro > p {
  max-width: 530px;
  font-size: 18px;
  line-height: 1.6;
}

.contact-intro address {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  line-height: 1.8;
}

.contact-form {
  grid-column: 7 / -1;
  padding-top: 3px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 25px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-bottom: 3px solid var(--red);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--red);
}

.consent-field label {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.form-button {
  border: 1px solid var(--red);
}

.form-note,
.form-status {
  max-width: 430px;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 12px;
}

.form-status {
  min-height: 18px;
  color: var(--red);
  font-weight: 700;
}

.site-footer {
  border-top: 5px solid var(--red);
  padding: 30px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.footer-grid > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-grid strong,
.footer-grid a,
.footer-grid span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

/* Privacy page */
.privacy-main {
  padding-bottom: 110px;
}

.privacy-hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 20px;
  padding-top: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--ink);
}

.privacy-hero .hero-number {
  grid-column: auto;
  padding: 0;
  font-size: clamp(180px, 22vw, 330px);
}

.privacy-hero h1 {
  margin-top: 72px;
}

.privacy-date {
  margin-top: 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding-top: 70px;
}

.privacy-index {
  grid-column: 1 / span 3;
  align-self: start;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--ink);
}

.privacy-index strong,
.privacy-index a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-content {
  grid-column: 5 / span 7;
}

.privacy-content section {
  position: relative;
  padding: 0 0 55px 80px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
}

.privacy-content section:first-child {
  padding-left: 0;
}

.policy-number {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 900;
}

.privacy-content h2 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 46px);
  font-stretch: condensed;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.privacy-content p,
.privacy-content address {
  max-width: 730px;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .hero {
    min-height: 590px;
  }

  .hero-number {
    grid-column: 1 / span 4;
    font-size: clamp(140px, 25vw, 240px);
  }

  .hero-copy {
    grid-column: 5 / -1;
    padding-bottom: 30px;
  }

  .hero-action {
    grid-column: 5 / -1;
    padding: 0 0 50px;
    border-left: 0;
  }

  .hero-action p {
    max-width: 600px;
  }

  .method-copy {
    grid-column: 1 / span 6;
  }

  .method-list {
    grid-column: 7 / -1;
  }

  .contact-intro {
    grid-column: 1 / span 5;
  }

  .contact-form {
    grid-column: 6 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .header-grid {
    min-height: 75px;
    gap: 12px;
  }

  .brand {
    grid-column: 1 / span 7;
    gap: 10px;
  }

  .brand-name {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .header-meta {
    grid-column: 8 / -1;
    display: block;
    text-align: right;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .header-meta span,
  .header-meta a {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    padding-bottom: 46px;
  }

  .hero-number {
    grid-column: 1 / span 2;
    padding-top: 24px;
    font-size: 34vw;
  }

  .hero-copy {
    grid-column: 3 / -1;
    padding: 28px 0 35px;
  }

  .hero-copy .kicker {
    margin-bottom: 55px;
  }

  .hero h1,
  .privacy-hero h1 {
    font-size: clamp(52px, 16vw, 84px);
    line-height: 0.85;
  }

  .hero-action {
    grid-column: 3 / -1;
    padding-bottom: 0;
  }

  .services {
    padding-bottom: 64px;
  }

  .section-heading {
    grid-template-columns: 52px 1fr;
    margin-bottom: 28px;
  }

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

  .service-item {
    min-height: 210px;
    padding: 20px 16px 26px 0;
  }

  .service-item + .service-item {
    padding-left: 16px;
  }

  .service-item:nth-child(3) {
    border-left: 0;
  }

  .service-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .service-item h3 {
    margin-bottom: 30px;
    font-size: 21px;
  }

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

  .fact {
    min-height: 180px;
    padding: 22px 0 24px;
  }

  .fact + .fact {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .fact strong {
    font-size: 88px;
  }

  .method {
    display: block;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .method-copy {
    padding-right: 0;
    margin-bottom: 55px;
  }

  .method-copy > p {
    font-size: 17px;
  }

  .testimonial {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .testimonial blockquote {
    margin-left: 0;
    padding-left: 22px;
    border-left-width: 6px;
  }

  .contact {
    display: block;
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .contact-intro {
    margin-bottom: 65px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-grid nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-legal {
    align-items: flex-start;
  }

  .privacy-hero {
    min-height: 340px;
    grid-template-columns: 2fr 4fr;
    gap: 12px;
  }

  .privacy-hero .hero-number {
    font-size: 45vw;
  }

  .privacy-hero h1 {
    margin-top: 50px;
  }

  .privacy-layout {
    display: block;
    padding-top: 45px;
  }

  .privacy-index {
    margin-bottom: 60px;
  }

  .privacy-content section {
    padding-left: 54px;
  }

  .privacy-content section:first-child {
    padding-left: 0;
  }

  .privacy-content p,
  .privacy-content address {
    font-size: 16px;
  }
}

@media (max-width: 430px) {
  .hero-number {
    grid-column: 1 / -1;
    padding-bottom: 10px;
    font-size: 45vw;
  }

  .hero-copy,
  .hero-action {
    grid-column: 1 / -1;
  }

  .hero-copy {
    padding-top: 6px;
  }

  .hero-copy .kicker {
    margin-bottom: 35px;
  }

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

  .service-item {
    min-height: 170px;
  }

  .service-item + .service-item {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .method-list li {
    grid-template-columns: 48px 1fr;
  }

  .privacy-hero {
    display: block;
  }

  .privacy-hero .hero-number {
    display: none;
  }

  .privacy-hero h1 {
    margin-top: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
