:root {
  --ink: #160f13;
  --ink-soft: #36262d;
  --plum: #3b102f;
  --plum-deep: #1c0b18;
  --wine: #8a1538;
  --gold: #d8ae63;
  --gold-dark: #9a6d2f;
  --cream: #f4e4c6;
  --ivory: #fff8ec;
  --emerald: #0d5c4b;
  --muted: #765d61;
  --line: rgba(54, 38, 45, 0.18);
  --shadow: 0 24px 70px rgba(22, 15, 19, 0.2);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

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

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

p {
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.68;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5.8vw, 5rem);
  max-width: 14ch;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.5vw, 3.25rem);
  max-width: 14ch;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}

h1,
h2,
h3,
p,
a {
  overflow-wrap: break-word;
}

.site-header {
  align-items: center;
  background: rgba(22, 15, 19, 0.78);
  backdrop-filter: blur(18px);
  color: var(--ivory);
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  left: 0;
  padding: 0.65rem clamp(0.9rem, 3vw, 2.5rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  min-width: 12rem;
}

.brand img {
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.75rem;
}

.main-nav {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.15rem;
  justify-content: center;
}

.main-nav a {
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.86);
  font-size: 0.88rem;
  padding: 0.58rem 0.72rem;
}

.main-nav a:hover {
  background: rgba(255, 248, 236, 0.1);
  color: white;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 800;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--gold {
  background: linear-gradient(135deg, #ffe0a2, var(--gold) 52%, #9f6723);
  box-shadow: 0 16px 40px rgba(154, 109, 47, 0.28);
  color: #21130b;
}

.button--light {
  background: rgba(255, 248, 236, 0.14);
  border-color: rgba(255, 248, 236, 0.45);
  color: white;
}

.button--ghost {
  border-color: rgba(255, 248, 236, 0.3);
  color: var(--ivory);
}

.button--ghost-dark {
  border-color: rgba(22, 15, 19, 0.3);
  color: var(--ink);
}

.button--compact {
  min-height: 2.5rem;
  padding: 0.65rem 1rem;
  white-space: nowrap;
}

.hero {
  display: grid;
  min-height: min(760px, calc(100svh - 4.3rem));
  overflow: hidden;
  position: relative;
}

.hero > img,
.hero__overlay,
.hero__content {
  grid-area: 1 / 1;
}

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

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(22, 15, 19, 0.9), rgba(22, 15, 19, 0.52) 44%, rgba(22, 15, 19, 0.14)),
    linear-gradient(0deg, rgba(22, 15, 19, 0.62), rgba(22, 15, 19, 0.08) 45%);
}

.hero__content {
  align-self: center;
  color: white;
  padding: clamp(3.2rem, 7vw, 6rem) clamp(1.1rem, 5vw, 4.5rem);
  width: min(100%, 780px);
  z-index: 2;
}

.hero__content p {
  color: rgba(255, 248, 236, 0.86);
  max-width: 46rem;
}

.hero__content h1 {
  font-size: clamp(2.25rem, 4.6vw, 4rem);
}

.hero__actions,
.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.trust-strip {
  background: var(--plum-deep);
  color: var(--ivory);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip span {
  background: rgba(255, 248, 236, 0.06);
  font-weight: 800;
  padding: 1rem;
  text-align: center;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 4.8rem);
}

.section--light {
  background: var(--ivory);
}

.section--cream {
  background: linear-gradient(180deg, #f9edda, var(--cream));
}

.section--dark {
  background:
    radial-gradient(circle at 82% 8%, rgba(216, 174, 99, 0.18), transparent 28rem),
    linear-gradient(135deg, var(--plum-deep), #28111f 58%, #151112);
  color: var(--ivory);
}

.section--dark p {
  color: rgba(255, 248, 236, 0.78);
}

.two-column {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.section__heading {
  margin: 0 auto 2.5rem;
  max-width: 980px;
  text-align: center;
}

.section__heading h2,
.section__heading p {
  margin-left: auto;
  margin-right: auto;
}

.section__heading--split {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
  text-align: left;
}

.section__heading--split h2,
.section__heading--split p {
  margin-left: 0;
}

.image-panel {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.pillar-grid,
.event-preview-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-card,
.event-card,
.article-card,
.contact-card,
.contact-side > div,
.calendar-card,
.cta-panel,
.keyword-box {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pillar-card {
  background: rgba(255, 248, 236, 0.08);
  padding: 1.35rem;
}

.pillar-card h3 {
  color: white;
  margin-bottom: 0.8rem;
}

.event-card {
  background: white;
  box-shadow: 0 14px 45px rgba(22, 15, 19, 0.08);
  overflow: hidden;
}

.event-card img,
.event-detail img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.event-card div {
  padding: 1.25rem;
}

.clean-list {
  color: var(--ink-soft);
  display: grid;
  gap: 0.45rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.text-link {
  color: var(--wine);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.area-tags,
.keyword-box div,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.area-tags span,
.keyword-box span,
.social-links a {
  background: rgba(59, 16, 47, 0.08);
  border: 1px solid rgba(59, 16, 47, 0.16);
  border-radius: 999px;
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.6rem 0.85rem;
}

.area-tags--center {
  justify-content: center;
}

.keyword-box {
  background: white;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.mini-form,
.contact-form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.4rem;
}

label span {
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea,
select {
  background: white;
  border: 1px solid rgba(22, 15, 19, 0.2);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 3rem;
  padding: 0.85rem 0.95rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

.section--dark input,
.section--dark textarea,
.section--dark select {
  background: rgba(255, 248, 236, 0.96);
}

.check-row {
  align-items: start;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1.1rem 1fr;
}

.check-row input {
  margin-top: 0.2rem;
  min-height: auto;
  width: auto;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin: 0 auto;
  max-width: 980px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.page-hero {
  align-items: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 174, 99, 0.18), transparent 23rem),
    linear-gradient(135deg, rgba(28, 11, 24, 0.98), rgba(59, 16, 47, 0.9));
  color: white;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1fr);
  padding: clamp(2.3rem, 6vw, 5rem) clamp(1.1rem, 5vw, 4.8rem);
}

.page-hero__copy p {
  color: rgba(255, 248, 236, 0.82);
  max-width: 650px;
}

.page-hero__copy h1 {
  font-size: clamp(2.15rem, 4.8vw, 4.35rem);
  max-width: 14ch;
}

.page-hero__media {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-hero__media img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.intro-note {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.intro-note > div {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.intro-note h2,
.intro-note p {
  margin-left: auto;
  margin-right: auto;
}

.calendar-layout {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
}

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

.calendar-card {
  background: white;
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.calendar-card--compact {
  padding: 1rem;
}

.calendar-card__top {
  margin-bottom: 1rem;
}

.calendar-grid {
  display: grid;
  gap: 0.35rem;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-grid strong {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.calendar-day {
  align-content: start;
  aspect-ratio: 1;
  background: #f8efe1;
  border-radius: 6px;
  display: grid;
  min-width: 0;
  padding: 0.45rem;
}

.calendar-day span {
  font-weight: 900;
}

.calendar-day small {
  color: var(--plum);
  font-size: clamp(0.58rem, 1.35vw, 0.72rem);
  font-weight: 900;
  line-height: 1.15;
  margin-top: 0.25rem;
}

.calendar-day--event {
  background: linear-gradient(135deg, #ffe4a8, #c99a51);
  box-shadow: 0 12px 24px rgba(154, 109, 47, 0.22);
}

.event-detail-list {
  display: grid;
  gap: 1.25rem;
}

.event-detail {
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

.event-detail__body {
  padding: clamp(1.4rem, 4vw, 3rem);
}

.event-facts {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0;
}

.event-facts div {
  border-top: 1px solid rgba(255, 248, 236, 0.18);
  padding-top: 0.75rem;
}

.event-facts dt {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0.25rem 0 0;
}

.payment-box {
  background: rgba(255, 248, 236, 0.96);
  border-radius: 8px;
  color: var(--ink);
  padding: 1rem;
}

.payment-box h4 {
  margin-bottom: 0.8rem;
}

.paypal-hosted {
  min-height: 3rem;
}

.cta-panel {
  background: white;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.article-feature {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
}

.article-feature img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: auto;
  width: 100%;
}

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

.article-card {
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.article-card a {
  display: grid;
  gap: 0.9rem;
  grid-template-rows: auto auto auto 1fr auto;
  height: 100%;
  padding: 1.1rem;
}

.article-card img {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-card h2 {
  font-family: inherit;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.24;
  max-width: none;
}

.article-card p {
  font-size: 0.92rem;
  line-height: 1.58;
}

.article-card__meta {
  color: var(--wine);
  display: flex;
  font-size: 0.72rem;
  font-weight: 900;
  justify-content: space-between;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
}

.article-card--blog a {
  grid-template-rows: auto auto 1fr auto;
}

.article-card details {
  background: rgba(255, 248, 236, 0.68);
}

.page-photo {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.page-photo img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: auto;
  margin: 0 auto;
  width: min(100%, 1180px);
}

.article-page {
  background: var(--ivory);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

.article-page__hero {
  align-items: center;
  background:
    radial-gradient(circle at 88% 10%, rgba(216, 174, 99, 0.18), transparent 24rem),
    linear-gradient(135deg, var(--plum-deep), #2b1024);
  color: white;
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1rem, 5vw, 4.8rem);
}

.article-page__header {
  color: white;
}

.article-page__header h1 {
  font-size: clamp(2rem, 4.35vw, 4.2rem);
  max-width: 16ch;
}

.article-page__header p {
  color: rgba(255, 248, 236, 0.82);
  max-width: 640px;
}

.article-page__image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  height: 100%;
  margin: 0;
  object-fit: cover;
  width: 100%;
}

.article-page__body {
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  max-width: 860px;
  padding: 0 1rem;
}

.article-page__body p {
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  margin: 0 0 1.4rem;
}

.article-page__cta {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  margin: clamp(2rem, 5vw, 4rem) auto 0;
  max-width: 820px;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.article-page__cta h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
  max-width: 14ch;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
}

.contact-card,
.contact-side > div {
  background: white;
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-card h2,
.contact-side h2,
.contact-side p,
.contact-side a {
  overflow-wrap: anywhere;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.site-footer {
  background: var(--ink);
  color: var(--ivory);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.2rem, 5vw, 4.8rem);
}

.site-footer img {
  border-radius: 50%;
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 248, 236, 0.78);
}

.site-footer a {
  display: block;
  margin: 0.45rem 0;
}

.site-footer h2 {
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate {
  background: rgba(12, 8, 10, 0.88);
  display: grid;
  inset: 0;
  padding: 1rem;
  place-items: center;
  position: fixed;
  z-index: 100;
}

.age-gate__panel {
  background: linear-gradient(145deg, var(--plum-deep), #2b1224);
  border: 1px solid rgba(216, 174, 99, 0.38);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  color: white;
  max-width: 620px;
  padding: clamp(1.4rem, 5vw, 3rem);
}

.age-gate__panel h2 {
  max-width: 12ch;
}

.age-gate__panel p {
  color: rgba(255, 248, 236, 0.8);
}

@media (max-width: 1100px) {
  .pillar-grid,
  .event-preview-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header > .button--compact {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 0.25rem;
    width: 100%;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.5rem);
  }

  .site-header {
    padding: 0.6rem 0.85rem 0.65rem;
    position: sticky;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    height: 2.65rem;
    width: 2.65rem;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    display: none;
  }

  .main-nav {
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    font-size: 0.78rem;
    padding: 0.42rem 0.2rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 620px;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(22, 15, 19, 0.92), rgba(22, 15, 19, 0.34)),
      linear-gradient(90deg, rgba(22, 15, 19, 0.58), rgba(22, 15, 19, 0.18));
  }

  .hero__content {
    align-self: end;
    padding-bottom: 2.8rem;
    width: min(100%, 620px);
  }

  .hero__content h1 {
    font-size: clamp(2.05rem, 9.5vw, 3.25rem);
  }

  .trust-strip,
  .two-column,
  .calendar-layout,
  .event-detail,
  .article-feature,
  .page-hero,
  .article-page__hero,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .article-page__hero {
    padding: 2rem 1rem;
  }

  .page-hero__copy h1,
  .article-page__header h1 {
    font-size: clamp(2rem, 9vw, 3.15rem);
    max-width: 15ch;
  }

  .page-hero__media,
  .article-page__image {
    order: -1;
  }

  .section__heading--split {
    align-items: flex-start;
    display: grid;
    gap: 1rem;
  }

  .event-facts {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 540px) {
  .button {
    width: 100%;
  }

  .button--compact {
    width: auto;
  }

  .pillar-grid,
  .event-preview-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .calendar-card {
    padding: 0.8rem;
  }

  .calendar-day {
    padding: 0.32rem;
  }

  .multi-calendar {
    grid-template-columns: 1fr;
  }
}
