@font-face {
  font-family: "Larry Body";
  src: url("fonts/body-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Larry Body";
  src: url("fonts/body-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Larry Display";
  src: url("fonts/display-heavy-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 800;
  font-display: swap;
}

:root {
  --black: #0b0b0d;
  --coal: #151518;
  --panel: #1d1d22;
  --white: #fffdf7;
  --silver: #d8d8d6;
  --muted: #a8a7a4;
  --red: #ed2738;
  --red-dark: #a50d1a;
  --gold: #f7cf25;
  --gold-light: #ffe77a;
  --line: rgba(255, 255, 255, .13);
  --display: "Larry Display", "Arial Black", Impact, sans-serif;
  --body: "Larry Body", Arial, Helvetica, sans-serif;
  --shadow: 0 28px 80px rgba(0, 0, 0, .48);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 80% 3%, rgba(237, 39, 56, .2), transparent 30rem),
    radial-gradient(circle at 5% 50%, rgba(247, 207, 37, .08), transparent 28rem),
    var(--black);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
}

body::before {
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 100% 5px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

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

.container {
  margin-inline: auto;
  max-width: 1180px;
  padding-inline: 24px;
}

.skip-link {
  background: var(--gold);
  color: #111;
  left: 12px;
  padding: 10px 16px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.top-strip {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 9px 18px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  backdrop-filter: blur(16px);
  background: rgba(11, 11, 13, .91);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 84px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--gold);
  box-shadow: 6px 6px 0 var(--red);
  color: #111;
  display: inline-flex;
  font-family: var(--display);
  font-size: 27px;
  height: 47px;
  justify-content: center;
  line-height: 1;
  transform: skew(-7deg);
  width: 47px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  margin-top: 7px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 13px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.site-nav .book-link {
  background: var(--red);
  color: #fff;
  margin-left: 7px;
  padding-inline: 18px;
}

.site-nav .book-link:hover,
.site-nav .book-link:focus-visible,
.site-nav .book-link[aria-current="page"] {
  background: #ff4351;
}

.menu-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  display: none;
  font: 700 13px var(--body);
  padding: 10px 13px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(44px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .78fr);
  min-height: 720px;
  padding-block: clamp(74px, 9vw, 122px);
}

.eyebrow {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 11px;
  letter-spacing: .22em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 3px;
  width: 30px;
}

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

.hero h1,
.page-hero h1,
.section-title,
.display-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(64px, 8.2vw, 112px);
  margin-bottom: 23px;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: var(--red);
  font-size: .78em;
  font-style: inherit;
  text-shadow: 5px 5px 0 var(--gold);
}

.hero-kicker {
  color: #fff;
  font-size: clamp(22px, 2.7vw, 32px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}

.hero-text,
.lede {
  color: var(--silver);
  font-size: 18px;
  max-width: 680px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  letter-spacing: .04em;
  min-height: 50px;
  padding: 13px 21px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  box-shadow: 0 12px 28px rgba(237,39,56,.25);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff4351;
}

.button-secondary {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
}

.quick-facts {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  gap: 9px 19px;
  letter-spacing: .1em;
  margin-top: 30px;
  text-transform: uppercase;
}

.quick-facts span::before {
  color: var(--gold);
  content: "✦";
  margin-right: 7px;
}

.hero-art {
  position: relative;
}

.flyer-frame {
  background: #f3f0e8;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: var(--shadow);
  padding: 11px;
  transform: rotate(2deg);
}

.flyer-frame img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.stamp {
  background: var(--gold);
  border: 5px solid #111;
  border-radius: 50%;
  bottom: -30px;
  color: #111;
  display: grid;
  font-family: var(--display);
  font-size: 17px;
  height: 124px;
  line-height: .95;
  place-items: center;
  position: absolute;
  right: -28px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-10deg);
  width: 124px;
}

.section {
  padding-block: clamp(70px, 9vw, 116px);
}

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

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr minmax(280px, .72fr);
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(44px, 6.2vw, 78px);
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  margin-bottom: 3px;
}

.feature-band {
  background: linear-gradient(125deg, var(--gold), #ffe984);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #111;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px;
}

.feature-band article {
  border-right: 1px solid rgba(0,0,0,.18);
  padding-right: 24px;
}

.feature-band article:last-child {
  border-right: 0;
}

.feature-band strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.feature-band span {
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

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

.card {
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 228px;
  padding: 28px;
  position: relative;
}

.card::after {
  background: var(--red);
  bottom: 0;
  content: "";
  height: 4px;
  left: 28px;
  position: absolute;
  width: 42px;
}

.card-number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 19px;
}

.card h3 {
  font-size: 19px;
  line-height: 1.2;
  margin: 36px 0 10px;
}

.card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.red-banner {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding-block: 58px;
}

.red-banner p {
  font-family: var(--display);
  font-size: clamp(54px, 9vw, 118px);
  font-style: italic;
  line-height: .86;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.red-banner strong {
  color: var(--gold);
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(38px, 7vw, 88px);
  grid-template-columns: minmax(290px, .76fr) 1.1fr;
}

.photo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.photo-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.photo-caption {
  background: linear-gradient(transparent, rgba(0,0,0,.92));
  bottom: 0;
  font-size: 12px;
  font-weight: 700;
  inset-inline: 0;
  letter-spacing: .1em;
  padding: 90px 24px 22px;
  position: absolute;
  text-transform: uppercase;
}

.split-copy h2 {
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-style: italic;
  letter-spacing: -.045em;
  line-height: .92;
  text-transform: uppercase;
}

.split-copy p,
.prose p {
  color: var(--silver);
  font-size: 17px;
}

.page-hero {
  max-width: 960px;
  padding-block: clamp(76px, 10vw, 128px) clamp(54px, 7vw, 86px);
}

.page-hero h1 {
  font-size: clamp(58px, 8vw, 104px);
  margin-bottom: 24px;
}

.service-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.service-row {
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  gap: 17px;
  grid-template-columns: 43px 1fr;
  padding: 24px;
}

.service-icon {
  align-items: center;
  background: rgba(237,39,56,.14);
  border: 1px solid rgba(237,39,56,.38);
  border-radius: 50%;
  color: #ff6570;
  display: flex;
  font-size: 18px;
  height: 43px;
  justify-content: center;
  width: 43px;
}

.service-row h2 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.service-row p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.quote {
  background: linear-gradient(125deg, var(--red), #bf0f20);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(36px, 6vw, 72px);
}

.quote blockquote {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 78px);
  font-style: italic;
  line-height: .96;
  margin: 0;
  max-width: 980px;
  text-transform: uppercase;
}

.quote cite {
  color: rgba(255,255,255,.78);
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .16em;
  margin-top: 24px;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-image {
  background:
    linear-gradient(135deg, rgba(237,39,56,.38), rgba(247,207,37,.12)),
    var(--coal);
  display: grid;
  min-height: 250px;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.gallery-item.featured .gallery-image {
  min-height: 570px;
}

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

.placeholder-mark {
  color: rgba(255,255,255,.2);
  font-family: var(--display);
  font-size: 68px;
  font-style: italic;
}

.gallery-copy {
  padding: 22px;
}

.gallery-copy h2,
.gallery-copy h3 {
  margin-bottom: 6px;
}

.gallery-copy p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 52px);
}

.contact-card.gold {
  background: linear-gradient(135deg, var(--gold), #ffe97a);
  color: #111;
}

.contact-card h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 50px);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.phone {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 4.5vw, 55px);
  font-style: italic;
  line-height: 1.1;
  margin: 18px 0;
  text-decoration: none;
}

.phone:hover,
.phone:focus-visible {
  color: var(--red);
}

.contact-card p {
  color: var(--muted);
}

.contact-card.gold p {
  color: #423b21;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.process article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.process article::before {
  color: var(--gold);
  content: "0" counter(step);
  counter-increment: step;
  display: block;
  font-family: var(--display);
  font-size: 25px;
  margin-bottom: 36px;
}

.process h2 {
  font-size: 19px;
  margin-bottom: 8px;
}

.process p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.site-footer {
  background: #070708;
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding-block: 56px 30px;
}

.footer-main {
  align-items: end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.footer-main h2 {
  font-family: var(--display);
  font-size: clamp(38px, 5.4vw, 66px);
  font-style: italic;
  line-height: .92;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-main p {
  color: var(--muted);
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 42px 0 30px;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: #7d7c79;
  font-size: 11px;
  padding-top: 23px;
}

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

@media (max-width: 930px) {
  .menu-toggle {
    display: block;
  }

  .header-inner {
    position: relative;
  }

  .site-nav {
    background: #17171a;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    inset: calc(100% + 10px) 18px auto;
    padding: 10px;
    position: absolute;
  }

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

  .site-nav a,
  .site-nav .book-link {
    margin: 0;
    text-align: center;
    width: 100%;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    margin: 0 auto;
    max-width: 560px;
  }

  .card-grid,
  .feature-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-band article:nth-child(2) {
    border-right: 0;
  }

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

@media (max-width: 690px) {
  .container {
    padding-inline: 18px;
  }

  .top-strip {
    font-size: 10px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    letter-spacing: .12em;
  }

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

  .hero h1 {
    font-size: clamp(57px, 17vw, 80px);
  }

  .stamp {
    bottom: -22px;
    font-size: 14px;
    height: 98px;
    right: -5px;
    width: 98px;
  }

  .card-grid,
  .feature-band,
  .service-list,
  .gallery-grid,
  .contact-grid,
  .process,
  .split {
    grid-template-columns: 1fr;
  }

  .feature-band article,
  .feature-band article:nth-child(2) {
    border-bottom: 1px solid rgba(0,0,0,.18);
    border-right: 0;
    padding-bottom: 22px;
    padding-right: 0;
  }

  .feature-band article:last-child {
    border-bottom: 0;
  }

  .gallery-item.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item.featured .gallery-image {
    min-height: 440px;
  }

  .footer-main {
    align-items: stretch;
    flex-direction: column;
  }
}

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

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