/* ============================================================
 * The Art Club — North Bondi  ·  Site-wide redesign layer (v2)
 * Loaded on top of site.css for every non-home page when the v2
 * design is active (?acpreview=1 or option acnb_design_v2=1).
 * Body carries .acv2 so these rules win over site.css and the
 * dynamic inline styles without editing either. Style only.
 * ============================================================ */

.acv2 {
  --v2-copper: #b78755;
  --v2-copper-dk: #a9784a;
  --v2-ink: #24170f;
  --v2-cream: #f7f2ea;
  --v2-band: #efe7db;
  --v2-serif: "Cormorant Garamond", Georgia, serif;
}

/* ---------------------------------------------------------------
 * 1. Minimal banner header (replaces the old nav on inner pages)
 * --------------------------------------------------------------- */
.acv2-banner {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239, 231, 219, .94);
  -webkit-backdrop-filter: saturate(120%) blur(8px);
  backdrop-filter: saturate(120%) blur(8px);
  border-bottom: 1px solid rgba(36, 23, 15, .10);
  box-shadow: 0 6px 24px rgba(41, 26, 16, .06);
  width: 100%;
}
.acv2-banner__inner {
  max-width: 1180px; margin: 0 auto;
  padding: 13px clamp(20px, 5vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.acv2-brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.acv2-brand__name {
  font-family: var(--v2-serif); font-weight: 600;
  color: var(--v2-ink) !important;
  font-size: clamp(24px, 4.6vw, 34px); letter-spacing: .5px;
}
.acv2-brand__loc {
  margin-top: 5px; font-family: "Manrope", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .30em;
  font-size: clamp(9px, 2vw, 11px); color: var(--v2-copper) !important;
}
.acv2-banner__actions { display: flex; align-items: center; gap: clamp(12px, 3vw, 22px); }
.acv2-login {
  font-family: "Manrope", sans-serif; font-weight: 600; font-size: 14px;
  color: var(--v2-ink) !important; opacity: .72; white-space: nowrap;
  transition: opacity .2s ease; text-decoration: none !important;
}
.acv2-login:hover { opacity: 1; }
.acv2-book {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--v2-serif); font-weight: 600;
  font-size: clamp(15px, 3.2vw, 19px);
  color: #fff !important; -webkit-text-fill-color: #fff !important;
  background: var(--v2-copper); padding: .55em 1.3em; border-radius: 999px;
  white-space: nowrap; text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(183, 135, 85, .34);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.acv2-book:hover { background: var(--v2-copper-dk); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(183, 135, 85, .42); }
@media (max-width: 380px) { .acv2-login { display: none; } }

/* ---------------------------------------------------------------
 * 2. Primary buttons -> copper (beats dynamic inline !important)
 * --------------------------------------------------------------- */
.acv2 .ac-button,
.acv2 .ac-summary__button,
.acv2 .site-nav__cta,
.acv2 button:not(.site-header__toggle):not(.acv2-book):not(.acv2-loc-toggle__btn),
.acv2 input[type="submit"],
.acv2 .acnb-rollcall__btn {
  background: var(--v2-copper) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 12px 30px rgba(183, 135, 85, .30) !important;
}
.acv2 .ac-button:hover,
.acv2 .ac-summary__button:hover,
.acv2 button:not(.site-header__toggle):not(.acv2-book):not(.acv2-loc-toggle__btn):hover,
.acv2 input[type="submit"]:hover {
  background: var(--v2-copper-dk) !important;
  transform: translateY(-2px);
}

/* Schedule studio toggle (North Bondi / Double Bay) */
.acv2 .acv2-loc-toggle {
  display: inline-flex; gap: 4px; margin: 0 0 24px;
  padding: 4px; border-radius: 999px;
  background: rgba(36, 23, 15, .06);
  border: 1px solid rgba(183, 135, 85, .22);
}
.acv2 .acv2-loc-toggle__btn {
  appearance: none; -webkit-appearance: none; border: 0; cursor: pointer;
  font-family: "Manrope", sans-serif; font-weight: 600; font-size: 14px;
  padding: 9px 22px; border-radius: 999px;
  background: transparent !important;
  color: var(--v2-ink) !important; -webkit-text-fill-color: var(--v2-ink) !important;
  box-shadow: none !important; text-shadow: none !important;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.acv2 .acv2-loc-toggle__btn.is-active {
  background: var(--v2-copper) !important;
  color: #fff !important; -webkit-text-fill-color: #fff !important;
  box-shadow: 0 6px 16px rgba(183, 135, 85, .30) !important;
}
.acv2 .acv2-avail[hidden] { display: none !important; }

/* "Change day / time" disclosure styled as a (secondary) button */
.acv2 details > summary.acv2-change-btn {
  display: inline-flex; align-items: center; justify-content: center;
  list-style: none; cursor: pointer;
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 15px;
  color: var(--v2-ink) !important; -webkit-text-fill-color: var(--v2-ink) !important;
  background: transparent !important;
  border: 1.5px solid rgba(183, 135, 85, .55) !important;
  border-radius: 999px; padding: 12px 24px; margin-bottom: 10px;
  transition: background .18s ease, border-color .18s ease;
}
.acv2 details > summary.acv2-change-btn::-webkit-details-marker { display: none; }
.acv2 details > summary.acv2-change-btn::marker { content: ""; }
.acv2 details[open] > summary.acv2-change-btn,
.acv2 details > summary.acv2-change-btn:hover {
  background: rgba(183, 135, 85, .12) !important;
  border-color: var(--v2-copper) !important;
}
.acv2 .ac-button .ac-button__label,
.acv2 .ac-summary__button .ac-button__label,
.acv2 .site-nav__cta .ac-button__label {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
/* Secondary / ghost buttons: outlined copper on light surfaces */
.acv2 .ac-button--secondary,
.acv2 .ac-btn--ghost {
  background: transparent !important;
  color: var(--v2-ink) !important;
  -webkit-text-fill-color: var(--v2-ink) !important;
  border: 1.5px solid rgba(183, 135, 85, .55) !important;
  box-shadow: none !important;
}
.acv2 .ac-button--secondary .ac-button__label { color: var(--v2-ink) !important; -webkit-text-fill-color: var(--v2-ink) !important; text-shadow: none !important; }
.acv2 .ac-button--secondary:hover,
.acv2 .ac-btn--ghost:hover { background: rgba(183, 135, 85, .10) !important; }

/* ---------------------------------------------------------------
 * 3. Accents: copper eyebrows + copper section dividers
 * --------------------------------------------------------------- */
.acv2 .ac-section__eyebrow,
.acv2 .ac-hero__eyebrow {
  color: var(--v2-copper) !important;
  font-weight: 700;
}
.acv2 .ac-section__intro { position: relative; }

/* ---------------------------------------------------------------
 * 4. Form fields: warmer, rounder, copper focus ring
 * --------------------------------------------------------------- */
.acv2 .ac-field input,
.acv2 .ac-field select,
.acv2 .ac-field textarea,
.acv2 .login input[type="text"],
.acv2 .login input[type="password"],
.acv2 .login input[type="email"] {
  border: 1px solid rgba(36, 23, 15, .18);
  border-radius: 14px;
  background: #fffdf9;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.acv2 .ac-field input:focus,
.acv2 .ac-field select:focus,
.acv2 .ac-field textarea:focus,
.acv2 .login input:focus {
  outline: none;
  border-color: var(--v2-copper);
  box-shadow: 0 0 0 3px rgba(183, 135, 85, .18);
}
.acv2 .ac-field label { color: rgba(36, 23, 15, .82); }

/* Selected plan / radio cards: stronger copper affordance */
.acv2 .ac-radio-card input:checked + span,
.acv2 .ac-plan-card input:checked + .ac-plan-card__body {
  border-color: var(--v2-copper) !important;
  box-shadow: 0 16px 40px rgba(183, 135, 85, .22) !important;
  background: #fffaf3 !important;
}
.acv2 .ac-plan-card__price { color: var(--v2-ink); }

/* ---------------------------------------------------------------
 * 5. Cards & surfaces: a touch softer/warmer to match the mockup
 * --------------------------------------------------------------- */
.acv2 .ac-form-card,
.acv2 .ac-account-card,
.acv2 .ac-info-card,
.acv2 .ac-highlight-card,
.acv2 .ac-schedule-panel {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(183, 135, 85, .18);
  box-shadow: 0 18px 50px rgba(41, 26, 16, .10);
}
.acv2 .ac-alert--notice { background: rgba(183, 135, 85, .12); color: #6a4a2a; }

/* Location chooser "Book here" already copper inline; harmonise the card */
.acv2 .ac-location-card { border-color: rgba(183, 135, 85, .30) !important; transition: transform .18s ease, box-shadow .18s ease; }
.acv2 .ac-location-card:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(41, 26, 16, .14); }

/* Roll-call teacher banner + present pill */
.acv2 .ac-teacher-banner { border-color: rgba(183, 135, 85, .28); }

/* ---------------------------------------------------------------
 * 6. Footer: keep the dark band, warm the link hover to copper
 * --------------------------------------------------------------- */
.acv2 .site-footer a:hover { color: var(--v2-copper) !important; }

/* ---------------------------------------------------------------
 * 7. Reduced motion
 * --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .acv2 .ac-button, .acv2 .acv2-book, .acv2 .ac-location-card,
  .acv2 .ac-field input, .acv2 .ac-field select, .acv2 .ac-field textarea { transition: none !important; }
}
