/* Femme Laser Clinic — site footer
   Loaded on every page by the mu-plugin, independently of the per-page
   design stylesheet, so everything here is scoped under .femme-footer and
   sets its own colours and fonts rather than inheriting the theme's.
   Palette is the brand ink/pink, shifted for legibility on a dark ground. */

.femme-footer {
  --ff-bg:     #1d1319;
  --ff-panel:  #281b23;
  --ff-line:   rgba(255, 255, 255, .10);
  --ff-text:   rgba(255, 255, 255, .74);
  --ff-dim:    rgba(255, 255, 255, .54);
  --ff-white:  #fff;
  --ff-accent: #ff8ac0;   /* lighter than the logo pink: AA on this ground */
  --ff-pink:   #ec107b;

  background: var(--ff-bg);
  color: var(--ff-text);
  font-family: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  /* printed at wp_footer, which may land inside a themed wrapper: force it
     back to the full viewport width so the dark band never sits in a gutter */
  width: 100%;
  max-width: 100%;
  clear: both;
  margin: 0;
  padding: 0;
}
.femme-footer *, .femme-footer *::before, .femme-footer *::after { box-sizing: border-box; }
.femme-footer p, .femme-footer ul, .femme-footer li, .femme-footer h2, .femme-footer h3 { margin: 0; padding: 0; }
.femme-footer ul { list-style: none; }
.femme-footer img { max-width: 100%; height: auto; }

/* hairline of brand colour along the top edge */
.femme-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--ff-pink), #ff8ac0 45%, #d9a441);
}

.ff-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- booking band ---------------------------------------------------- */
.ff-cta {
  background: var(--ff-panel);
  border: 1px solid var(--ff-line);
  border-radius: 18px;
  padding: 30px 34px;
  margin: 56px 0 52px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
}
.ff-cta-copy { flex: 1 1 340px; }
.ff-cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 27px; font-weight: 600; line-height: 1.2; color: var(--ff-white);
}
.ff-cta p { color: var(--ff-dim); font-size: 15px; margin-top: 6px; max-width: 52ch; }
.ff-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.ff-btn {
  display: inline-block; text-decoration: none; white-space: nowrap;
  font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: 999px;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.ff-btn--solid { background: var(--ff-pink); color: #fff; border: 1.5px solid var(--ff-pink); }
.ff-btn--solid:hover { background: #ff3b96; border-color: #ff3b96; transform: translateY(-2px); color: #fff; }
.ff-btn--ghost { background: transparent; color: var(--ff-white); border: 1.5px solid rgba(255, 255, 255, .28); }
.ff-btn--ghost:hover { border-color: var(--ff-accent); color: var(--ff-accent); transform: translateY(-2px); }

/* --- main columns ----------------------------------------------------- */
.ff-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.35fr 1fr;
  gap: 44px 40px;
  padding-bottom: 48px;
}
.ff-col h3 {
  font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ff-white); margin-bottom: 16px;
}
.ff-col li { margin-bottom: 9px; }
.ff-col a { color: var(--ff-text); text-decoration: none; transition: color .18s ease; }
.ff-col a:hover, .ff-col a:focus-visible { color: var(--ff-accent); text-decoration: underline; text-underline-offset: 3px; }

/* clinics run two-up so twelve entries do not make one tall ladder */
.ff-clinics ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 22px; }
.ff-clinics li { margin-bottom: 0; }

/* --- brand column ----------------------------------------------------- */
.ff-logo { display: inline-block; line-height: 0; margin-bottom: 18px; }
.ff-logo img { width: 190px; }
.ff-tagline { color: var(--ff-dim); max-width: 34ch; margin-bottom: 22px; }

.ff-contact li { margin-bottom: 10px; display: flex; gap: 10px; align-items: baseline; }
.ff-contact .k { color: var(--ff-dim); font-size: 13.5px; min-width: 74px; flex: 0 0 auto; }
.ff-contact a { color: var(--ff-white); text-decoration: none; font-weight: 700; }
.ff-contact a:hover { color: var(--ff-accent); text-decoration: underline; text-underline-offset: 3px; }

.ff-hours { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--ff-line); }
.ff-hours .k { display: block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ff-white); margin-bottom: 6px; }
.ff-hours p { font-size: 14.5px; color: var(--ff-text); }
.ff-hours .note { font-size: 13.5px; color: var(--ff-dim); margin-top: 4px; }

/* --- socials ---------------------------------------------------------- */
.ff-social { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.ff-social a {
  display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 auto;
  background: #fff; border-radius: 999px; overflow: hidden;
  border: 1.5px solid transparent; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.ff-social a img { display: block; width: 20px !important; height: 20px !important; max-width: 20px; margin: 0; }
.ff-social a:hover { transform: translateY(-2px); border-color: var(--ff-accent); box-shadow: 0 6px 16px rgba(236, 16, 123, .35); }
.ff-social a:focus-visible { outline: 2px solid var(--ff-accent); outline-offset: 3px; }

/* --- bottom bar -------------------------------------------------------- */
.ff-bottom {
  border-top: 1px solid var(--ff-line);
  padding: 22px 0 30px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px 26px; flex-wrap: wrap;
  font-size: 14px; color: var(--ff-dim);
}
.ff-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.ff-legal a { color: var(--ff-dim); text-decoration: none; }
.ff-legal a:hover { color: var(--ff-accent); text-decoration: underline; text-underline-offset: 3px; }

/* --- responsive --------------------------------------------------------- */
@media (max-width: 1040px) {
  .ff-main { grid-template-columns: 1fr 1fr; gap: 38px 32px; }
  .ff-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .ff-inner { padding: 0 18px; }
  .ff-main { grid-template-columns: 1fr; gap: 32px; }
  .ff-cta { margin: 40px 0 40px; padding: 26px 22px; }
  .ff-cta h2 { font-size: 23px; }
  .ff-cta-actions { width: 100%; }
  .ff-btn { flex: 1 1 auto; text-align: center; }
  .ff-bottom { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .femme-footer *, .femme-footer *::before, .femme-footer *::after { transition: none !important; }
}

/* The theme's own footer is replaced by this one. display:none also takes it
   out of the accessibility tree, so there is only one contentinfo landmark. */
#colophon.site-footer { display: none !important; }
