:root {
  --ink: #2b2135;
  --ink-soft: #574a66;
  --ink-faint: #8a7a9c;
  --purple: #4b2878;
  --purple-hover: #5d3494;
  --purple-accent: #6d3fa3;
  --purple-deep: #2f1f47;
  --purple-pale: #f0e8f9;
  --purple-pale-2: #e5d9f2;
  --lilac: #c9b3e8;
  --lilac-soft: #cdc0dd;
  --cream: #faf6f0;
  --white: #fff;
  --card: #f6f1ea;
  --border: rgba(75, 40, 120, .14);
  --border-soft: rgba(75, 40, 120, .1);
  --red: #a33;
  --red-bg: #fbeaea;
  --serif: 'Cormorant Garamond', serif;
  --sans: Karla, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
::selection { background: var(--purple-pale-2); }

@keyframes gf-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes gf-dim { from { opacity: 0; } to { opacity: 1; } }
.gf-fade-in { animation: gf-fade .4s ease; }

.gf-app { min-height: 100vh; display: flex; flex-direction: column; }
.gf-wrap { max-width: 1100px; margin: 0 auto; padding-left: 22px; padding-right: 22px; }
.gf-wrap--narrow { max-width: 900px; }
.gf-wrap--prose { max-width: 700px; }
.gf-wrap--hero { max-width: 760px; }
.gf-wrap--tight { max-width: 680px; }
.gf-wrap--form { max-width: 1000px; }

.gf-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--purple-accent);
}

/* ---------- Header / Nav ---------- */
.gf-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 240, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}
.gf-header-row {
  max-width: 1100px; margin: 0 auto; padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.gf-logo { cursor: pointer; background: none; border: none; padding: 0; text-decoration: none; display: flex; align-items: baseline; gap: 10px; }
.gf-logo-name { font-family: var(--serif); font-size: 26px; font-weight: 700; letter-spacing: .01em; color: var(--ink); }
.gf-logo-tag { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--purple-accent); }

.gf-nav-desktop { display: flex; align-items: center; gap: 24px; }
.gf-nav-link {
  cursor: pointer; background: none; border: none; text-decoration: none;
  font-family: var(--sans); font-size: 15px; padding: 4px 1px; border-bottom: 2px solid transparent;
}
.gf-nav-link.is-active { border-bottom-color: var(--purple-accent); }

.gf-menu-btn {
  cursor: pointer; background: none; border: 1px solid rgba(75, 40, 120, .25); border-radius: 8px;
  padding: 8px 12px; font-family: var(--sans); font-size: 14px; font-weight: 700; color: var(--purple);
  display: none; align-items: center; gap: 8px;
}
.gf-nav-mobile {
  display: flex; flex-direction: column; border-top: 1px solid var(--border-soft); background: var(--cream); padding: 8px 0 14px;
}
.gf-nav-mobile .gf-nav-link { font-size: 17px; padding: 12px 24px; }

@media (max-width: 760px) {
  .gf-nav-desktop { display: none; }
  .gf-menu-btn { display: flex; }
  .gf-logo { flex-direction: column; align-items: flex-start; gap: 2px; }
  .gf-logo-name { font-size: 23px; white-space: nowrap; }
}

.gf-main { flex: 1; }

/* ---------- Buttons ---------- */
.gf-btn {
  cursor: pointer; text-decoration: none; display: inline-block; text-align: center;
  font-family: var(--sans); font-weight: 700; font-size: 15px; padding: 13px 22px; border-radius: 999px; border: none;
}
.gf-btn--solid { background: var(--purple); color: var(--white); }
.gf-btn--solid:hover { background: var(--purple-hover); }
.gf-btn--outline { color: var(--purple); background: transparent; border: 1.5px solid rgba(75, 40, 120, .35); }
.gf-btn--outline:hover { background: rgba(75, 40, 120, .06); }
.gf-btn--white { background: var(--white); color: var(--purple-deep); }
.gf-btn--white:hover { background: var(--purple-pale-2); }
.gf-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.gf-hero {
  padding: 56px 22px 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center;
}
.gf-hero-copy { display: flex; flex-direction: column; gap: 20px; }
.gf-h1 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 6vw, 60px); line-height: 1.08; color: var(--ink); white-space: pre-wrap; }
.gf-lede { margin: 0; font-size: 17px; line-height: 1.65; color: var(--ink-soft); max-width: 46ch; white-space: pre-wrap; }
.gf-btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.gf-hero-photo { width: 100%; height: 420px; border-radius: 18px; object-fit: cover; box-shadow: 0 20px 50px -20px rgba(43, 33, 53, .35); background: var(--card); }

/* ---------- Section: crafts ---------- */
.gf-section-white { background: var(--white); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.gf-section-pad { padding: 52px 22px; }
.gf-h2 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 34px; color: var(--ink); }
.gf-crafts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 28px; }
.gf-craft-card { background: var(--card); border-radius: 14px; padding: 26px 24px; display: flex; flex-direction: column; gap: 10px; }
.gf-craft-title { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--ink); }
.gf-craft-text { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Story banner ---------- */
.gf-banner {
  margin: 48px auto 8px; background: var(--purple-deep); border-radius: 18px; padding: 40px 34px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: center;
}
.gf-banner-copy { display: flex; flex-direction: column; gap: 12px; }
.gf-banner-quote { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(22px, 3vw, 30px); line-height: 1.35; color: #f3edfa; white-space: pre-wrap; }
.gf-banner-cta { justify-self: end; }

/* ---------- Events preview / list ---------- */
.gf-row-between { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.gf-link-arrow { cursor: pointer; background: none; border: none; text-decoration: none; color: var(--purple); font-weight: 700; font-size: 15px; border-bottom: 2px solid rgba(75, 40, 120, .3); font-family: var(--sans); padding: 0; }
.gf-events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.gf-event-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 22px; display: flex; gap: 18px; align-items: flex-start; }
.gf-event-card--list { border-radius: 16px; padding: 24px; gap: 22px; flex-wrap: wrap; }
.gf-date-chip { flex: none; width: 58px; background: var(--purple-pale); border-radius: 10px; padding: 10px 0; text-align: center; }
.gf-date-chip--lg { width: 66px; border-radius: 12px; padding: 12px 0; }
.gf-date-month { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--purple-accent); }
.gf-date-day { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1.1; }
.gf-date-day--lg { font-size: 30px; }
.gf-date-year { font-size: 11px; font-weight: 600; color: var(--ink-faint); }
.gf-event-body { display: flex; flex-direction: column; gap: 5px; }
.gf-event-body--list { flex: 1 1 300px; gap: 7px; }
.gf-event-title { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); }
.gf-event-title--lg { font-size: 26px; }
.gf-event-location { font-size: 14px; font-weight: 600; color: var(--purple-accent); }
.gf-event-location--lg { font-size: 14.5px; font-weight: 700; }
.gf-event-desc { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.gf-empty { background: var(--white); border: 1.5px dashed rgba(75, 40, 120, .3); border-radius: 16px; padding: 48px 24px; text-align: center; color: var(--ink-soft); font-size: 16px; }
.gf-empty--sm { padding: 28px; font-size: 15px; color: var(--ink-faint); border-radius: 12px; }

/* ---------- Newsletter (home) ---------- */
.gf-newsletter { background: var(--purple-pale); border-top: 1px solid var(--border); }
.gf-newsletter-inner { padding: 52px 22px; text-align: center; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.gf-newsletter-heading { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 32px; color: var(--ink); white-space: pre-wrap; }
.gf-newsletter-sub { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); max-width: 48ch; white-space: pre-wrap; }
.gf-form-inline { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; width: 100%; margin-top: 6px; }
.gf-input {
  font-family: var(--sans); font-size: 15px; padding: 13px 16px; border-radius: 999px;
  border: 1.5px solid rgba(75, 40, 120, .3); background: var(--white); color: var(--ink);
}
.gf-input:focus { outline: 2px solid var(--purple-accent); outline-offset: 1px; }
.gf-input--pill { flex: 1 1 240px; max-width: 340px; }
.gf-thanks { background: var(--white); border-radius: 999px; padding: 13px 24px; font-weight: 700; color: var(--purple); font-size: 15px; }
.gf-error { background: var(--red-bg); color: var(--red); border-radius: 10px; padding: 10px 14px; font-size: 14px; font-weight: 600; }

/* ---------- Page shell ---------- */
.gf-page { padding: 56px 22px 72px; }
.gf-page-lede { margin: 0 0 36px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); max-width: 60ch; }
.gf-h1-page { margin: 10px 0 12px; font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 5vw, 48px); color: var(--ink); }
.gf-stack { display: flex; flex-direction: column; gap: 16px; }

/* ---------- Gallery ---------- */
.gf-gallery-grid { display: grid; gap: 18px; }
.gf-gallery-figure { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.gf-gallery-photo-btn { cursor: zoom-in; border-radius: 14px; border: none; background: none; padding: 0; display: block; width: 100%; }
.gf-gallery-photo-btn:hover { box-shadow: 0 10px 26px -10px rgba(43, 33, 53, .45); }
.gf-gallery-img { width: 100%; height: 230px; object-fit: cover; border-radius: 14px; background: var(--card); }
.gf-gallery-caption { font-size: 14px; color: var(--ink-soft); margin: 0; }
.gf-gallery-caption strong { color: var(--ink); }

.gf-lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(30, 20, 42, .82); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 4vh 4vw;
  cursor: zoom-out; animation: gf-dim .25s ease; border: none; width: 100%;
}
.gf-lightbox-img { width: min(92vw, 1000px); height: 78vh; object-fit: contain; pointer-events: none; border-radius: 16px; }
.gf-lightbox-caption-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; }
.gf-lightbox-caption { font-size: 15px; color: var(--purple-pale-2); }
.gf-lightbox-hint { font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--lilac-soft); border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; padding: 6px 14px; }

/* ---------- About ---------- */
.gf-about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; align-items: start; max-width: 1000px; }
.gf-about-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 90px; }
.gf-about-photo { width: 100%; height: 440px; object-fit: cover; border-radius: 18px; background: var(--card); }
.gf-photo-credit { margin-top: -12px; font-size: 12px; letter-spacing: .02em; color: var(--ink-faint); text-decoration: none; text-align: center; }
.gf-photo-credit:hover { color: var(--purple); text-decoration: underline; }
.gf-about-caption { background: var(--purple-pale); border-radius: 12px; padding: 16px 18px; font-size: 14px; line-height: 1.55; color: var(--ink-soft); white-space: pre-wrap; }
.gf-about-main { display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 760px) {
  /* Single-column layout on phones: the sidebar stacks above the text, so
     sticky would pin the photo+caption while the text scrolls behind them.
     This block must stay BELOW the .gf-about-side rule to override it. */
  .gf-about-side { position: static; }
  .gf-about-photo { height: 320px; }
}
.gf-body { margin: 0; font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); white-space: pre-wrap; }
.gf-inline-link { cursor: pointer; background: none; border: none; padding: 0; font: inherit; color: var(--purple); font-weight: 700; text-decoration: underline; }
.gf-pullquote { border-left: 3px solid var(--purple-accent); padding: 4px 0 4px 18px; margin-top: 6px; }
.gf-pullquote p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.5; color: var(--ink); white-space: pre-wrap; }

/* ---------- Why ---------- */
.gf-why-hero { background: var(--purple-deep); color: #f3edfa; }
.gf-why-hero-inner { padding: 64px 22px 56px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.gf-why-hero-title { margin: 0; font-family: var(--serif); font-weight: 600; font-size: clamp(36px, 6vw, 54px); line-height: 1.12; white-space: pre-wrap; }
.gf-why-hero-sub { margin: 0; font-size: 17px; line-height: 1.65; color: var(--lilac-soft); max-width: 52ch; white-space: pre-wrap; }
.gf-why-body { padding: 52px 22px 24px; display: flex; flex-direction: column; gap: 20px; }
.gf-why-body p { font-size: 17px; line-height: 1.75; white-space: pre-wrap; }
.gf-why-quote-box { background: var(--purple-pale); border-radius: 16px; padding: 28px; margin: 8px 0; }
.gf-why-quote-box p { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(21px, 3vw, 26px); line-height: 1.45; color: var(--purple-deep); white-space: pre-wrap; }
.gf-why-cta { padding: 8px 22px 72px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Contact ---------- */
.gf-contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.gf-contact-link { text-decoration: none; display: flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 600; font-size: 15.5px; }
.gf-contact-icon { flex: none; width: 38px; height: 38px; border-radius: 999px; background: var(--purple-pale); display: grid; place-items: center; color: var(--purple); font-size: 16px; }
.gf-contact-icon--text { font-size: 14px; font-weight: 800; }

.gf-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.gf-form { display: flex; flex-direction: column; gap: 14px; }
.gf-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--purple); }
.gf-field input, .gf-field textarea {
  font-family: var(--sans); font-size: 15px; padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid rgba(75, 40, 120, .25); background: var(--cream); color: var(--ink); resize: vertical;
}
.gf-field input:focus, .gf-field textarea:focus { outline: 2px solid var(--purple-accent); outline-offset: 1px; }

/* ---------- Admin: login / 2FA ---------- */
.gf-auth-card { max-width: 420px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; padding: 32px 28px; }
.gf-auth-head { text-align: center; display: flex; flex-direction: column; gap: 6px; }
.gf-auth-title { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 30px; color: var(--ink); }
.gf-auth-note { margin: 0; text-align: center; font-size: 12.5px; line-height: 1.5; color: var(--ink-faint); }
.gf-totp-icon { width: 52px; height: 52px; margin: 0 auto; border-radius: 999px; background: var(--purple-pale); display: grid; place-items: center; font-size: 24px; }
.gf-totp-input {
  font-family: ui-monospace, monospace; font-size: 28px; letter-spacing: .35em; text-align: center; width: 220px;
  padding: 12px 8px 12px 18px; border-radius: 12px; border: 1.5px solid rgba(75, 40, 120, .3); background: var(--cream); color: var(--ink);
}
.gf-back-link { cursor: pointer; background: none; border: none; font-size: 13.5px; font-weight: 700; color: var(--purple-accent); align-self: center; }

/* ---------- Admin dashboard ---------- */
.gf-dash { display: flex; flex-direction: column; gap: 26px; }
.gf-dash-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.gf-dash-h1 { margin: 6px 0 0; font-family: var(--serif); font-weight: 600; font-size: 34px; color: var(--ink); }
.gf-btn-outline-sm { cursor: pointer; white-space: nowrap; background: none; border: 1.5px solid rgba(75, 40, 120, .3); color: var(--purple); font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 999px; }
.gf-btn-outline-sm:hover { background: rgba(75, 40, 120, .06); }
.gf-form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.gf-section-title { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 24px; color: var(--ink); }
.gf-section-title--lg { font-size: 30px; }
.gf-note { margin: 4px 0 0; font-size: 12.5px; color: var(--ink-faint); }

.gf-admin-list-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.gf-admin-list-body { flex: 1 1 220px; display: flex; flex-direction: column; gap: 3px; }
.gf-admin-list-actions { display: flex; gap: 8px; }
.gf-chip-btn { cursor: pointer; background: var(--purple-pale); border: none; color: var(--purple); font-weight: 700; font-size: 13.5px; padding: 9px 16px; border-radius: 999px; }
.gf-chip-btn--danger { background: none; border: 1.5px solid rgba(163, 51, 51, .35); color: var(--red); }

.gf-gallery-admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.gf-gallery-admin-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.gf-gallery-admin-img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; background: var(--card); }
.gf-gallery-admin-name { font-size: 14.5px; color: var(--ink); }
.gf-gallery-admin-caption { font-size: 12.5px; color: var(--ink-faint); }
.gf-gallery-admin-actions { display: flex; gap: 8px; }
.gf-gallery-admin-actions .gf-chip-btn, .gf-gallery-admin-actions .gf-chip-btn--danger { flex: 1; text-align: center; padding: 8px 0; font-size: 13px; }
.gf-photo-preview { width: 120px; height: 120px; border-radius: 12px; object-fit: cover; background: var(--card); }

.gf-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.gf-tab {
  cursor: pointer; font-family: var(--sans); font-weight: 700; font-size: 13.5px; padding: 9px 18px; border-radius: 999px;
  border: 1.5px solid rgba(75, 40, 120, .3); background: transparent; color: var(--purple);
}
.gf-tab.is-active { background: var(--purple); color: var(--white); }

.gf-editor-toolbar { display: flex; flex-wrap: wrap; gap: 4px; padding: 8px; background: var(--purple-pale); border-bottom: 1px solid rgba(75, 40, 120, .18); }
.gf-tb-btn { cursor: pointer; height: 32px; padding: 0 10px; border-radius: 7px; border: none; background: var(--white); font-family: var(--sans); font-weight: 700; font-size: 13px; color: var(--ink); }
.gf-tb-btn--square { width: 32px; padding: 0; font-size: 14px; font-weight: 800; }
.gf-tb-sep { width: 1px; background: rgba(75, 40, 120, .2); margin: 4px 2px; }
.gf-editor-wrap { border: 1.5px solid rgba(75, 40, 120, .25); border-radius: 10px; overflow: hidden; }
.gf-editor-body {
  min-height: 160px; padding: 14px 16px; font-family: var(--sans); font-size: 15px; line-height: 1.6;
  color: var(--ink); background: var(--cream); outline: none;
}
.gf-editor-body:empty::before { content: attr(data-placeholder); color: #a698b8; }
.gf-editor-body img { max-width: 100%; border-radius: 8px; margin: 8px 0; }

.gf-sent-note { background: var(--purple-pale); border-radius: 12px; padding: 16px 18px; font-size: 14.5px; color: var(--purple); font-weight: 600; }
.gf-sub-row { background: var(--white); border: 1px solid rgba(75, 40, 120, .12); border-radius: 10px; padding: 10px 14px; font-size: 14px; color: var(--ink); }

/* ---------- Footer ---------- */
.gf-footer { background: var(--purple-deep); color: var(--lilac-soft); }
.gf-footer-inner { padding: 44px 22px 30px; display: flex; flex-direction: column; gap: 28px; }
.gf-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.gf-footer-col { display: flex; flex-direction: column; gap: 10px; }
.gf-footer-col--links { gap: 8px; }
.gf-footer-brand { font-family: var(--serif); font-size: 24px; font-weight: 700; color: #f3edfa; }
.gf-footer-desc { margin: 0; font-size: 14px; line-height: 1.6; max-width: 34ch; }
.gf-footer-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #9d86bd; }
.gf-footer-link { cursor: pointer; background: none; border: none; padding: 0; text-decoration: none; color: var(--lilac-soft); font-size: 14.5px; width: fit-content; font-family: var(--sans); text-align: left; }
.gf-footer-link:hover { color: var(--white); }
.gf-footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.gf-footer-copy { font-size: 13px; color: #9d86bd; }
.gf-footer-copy-col { display: flex; flex-direction: column; gap: 4px; }
.gf-footer-mail-link { color: #c9b3e8; text-decoration: underline; }
.gf-footer-mail-link:hover { color: var(--white); }
.gf-footer-admin-link { cursor: pointer; background: none; text-decoration: none; font-size: 13px; font-weight: 700; color: #9d86bd; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; padding: 7px 14px; font-family: var(--sans); }
.gf-footer-admin-link:hover { color: var(--white); border-color: rgba(255, 255, 255, .4); }
