@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/cinzel-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/newsreader-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --plaque: #0c0b09;
  --plaque-2: #16140f;
  --cream: #f1e6d0;
  --cream-deep: #e7d8b8;
  --ink: #16130e;
  --ink-soft: #3a342a;
  --gold: #c6a24e;
  --gold-hi: #d9b75a;
  --line-dark: rgba(198, 162, 78, 0.38);
  --line-paper: rgba(22, 19, 14, 0.18);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    serif;
  --display: "Cinzel", "Times New Roman", serif;
  --measure: 38rem;
  --pad: clamp(1.25rem, 4.5vw, 2.25rem);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--plaque);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.45;
  background-image: url("assets/noise.png");
  mix-blend-mode: overlay;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 60;
  padding: 0.5rem 0.75rem;
  background: var(--gold);
  color: var(--plaque);
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

.wrap {
  width: min(100%, var(--measure));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, #1c1913 0%, var(--plaque) 62%);
  color: var(--cream);
  text-align: center;
  padding: 2rem 0 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.eyebrow .dot {
  margin-inline: 0.45rem;
  letter-spacing: 0;
}

.logo {
  margin: 0 auto 1.35rem;
  max-width: 28rem;
}

.logo a,
.logo picture {
  display: block;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.who-line {
  margin: 0;
  font-size: 1.05rem;
  color: var(--cream);
}

.role {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--plaque);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(198, 162, 78, 0.12);
}

.paper {
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.block {
  padding: 1.85rem 0;
  border-bottom: 1px solid var(--line-paper);
}

.block:last-child {
  border-bottom: 0;
  padding-bottom: 2.4rem;
}

.block h2 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6d5420;
}

.block p {
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.block p:last-child {
  margin-bottom: 0;
}

.punch {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.4;
}

.proof {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-paper);
}

.proof:first-of-type {
  margin-top: 1rem;
}

.proof h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.note {
  font-style: italic;
  color: var(--ink-soft);
}

.contact {
  background: var(--plaque-2);
  color: var(--cream);
  text-align: center;
  padding: 2.4rem 0 calc(5.75rem + var(--safe-bottom));
  border-top: 1px solid var(--line-dark);
}

.label {
  margin: 0;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.phone {
  margin: 0.45rem 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 6vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.phone a,
.contact-list a {
  color: var(--cream);
  text-decoration: none;
}

.phone a:hover,
.phone a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--gold-hi);
}

.contact-name {
  margin: 0 0 0.85rem;
  color: var(--cream-deep);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
}

.contact-list li + li {
  margin-top: 0.25rem;
}

.contact-cta {
  margin-top: 1.4rem;
}

.stamp {
  margin: 2.1rem auto 0.7rem;
  width: min(11.5rem, 56vw);
}

.stamp picture {
  display: block;
}

.stamp img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--cream);
  box-shadow: 0 0 0 1px rgba(198, 162, 78, 0.25);
}

.fine {
  margin: 0;
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  padding: 0.65rem var(--pad) calc(0.65rem + var(--safe-bottom));
  background: rgba(12, 11, 9, 0.94);
  border-top: 1px solid var(--line-dark);
  backdrop-filter: blur(8px);
}

.callbar .btn {
  width: 100%;
}

@media (min-width: 720px) {
  body {
    font-size: 1.2rem;
  }

  .hero {
    padding: 2.75rem 0 3.1rem;
  }

  .logo {
    max-width: 32rem;
  }

  .block {
    padding: 2.15rem 0;
  }

  .contact {
    padding-bottom: 2.8rem;
  }

  .callbar {
    display: none;
  }

  .paper {
    width: min(calc(var(--measure) + 4rem), calc(100% - 2rem));
    margin: 0 auto;
    outline: 1px solid rgba(198, 162, 78, 0.18);
  }
}

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

  .btn {
    transition: none;
  }
}

@media print {
  body {
    background: #fff;
    color: #111;
  }

  body::before,
  .callbar,
  .cta,
  .skip {
    display: none !important;
  }

  .hero,
  .contact,
  .paper {
    background: #fff;
    color: #111;
    box-shadow: none;
    outline: none;
    border: 0;
  }

  .hero,
  .contact,
  .phone a,
  .contact-list a,
  .who-line,
  .role,
  .fine,
  .label {
    color: #111;
  }

  .contact {
    padding-bottom: 1.5rem;
  }

  a[href^="tel"]::after,
  a[href^="mailto"]::after {
    content: " · " attr(href);
    font-size: 0.85em;
  }
}
