@font-face {
  font-family: "Bauhaus 93";
  src: url("assets/fonts/BAUHS93.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neo Sans Std";
  src: url("assets/fonts/neo-sans-std/Neo Sans Std Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown: #574f4e;
  --green: #a7bb79;
  --beige: #b7a379;
  --paper: #fbfaf7;
  --mist: #edf2e7;
  --blue-grey: #dce7e6;
  --ink: #2f2a29;
  --muted: #706765;
  --line: #ded8cf;
  --display-font: "Bauhaus 93", "ITC Bauhaus", Blippo, "Arial Rounded MT Bold", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: static;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 130px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(150px, 38vw);
}

.brand img,
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--brown);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: #2f2a29;
}

.site-nav a[aria-current="page"] {
  color: #2f2a29;
  text-decoration: underline;
  text-decoration-color: var(--beige);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  min-height: calc(100vh - 130px);
  padding: clamp(44px, 7vw, 92px) clamp(18px, 6vw, 84px) clamp(48px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98), rgba(251, 250, 247, 0.88)),
    linear-gradient(135deg, var(--mist), var(--blue-grey));
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  background: var(--beige);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(4.2rem, 11vw, 9.5rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--brown);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--brown);
  font-size: 1.35rem;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.6rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--brown);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--brown);
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  color: var(--brown);
}

.hero-mark {
  position: relative;
  min-height: 360px;
}

.hero-mark img {
  position: absolute;
  right: min(-9vw, -44px);
  bottom: 0;
  width: min(780px, 66vw);
  max-width: none;
  opacity: 0.95;
}

.intro,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  padding: clamp(56px, 8vw, 108px) clamp(18px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child,
.contact-section p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.values-section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 6vw, 84px);
  background: #ffffff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.values-grid article {
  min-height: 244px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.values-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--green);
  font-family: var(--display-font);
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 0.86;
}

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

.contact-section {
  background: var(--mist);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer img {
  width: 190px;
}

.site-footer p {
  margin-bottom: 0;
}

.formats-hero {
  display: grid;
  align-items: end;
  min-height: 420px;
  padding: clamp(52px, 8vw, 110px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98), rgba(251, 250, 247, 0.9)),
    linear-gradient(135deg, var(--mist), #ffffff);
  border-bottom: 1px solid var(--line);
}

.formats-hero .lead {
  max-width: 780px;
}

.format-section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.format-section.tinted {
  background: var(--paper);
}

.format-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 18px;
}

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

.format-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.format-card h3 {
  margin-bottom: 22px;
  font-size: 1.08rem;
}

.format-card img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.logo-preview {
  aspect-ratio: 1.28;
}

.print-preview {
  aspect-ratio: 1.92;
}

.light-preview {
  background:
    linear-gradient(90deg, rgba(222, 216, 207, 0.42) 1px, transparent 1px),
    linear-gradient(180deg, rgba(222, 216, 207, 0.42) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px;
}

.dark-preview {
  background: var(--brown);
}

.dark-preview h3,
.red-preview h3 {
  color: #ffffff;
}

.red-preview {
  background: #c8212b;
}

.icon-card {
  align-content: center;
}

.icon-card img {
  width: min(240px, 70%);
  margin: 0 auto;
}

.banner-card {
  overflow: hidden;
}

.mini-banner {
  position: relative;
  min-height: 340px;
  padding: 34px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
}

.mini-banner span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--brown);
  font-family: var(--display-font);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
}

.mini-banner p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1.1rem;
}

.mini-banner img {
  position: absolute;
  right: -170px;
  bottom: -210px;
  width: 620px;
}

.mockup-card {
  background: #f3eee7;
}

.mockup-card img {
  max-height: 620px;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 130px;
    padding-top: 14px;
    padding-bottom: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-mark {
    min-height: 180px;
  }

  .hero-mark img {
    right: -84px;
    width: min(560px, 112vw);
  }

  .intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-grid,
  .format-grid.two {
    grid-template-columns: 1fr;
  }

  .format-card {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: clamp(3.8rem, 21vw, 5.6rem);
  }

  .button {
    width: 100%;
  }

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

  .site-footer {
    display: block;
  }

  .site-footer img {
    margin-bottom: 18px;
  }

  .mini-banner {
    min-height: 280px;
    padding: 24px;
  }

  .mini-banner img {
    right: -210px;
    bottom: -180px;
    width: 560px;
  }
}
