/* ============================================================
 * The Art Club — North Bondi  ·  Front-page landing (v2)
 * Scoped under .achl so it never touches booking/account pages.
 * Design spec: New Requirements mockup (2026-07-02).
 * ============================================================ */

.achl {
  --achl-ink:    #24170f;   /* headings / brand            */
  --achl-body:   #3c2f25;   /* body copy                   */
  --achl-copper: #b78755;   /* accent · button · divider   */
  --achl-copper-dk: #a2734410;
  --achl-cream:  #f7f2ea;   /* intro background            */
  --achl-band:   #efe7db;   /* sticky banner background     */
  --achl-blush:  #f3e5e1;   /* team background             */
  --achl-serif:  "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --achl-sans:   "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --achl-wrap:   760px;
}

/* reset within the landing */
.achl *, .achl *::before, .achl *::after { box-sizing: border-box; }
.achl {
  margin: 0;
  font-family: var(--achl-serif);
  color: var(--achl-body);
  background: var(--achl-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.achl img { display: block; max-width: 100%; }
.achl a { color: inherit; text-decoration: none; }

.achl-wrap {
  width: 100%;
  max-width: var(--achl-wrap);
  margin: 0 auto;
  padding-inline: clamp(22px, 6vw, 40px);
}

/* ---------- Hero video ---------- */
.achl-hero {
  position: relative;
  width: 100%;
  height: clamp(340px, 64vh, 760px);
  overflow: hidden;
  background: #1c1712;
}
.achl-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
/* soft vignette + bottom fade into the banner */
.achl-hero__scrim {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 55%, rgba(20,14,9,.18) 100%),
    linear-gradient(180deg, rgba(20,14,9,.10) 0%, transparent 22%, transparent 78%, rgba(239,231,219,.55) 100%);
}

/* ---------- Sticky banner ---------- */
.achl-banner {
  position: sticky; top: 0; z-index: 40;
  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);
}
.achl-banner__inner {
  max-width: 1120px; margin: 0 auto;
  padding: 14px clamp(20px, 5vw, 44px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.achl-brand { display: flex; flex-direction: column; line-height: 1; }
.achl-brand__name {
  font-family: var(--achl-serif);
  font-weight: 600;
  color: var(--achl-ink);
  font-size: clamp(26px, 5.4vw, 40px);
  letter-spacing: .5px;
}
.achl-brand__loc {
  margin-top: 6px;
  font-family: var(--achl-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .30em;
  font-size: clamp(9px, 2vw, 12px);
  color: var(--achl-copper);
}
.achl-banner__actions { display: flex; align-items: center; gap: clamp(12px, 3vw, 22px); }
.achl-login {
  font-family: var(--achl-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--achl-ink) !important;
  opacity: .7;
  transition: opacity .2s ease;
  white-space: nowrap;
}
.achl-login:hover { opacity: 1; }

.achl-book {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--achl-serif);
  font-weight: 600;
  font-size: clamp(16px, 3.4vw, 20px);
  color: #fff !important;
  background: var(--achl-copper);
  padding: .62em 1.35em;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(183,135,85,.34);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.achl-book:hover {
  background: #a9784a;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(183,135,85,.42);
}
.achl-book:active { transform: translateY(0); }

/* ---------- Divider (asterisk) ---------- */
.achl-divider {
  display: flex; align-items: center; gap: 20px;
  margin: 30px auto;
  max-width: 460px;
}
.achl-divider__line { flex: 1; height: 1px; background: rgba(183,135,85,.55); }
.achl-divider__star { flex: 0 0 auto; color: var(--achl-copper); display: inline-flex; }
.achl-divider__star svg { width: 22px; height: 22px; display: block; }
.achl-divider--left { margin: 16px 0 22px; justify-content: flex-start; max-width: 220px; }
.achl-divider--left .achl-divider__line { max-width: 120px; }

/* ---------- Intro ---------- */
.achl-intro {
  background: var(--achl-cream);
  padding: clamp(52px, 9vw, 96px) 0 clamp(48px, 8vw, 84px);
  text-align: center;
}
.achl-intro__title {
  font-family: var(--achl-serif);
  font-weight: 600;
  color: var(--achl-ink);
  font-size: clamp(40px, 10vw, 76px);
  line-height: 1.03;
  letter-spacing: .5px;
  margin: 0;
}
.achl-intro__copy {
  font-size: clamp(18px, 4.6vw, 22px);
  line-height: 1.62;
  color: var(--achl-body);
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.achl-intro__copy p { margin: 0 0 1.15em; }
.achl-intro__copy p:last-child { margin-bottom: 0; }

/* ---------- Meet our team ---------- */
.achl-team {
  background: var(--achl-blush);
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 100px);
}
.achl-team__title {
  font-family: var(--achl-serif);
  font-weight: 600;
  color: var(--achl-ink);
  text-align: center;
  font-size: clamp(34px, 8vw, 58px);
  margin: 0 0 clamp(28px, 5vw, 48px);
}
.achl-team__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 48px);
  align-items: center;
}
.achl-team__photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(41,26,16,.18);
  background: #17565c;
}
.achl-team__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform .5s ease;
}
.achl-team__photo:hover img { transform: scale(1.03); }
.achl-team__bio h3 {
  font-family: var(--achl-serif);
  font-weight: 600;
  color: var(--achl-ink);
  font-size: clamp(30px, 6vw, 46px);
  margin: 0;
}
.achl-team__bio p {
  font-size: clamp(17px, 4.4vw, 21px);
  line-height: 1.6;
  color: var(--achl-body);
  margin: 0;
}

/* ---------- Slim footer ---------- */
.achl-foot {
  background: var(--achl-ink);
  color: #efe4d6;
  padding: clamp(30px, 6vw, 46px) 0;
}
.achl-foot__inner {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
.achl-foot__brand {
  font-family: var(--achl-serif);
  font-size: clamp(22px, 5vw, 30px);
  color: #fff;
  letter-spacing: .5px;
}
.achl-foot__meta {
  font-family: var(--achl-sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(239,228,214,.72);
}
.achl-foot .achl-book { margin-top: 6px; }

/* ---------- Reveal on scroll ---------- */
.achl-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.achl-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .achl-reveal { opacity: 1; transform: none; transition: none; }
  .achl-team__photo img, .achl-book { transition: none; }
}

/* ---------- Banner "Schedule" nav link (same subtle style as Log in) ---------- */
.achl-navlink {
  font-family: var(--achl-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--achl-ink) !important;
  opacity: .72;
  white-space: nowrap;
  transition: opacity .2s ease;
  text-decoration: none !important;
}
.achl-navlink:hover { opacity: 1; }
@media (max-width: 480px) { .achl-navlink { display: none; } }

/* ---------- Classic sections restored into the v2 homepage ---------- */
.acv2-home-section { scroll-margin-top: 84px; }
#schedule { scroll-margin-top: 84px; }
.acv2-home-cta { margin-top: 30px; display: flex; justify-content: center; }
.acv2-home-cta--left { justify-content: flex-start; margin-top: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  .achl-team__grid { grid-template-columns: 1fr; }
  .achl-team__bio { text-align: center; }
  .achl-divider--left { justify-content: center; margin-inline: auto; max-width: 200px; }
  .achl-brand__name { font-size: 24px; }
  .achl-banner__inner { padding: 11px 18px; }
}
@media (max-width: 380px) {
  .achl-login { display: none; }  /* keep the booking CTA breathing room on tiny screens */
}
