:root {
  --black: #000000;
  --ink: #111111;
  --muted: #5c5c5c;
  --line: #d9d9d9;
  --soft: #f5f5f5;
  --white: #ffffff;
  --display: "Bodoni 72", Didot, "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
  --container: 76rem;
  --section-space: clamp(5rem, 10vw, 9.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main,
header,
footer,
section,
div,
nav,
article {
  min-width: 0;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.24em;
}

a:focus-visible,
button:focus-visible {
  outline: 0.125rem solid currentColor;
  outline-offset: 0.3rem;
}

p,
h1,
h2,
h3,
figure,
ol,
dl,
dd {
  margin-top: 0;
}

p:last-child,
figure:last-child,
dl:last-child,
dd:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.95rem, 8.5vw, 6.25rem);
  letter-spacing: -0.045em;
}

h2 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 8vw, 5.6rem);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  letter-spacing: -0.025em;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-160%);
  border: 0.0625rem solid var(--white);
  background: var(--black);
  color: var(--white);
  font-weight: 700;
}

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

.eyebrow {
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #c8c8c8;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 0.0625rem solid #242424;
  background: var(--black);
  color: var(--white);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 2rem), var(--container));
  min-height: 4.5rem;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  flex: 0 1 auto;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.brand__initials {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand__name {
  padding-left: 0.75rem;
  border-left: 0.0625rem solid #5b5b5b;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.4rem, 2vw, 1.75rem);
}

.primary-nav__link,
.footer-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding-inline: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav__link {
  color: #cfcfcf;
}

.header-instagram {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 0.85rem;
  border: 0.0625rem solid var(--white);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav__link,
.header-instagram,
.button,
.text-link,
.inline-link,
.phone-link,
.footer-nav a {
  transition: opacity 160ms ease, background-color 160ms ease, color 160ms ease;
}

.primary-nav__link:hover,
.footer-nav a:hover,
.text-link:hover,
.inline-link:hover,
.phone-link:hover {
  opacity: 0.64;
}

.header-instagram:hover {
  background: var(--white);
  color: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.25rem);
  background: var(--black);
  color: var(--white);
}

.hero::before {
  position: absolute;
  top: 9%;
  left: -10%;
  width: 46%;
  height: 0.0625rem;
  background: #333333;
  content: "";
}

.hero::after {
  position: absolute;
  right: -17rem;
  bottom: -18rem;
  width: 34rem;
  height: 34rem;
  border: 0.0625rem solid #242424;
  border-radius: 50%;
  content: "";
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(3rem, 8vw, 7rem);
}

.hero__copy {
  max-width: 44rem;
}

.hero__lead {
  max-width: 35rem;
  margin-bottom: 2rem;
  color: #d6d6d6;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.25rem;
  border: 0.0625rem solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.button--light:hover {
  background: transparent;
  color: var(--white);
}

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

.button--dark:hover {
  background: transparent;
  color: var(--black);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--white);
}

.hero__hours {
  display: flex;
  margin-top: 2.25rem;
  margin-bottom: 0;
  align-items: center;
  gap: 0.75rem;
  color: #bdbdbd;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero__hours-mark {
  width: 0.4rem;
  height: 0.4rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--white);
}

.hero__art {
  position: relative;
  width: min(100%, 32rem);
  justify-self: end;
  padding: 2rem 1.35rem 1.4rem;
  border: 0.0625rem solid #2e2e2e;
  background: #050505;
}

.hero__art::before {
  position: absolute;
  top: -0.0625rem;
  left: 15%;
  width: 30%;
  height: 0.0625rem;
  background: var(--white);
  content: "";
}

.hero__art picture,
.hero__art img {
  width: 100%;
}

.hero__art img {
  aspect-ratio: 555 / 425;
  object-fit: contain;
}

.hero__art-index,
.hero__art-caption {
  display: block;
  color: #8d8d8d;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.hero__art-index {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.hero__art-caption {
  margin-top: 0.75rem;
  text-align: right;
}

.intro {
  background: var(--white);
}

.intro__grid {
  display: grid;
  gap: 2rem;
}

.intro__copy {
  max-width: 37rem;
}

.intro__copy p {
  color: #424242;
}

.intro__copy .lead-text {
  margin-bottom: 1.6rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.75rem, 4.6vw, 2.55rem);
  line-height: 1.18;
}

.inline-link {
  color: var(--ink);
  font-weight: 700;
}

.collection {
  border-block: 0.0625rem solid var(--line);
  background: var(--soft);
}

.section-heading {
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading--wide h2 {
  max-width: 14ch;
}

.category-grid {
  display: grid;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.category {
  position: relative;
  padding-block: 2.25rem;
  border-top: 0.0625rem solid #a9a9a9;
}

.category:last-child {
  border-bottom: 0.0625rem solid #a9a9a9;
}

.category__number {
  display: block;
  margin-bottom: clamp(3.5rem, 12vw, 7rem);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.category h3 {
  max-width: 10ch;
}

.category p {
  max-width: 25rem;
  margin-bottom: 0;
  color: #4a4a4a;
}

.category--compact h3 {
  font-size: clamp(1.85rem, 4.3vw, 3rem);
}

.instagram-window {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.instagram-window::after {
  position: absolute;
  right: -8rem;
  bottom: 5%;
  color: #111111;
  content: "@";
  font-family: var(--display);
  font-size: 38rem;
  line-height: 0.7;
  pointer-events: none;
}

.instagram-window__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.editorial-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.editorial-gallery__item {
  position: relative;
  margin-bottom: 0;
  padding: clamp(1rem, 4vw, 2.5rem);
  border: 0.0625rem solid #2f2f2f;
  background: #050505;
}

.editorial-gallery__item::before,
.editorial-gallery__item::after {
  position: absolute;
  z-index: 2;
  background: var(--white);
  content: "";
}

.editorial-gallery__item::before {
  top: -0.0625rem;
  left: 12%;
  width: 22%;
  height: 0.0625rem;
}

.editorial-gallery__item::after {
  right: -0.0625rem;
  bottom: 10%;
  width: 0.0625rem;
  height: 28%;
}

.editorial-gallery img {
  width: 100%;
  aspect-ratio: 555 / 425;
  object-fit: contain;
}

.instagram-window__copy {
  max-width: 34rem;
}

.instagram-window__copy h2 {
  max-width: 10ch;
}

.instagram-window__copy p:not(.eyebrow) {
  max-width: 29rem;
  margin-bottom: 2rem;
  color: #cccccc;
  font-size: 1.05rem;
}

.instagram-window__copy strong {
  color: var(--white);
}

.visit {
  background: var(--white);
}

.visit__grid {
  display: grid;
}

.visit-panel {
  padding-block: 2.5rem;
  border-top: 0.0625rem solid var(--ink);
}

.visit-panel:last-child {
  border-bottom: 0.0625rem solid var(--ink);
}

.visit-panel__label {
  display: block;
  margin-bottom: clamp(3rem, 8vw, 6rem);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visit-panel h3 {
  max-width: 10ch;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.visit-panel address {
  margin-bottom: 1.75rem;
  color: #3f3f3f;
  font-style: normal;
  line-height: 1.8;
}

.hours-list {
  margin-bottom: 0;
}

.hours-list > div {
  display: grid;
  padding-block: 1rem;
  border-top: 0.0625rem solid var(--line);
  gap: 0.25rem;
}

.hours-list > div:last-child {
  border-bottom: 0.0625rem solid var(--line);
}

.hours-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours-list dd {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.25;
}

.hours-list__sunday dd {
  max-width: 23rem;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
}

.phone-link {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  margin-block: 0.2rem 1.25rem;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 2.8rem);
  line-height: 1.25;
}

.location {
  border-top: 0.0625rem solid var(--line);
  background: var(--soft);
}

.location__grid {
  display: grid;
  gap: 2.5rem;
}

.location__grid h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.location__details {
  align-self: end;
  padding-top: 2rem;
  border-top: 0.0625rem solid #a9a9a9;
}

.location__street {
  margin-bottom: 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
}

.location__details .text-link {
  margin-top: 1.2rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  top: 50%;
  width: 20%;
  height: 0.0625rem;
  background: #333333;
  content: "";
}

.final-cta::before {
  left: 0;
}

.final-cta::after {
  right: 0;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.final-cta h2 {
  max-width: 100%;
  margin-bottom: 1.25rem;
  overflow-wrap: anywhere;
  font-size: clamp(2.1rem, 8.5vw, 7.5rem);
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 2rem;
  color: #c8c8c8;
}

.site-footer {
  border-top: 0.0625rem solid #242424;
  background: var(--black);
  color: var(--white);
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.footer__top {
  padding-block: 3.5rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.footer__bottom {
  padding-block: 1.5rem;
  border-top: 0.0625rem solid #242424;
  color: #a9a9a9;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer__bottom p {
  margin-bottom: 0;
}

@media (max-width: 25rem) {
  .primary-nav__link--optional {
    display: none;
  }

  .header-instagram {
    padding-inline: 0.7rem;
    font-size: 0.66rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }
}

@media (max-width: 30rem) and (max-height: 43.75rem) {
  .hero {
    padding-top: 2rem;
  }

  .hero .eyebrow {
    margin-bottom: 0.75rem;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }

  .hero h1 {
    margin-bottom: 0.9rem;
    font-size: 2.35rem;
  }

  .hero__lead {
    margin-bottom: 1.1rem;
    font-size: 1rem;
    line-height: 1.45;
  }
}

@media (min-width: 36rem) {
  .container,
  .header-inner {
    width: min(calc(100% - 3rem), var(--container));
  }

  .hero__art {
    padding: 2.5rem 2rem 1.5rem;
  }

  .hours-list > div {
    grid-template-columns: minmax(8rem, 0.65fr) minmax(0, 1fr);
    align-items: baseline;
    gap: 1.5rem;
  }
}

@media (min-width: 48rem) {
  .container,
  .header-inner {
    width: min(calc(100% - 4rem), var(--container));
  }

  .intro__grid,
  .location__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: clamp(3rem, 8vw, 8rem);
  }

  .visit__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .visit-panel:nth-child(2) {
    border-bottom: 0.0625rem solid var(--ink);
  }

  .visit-panel:last-child {
    grid-column: 1 / -1;
  }

  .final-cta::before,
  .final-cta::after {
    width: 14%;
  }
}

@media (min-width: 56.25rem) {
  .hero h1 {
    max-width: 13ch;
    font-size: clamp(5rem, 7vw, 5.5rem);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.8fr);
    align-items: center;
  }

  .hero__art {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: 1.3fr 1fr 0.85fr;
    gap: 2rem;
  }

  .category {
    min-height: 31rem;
    padding-block: 2.5rem;
    border-bottom: 0.0625rem solid #a9a9a9;
  }

  .category__number {
    margin-bottom: 9rem;
  }

  .category--primary h3 {
    font-size: clamp(3rem, 5vw, 4.35rem);
  }

  .instagram-window__grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.86fr);
  }

  .visit__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .visit-panel,
  .visit-panel:nth-child(2),
  .visit-panel:last-child {
    min-height: 34rem;
    grid-column: auto;
    border-bottom: 0.0625rem solid var(--ink);
  }
}

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

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

@media print {
  .site-header,
  .hero__art,
  .final-cta,
  .instagram-window {
    display: none;
  }

  .section {
    padding-block: 2rem;
  }

  body {
    background: var(--white);
    color: var(--black);
  }
}
