@font-face {
  font-family: "Inter Local";
  src: url("../fonts/inter-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter Local";
  src: url("../fonts/inter-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f3ee;
  --paper: #ffffff;
  --ink: #181818;
  --muted: #55524a;
  --line: #ddd7cb;
  --accent: #b64022;
  --accent-dark: #812b18;
  --roof: #25282b;
  --focus: #005fcc;
  --soft: #ece7dc;
  --shadow: 0 18px 44px rgba(24, 24, 24, 0.08);
  --shadow-small: 0 10px 24px rgba(24, 24, 24, 0.06);
  --max: 1120px;
  --page-space: clamp(2rem, 10vw, 9rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Inter Local", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    linear-gradient(180deg, #faf9f6 0, var(--bg) 420px),
    var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(10px);
}

.header-inner,
.section,
.footer-inner {
  width: min(var(--max), calc(100% - var(--page-space)));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--roof), #3a3d40);
  border-radius: 4px;
  box-shadow: var(--shadow-small);
}

.brand-mark svg {
  width: 1.65rem;
  height: 1.65rem;
}

.brand small {
  display: block;
  font-weight: 400;
  color: var(--muted);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.35rem 0.7rem;
  color: var(--ink);
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
}

.nav-list a[aria-current="page"],
.nav-list a:hover {
  background: var(--soft);
  border-color: #d6cbbc;
}

.hero {
  position: relative;
  min-height: min(720px, 86vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--roof);
  border-bottom: 1px solid rgba(24, 24, 24, 0.2);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - var(--page-space)));
  margin: 0 auto;
  padding: 6.5rem 0 5.5rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--accent-dark);
  text-transform: none;
}

.hero .eyebrow {
  color: #ffd9cc;
}

@keyframes heroItemFadeIn {
  from {
    opacity: 0;
    transform: translate3d(-42vw, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 5vw, 4.85rem);
}

@media (min-width: 821px) and (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .hero h1,
  .hero .lead,
  .hero .actions {
    will-change: transform, opacity;
    backface-visibility: hidden;
    animation: heroItemFadeIn 1400ms ease-out both;
  }

  .hero h1 {
    animation-delay: 140ms;
  }

  .hero .lead {
    animation-delay: 280ms;
  }

  .hero .actions {
    animation-delay: 420ms;
  }
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.lead {
  max-width: 660px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid currentColor;
  border-radius: 4px;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button-primary {
  color: #090909;
  border-color: white;
  background: yellow;
  box-shadow: 0 12px 26px rgba(129, 43, 24, 0.24);
}

.button-secondary {
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: clamp(3.25rem, 6.5vw, 5.75rem) 0;
}

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

.intro {
  max-width: 780px;
}

.legal-text {
  max-width: 860px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.legal-text h2 {
  margin-top: 2.25rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 2.25rem;
}

.card {
  padding: clamp(1.15rem, 2vw, 1.6rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-small);
}

.card p,
.contact-box p {
  margin: 0;
  color: var(--muted);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: 2.5rem;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(221, 215, 203, 0.72);
  border-radius: 8px;
}

.image-panel {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel.contain {
  padding: clamp(1rem, 3vw, 2rem);
}

.image-panel.contain img {
  aspect-ratio: auto;
  object-fit: contain;
}

.figure-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.logo-strip {
  display: inline-flex;
  max-width: 100%;
  padding: 0.9rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-small);
}

.logo-strip img {
  width: min(100%, 366px);
  height: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: start;
}

.facts {
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.facts span:first-child {
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  max-width: 920px;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
  border-radius: 50%;
}

.text-stack {
  display: grid;
  gap: 1rem;
}

.text-stack p {
  margin: 0;
}

.mold-info {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2rem;
}

.mold-primary {
  display: grid;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-small);
}

.mold-primary article {
  padding: clamp(1.1rem, 2.4vw, 1.75rem);
}

.mold-primary article + article {
  border-top: 1px solid var(--line);
}

.mold-primary p,
.mold-aside p {
  margin: 0;
  color: var(--muted);
}

.mold-aside {
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  color: #fff;
  background: linear-gradient(135deg, var(--roof), #1b1d1f);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.mold-aside ol {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.25rem;
  margin: 1rem 0 1.25rem;
}

.mold-aside strong {
  display: block;
  margin-top: 1.25rem;
  color: #ffd9cc;
}

.mold-aside p {
  color: rgba(255, 255, 255, 0.86);
}

.band {
  color: #fff;
  background: #202326;
  width: 100%;
}

.band a {
  color: #fff;
}

.band-grid {
  width: min(var(--max), calc(100% - var(--page-space)));
  margin-inline: auto;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  overflow: hidden;
}

.band-card {
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: rgba(255, 255, 255, 0.035);
}

.band-card + .band-card {
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.band-card h2 {
  max-width: 520px;
  margin-bottom: 0.95rem;
}

.band p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.02rem, 1.45vw, 1.14rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.9);
}

.band .contact-lines {
  justify-self: stretch;
  width: 100%;
  margin-top: 0;
}

.band .contact-lines strong {
  font-size: 1.08rem;
}

.band .contact-lines a {
  font-weight: 600;
}

.contact-box {
  padding: 1.5rem;
  background: var(--soft);
  border-left: 5px solid var(--accent);
  border-radius: 6px;
  box-shadow: var(--shadow-small);
}

.contact-icon-lines {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.contact-icon-line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  align-items: start;
}

.contact-icon-line img {
  width: 22px;
  height: 22px;
  margin-top: 0.15rem;
}

.contact-lines {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  font-style: normal;
}

.site-footer {
  color: #fff;
  background: #111213;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 2rem 0;
}

.footer-meta {
  display: grid;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-meta a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #fff;
}

@media (max-width: 820px) {
  :root {
    --page-space: 2rem;
  }

  .header-inner,
  .footer-inner,
  .split {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

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

  .media-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.75rem;
  }

  .mold-info {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.66);
  }

  .band .contact-lines {
    justify-self: stretch;
    width: 100%;
  }

  .band-card + .band-card {
    border-top: 1px solid rgba(255, 255, 255, 0.42);
    border-left: 0;
  }
}

@media (max-width: 420px) {
  .nav-list {
    gap: 0.15rem;
  }

  .nav-list a {
    min-height: 2.4rem;
    padding-inline: 0.5rem;
  }

  .hero-content {
    padding-block: 4.75rem 4rem;
  }
}

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

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
