/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FDFBF7;
  color: #3D261C;
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:root {
  --cream: #FDFBF7;
  --cream-alt: #F5EFE6;
  --brown: #3D261C;
  --green: #4A634D;
  --green-dark: #3d5240;
  --gold: #D4AF37;
}

/* ===== Layout helpers ===== */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.page { background: var(--cream); padding-top: 5rem; }

.section { padding: 6rem 1.5rem; }
.section--sm { padding: 4rem 1.5rem; }
.section--lg { padding: 6rem 1.5rem; }
@media (min-width: 1024px) {
  .section, .section--sm, .section--lg { padding-left: 3rem; padding-right: 3rem; }
}
.section--alt { background: var(--cream-alt); }
.section--dark { background: var(--brown); text-align: center; }

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1rem;
}
.eyebrow--gold { color: var(--gold); }

.heading-xl {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: var(--brown);
  line-height: 1.15;
}
@media (min-width: 768px) { .heading-xl { font-size: 1.8rem; } }

.heading-hero {
  font-size: 3rem;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.1;
}
@media (min-width: 768px) { .heading-hero { font-size: 3.75rem; } }

.heading-lg { font-size: 1.875rem; color: var(--brown); }
.heading-md { font-size: 1.25rem; color: var(--brown); }

.lede {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(61, 38, 28, 0.7);
  font-weight: 300;
}
.prose { display: flex; flex-direction: column; gap: 1.25rem; }
.prose p { font-size: 1.125rem; line-height: 1.75; color: rgba(61, 38, 28, 0.7); font-weight: 300; }
.prose strong { color: var(--brown); font-weight: 500; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--brown); color: var(--cream); }
.btn-primary:hover { background: var(--green); }
.btn-accent { background: var(--green); color: var(--cream); }
.btn-accent:hover { background: var(--green-dark); }
.btn-outline { border-color: var(--brown); color: var(--brown); background: transparent; }
.btn-outline:hover { background: var(--brown); color: var(--cream); }
.btn-outline-light { border-color: rgba(253,251,247,0.4); color: var(--cream); background: transparent; }
.btn-outline-light:hover { background: rgba(253,251,247,0.1); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brown);
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid var(--brown);
  padding-bottom: 0.125rem;
  transition: color 0.2s ease, border-color 0.2s ease;
  width: fit-content;
}
.btn-link:hover { color: var(--green); border-color: var(--green); }
.btn-link--accent { color: var(--green); border: none; }
.btn-link--accent:hover { gap: 0.75rem; }

/* ===== Grids ===== */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
  .grid-2--wide { gap: 5rem; }
}
.grid-2--items-start { align-items: start; }

/* ===== Fade-in reveal ===== */
.fade-in {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  background: transparent;
}
.navbar__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .navbar__inner { height: 5rem; } }
@media (min-width: 1024px) { .navbar__inner { padding: 0 3rem; } }

.navbar__brand { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.navbar__logo { height: 2.5rem; width: auto; transition: filter 0.3s ease; filter: brightness(0) invert(1); }
@media (min-width: 768px) { .navbar__logo { height: 3rem; } }
.navbar__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  color: var(--cream);
  transition: color 0.3s ease;
}
.navbar__brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.8);
  transition: color 0.3s ease;
}

.navbar__links { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .navbar__links { display: flex; } }

.navbar__link {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, color 0.3s ease, border-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__link:hover { opacity: 0.7; }
.navbar__link.is-active { border-color: currentColor; }

.navbar__item--dropdown { position: relative; }
.navbar__dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  padding-top: 0.5rem;
  min-width: 160px;
}
.navbar__item--dropdown:hover .navbar__dropdown,
.navbar__item--dropdown:focus-within .navbar__dropdown { display: block; }
.navbar__dropdown-inner {
  background: var(--cream);
  border: 1px solid rgba(61,38,28,0.1);
  border-radius: 0.25rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 0.5rem 0;
}
.navbar__dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--brown);
  transition: background-color 0.2s ease;
}
.navbar__dropdown-link:hover { background: var(--cream-alt); }

.navbar__cta { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.navbar__toggle {
  display: inline-flex;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--cream);
  transition: color 0.3s ease;
}
@media (min-width: 1024px) { .navbar__toggle { display: none; } }
.navbar__toggle .icon-x { display: none; }
.navbar__toggle.is-open .icon-menu { display: none; }
.navbar__toggle.is-open .icon-x { display: inline-flex; }

.navbar__mobile {
  display: none;
  background: var(--cream);
  border-top: 1px solid rgba(61,38,28,0.1);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.navbar__mobile.is-open { display: flex; }
@media (min-width: 1024px) { .navbar__mobile { display: none !important; } }
.navbar__mobile-link {
  color: var(--brown);
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(61,38,28,0.1);
  display: block;
}
.navbar__mobile-link--sub {
  color: rgba(61,38,28,0.7);
  font-size: 0.875rem;
  padding: 0.5rem 0 0.5rem 1rem;
  border-bottom: 1px solid rgba(61,38,28,0.05);
}
.navbar__mobile-cta {
  margin-top: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  background: var(--brown);
  color: var(--cream);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Solid state: always on for interior pages, toggled by JS on home */
body:not([data-home]) .navbar,
.navbar.is-solid {
  background: var(--cream);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(61,38,28,0.1);
}
body:not([data-home]) .navbar__logo,
.navbar.is-solid .navbar__logo { filter: none; }
body:not([data-home]) .navbar__brand-name,
.navbar.is-solid .navbar__brand-name { color: var(--brown); }
body:not([data-home]) .navbar__brand-sub,
.navbar.is-solid .navbar__brand-sub { color: var(--green); }
body:not([data-home]) .navbar__link,
.navbar.is-solid .navbar__link { color: var(--brown); }
body:not([data-home]) .navbar__toggle,
.navbar.is-solid .navbar__toggle { color: var(--brown); }
body:not([data-home]) .navbar__cta,
.navbar.is-solid .navbar__cta { background: var(--brown); color: var(--cream); border-color: transparent; }
body:not([data-home]) .navbar__cta:hover,
.navbar.is-solid .navbar__cta:hover { background: var(--green); }
.navbar__cta.btn-outline-light { background: rgba(253,251,247,0.2); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 18rem;
}
.hero--tall { height: 18rem; }
@media (min-width: 768px) {
  .hero { height: 20rem; }
  .hero--tall { height: 24rem; }
}
.hero--full { height: 100vh; min-height: 600px; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero__overlay { position: absolute; inset: 0; background: rgba(61,38,28,0.6); }
.hero__overlay--strong { background: rgba(61,38,28,0.65); }
.hero__overlay--soft { background: rgba(61,38,28,0.55); }
.hero__overlay--gradient {
  background: linear-gradient(to bottom, rgba(61,38,28,0.6), rgba(61,38,28,0.3) 45%, rgba(61,38,28,0.7));
}
.hero__content { position: relative; z-index: 10; }
.hero__tagline {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: rgba(253,251,247,0.8);
}
.hero--center { text-align: center; justify-content: center; }
.hero__scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(253,251,247,0.6);
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== Cards ===== */
.card {
  background: var(--cream-alt);
  border-radius: 0.125rem;
  padding: 2rem;
}
.card-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(74,99,77,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.service-card {
  background: var(--cream-alt);
  border-radius: 0.125rem;
  overflow: hidden;
}
.service-card__media { height: 14rem; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 2rem; }

.service-tile { display: block; }
.service-tile__media { height: 16rem; overflow: hidden; border-radius: 0.125rem; margin-bottom: 1.25rem; }
.service-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-tile:hover .service-tile__media img { transform: scale(1.05); }
.service-tile:hover .heading-md { color: var(--green); }

/* Feature checklist */
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-list svg { color: var(--green); margin-top: 0.2rem; flex-shrink: 0; }
.check-list span { font-size: 1rem; color: rgba(61,38,28,0.8); }

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .photo-strip { grid-template-columns: repeat(4, 1fr); } }
.photo-strip img { width: 100%; height: 11rem; object-fit: cover; border-radius: 0.125rem; }
.photo-strip .is-tall { grid-row: span 2 / span 2; }
.photo-strip .is-tall img { height: 100%; min-height: 300px; }

.photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.photo-grid img { width: 100%; height: 13rem; object-fit: cover; object-position: top; border-radius: 0.125rem; }
.photo-grid .is-wide { grid-column: span 2 / span 2; height: 14rem; }
.photo-grid .is-wide img { height: 100%; }

/* ===== Contact form ===== */
.contact-form { display: flex; flex-direction: column; gap: 2.5rem; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(61,38,28,0.6);
  margin-bottom: 0.5rem;
}
.form-field .required { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(61,38,28,0.3);
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--brown);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(61,38,28,0.4); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--green); }
.form-field textarea { resize: none; }
.form-field select { cursor: pointer; }
.form-error { color: #dc2626; font-size: 0.875rem; }
.form-submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--brown);
  color: var(--cream);
  transition: background-color 0.3s ease;
}
.form-submit:hover { background: var(--green); }
.form-submit:disabled { background: rgba(61,38,28,0.5); cursor: not-allowed; }

.contact-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 5rem 0; }
.contact-success.is-visible { display: flex; }
.contact-form-wrap.is-hidden { display: none; }
.contact-success__icon {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  background: rgba(74,99,77,0.1);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item .card-icon { width: 2.5rem; height: 2.5rem; }
.contact-info-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(61,38,28,0.5); margin-bottom: 0.25rem; }
.contact-info-value { font-size: 1rem; color: var(--brown); }
.contact-info-value a:hover { color: var(--green); }

/* ===== Timeline (Our History) ===== */
.timeline { display: flex; flex-direction: column; gap: 2.5rem; }
.timeline-item { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .timeline-item { grid-template-columns: repeat(2, 1fr); } }
.timeline-item img { width: 100%; height: 14rem; object-fit: cover; border-radius: 0.125rem; }
.timeline-item--reverse .timeline-item__media { order: 2; }
.timeline-item--reverse .timeline-item__body { order: 1; }
.timeline-item__body {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: 0.125rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.timeline-date { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.5rem; }

.quote-card { background: var(--green); color: var(--cream); padding: 2rem; border-radius: 0.125rem; }
.quote-card p:first-child { font-size: 1.125rem; font-style: italic; font-family: 'Playfair Display', serif; line-height: 1.7; }
.quote-card p:last-child { margin-top: 1rem; font-size: 0.875rem; color: rgba(253,251,247,0.7); }

blockquote.pull-quote {
  margin: 2.5rem 0 0;
  border-left: 4px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  text-align: left;
}
blockquote.pull-quote p:first-child { font-size: 1.25rem; font-style: italic; font-family: 'Playfair Display', serif; color: var(--brown); line-height: 1.7; }
blockquote.pull-quote p:last-child { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(61,38,28,0.6); }

/* ===== Greystone diary ===== */
.diary-entry { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .diary-entry { grid-template-columns: repeat(2, 1fr); } }
.diary-entry--reverse .diary-entry__media { order: 2; }
.diary-entry--reverse .diary-entry__body { order: 1; }
.diary-entry__media img { width: 100%; height: 18rem; object-fit: cover; border-radius: 0.125rem; box-shadow: 0 4px 10px rgba(0,0,0,0.12); }
.diary-entry__caption { margin-top: 0.5rem; font-size: 0.75rem; color: rgba(61,38,28,0.4); font-style: italic; text-align: center; }
.diary-card { background: var(--cream); border: 1px solid rgba(61,38,28,0.1); border-radius: 0.125rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.diary-text {
  font-family: Georgia, serif;
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(61,38,28,0.8);
  white-space: pre-line;
  max-height: 12rem;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.diary-card.is-expanded .diary-text { max-height: 100rem; }
.diary-toggle {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 500;
}
.diary-toggle:hover { text-decoration: underline; }
.diary-toggle .label-more { display: inline-flex; align-items: center; gap: 0.25rem; }
.diary-toggle .label-less { display: none; align-items: center; gap: 0.25rem; }
.diary-card.is-expanded .diary-toggle .label-more { display: none; }
.diary-card.is-expanded .diary-toggle .label-less { display: inline-flex; }

/* ===== Footer ===== */
.footer { background: var(--brown); color: var(--cream); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; max-width: 80rem; margin: 0 auto; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer__grid { padding: 4rem 3rem; } }
.footer__brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer__desc { color: rgba(253,251,247,0.7); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { color: rgba(253,251,247,0.6); font-size: 0.875rem; transition: color 0.2s ease; }
.footer__social a:hover { color: var(--gold); }
.footer__heading { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__links a { color: rgba(253,251,247,0.7); font-size: 0.875rem; transition: color 0.2s ease; }
.footer__links a:hover { color: var(--cream); }
.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer__contact-item svg { color: var(--gold); margin-top: 0.15rem; flex-shrink: 0; }
.footer__contact-item span, .footer__contact-item a { color: rgba(253,251,247,0.7); font-size: 0.875rem; }
.footer__contact-item a:hover { color: var(--cream); }
.footer__bottom { border-top: 1px solid rgba(253,251,247,0.1); }
.footer__bottom-inner { max-width: 80rem; margin: 0 auto; padding: 1.25rem 1.5rem; text-align: center; }
@media (min-width: 1024px) { .footer__bottom-inner { padding: 1.25rem 3rem; } }
.footer__bottom p { color: rgba(253,251,247,0.4); font-size: 0.75rem; }

/* ===== 404 ===== */
.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 1.5rem; background: #f8fafc; }
.not-found__code { font-size: 4.5rem; font-weight: 300; color: #cbd5e1; margin: 0; }
.not-found__rule { height: 2px; width: 4rem; background: #e2e8f0; margin: 1rem auto; }
.not-found__title { font-size: 1.5rem; font-weight: 500; color: #1e293b; }
.not-found__text { color: #475569; margin-top: 0.75rem; line-height: 1.6; }
.not-found__btn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
}
.not-found__btn:hover { background: #f8fafc; border-color: #cbd5e1; }



/* ===== Events grid (Calendar) ===== */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.event-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(253,251,247,0.05);
  border: 1px solid rgba(253,251,247,0.12);
  border-radius: 0.25rem;
  padding: 1.75rem;
}
.event-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; margin-bottom: 1rem; }
.event-date { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.event-badge {
  font-size: 0.75rem;
  color: rgba(253,251,247,0.85);
  border: 1px solid rgba(253,251,247,0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.event-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; color: var(--cream); line-height: 1.3; margin-bottom: 0.75rem; }
.event-location { display: flex; align-items: center; gap: 0.5rem; color: rgba(253,251,247,0.55); font-size: 0.9rem; margin-bottom: 1.5rem; }
.event-location svg { flex-shrink: 0; color: rgba(253,251,247,0.4); }
.event-link { margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.9rem; font-weight: 500; width: fit-content; }
.event-link:hover { text-decoration: underline; }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-1 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 1.5rem; }
.italic { font-style: italic; }
.cta-row { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) { .cta-row { flex-direction: row; } }
.max-w-content { max-width: 48rem; margin: 0 auto; }
.max-w-narrow { max-width: 42rem; margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; gap: 1rem; flex-wrap: wrap; }
.section-head--center { text-align: center; margin-bottom: 3.5rem; justify-content: center; flex-direction: column; align-items: center; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline-flex; } }
