:root {
  --ink: #10251a;
  --black: #09110c;
  --paper: #f7f8f4;
  --white: #ffffff;
  --red: #d8332a;
  --blue: #2148d8;
  --pink: #ffb9cf;
  --acid: #caff43;
  --line-dark: rgba(16, 37, 26, 0.24);
  --line-light: rgba(255, 255, 255, 0.28);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "IBM Plex Sans", sans-serif;
  --page-pad: 4rem;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.preview-note {
  display: flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem var(--page-pad);
  background: var(--red);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 3.15rem;
  left: 50%;
  display: grid;
  width: min(calc(100% - 2rem), 88rem);
  min-height: 4.25rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: var(--white);
  transform: translateX(-50%);
  transition: background-color 180ms ease, border-color 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
  top: 0.75rem;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(9, 17, 12, 0.92);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

.brand {
  display: flex;
  width: max-content;
  flex-direction: column;
  font-size: 0.9rem;
  line-height: 0.83;
}

nav {
  display: flex;
  gap: 2.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

nav a,
.header-action {
  transition: color 160ms ease;
}

nav a:hover,
.header-action:hover {
  color: var(--acid);
}

.header-action {
  justify-self: end;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.header-action span {
  margin-left: 0.35rem;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-shade {
  background: rgba(7, 20, 12, 0.36);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 82svh;
  padding: 9.75rem var(--page-pad) 2.75rem;
  flex-direction: column;
  justify-content: space-between;
}

.hero-location,
.eyebrow,
.orders-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-location {
  margin-bottom: 0;
}

.hero-heading {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
}

.hero h1 {
  display: flex;
  max-width: 11ch;
  margin-bottom: 0;
  flex-direction: column;
  color: var(--white);
  font-size: 7.25rem;
  font-weight: 800;
  line-height: 0.75;
  text-transform: uppercase;
}

.hero h1 span:last-child {
  color: var(--acid);
}

.since {
  display: flex;
  padding-bottom: 0.5rem;
  flex-direction: column;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.since strong {
  font-family: var(--display);
  font-size: 2.8rem;
  line-height: 1;
}

.hero-bottom {
  display: grid;
  width: min(100%, 52rem);
  grid-template-columns: minmax(15rem, 1fr) auto;
  align-items: end;
  gap: 2.5rem;
}

.hero-bottom > p {
  max-width: 31rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--acid);
  color: var(--black);
}

.button-primary:hover {
  background: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--blue);
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.service-index {
  display: grid;
  min-height: 6.2rem;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.service-index span + span {
  border-left: 1px solid var(--line-dark);
}

.section-pad {
  padding: 8rem var(--page-pad);
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.72fr);
  gap: 6rem;
}

.eyebrow {
  margin-bottom: 2rem;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.76);
}

.services h2,
.events h2,
.orders h2,
.contact h2,
.heritage h2 {
  margin-bottom: 2rem;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 0.94;
}

.services-intro {
  max-width: 36rem;
  margin-bottom: 4rem;
  font-size: 1.1rem;
  line-height: 1.65;
}

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

.service-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-list > li > span {
  padding-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
}

.service-list h3 {
  margin-bottom: 0.5rem;
  font-size: 1.45rem;
}

.service-list p {
  max-width: 32rem;
  margin-bottom: 0;
  color: rgba(16, 37, 26, 0.74);
  line-height: 1.55;
}

.services-visual {
  position: sticky;
  top: 7rem;
  align-self: start;
  margin-bottom: 0;
}

.services-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.services-visual figcaption {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0.55rem 0;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.freshness {
  display: grid;
  min-height: 45rem;
  padding: 6rem var(--page-pad);
  background: var(--blue);
  color: var(--white);
  grid-template-columns: 1fr 2fr 1fr;
  align-items: end;
  gap: 3rem;
}

.freshness-statement {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
}

.freshness-note {
  max-width: 17rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.heritage {
  min-height: 52rem;
  background: var(--ink);
  color: var(--white);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 5rem;
}

.heritage-year {
  position: sticky;
  top: 7rem;
  margin-bottom: 0;
  color: var(--acid);
  font-family: var(--display);
  font-size: 13rem;
  font-weight: 800;
  line-height: 0.72;
}

.heritage-copy {
  padding-top: 10rem;
}

.heritage-copy > p:not(.eyebrow) {
  max-width: 38rem;
  font-size: 1.04rem;
  line-height: 1.75;
}

.heritage blockquote {
  margin: 5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
  color: var(--pink);
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.15;
}

.events {
  background: var(--pink);
}

.events-image-wrap {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
}

.events-image-wrap img {
  width: 100%;
  height: 78svh;
  object-fit: cover;
  object-position: center;
}

.events-image-wrap span {
  position: absolute;
  bottom: 1.5rem;
  left: var(--page-pad);
  padding: 0.5rem 0.65rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.events-copy {
  display: grid;
  grid-template-columns: 0.7fr 1.25fr 0.8fr;
  align-items: end;
  gap: 4rem;
}

.events-copy .eyebrow,
.events-copy h2,
.events-copy p {
  margin-bottom: 0;
}

.events-copy > p:not(.eyebrow) {
  max-width: 28rem;
  line-height: 1.65;
}

.events-copy .button {
  justify-self: end;
}

.orders {
  display: grid;
  min-height: 34rem;
  grid-template-columns: 0.7fr 1.25fr 0.8fr;
  align-items: center;
  gap: 4rem;
  background: var(--red);
  color: var(--white);
}

.orders h2,
.orders p {
  margin-bottom: 0;
}

.orders > p:last-child {
  line-height: 1.65;
}

.contact {
  background: var(--paper);
}

.contact h2 {
  max-width: 12ch;
  color: var(--blue);
  font-size: 6.5rem;
}

.contact-grid {
  display: grid;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact address {
  font-family: var(--display);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
}

.contact-links {
  display: flex;
  flex-direction: column;
}

.contact-links a {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.contact-links a:hover {
  color: var(--blue);
}

footer {
  display: grid;
  min-height: 12rem;
  padding: 2rem var(--page-pad);
  background: var(--black);
  color: var(--white);
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
}

.footer-brand {
  font-size: 1.7rem;
}

footer > div {
  display: flex;
  gap: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

footer p {
  max-width: 22rem;
  margin-bottom: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.has-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero h1 {
    font-size: 5.7rem;
  }

  .services {
    gap: 3rem;
  }

  .services h2,
  .events h2,
  .orders h2,
  .heritage h2 {
    font-size: 3.9rem;
  }

  .freshness {
    grid-template-columns: 0.7fr 2fr 1fr;
  }

  .freshness-statement {
    font-size: 4.9rem;
  }

  .heritage-year {
    font-size: 9rem;
  }

  .contact h2 {
    font-size: 5rem;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 1rem;
  }

  .preview-note {
    min-height: 2.75rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.6rem;
  }

  .site-header {
    top: 3.55rem;
    min-height: 3.7rem;
  }

  .site-header.is-scrolled {
    top: 0.5rem;
  }

  nav {
    display: none;
  }

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

  .hero,
  .hero-content {
    min-height: 80svh;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-shade {
    background: rgba(7, 20, 12, 0.43);
  }

  .hero-content {
    padding-top: 8.75rem;
    padding-bottom: 1.4rem;
  }

  .hero-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .since {
    padding-bottom: 0;
    flex-direction: row;
    align-items: baseline;
    gap: 0.6rem;
  }

  .since strong {
    font-size: 2rem;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .hero-bottom > p {
    max-width: 23rem;
    font-size: 0.9rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .service-index {
    min-height: 7rem;
    grid-template-columns: 1fr 1fr;
  }

  .service-index span {
    padding: 1rem 0.5rem;
  }

  .service-index span + span {
    border-left: 0;
  }

  .service-index span:nth-child(even) {
    border-left: 1px solid var(--line-dark);
  }

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

  .section-pad {
    padding: 5.5rem var(--page-pad);
  }

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

  .services h2,
  .events h2,
  .orders h2,
  .heritage h2,
  .contact h2 {
    font-size: 3rem;
  }

  .services-intro {
    margin-bottom: 2.5rem;
    font-size: 0.98rem;
  }

  .service-list li {
    grid-template-columns: 2rem 1fr;
    gap: 0.8rem;
  }

  .service-list h3 {
    font-size: 1.2rem;
  }

  .service-list p {
    font-size: 0.88rem;
  }

  .services-visual {
    position: static;
  }

  .freshness {
    min-height: 42rem;
    padding: 4.5rem var(--page-pad);
    grid-template-columns: 1fr;
    align-content: space-between;
    gap: 2rem;
  }

  .freshness-statement {
    font-size: 3.65rem;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .heritage-year {
    position: static;
    font-size: 6.8rem;
  }

  .heritage-copy {
    padding-top: 2rem;
  }

  .heritage blockquote {
    margin-top: 3rem;
    font-size: 1.7rem;
  }

  .events-image-wrap,
  .events-image-wrap img {
    min-height: 65svh;
    height: 65svh;
  }

  .events-image-wrap img {
    object-position: 40% center;
  }

  .events-copy,
  .orders {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .events-copy .button {
    justify-self: stretch;
  }

  .orders {
    min-height: 38rem;
    align-content: center;
  }

  .contact h2 {
    max-width: 10ch;
    font-size: 3.6rem;
  }

  .contact-grid {
    margin-top: 3rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact address {
    font-size: 1.35rem;
  }

  .contact-links a {
    align-items: flex-start;
    padding: 0.95rem 0;
    flex-direction: column;
    gap: 0.35rem;
    overflow-wrap: anywhere;
  }

  footer {
    min-height: 18rem;
    grid-template-columns: 1fr;
    align-content: end;
  }

  footer p {
    justify-self: start;
    text-align: left;
  }
}

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

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

  .has-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
