:root {
  --ink: #171615;
  --paper: #f6f1e8;
  --white: #fffdf8;
  --red: #d40000;
  --red-dark: #980000;
  --pink: #eea8b7;
  --pink-light: #f7d4db;
  --blue: #899da8;
  --yellow: #e8c95f;
  --line: rgba(23, 22, 21, 0.17);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Trebuchet MS", Arial, sans-serif;
  --max: 1440px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
}

.announcement {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 4vw;
  color: white;
  background: var(--red);
  font-size: .8rem;
  letter-spacing: .04em;
  text-align: center;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,255,255,.15);
}

.announcement strong { text-transform: uppercase; }
.announcement a { margin-left: 8px; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 4vw;
  background: rgba(246, 241, 232, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header::before {
  content: "";
  position: fixed;
  z-index: -1;
  left: 0;
  right: 0;
  top: 42px;
  height: 104px;
  background: rgba(246, 241, 232, .94);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.brand b {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.brand small {
  display: block;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .62rem;
}

#site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

#site-nav a {
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

#site-nav a:not(.nav-button):hover { color: var(--red); }

.nav-button {
  padding: 11px 18px;
  color: white;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 99px;
  transition: .2s ease;
}

.nav-button:hover { color: var(--ink); background: transparent; }
.menu-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  min-height: calc(100vh - 146px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 100px) 4vw clamp(52px, 8vw, 116px);
  overflow: hidden;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding-right: clamp(18px, 4vw, 70px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--red-dark);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.7vw, 7.2rem);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.06em;
}

h1 em {
  display: block;
  color: var(--red);
  font-weight: 500;
}

.hero-intro {
  max-width: 610px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 34px 0 46px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--white); }

.text-link {
  font-size: .88rem;
  font-weight: 800;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 510px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.quick-facts div { padding-right: 12px; }
.quick-facts dt { font-family: var(--serif); font-size: 1.55rem; }
.quick-facts dd { margin: 2px 0 0; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 540px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0 -12vw 0 0;
  overflow: hidden;
  border-radius: 48% 0 0 48%;
  box-shadow: 0 28px 80px rgba(56, 48, 39, .16);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(23,22,21,.06), transparent 60%);
}

.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-note {
  position: absolute;
  z-index: 2;
  left: -42px;
  bottom: 9%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 21px 14px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: 0 14px 36px rgba(34, 30, 26, .18);
  transform: rotate(-3deg);
}

.hero-note > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--red);
  border-radius: 50%;
}

.hero-note p { margin: 0; font-size: .76rem; line-height: 1.35; }

.marquee {
  max-width: 100%;
  overflow: hidden;
  color: white;
  background: var(--ink);
  border-block: 1px solid var(--ink);
}

.marquee div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 1300px;
  padding: 13px 2vw;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
}

.marquee i { color: var(--red); font-style: normal; font-size: .75rem; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 150px) 4vw;
}

.story {
  display: grid;
  grid-template-columns: .65fr 2.15fr 1fr;
  gap: 5vw;
  align-items: start;
}

.section-kicker { display: flex; align-items: center; gap: 12px; }
.section-kicker span { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: .72rem; }
.section-kicker p { margin: 0; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.story h2,
.event h2,
.section-heading h2,
.visit h2,
.social-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.04em;
}

.story h2 { max-width: 750px; margin-bottom: 28px; font-size: clamp(2.7rem, 5vw, 5rem); }
.story-copy > p { max-width: 740px; font-size: 1.08rem; }
.story-aside { padding: 25px 0 0 26px; border-left: 2px solid var(--red); }
.story-aside p { font-family: var(--serif); font-size: 1.35rem; line-height: 1.35; }
.story-aside em { color: var(--red); }

.gallery {
  display: grid;
  grid-template-columns: 1.05fr .85fr 1.05fr;
  grid-template-rows: 320px 450px;
  gap: 12px;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 12px;
}

.gallery figure { position: relative; margin: 0; overflow: hidden; background: #ddd; }
.gallery .gallery-tall { grid-row: 1 / 3; }
.gallery .gallery-wide { grid-column: 2 / 4; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 300px;
  padding: 10px 14px;
  color: white;
  background: rgba(23, 22, 21, .78);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
}

.event { max-width: 1600px; }

.event-card {
  position: relative;
  display: grid;
  grid-template-columns: .25fr 1.05fr .9fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(32px, 5.5vw, 86px);
  overflow: hidden;
  color: white;
  background: var(--red);
  border-radius: 42px;
}

.event-card::before,
.event-card::after {
  content: "♡";
  position: absolute;
  color: rgba(255,255,255,.11);
  font-family: var(--serif);
  font-size: 26rem;
  line-height: 1;
}

.event-card::before { top: -150px; left: -60px; transform: rotate(-20deg); }
.event-card::after { right: -80px; bottom: -160px; transform: rotate(18deg); }

.event-date,
.event-copy,
.event-photo { position: relative; z-index: 1; }

.event-date { align-self: start; text-align: center; border: 1px solid rgba(255,255,255,.5); border-radius: 999px 999px 30px 30px; overflow: hidden; }
.event-date span { display: block; padding: 12px; color: var(--ink); background: var(--yellow); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .15em; }
.event-date strong { display: block; padding: 14px 8px 22px; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.5rem); line-height: 1; }

.event-copy { align-self: center; }
.event-copy .eyebrow { color: var(--yellow); }
.event-copy h2 { margin-bottom: 24px; font-size: clamp(2.9rem, 5vw, 5.8rem); }
.event-copy > p:not(.eyebrow) { max-width: 680px; font-size: 1.08rem; }
.event-details { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 32px 0; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.32); }
.event-details p { margin: 0; }
.event-photo { align-self: stretch; min-height: 480px; overflow: hidden; border-radius: 180px 180px 18px 18px; transform: rotate(2deg); }
.event-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-photo span { position: absolute; right: 16px; bottom: 16px; padding: 9px 14px; color: var(--ink); background: var(--yellow); font-family: var(--serif); font-size: .9rem; font-style: italic; transform: rotate(-3deg); }

.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 45px;
}

.section-heading h2 { max-width: 850px; margin: 0; font-size: clamp(2.9rem, 5vw, 5.5rem); }
.section-heading > p { max-width: 410px; margin-bottom: 7px; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.filter {
  padding: 9px 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 99px;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 800;
  transition: .2s ease;
}
.filter:hover,
.filter.active { color: white; background: var(--ink); }

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.vendor-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: rgba(255,253,248,.35);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.vendor-card:hover { z-index: 2; color: white; background: var(--ink); transform: translateY(-3px); }
.vendor-card.feature { background: var(--pink-light); }
.vendor-card.feature:hover { background: var(--red); }
.vendor-card[hidden] { display: none; }
.vendor-number { align-self: flex-end; font-size: .7rem; font-weight: 800; }
.vendor-card h3 { margin-bottom: 5px; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.9rem); font-weight: 500; line-height: 1.05; }
.vendor-card p { margin: 0; font-size: .78rem; }
.vendor-tag { position: absolute; left: 24px; top: 22px; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.coming-soon { flex-direction: row; justify-content: flex-start; align-items: center; gap: 20px; color: white; background: var(--ink); }
.coming-soon > span { font-size: 2.8rem; font-weight: 200; }
.coming-soon h3 { margin: 0 0 5px; }

.photo-break {
  position: relative;
  height: min(70vw, 760px);
  min-height: 520px;
  overflow: hidden;
}

.photo-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,22,21,.72), rgba(23,22,21,.05) 65%); }
.photo-break img { width: 100%; height: 100%; object-fit: cover; }
.photo-break > div { position: absolute; z-index: 1; left: max(5vw, calc((100vw - 1440px) / 2 + 4vw)); top: 50%; color: white; transform: translateY(-50%); }
.photo-break p { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 5.6rem); line-height: 1.06; letter-spacing: -.04em; }
.photo-break p:nth-child(2) { color: var(--yellow); font-style: italic; }

.visit-heading { display: grid; grid-template-columns: 1fr 2.6fr; gap: 5vw; align-items: start; margin-bottom: 58px; }
.visit-heading h2 { max-width: 920px; margin: 0; font-size: clamp(3rem, 6vw, 6.5rem); }
.visit-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 6vw, 90px); }
.visit-photo { position: relative; min-height: 650px; overflow: hidden; border-radius: 260px 260px 0 0; }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; }
.visit-photo span { position: absolute; left: 50%; bottom: 24px; width: max-content; max-width: calc(100% - 40px); padding: 11px 18px; background: var(--white); font-family: var(--serif); font-size: 1rem; font-style: italic; transform: translateX(-50%) rotate(-2deg); }

.visit-details { display: grid; grid-template-columns: 1fr 1fr; align-content: center; border-top: 1px solid var(--ink); }
.detail-block { min-height: 230px; padding: 26px 24px 26px 0; border-bottom: 1px solid var(--ink); }
.detail-block:nth-child(odd) { padding-right: 28px; border-right: 1px solid var(--ink); }
.detail-block:nth-child(even) { padding-left: 28px; }
.detail-block h3 { margin-bottom: 20px; color: var(--red-dark); font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; }
.detail-block p { margin-bottom: 14px; }
.detail-block .small { font-size: .76rem; line-height: 1.5; }
.contact-block a { overflow-wrap: anywhere; font-family: var(--serif); font-size: 1.05rem; text-underline-offset: 4px; }

.social-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 145px) 4vw;
  border-top: 1px solid var(--ink);
}

.social-section h2 { max-width: 690px; font-size: clamp(2.6rem, 4.5vw, 4.8rem); }
.social-links { border-top: 1px solid var(--ink); }
.social-links a { display: grid; grid-template-columns: .8fr 1.4fr auto; gap: 14px; align-items: center; padding: 24px 4px; border-bottom: 1px solid var(--ink); text-decoration: none; transition: padding .2s ease, color .2s ease; }
.social-links a:hover { padding-inline: 12px; color: var(--red-dark); }
.social-links span { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.social-links b { font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.social-links i { font-style: normal; }

footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: end;
  gap: 30px;
  padding: 50px 4vw;
  color: white;
  background: var(--ink);
}

.footer-brand { display: flex; align-items: center; gap: 14px; font-family: var(--serif); font-size: clamp(1.2rem, 2.1vw, 2rem); text-decoration: none; }
.footer-brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; }
footer > p { margin: 0; font-size: .7rem; line-height: 1.5; text-transform: uppercase; letter-spacing: .07em; }
.owner-credit { text-align: right; color: var(--pink); }
.owner-credit b { color: white; font-size: .78rem; }
.copyright { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.22); opacity: .65; }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-right: 0; }
  .hero-visual { min-height: 580px; margin: 50px -4vw 0 10vw; }
  .hero-image-wrap { inset: 0; }
  .hero-note { left: -55px; }
  .story { grid-template-columns: .6fr 2fr; }
  .story-aside { grid-column: 2; max-width: 400px; }
  .gallery { grid-template-rows: 280px 390px; }
  .event-card { grid-template-columns: .25fr 1.3fr; }
  .event-photo { grid-column: 1 / 3; min-height: 450px; border-radius: 22px; transform: none; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-photo { min-height: 570px; }
}

@media (max-width: 760px) {
  .announcement { flex-wrap: wrap; gap: 5px 9px; font-size: .67rem; }
  .announcement a { display: none; }
  .site-header { min-height: 82px; }
  .site-header::before { top: 42px; height: 82px; }
  .brand img { width: 50px; height: 50px; }
  .brand b { font-size: 1.12rem; }
  .brand small { font-size: .52rem; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; padding: 0; background: transparent; border: 1px solid var(--ink); border-radius: 50%; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 18px; height: 1px; background: var(--ink); transition: .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  #site-nav { position: absolute; top: 82px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 4vw 22px; background: var(--paper); border-bottom: 1px solid var(--ink); }
  #site-nav.open { display: flex; }
  #site-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); }
  #site-nav .nav-button { margin-top: 10px; color: white; text-align: center; border: 0; }
  .hero { min-height: auto; padding-top: 58px; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.8rem); }
  .hero-intro { font-size: 1rem; }
  .quick-facts { gap: 8px; }
  .quick-facts dt { font-size: 1.25rem; }
  .quick-facts dd { font-size: .6rem; }
  .hero-visual { min-height: 440px; margin: 45px -4vw 0 6vw; }
  .hero-image-wrap { border-radius: 48% 0 0 48%; }
  .hero-note { left: -24px; bottom: -20px; }
  .section { padding-block: 82px; }
  .story { grid-template-columns: 1fr; gap: 35px; }
  .story-aside { grid-column: auto; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 240px 330px; }
  .gallery .gallery-tall { grid-row: 1; grid-column: 1 / 3; }
  .gallery .gallery-wide { grid-column: 1 / 3; }
  .event-card { grid-template-columns: 1fr; border-radius: 24px; }
  .event-date { width: 92px; }
  .event-photo { grid-column: auto; min-height: 390px; }
  .event-details { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .vendor-grid { grid-template-columns: 1fr 1fr; }
  .vendor-card { min-height: 175px; padding: 18px; }
  .vendor-tag { left: 18px; top: 18px; }
  .photo-break { height: 620px; }
  .photo-break p { font-size: clamp(2.5rem, 11vw, 4.6rem); }
  .visit-heading { grid-template-columns: 1fr; gap: 12px; }
  .visit-photo { min-height: 470px; }
  .social-section { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; align-items: start; }
  .owner-credit { text-align: left; }
  .copyright { text-align: left; }
}

@media (max-width: 480px) {
  .announcement span:not(.announcement-dot) { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 370px; }
  .hero-note { padding: 10px 16px 10px 10px; }
  .hero-note > span { width: 36px; height: 36px; }
  .gallery { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-inline: 8px; }
  .gallery figure { flex: 0 0 86vw; height: 480px; scroll-snap-align: center; }
  .event-card { padding: 26px 20px; }
  .vendor-grid { grid-template-columns: 1fr; }
  .visit-details { grid-template-columns: 1fr; }
  .detail-block,
  .detail-block:nth-child(odd),
  .detail-block:nth-child(even) { min-height: 0; padding: 24px 0; border-right: 0; }
  .social-links a { grid-template-columns: 1fr auto; }
  .social-links span { grid-column: 1 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
