:root {
  --burgundy: #61010d;
  --burgundy-deep: #430008;
  --blue: #0c2d61;
  --gold: #d5c24a;
  --ivory: #faf7f0;
  --paper: #fffdf8;
  --paper-soft: #f6efe7;
  --text: #25221f;
  --muted: #6c625a;
  --line: #ded6ca;
  --focus: #0c2d61;
  --shadow: 0 18px 55px rgba(49, 26, 21, 0.09);
  --radius: 18px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1160px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(97, 1, 13, 0.98);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 28px rgba(40, 10, 15, .15); }
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.brand-copy { display: grid; gap: 1px; line-height: 1.02; }
.brand-main {
  color: #fff8ec;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}
.brand-sub {
  color: #f0d98e;
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 700;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-left: auto;
}
.desktop-nav a {
  color: #fff7ee;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .015em;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switcher { display: flex; align-items: center; white-space: nowrap; }
.language-switcher button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.68);
  padding: 8px 9px;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 800;
  position: relative;
}
.language-switcher button + button::before {
  content: "|";
  position: absolute;
  left: -2px;
  color: rgba(255,255,255,.36);
}
.language-switcher button.is-active { color: #fff; }
.language-switcher button.is-active::after {
  content: "";
  position: absolute;
  height: 2px;
  background: var(--gold);
  left: 10px;
  right: 10px;
  bottom: 2px;
}
.menu-toggle { display: none; }
.mobile-menu { display: none; }

/* TYPOGRAPHY + SHARED */
.eyebrow, .section-kicker, .payment-label, .service-number {
  margin: 0 0 10px;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .7rem;
  font-weight: 800;
}
h1, h2, h3, h4 { font-family: var(--serif); }
h2, h3 { color: var(--burgundy); }
.section { padding: clamp(72px, 8vw, 112px) 0; }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.compact { margin-bottom: 28px; }
.section-heading h2, .section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -.025em;
}
.rich-text { color: #3f3934; }
.rich-text p { margin: 0 0 1.05em; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text a { color: var(--blue); text-underline-offset: 3px; }

.button {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 21px;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--burgundy); color: #fff; box-shadow: 0 10px 24px rgba(97,1,13,.15); }
.button-primary:hover { background: var(--burgundy-deep); }
.button-secondary { border: 1px solid rgba(97,1,13,.34); color: var(--burgundy); background: transparent; }
.button-secondary:hover { background: rgba(97,1,13,.045); }

/* HOME */
.hero {
  padding: clamp(38px, 5.5vw, 70px) 0 clamp(52px, 7vw, 84px);
  background:
    radial-gradient(circle at 87% 18%, rgba(213,194,74,.10), transparent 26%),
    linear-gradient(180deg, var(--ivory), #fffaf4);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}
.hero-copy { max-width: 660px; }
.hero h1 {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(2.65rem, 5vw, 4.9rem);
  line-height: .99;
  letter-spacing: -.038em;
}
.hero-subtitle {
  margin: 0 0 28px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.82rem);
  line-height: 1.2;
}
.hero-actions {
  display: grid;
  gap: 10px;
  width: min(100%, 260px);
}
.hero-actions .button { width: 100%; }
.hero-media {
  margin: 0;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  border-radius: 26px 26px 88px 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #eee8df;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 4.45;
  object-fit: cover;
  object-position: 50% 42%;
}

.home-intro {
  background: linear-gradient(120deg, var(--burgundy-deep), var(--burgundy));
  color: #fff8ec;
  padding: clamp(42px, 5vw, 64px) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.intro-copy { max-width: 820px; }
.intro-copy p {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.36;
  font-style: italic;
  color: #fff8ec;
}
.intro-copy p + p {
  margin-top: 12px;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
  color: #eedfd9;
}
.intro-copy p:last-child { margin-bottom: 0; }
.intro-portrait {
  margin: 0;
  width: 180px;
  justify-self: end;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
}
.intro-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
}

/* EVENTS */
.events-section { background: var(--ivory); }
.event-general-info {
  max-width: 900px;
  margin-bottom: 50px;
  padding: 26px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(255,253,248,.76);
}
.event-general-info .rich-text { font-size: .98rem; }
.translation-note {
  margin: 20px 0 22px;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 750;
}
.events-stack { display: grid; gap: 46px; }
.event-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(49,26,21,.055);
}
.event-image { margin: 0; background: #eee; }
.event-image img {
  width: 100%;
  height: clamp(260px, 33vw, 420px);
  object-fit: cover;
  object-position: center 35%;
}
#event-guru-yoga-retreat .event-image img { object-position: center 24%; }
.event-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 36px;
  padding: clamp(28px, 4.5vw, 54px);
}
.event-side {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.event-meta-block + .event-meta-block { margin-top: 25px; }
.event-meta-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.event-meta-value {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 700;
}
.event-main h3 {
  margin: 0 0 6px;
  color: var(--burgundy);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.event-subtitle {
  margin: 0 0 24px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.3;
  font-style: italic;
}
.event-body { font-size: .98rem; }
.event-detail-block {
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.event-detail-block h4 {
  margin: 0 0 11px;
  color: var(--blue);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.event-actions { margin-top: 28px; }
.retreat-support {
  margin-top: 34px;
  padding: 28px;
  background: #fbf4eb;
  border: 1px solid #e1d3c2;
  border-radius: 14px;
}
.retreat-support h4 {
  margin: 0 0 18px;
  color: var(--burgundy);
  font-size: 1.45rem;
  line-height: 1.16;
}
.retreat-support .rich-text { font-size: .96rem; }
.support-tiers {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.support-tier {
  min-height: 78px;
  padding: 14px 12px;
  border: 1px solid #ddcdbb;
  border-radius: 10px;
  background: var(--paper);
  display: grid;
  align-content: center;
  gap: 2px;
  text-align: center;
}
.support-tier strong { color: var(--burgundy); font-family: var(--serif); font-size: 1.28rem; }
.support-tier span { font-size: .8rem; color: var(--muted); }

/* SUPPORT / PAYMENTS */
.support-section { background: var(--paper); }
.support-intro { max-width: 820px; font-size: 1rem; }
.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.payment-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  padding: clamp(25px, 3.8vw, 40px);
}
.payment-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}
.paypal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 28px;
  align-items: center;
}
.payment-copy p:not(.payment-label) { color: #504842; }
.qr-wrap { text-align: center; }
.qr-heading {
  margin: 0 0 10px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: .98rem;
  line-height: 1.25;
  font-weight: 700;
}
.qr-wrap a { display: inline-block; background: #fff; padding: 10px; border: 1px solid var(--line); border-radius: 10px; }
.qr-wrap img { width: 150px; height: 150px; object-fit: contain; }
.qr-caption { margin: 8px 0 0; color: var(--muted); font-size: .76rem; }
.bank-details { display: grid; gap: 0; margin: 20px 0 0; }
.bank-details > div {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.bank-details dt {
  color: var(--muted);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.bank-details dd { margin: 0; overflow-wrap: anywhere; }
.bank-cause {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 14px;
  margin-top: 12px;
  padding: 13px 0 0;
}
.bank-cause strong { color: var(--burgundy); font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; }
.bank-cause span { font-weight: 800; color: var(--burgundy); }

/* LOCATION */
.location-section { background: var(--ivory); }
.location-summary {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  margin-bottom: 42px;
}
.location-address {
  padding-right: 28px;
  border-right: 1px solid var(--line);
}
.location-address strong {
  display: block;
  margin-bottom: 10px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.35rem;
}
.location-address p { margin: 0; }
.subsection-heading { margin: 0 0 14px; }
.subsection-heading h3 { margin: 0; font-size: 1.55rem; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 20px 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-weight: 750;
}
.accordion-trigger span:last-child {
  width: 26px;
  height: 26px;
  border: 1px solid #c7bdb2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  transition: transform .2s ease, background .2s ease;
}
.accordion-trigger[aria-expanded="true"] span:last-child { background: rgba(97,1,13,.05); }
.accordion-panel { padding: 0 42px 26px 3px; color: #49433e; }
.accordion-panel[hidden] { display: none; }
.accordion-panel p { margin: 0 0 1em; }
.accordion-panel a { color: var(--blue); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.transport-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .9rem; min-width: 580px; }
.transport-table th, .transport-table td { padding: 11px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.transport-table th { background: var(--blue); color: #fff; }
.location-image-placeholder {
  min-height: 260px;
  margin-top: 42px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  color: #fff8ec;
  background:
    radial-gradient(circle at 75% 20%, rgba(213,194,74,.18), transparent 25%),
    linear-gradient(135deg, #354d3a, #183650 56%, var(--blue));
}
.location-image-placeholder strong { display: block; font-family: var(--serif); font-size: 1.6rem; }
.location-image-placeholder span { display: block; margin-top: 8px; color: #e6e5db; font-size: .88rem; }

/* SERVICES */
.services-section { background: var(--paper); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.service-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
}
.service-number { color: #9f846e; }
.service-card h3 { margin: 0 0 14px; font-size: 1.65rem; line-height: 1.14; }
.service-card .rich-text { font-size: .91rem; }
.status-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(97,1,13,.08);
  color: var(--burgundy);
  font-size: .68rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 16px;
}
.meal-price { display: flex; align-items: baseline; gap: 8px; margin: -2px 0 15px; }
.meal-price span { font-family: var(--serif); font-size: 2.15rem; color: var(--burgundy); font-weight: 700; }
.meal-price small { color: var(--muted); font-weight: 700; }
.accommodation-groups { margin-top: 34px; }
.accommodation-group { margin-top: 34px; }
.accommodation-group:first-child { margin-top: 0; }
.accommodation-group-title {
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 1.2rem;
}
.accommodation-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.accommodation-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.accommodation-card h4 { margin: 0 0 14px; color: var(--burgundy); font-size: 1.12rem; line-height: 1.3; }
.accommodation-card dl { display: grid; gap: 7px; margin: 0; }
.accommodation-card dl > div { display: grid; grid-template-columns: 105px minmax(0,1fr); gap: 11px; }
.accommodation-card dt { color: var(--muted); font-size: .69rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.accommodation-card dd { margin: 0; font-size: .9rem; }

/* FAQ + CONTACT */
.faq-contact-section { background: var(--ivory); }
.faq-contact-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); gap: 22px; align-items: stretch; }
.faq-panel, .contact-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.faq-panel h2, .contact-panel h2 { margin-bottom: 24px; }
.faq-accordion .accordion-trigger { font-size: .98rem; }
.contact-panel { display: flex; flex-direction: column; }
.contact-panel p:not(.section-kicker) { color: #4a433e; }
.contact-email {
  margin-top: auto;
  padding-top: 28px;
  color: var(--burgundy);
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}

/* FOOTER */
.site-footer { background: #2b0007; color: #e9ddd8; padding: 38px 0 28px; }
.footer-grid { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 26px 40px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-mark {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.footer-brand-copy { display: grid; gap: 3px; font-size: .79rem; line-height: 1.45; color: #ccbcb6; }
.footer-brand-copy strong { color: #fff; font-family: var(--serif); font-size: 1rem; }
.footer-brand-copy a { color: #eadbd5; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 18px; font-size: .78rem; }
.footer-links a { color: #d7c5bf; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.22); }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.11); color: #a9938d; font-size: .74rem; }
.noscript { background: #fff3cd; color: #5a4500; padding: 14px; text-align: center; }

/* POLICY PAGES */
.policy-page { background: var(--ivory); }
.policy-page .site-header { position: static; }
.policy-main { padding: 50px 0 90px; }
.policy-shell { width: min(calc(100% - 40px), 920px); margin: 0 auto; }
.policy-shell > h1 { margin: 0 0 8px; color: var(--burgundy); font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 4rem); }
.policy-meta { color: var(--muted); font-size: .85rem; }
.policy-language-nav { display: flex; gap: 14px; margin: 22px 0 30px; }
.policy-language-nav a { color: var(--burgundy); font-weight: 750; }
.policy-language-section { margin-top: 34px; padding: clamp(26px, 4vw, 42px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.policy-language-section h2 { font-size: 2rem; }
.policy-language-section h3 { margin: 28px 0 8px; color: var(--blue); font-size: 1.25rem; }
.policy-language-section p, .policy-language-section li { color: #3f3934; }
.policy-note { margin-top: 28px; padding: 18px; background: #f6efe5; border-left: 3px solid var(--gold); }
.policy-back { display: inline-block; margin-top: 28px; color: var(--burgundy); font-weight: 750; }

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

@media (max-width: 1040px) {
  .desktop-nav { gap: 14px; }
  .desktop-nav a { font-size: .76rem; }
  .brand-main { font-size: .91rem; }
  .brand-sub { font-size: .82rem; }
  .hero-grid { grid-template-columns: 1fr 390px; gap: 42px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card-accommodation { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle {
    width: 40px;
    height: 40px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { display: block; height: 2px; background: #fff7ee; border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    display: grid;
    padding: 10px 20px 20px;
    background: var(--burgundy-deep);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff7ee; text-decoration: none; font-weight: 700; }
  .mobile-menu a:last-child { border-bottom: 0; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-media { max-width: 420px; justify-self: start; }
  .intro-grid { grid-template-columns: minmax(0, 1fr) 160px; }
  .intro-portrait { width: 150px; }
  .event-inner { grid-template-columns: 180px minmax(0,1fr); gap: 28px; }
  .support-tiers { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .payment-methods { grid-template-columns: 1fr; }
  .location-summary { grid-template-columns: 1fr; gap: 22px; }
  .location-address { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .faq-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-copy { max-width: 190px; }
  .brand-main { white-space: normal; font-size: .82rem; }
  .brand-sub { font-size: .74rem; }
  .language-switcher button { padding-inline: 7px; }

  .hero { padding-top: 28px; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hero-subtitle { font-size: 1.28rem; }
  .hero-media { max-width: 100%; width: 100%; border-radius: 20px 20px 62px 20px; }
  .hero-media img { aspect-ratio: 4 / 3.55; object-position: 50% 42%; }
  .hero-actions { width: 100%; }
  .button { width: 100%; }

  .home-intro { padding: 36px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .intro-copy p { font-size: 1.35rem; }
  .intro-copy p + p { font-size: 1rem; }
  .intro-portrait { width: 120px; justify-self: start; }

  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 28px; }
  .event-general-info { padding: 22px 20px; margin-bottom: 36px; }
  .events-stack { gap: 30px; }
  .event-image img { height: 250px; }
  .event-inner { grid-template-columns: 1fr; gap: 22px; padding: 24px 21px 28px; }
  .event-side { padding: 0 0 21px; border-right: 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
  .event-meta-block + .event-meta-block { margin-top: 0; }
  .event-meta-value { font-size: 1.04rem; }
  .event-main h3 { font-size: 1.78rem; }
  .retreat-support { padding: 22px 18px; }
  .support-tiers { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .support-tier { min-height: 70px; }

  .payment-card { padding: 24px 20px; }
  .paypal-card { grid-template-columns: 1fr; }
  .qr-wrap { margin-top: 6px; }
  .bank-details > div, .bank-cause { grid-template-columns: 1fr; gap: 3px; }

  .location-summary { padding: 23px 20px; }
  .accordion-trigger { padding: 18px 2px; }
  .accordion-panel { padding-right: 2px; }
  .location-image-placeholder { min-height: 210px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-accommodation { grid-column: auto; }
  .service-card { padding: 24px 20px; }
  .accommodation-grid { grid-template-columns: 1fr; }
  .accommodation-card dl > div { grid-template-columns: 90px minmax(0,1fr); }

  .faq-panel, .contact-panel { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: 1; }
}

@media (max-width: 430px) {
  .brand-copy { max-width: 152px; }
  .brand-main { font-size: .72rem; }
  .brand-sub { font-size: .68rem; }
  .hero h1 { font-size: 2.55rem; }
  .hero-media img { aspect-ratio: 4 / 3.4; }
  .event-side { grid-template-columns: 1fr; }
  .support-tiers { grid-template-columns: 1fr 1fr; }
  .footer-brand { align-items: flex-start; }
  .footer-mark { width: 58px; height: 58px; flex-basis: 58px; }
}

@media (max-width: 360px) {
  .header-inner { gap: 6px; }
  .brand-copy { display: none; }
  .header-actions { gap: 3px; }
  .menu-toggle { width: 36px; padding-inline: 7px; }
  .hero h1 { font-size: 2.35rem; }
  .event-main h3 { font-size: 1.65rem; }
  .support-tiers { grid-template-columns: 1fr; }
}

/* =========================================================
   V2 REFINEMENT — approved layout, 16 Aug 2026
   ========================================================= */

/* Header/footer logo: never crop the official mark. */
.brand-mark,
.footer-mark {
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.footer-mark { border-radius: 0; }

/* HOME: simpler, more editorial, no decorative eyebrow. */
.hero { padding-top: clamp(46px, 6vw, 76px); }
.hero-copy { align-self: center; }
.hero-actions { margin-top: 30px; }
.home-intro { padding: clamp(34px, 4vw, 50px) 0; }
.intro-centered { display: flex; justify-content: center; }
.intro-centered .intro-copy {
  width: min(100%, 980px);
  max-width: 980px;
  text-align: center;
}
.intro-centered .intro-copy p {
  font-size: clamp(1.18rem, 1.9vw, 1.7rem);
  line-height: 1.42;
}
.intro-centered .intro-copy p + p {
  margin-inline: auto;
  max-width: 860px;
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  line-height: 1.62;
}

/* Image ribbons: preserve faces; no aggressive crop. */
.photo-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 54px;
}
.photo-ribbon figure {
  margin: 0;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #eee9e2;
  box-shadow: 0 10px 28px rgba(49,26,21,.045);
}
.photo-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.photo-ribbon-events figure { height: clamp(250px, 28vw, 360px); }
.photo-ribbon-services {
  margin-top: 46px;
  margin-bottom: 0;
}
.photo-ribbon-services figure {
  height: clamp(220px, 23vw, 300px);
  background: #e9e7e3;
}

/* EVENTS: clean vertical reading, left information column, no enclosing card look. */
.events-section .section-heading { margin-bottom: 28px; }
.events-stack { gap: 0; }
.event-card {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.event-card + .event-card { border-top: 1px solid var(--line); }
.event-inner {
  grid-template-columns: 235px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  padding: clamp(38px, 5vw, 62px) 0;
}
.event-side {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}
.event-meta-block + .event-meta-block { margin-top: 26px; }
.event-meta-label { margin-bottom: 6px; }
.event-meta-value {
  font-size: 1.06rem;
  line-height: 1.42;
}
.event-main h3 { max-width: 780px; }
.event-body { font-size: 1rem; }
.event-detail-block {
  margin-top: 30px;
  padding-top: 26px;
}
.event-support {
  margin-top: 34px;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  background: transparent;
}
.event-support h4 {
  margin: 0 0 13px;
  color: var(--burgundy);
  font-size: 1.38rem;
  line-height: 1.18;
}
.event-support .rich-text { font-size: .97rem; }
.retreat-support {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 25px 0 0;
}
.support-tiers {
  display: block;
  margin-top: 22px;
}
.support-tier {
  min-height: auto;
  padding: 12px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
}
.support-tier:last-child { border-bottom: 1px solid var(--line); }
.support-tier strong { font-size: 1.08rem; }
.support-tier span { font-size: .88rem; }

/* SUPPORT: only the payment methods live here. */
.support-section { padding-top: clamp(64px, 7vw, 90px); }
.support-section .section-heading.compact {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.support-payment-intro {
  margin: -3px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
}
.payment-methods { margin-top: 28px; }
.bank-details > div:last-child { border-bottom: 0; }

/* LOCATION: no white enclosing card; keep only the divider. */
.location-summary {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  margin-bottom: 46px;
  padding: 0 0 34px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.location-address { padding-right: 30px; }
.location-photo {
  margin: 44px 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e9e7e2;
}
.location-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center;
}
.accordion-trigger {
  min-height: 66px;
  padding: 18px 2px;
  font-size: 1rem;
}
.accordion-trigger span:first-child { flex: 1; }
.accordion-trigger span:last-child {
  width: 32px;
  height: 32px;
  flex-basis: 32px;
  border-color: #bfae9d;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--burgundy);
}
.accordion-trigger:hover span:first-child { color: var(--burgundy); }

/* SERVICES: accommodation first, then meals + local transport. */
.services-section .section-heading { margin-bottom: 22px; }
.accommodation-intro-block {
  width: min(100%, 900px);
  margin-bottom: 30px;
}
.accommodation-groups { margin-top: 0; }
.services-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}
.service-card {
  padding: clamp(26px, 3vw, 34px);
  background: var(--ivory);
}
.service-card h3 { font-size: 1.72rem; }

/* FAQ + CONTACT: matched proportions and a readable email. */
.faq-contact-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 22px;
}
.faq-panel,
.contact-panel { min-width: 0; }
.contact-email {
  display: inline-block;
  max-width: 100%;
  margin-top: 30px;
  padding-top: 20px;
  font-size: clamp(.88rem, 1.25vw, 1rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Footer: concise legal identity only. */
.footer-brand-copy { max-width: 680px; }

@media (max-width: 820px) {
  .intro-centered .intro-copy { text-align: left; }
  .photo-ribbon {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 460px);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    padding: 0 0 12px;
    scrollbar-width: thin;
  }
  .photo-ribbon figure { scroll-snap-align: start; }
  .photo-ribbon-events figure { height: 330px; }
  .photo-ribbon-services figure { height: 300px; }

  .event-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 38px;
  }
  .event-side {
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
  }
  .event-meta-block + .event-meta-block { margin-top: 0; }

  .location-summary {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .location-address {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .services-secondary-grid { grid-template-columns: 1fr; }
  .faq-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero-actions { width: 100%; }
  .intro-centered .intro-copy p { font-size: 1.16rem; }
  .intro-centered .intro-copy p + p { font-size: .95rem; }
  .photo-ribbon { grid-auto-columns: 88vw; }
  .photo-ribbon-events figure { height: 300px; }
  .photo-ribbon-services figure { height: 270px; }
  .event-side { grid-template-columns: 1fr; }
  .event-meta-value { font-size: 1rem; }
  .support-tier { gap: 14px; }
  .payment-card { padding: 23px 19px; }
  .contact-email { font-size: .86rem; }
}


/* 2026-08-16 refinement: hero name + consistent event galleries */
.hero-subtitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.hero-subtitle-prefix {
  color: var(--blue);
  font-size: .92em;
}
.hero-subtitle-name {
  display: block;
  color: #a84f1d;
  font-size: 1.08em;
  line-height: 1.16;
  font-weight: 600;
}
.event-photo-ribbon {
  margin: 0 0 18px;
}
.event-card + .event-card .event-photo-ribbon {
  margin-top: 56px;
}
.photo-ribbon-events figure,
.photo-ribbon-services figure {
  height: auto;
  aspect-ratio: 4 / 3;
}
.photo-ribbon-events img,
.photo-ribbon-services img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.photo-ribbon-events .gallery-pos-center { object-position: 50% 50%; }
.photo-ribbon-events .gallery-pos-upper { object-position: 50% 28%; }
.photo-ribbon-events figure:nth-child(1) img { object-position: 50% 42%; }
.photo-ribbon-events figure:nth-child(2) img { object-position: 50% 46%; }
.photo-ribbon-events figure:nth-child(3) img { object-position: 50% 42%; }
.photo-ribbon-services img { object-position: 50% 35%; }
@media (max-width: 820px) {
  .hero-subtitle-name { font-size: 1.04em; }
  .photo-ribbon-events figure,
  .photo-ribbon-services figure {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .event-card + .event-card .event-photo-ribbon { margin-top: 40px; }
}
@media (max-width: 520px) {
  .hero-subtitle { font-size: 1.18rem; }
  .hero-subtitle-name { font-size: 1.08em; }
}

/* Keep horizontal photo carousels contained within the viewport. */
.event-card,
.event-inner,
.event-side,
.event-main,
.event-photo-ribbon {
  min-width: 0;
  max-width: 100%;
}
.event-photo-ribbon { width: 100%; }
@media (max-width: 820px) {
  .event-photo-ribbon,
  .photo-ribbon-services {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
}


/* 2026-08-16 refinement 3: requested gallery, intro, contribution and transport tuning */
.intro-centered .intro-copy {
  width: min(100%, 1160px);
  max-width: 1160px;
}
.intro-centered .intro-copy p:first-child {
  font-size: clamp(1.18rem, 1.6vw, 1.48rem);
  line-height: 1.48;
}
.intro-desktop-break { display: block; }
.intro-line-two { white-space: nowrap; }
.intro-name-accent {
  color: #f0a14a;
  font-size: 1.035em;
}

/* Keep contribution labels close to their amounts, separated by one clear vertical rule. */
.retreat-support .support-tiers {
  position: relative;
  max-width: 560px;
  margin-top: 22px;
}
.retreat-support .support-tiers::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 148px;
  width: 1px;
  background: var(--line);
  pointer-events: none;
}
.retreat-support .support-tier {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  justify-content: start;
  gap: 0;
}
.retreat-support .support-tier strong {
  padding-right: 22px;
}
.retreat-support .support-tier span {
  padding-left: 24px;
  text-align: left;
}

/* Reach-the-venue accordion: slightly larger, clearer clickable labels and plus controls. */
.location-section .accordion-trigger {
  min-height: 76px;
  padding: 21px 4px;
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
}
.location-section .accordion-trigger span:first-child {
  line-height: 1.35;
}
.location-section .accordion-trigger span:last-child {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  font-size: 1.22rem;
}

/* Preserve equivalent 4:3 framing across every three-image ribbon. */
.photo-ribbon-events figure,
.photo-ribbon-services figure {
  aspect-ratio: 4 / 3;
}
.photo-ribbon-events img,
.photo-ribbon-services img {
  object-fit: cover;
}
.photo-ribbon-services figure:nth-child(1) img,
.photo-ribbon-services figure:nth-child(3) img {
  object-position: 50% 38%;
}
.photo-ribbon-events .gallery-pos-upper { object-position: 50% 30%; }

@media (max-width: 820px) {
  .intro-desktop-break { display: none; }
  .intro-line-two { white-space: normal; }
  .intro-centered .intro-copy p:first-child {
    font-size: clamp(1.14rem, 4.7vw, 1.34rem);
    line-height: 1.48;
  }
  .retreat-support .support-tiers {
    max-width: 100%;
  }
  .retreat-support .support-tiers::before {
    left: 124px;
  }
  .retreat-support .support-tier {
    grid-template-columns: 124px minmax(0, 1fr);
  }
  .location-section .accordion-trigger {
    min-height: 70px;
    font-size: 1.06rem;
  }
}

@media (max-width: 520px) {
  .retreat-support .support-tiers::before {
    left: 108px;
  }
  .retreat-support .support-tier {
    grid-template-columns: 108px minmax(0, 1fr);
  }
  .retreat-support .support-tier strong { padding-right: 16px; }
  .retreat-support .support-tier span { padding-left: 18px; }
  .location-section .accordion-trigger {
    font-size: 1.02rem;
    padding-block: 19px;
  }
}

/* ============================================================
   V7 — final refinements requested on 2026-08-16
   ============================================================ */

/* Services hierarchy: SERVICES is the main heading; Where to stay is secondary. */
.services-heading {
  margin-bottom: 22px;
  max-width: 900px;
}
.services-heading h2 {
  margin: 0;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.services-subtitle {
  margin: 10px 0 0;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
  font-weight: 650;
}
.accommodation-intro-block {
  width: min(100%, 900px);
  margin-bottom: 30px;
}
.accommodation-intro-block .rich-text {
  font-size: 1rem;
  line-height: 1.72;
  text-align: left;
}

/* Never crop the top of heads in image ribbons. If cropping is needed, it happens lower down. */
.photo-ribbon-events img,
.photo-ribbon-services img {
  object-fit: cover;
  object-position: 50% 0% !important;
}
.hero-media img {
  object-position: 50% 24%;
}

/* Slightly larger transport labels for clearer click targets. */
.location-section .accordion-trigger {
  font-size: 1.16rem;
}
.location-section .accordion-trigger span:first-child {
  font-size: 1em;
  font-weight: 750;
}

@media (max-width: 820px) {
  .services-heading h2 { font-size: clamp(2.35rem, 9vw, 3.4rem); }
  .services-subtitle { font-size: clamp(1.25rem, 5vw, 1.55rem); }
  .accommodation-intro-block .rich-text { font-size: .98rem; line-height: 1.68; }
  .location-section .accordion-trigger { font-size: 1.08rem; }
}

@media (max-width: 520px) {
  .services-heading h2 { font-size: clamp(2.15rem, 11vw, 2.8rem); }
  .services-subtitle { font-size: 1.22rem; }
  .location-section .accordion-trigger { font-size: 1.04rem; }
}


/* ============================================================
   V8 — accommodation box, Location cleanup and image alignment
   ============================================================ */

/* Location: no kicker above the main title. */
.location-section .section-heading { margin-bottom: 34px; }

/* Only the portrait-in-cave image needs a lower crop so Rinpoche is centered. */
.photo-ribbon-events .gallery-pos-grotto {
  object-position: 50% 28% !important;
}

/* Location image: fill the frame cleanly, keep the head safe and crop lower if needed. */
.location-photo {
  width: min(100%, 900px);
  aspect-ratio: 16 / 9;
  margin: 44px auto 0;
  background: transparent;
}
.location-photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: 50% 0%;
}

/* Services: Where to stay is now a full-width service card like Meals / Transport. */
.accommodation-main-card {
  width: 100%;
  margin-top: 0;
  padding: clamp(28px, 4vw, 44px);
}
.accommodation-main-title {
  margin: 0 0 18px;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
}
.accommodation-main-card .accommodation-intro-block {
  width: min(100%, 980px);
  margin-bottom: 30px;
}
.accommodation-main-card .accommodation-groups {
  margin-top: 0;
}

@media (max-width: 820px) {
  .location-photo {
    aspect-ratio: 4 / 3;
    margin-top: 34px;
  }
  .location-photo img { object-position: 50% 0%; }
  .accommodation-main-card { padding: 26px 22px; }
}

@media (max-width: 520px) {
  .location-photo {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }
  .accommodation-main-title { font-size: 1.72rem; }
}


/* ===============================================
   V9 — EVENT ACTIONS
   =============================================== */
.event-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.event-actions .button {
  min-width: 150px;
  justify-content: center;
}
.event-donate-link {
  font-weight: 800;
}
@media (max-width: 560px) {
  .event-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .event-actions .button {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 360px) {
  .event-actions {
    grid-template-columns: 1fr;
  }
}
.contact-info-button {
  margin-top: auto;
  align-self: flex-start;
  min-width: 120px;
}
.contact-email-fallback {
  margin-top: 16px;
  font-size: 0.98rem;
}

.contact-email-fallback {
  margin-top: 16px;
  font-size: 0.98rem;
}

.contact-email-fallback a {
  color: inherit;
  text-decoration: underline;
  word-break: break-word;
}

/* V20 additions: 18 September event, mobility note, WhatsApp. */
.community-event-static{margin:0}
.community-event-static + .events-stack .event-card:first-child{border-top:1px solid var(--line)}
.community-event-media{width:100%;margin:0 0 18px;border:1px solid var(--line);border-radius:16px;overflow:hidden;background:#eee9e2;box-shadow:0 10px 28px rgba(49,26,21,.045)}
.community-event-media img{display:block;width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;object-position:50% 50%}
.community-event-main .event-qualification{margin:-12px 0 24px;color:var(--muted);font-size:.94rem;font-style:italic}
.event-meta-subvalue{display:block;margin-top:6px;color:#4a433e;font-family:inherit;font-size:.86rem;line-height:1.45;font-weight:600}
.community-event-quote{margin:30px 0 0;padding:24px 0 0;border-top:1px solid var(--line);color:var(--blue)}
.community-event-quote p{margin:0;font-family:var(--serif);font-size:clamp(1.18rem,2vw,1.5rem);line-height:1.45;font-style:italic}
.community-event-quote cite{display:block;margin-top:9px;color:var(--muted);font-size:.86rem;font-style:normal}
.event-patronage{display:flex;align-items:center;gap:16px;margin-top:28px;padding-top:22px;border-top:1px solid var(--line)}
.event-patronage img{display:block;width:58px!important;height:auto!important;max-width:58px!important;flex:0 0 58px}
.event-patronage p{margin:0;color:#4a433e;font-size:.9rem;line-height:1.5}
.event-poster-download{margin:18px 0 0}.event-poster-download a{color:var(--burgundy);font-weight:750;text-underline-offset:4px}
html[lang="en"] .it-only{display:none!important}
.mobility-note{margin:28px 0 34px;padding:20px 22px;border-left:3px solid var(--gold);background:rgba(255,253,248,.76)}
.mobility-note h3{margin:0 0 8px;color:var(--burgundy);font-size:1.1rem}.mobility-note p{margin:0;color:#4a433e;line-height:1.6}.mobility-note a{color:var(--burgundy);font-weight:700;overflow-wrap:anywhere}
.contact-whatsapp{display:inline-flex!important;align-items:center;gap:9px;margin-top:14px;color:var(--burgundy);font-weight:750;text-decoration:none;width:auto!important;height:auto!important}
.contact-whatsapp:hover{text-decoration:underline;text-underline-offset:4px}
.contact-whatsapp-icon{display:block!important;width:24px!important;height:24px!important;max-width:24px!important;max-height:24px!important;flex:0 0 24px!important;color:#25D366}
@media(max-width:820px){.community-event-media{border-radius:15px}.event-patronage{align-items:flex-start}.event-patronage img{width:52px!important;max-width:52px!important;flex-basis:52px}.mobility-note{padding:18px}}
@media(max-width:520px){.community-event-media{border-radius:13px}.community-event-main .event-qualification{margin-top:-9px}.community-event-quote{margin-top:24px;padding-top:20px}.event-patronage{gap:13px}.contact-whatsapp{font-size:.94rem}}
