/* ==========================================================================
   ANJALI ATELIER — Boho design system
   Converted from the "Anjali Sanghvi v5 Boho" prototype. Every inline style in
   the mockup lives here as a real rule. Breakpoints that the prototype drove
   from JavaScript (_responsive) are plain media queries here instead.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Palette — lifted verbatim from the prototype */
  --aa-paper:       #FFFDF8;
  --aa-cream:       #FBF6EA;
  --aa-sand:        #F5EDDC;
  --aa-sand-deep:   #EFE4CC;
  --aa-ink:         #241C12;
  --aa-brown:       #4A3B22;
  --aa-red:         #B3261E;
  --aa-red-deep:    #8F1D17;
  --aa-gold:        #C9A227;
  --aa-gold-light:  #E8C87E;
  --aa-gold-bright: #E8B93B;
  --aa-gold-dark:   #A8801A;
  --aa-gold-deeper: #7A6210;

  /* Ink at opacity — used constantly for secondary text */
  --aa-ink-80: rgba(36, 28, 18, .8);
  --aa-ink-78: rgba(36, 28, 18, .78);
  --aa-ink-75: rgba(36, 28, 18, .75);
  --aa-ink-70: rgba(36, 28, 18, .7);
  --aa-ink-22: rgba(36, 28, 18, .22);
  --aa-ink-20: rgba(36, 28, 18, .2);
  --aa-ink-14: rgba(36, 28, 18, .14);
  --aa-ink-08: rgba(36, 28, 18, .08);

  /* Paper at opacity — for the dark sections */
  --aa-paper-72: rgba(255, 253, 248, .72);
  --aa-paper-66: rgba(255, 253, 248, .66);
  --aa-paper-62: rgba(255, 253, 248, .62);
  --aa-paper-52: rgba(255, 253, 248, .52);
  --aa-paper-18: rgba(255, 253, 248, .18);
  --aa-paper-12: rgba(255, 253, 248, .12);

  /* Type */
  --aa-display: 'Gilda Display', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --aa-body: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Motion */
  --aa-ease: cubic-bezier(.16, 1, .3, 1);
  --aa-spring: cubic-bezier(.34, 1.4, .64, 1);

  /* Geometry */
  --aa-radius-section: 64px;
  --aa-radius-card: 40px;
  --aa-radius-sm: 32px;
  --aa-arch: 999px 999px 40px 40px;
  --aa-shell: 1420px;
  --aa-gut: clamp(18px, 4vw, 52px);
  --aa-pad-y: clamp(62px, 8.5vw, 124px);
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Fixed nav is ~78px tall; keep anchor targets clear of it. */
[id] { scroll-margin-top: 96px; }

body.aa-body {
  margin: 0;
  background: var(--aa-paper);
  color: var(--aa-ink);
  font-family: var(--aa-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.aa-body a { color: var(--aa-red-deep); text-decoration: none; }
.aa-body a:hover { color: var(--aa-red); }

::selection { background: var(--aa-gold-light); color: var(--aa-ink); }

:focus-visible {
  outline: 2px solid var(--aa-red);
  outline-offset: 4px;
  border-radius: 999px;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

.aa-body h1, .aa-body h2, .aa-body h3, .aa-body h4 {
  font-family: var(--aa-display);
  font-weight: 400;
  letter-spacing: -.01em;
}

button { font-family: inherit; }

/* Accessibility helpers ---------------------------------------------------- */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.screen-reader-text:focus {
  position: fixed !important;
  top: 14px; left: 14px;
  z-index: 300;
  width: auto; height: auto;
  clip: auto; clip-path: none;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--aa-ink);
  color: var(--aa-paper);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   3. KEYFRAMES
   -------------------------------------------------------------------------- */
@keyframes aa-marq   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes aa-sun    { 0%, 100% { transform: translate(-3%, -4%) scale(1); }    50% { transform: translate(6%, 5%) scale(1.16); } }
@keyframes aa-sun2   { 0%, 100% { transform: translate(5%, 4%) scale(1.12); }   50% { transform: translate(-6%, -6%) scale(.94); } }
@keyframes aa-kb     { from { transform: scale(1); } to { transform: scale(1.07); } }
@keyframes aa-bob    { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes aa-cue    { 0% { transform: translateY(-6px); opacity: 0; } 40% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@keyframes aa-pulse  { 0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, .5); } 50% { box-shadow: 0 0 0 9px rgba(201, 162, 39, 0); } }
@keyframes aa-spin   { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes aa-failsafe { to { opacity: 0; visibility: hidden; } }
@keyframes aa-spinner  { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   4. SHELL / SHARED PRIMITIVES
   -------------------------------------------------------------------------- */
.aa-shell { position: relative; width: 100%; background: var(--aa-paper); overflow-x: clip; }

/* Paper grain overlay */
.aa-grain {
  position: fixed; inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNjAiIGhlaWdodD0iMTYwIj48ZmlsdGVyIGlkPSJuIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iMC44IiBudW1PY3RhdmVzPSIzIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjE2MCIgaGVpZ2h0PSIxNjAiIGZpbHRlcj0idXJsKCNuKSIvPjwvc3ZnPg==");
}

.aa-inner { max-width: var(--aa-shell); margin: 0 auto; }
.aa-inner--narrow { max-width: 1160px; }
.aa-inner--tight  { max-width: 1080px; }
.aa-inner--prose  { max-width: 940px; }

.aa-section { padding: var(--aa-pad-y) var(--aa-gut); }
.aa-section--paper { background: var(--aa-paper); }
.aa-section--cream { background: var(--aa-cream); }
.aa-section--sand  { background: var(--aa-sand);  border-radius: var(--aa-radius-section); }
.aa-section--ink   { background: var(--aa-ink);   color: var(--aa-paper); }

/* Eyebrow / kicker label. text-indent compensates for trailing letter-spacing. */
.aa-kicker {
  display: block;
  font-size: 9.5px;
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  color: var(--aa-red-deep);
  margin-bottom: 14px;
}
.aa-kicker--gold { color: var(--aa-gold-light); }

.aa-h2 {
  margin: 0;
  font-size: clamp(32px, 5.4vw, 76px);
  line-height: 1.08;
}
.aa-h2--sm { font-size: clamp(28px, 4.4vw, 62px); line-height: 1.1; }
.aa-h2 em, .aa-h2--sm em { font-style: italic; color: var(--aa-red); }
.aa-section--ink .aa-h2 em,
.aa-section--ink .aa-h2--sm em { color: var(--aa-gold-light); }

.aa-lede {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--aa-ink-75);
  text-wrap: pretty;
}

/* Sun-flare blobs behind the hero / method / book sections */
.aa-flare { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.aa-flare--a {
  width: 62vw; height: 62vw; left: -16vw; top: -20vw;
  background: radial-gradient(circle, rgba(201, 162, 39, .28), transparent 66%);
  animation: aa-sun 26s ease-in-out infinite;
}
.aa-flare--b {
  width: 48vw; height: 48vw; right: -14vw; bottom: -18vw;
  background: radial-gradient(circle, rgba(232, 185, 59, .3), transparent 66%);
  animation: aa-sun2 32s ease-in-out infinite;
}

/* Buttons ------------------------------------------------------------------ */
.aa-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  font-family: var(--aa-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}
.aa-btn__label { position: relative; z-index: 1; }

/* The sweep is a panel that wipes across on hover, driven by JS pointer events. */
.aa-btn__sweep {
  position: absolute; inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s var(--aa-ease);
  border-radius: 999px;
}

.aa-btn--primary {
  background: var(--aa-red);
  color: var(--aa-paper);
  box-shadow: 0 14px 34px -12px rgba(179, 38, 30, .6);
}
.aa-btn--primary .aa-btn__sweep { background: var(--aa-ink); }
.aa-btn--primary:hover { color: var(--aa-paper); }

.aa-btn--gold { background: var(--aa-gold-light); color: var(--aa-ink); min-height: 54px; padding: 0 32px; font-size: 10.5px; }
.aa-btn--gold .aa-btn__sweep { background: var(--aa-paper); }
.aa-btn--gold:hover { color: var(--aa-ink); }

.aa-btn--ghost {
  min-height: 56px;
  padding: 0 32px;
  border: 1px solid var(--aa-ink-22);
  background: transparent;
  color: var(--aa-ink);
  font-weight: 400;
  transition: border-color .4s ease, background .4s ease;
}
.aa-btn--ghost:hover { border-color: rgba(179, 38, 30, .55); background: rgba(245, 237, 220, .5); color: var(--aa-ink); }

.aa-btn--sm { min-height: 44px; padding: 0 24px; font-size: 10.5px; }

/* Reveal-on-scroll --------------------------------------------------------- */
/* Only hidden once JS confirms it can reveal them, so a no-JS visitor sees
   everything. .aa-js is added to <html> by an inline snippet in header.php. */
.aa-js [data-reveal]:not([data-seen]) { opacity: 0; transform: translateY(20px); }
[data-reveal] { transition: opacity 1s var(--aa-ease), transform 1.05s var(--aa-spring); }

/* --------------------------------------------------------------------------
   5. CUSTOM CURSOR
   -------------------------------------------------------------------------- */
.aa-cursor-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 150; pointer-events: none; display: none; }
.aa-cursor { position: fixed; top: 0; left: 0; z-index: 151; pointer-events: none; display: none; will-change: transform; }
.aa-cursor__ring {
  position: absolute; top: -22px; left: -22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(179, 38, 30, .6);
  transform: scale(.35);
  opacity: 0;
  transition: transform .4s var(--aa-spring), opacity .3s ease;
}
.aa-cursor__dot { position: absolute; top: -3px; left: -3px; width: 6px; height: 6px; border-radius: 50%; background: var(--aa-red); }
.aa-cursor__pen { position: absolute; top: -33px; left: 2px; transition: transform .4s var(--aa-spring); }
.aa-cursor.is-hovering .aa-cursor__ring { opacity: 1; transform: scale(1); }
.aa-cursor.is-hovering .aa-cursor__pen { transform: rotate(-14deg) scale(.78); }

/* --------------------------------------------------------------------------
   6. INTRO CURTAIN
   -------------------------------------------------------------------------- */
.aa-intro {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  animation: aa-failsafe .01s linear 6.5s forwards; /* never trap the page */
}
.aa-intro__curtain { position: absolute; inset: 0; width: 100%; height: 100%; }
.aa-intro__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px; padding: 24px;
}
.aa-intro__word {
  opacity: 0;
  font-family: var(--aa-display);
  font-size: clamp(23px, 4.4vw, 48px);
  letter-spacing: .3em;
  text-indent: .3em;
  color: var(--aa-ink);
  text-align: center;
}
.aa-intro__sub {
  opacity: 0;
  font-size: 9.5px;
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--aa-red-deep);
  text-align: center;
}

/* --------------------------------------------------------------------------
   7. NAV
   -------------------------------------------------------------------------- */
.aa-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 14px clamp(14px, 3vw, 34px);
  transition: padding .5s var(--aa-ease);
}
.aa-nav__pill {
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px;
  max-width: var(--aa-shell);
  margin: 0 auto;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0);
  border: 1px solid rgba(179, 38, 30, 0);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .5s ease, border-color .5s ease, box-shadow .5s ease;
}
.aa-nav.is-scrolled .aa-nav__pill {
  background: rgba(255, 253, 248, .92);
  border-color: rgba(179, 38, 30, .16);
  box-shadow: 0 14px 40px -18px rgba(36, 28, 18, .35);
}

.aa-brand { display: flex; align-items: center; gap: 12px; color: var(--aa-ink); }
.aa-brand:hover { color: var(--aa-ink); }
.aa-brand__text { display: flex; flex-direction: column; gap: 3px; }
.aa-brand__name {
  font-family: var(--aa-display);
  font-size: 16px;
  letter-spacing: .24em;
  text-indent: .24em;
  line-height: 1;
  white-space: nowrap;
}
.aa-brand__sub {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-indent: .32em;
  text-transform: uppercase;
  color: var(--aa-ink-70);
  white-space: nowrap;
}
.aa-brand__logo { display: block; width: auto; max-height: 40px; }

.aa-nav__links { display: none; gap: 26px; align-items: center; }
.aa-nav__link {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  color: var(--aa-ink-75);
  padding: 6px 0;
  transition: color .35s ease;
}
.aa-nav__link:hover,
.aa-nav__link.is-active { color: var(--aa-red); }

.aa-nav__actions { display: flex; align-items: center; gap: 8px; }

.aa-nav__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1px solid var(--aa-ink-20);
  background: transparent;
  color: var(--aa-ink);
  cursor: pointer;
  padding: 0;
}

.aa-nav__panel {
  max-width: var(--aa-shell);
  margin: 8px auto 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.98);
  transition: opacity .35s ease, transform .45s var(--aa-spring);
  background: rgba(255, 253, 248, .98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(179, 38, 30, .18);
  border-radius: var(--aa-radius-sm);
  display: flex;
  flex-direction: column;
  padding: 10px 24px 18px;
  box-shadow: 0 20px 50px -20px rgba(36, 28, 18, .25);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.aa-nav__panel.is-open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.aa-nav__panel a {
  display: flex; align-items: center;
  min-height: 54px;
  font-family: var(--aa-display);
  font-size: 24px;
  color: var(--aa-ink);
  border-bottom: 1px solid var(--aa-ink-08);
}
.aa-nav__panel a:last-child { border-bottom: 0; }

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */
.aa-hero {
  position: relative;
  padding: clamp(112px, 13vw, 158px) var(--aa-gut) clamp(40px, 5vw, 64px);
  overflow: hidden;
}
.aa-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.aa-hero__grid {
  position: relative; z-index: 1;
  max-width: var(--aa-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
}

.aa-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(245, 237, 220, .6);
  border: 1px solid rgba(179, 38, 30, .18);
  margin-bottom: clamp(20px, 2.6vw, 30px);
}
.aa-badge__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aa-gold); flex: 0 0 auto; }
.aa-badge__text {
  font-size: 9.5px;
  letter-spacing: .26em;
  text-indent: .26em;
  text-transform: uppercase;
  color: var(--aa-red-deep);
}

.aa-hero__title {
  margin: 0;
  font-size: clamp(42px, 8.2vw, 120px);
  line-height: 1.02;
}
.aa-hero__line { display: block; overflow: hidden; padding-bottom: .06em; }
.aa-hero__word { display: inline-block; }
.aa-js .aa-hero__word { transform: translateY(110%); }
.aa-hero__word em { font-style: italic; color: var(--aa-red); }

.aa-hero__sub {
  margin: clamp(22px, 2.8vw, 32px) 0 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.8;
  color: var(--aa-ink-80);
  text-wrap: pretty;
}

.aa-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(26px, 3.2vw, 38px); }

.aa-hero__proof { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }
.aa-stars { color: var(--aa-gold-dark); font-size: 13px; letter-spacing: .14em; }
.aa-hero__proof-text { font-size: 12.5px; color: var(--aa-ink-75); }

.aa-hero__media { position: relative; min-width: 0; min-height: 0; will-change: transform; }
.aa-hero__img { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 999px 999px 40px 40px; }
.aa-hero__frame {
  position: absolute; inset: -10px;
  border-radius: 999px 999px 48px 48px;
  border: 1px solid rgba(201, 162, 39, .4);
  pointer-events: none;
}
.aa-hero__slots {
  position: absolute;
  left: clamp(-14px, -1.5vw, 0px);
  bottom: 38px;
  display: flex; align-items: center; gap: 11px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--aa-paper);
  border: 1px solid rgba(201, 162, 39, .45);
  box-shadow: 0 16px 40px -16px rgba(36, 28, 18, .62);
  animation: aa-bob 7s ease-in-out infinite;
}
.aa-pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--aa-gold); animation: aa-pulse 2.6s ease-out infinite; flex: 0 0 auto; }
.aa-hero__slots-text {
  font-size: 10px;
  letter-spacing: .16em;
  text-indent: .16em;
  text-transform: uppercase;
  color: var(--aa-ink);
  white-space: nowrap;
}

.aa-scrollcue { display: flex; justify-content: center; margin-top: clamp(28px, 3.4vw, 40px); }
.aa-scrollcue svg { animation: aa-cue 2.4s ease-in-out infinite; }

/* --------------------------------------------------------------------------
   9. HOOK
   -------------------------------------------------------------------------- */
.aa-hook {
  position: relative;
  padding: clamp(58px, 8vw, 110px) var(--aa-gut);
  background: var(--aa-cream);
  border-radius: var(--aa-radius-section) var(--aa-radius-section) 0 0;
  margin-top: -24px;
}
.aa-hook__grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}
.aa-hook__figure { position: relative; }
.aa-hook__ring {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(280px, 70vw); height: min(280px, 70vw);
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, .5);
  animation: aa-spin 70s linear infinite;
}
.aa-hook__number {
  position: relative;
  font-family: var(--aa-display);
  font-size: clamp(74px, 14vw, 178px);
  line-height: .9;
  color: var(--aa-red);
  letter-spacing: -.03em;
  text-align: center;
}
.aa-hook__caption {
  position: relative;
  font-size: 9.5px;
  letter-spacing: .32em;
  text-indent: .32em;
  text-transform: uppercase;
  color: var(--aa-ink-75);
  margin-top: 14px;
  text-align: center;
}
.aa-hook__quote {
  margin: 0 0 18px;
  font-family: var(--aa-display);
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.4;
  color: var(--aa-ink);
  text-wrap: pretty;
}
.aa-hook__body { margin: 0; font-size: 15.5px; line-height: 1.85; color: var(--aa-ink-75); max-width: 48ch; text-wrap: pretty; }

/* --------------------------------------------------------------------------
   10. CREDENTIALS MARQUEE
   -------------------------------------------------------------------------- */
.aa-marquee { position: relative; padding: 16px 0; overflow: hidden; background: var(--aa-ink); }
.aa-marquee__track { display: flex; width: max-content; animation: aa-marq 46s linear infinite; }
.aa-marquee__group { display: flex; align-items: center; gap: 38px; padding-right: 38px; }
.aa-marquee__item {
  font-size: 9.5px;
  letter-spacing: .32em;
  text-indent: .32em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--aa-paper-72);
}
.aa-marquee__item--serif {
  font-family: var(--aa-display);
  font-size: 21px;
  letter-spacing: normal;
  text-indent: 0;
  text-transform: none;
  color: var(--aa-gold-light);
}
.aa-marquee__star { color: var(--aa-gold); font-size: 9px; }
.aa-marquee:hover .aa-marquee__track { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   11. RESULTS — before/after + gallery
   -------------------------------------------------------------------------- */
.aa-results__head {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(26px, 3.6vw, 44px);
}
.aa-results__note { margin: 0; max-width: 34ch; font-size: 14.5px; line-height: 1.8; color: var(--aa-ink-75); text-wrap: pretty; }

.aa-ba {
  --aa-ba: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  min-height: 300px;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  background: var(--aa-sand);
  border-radius: var(--aa-radius-card);
}
.aa-ba__layer { position: absolute; inset: 0; }
.aa-ba__clip { position: absolute; inset: 0; overflow: hidden; width: var(--aa-ba); }
/* The before image must not squash as the clip narrows — it keeps full width. */
.aa-ba__clip-inner { position: absolute; top: 0; left: 0; height: 100%; width: 100vw; max-width: var(--aa-shell); }

.aa-chip {
  position: absolute; top: 20px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: .24em;
  text-indent: .24em;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
.aa-chip--before { left: 20px; background: rgba(36, 28, 18, .82); color: var(--aa-paper); }
.aa-chip--after  { right: 20px; background: var(--aa-gold); color: var(--aa-ink); font-weight: 600; }

.aa-ba__handle { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--aa-paper); pointer-events: none; left: var(--aa-ba); z-index: 3; }
.aa-ba__knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--aa-paper);
  border: 1px solid rgba(201, 162, 39, .5);
  color: var(--aa-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(36, 28, 18, .66);
}
/* Keyboard access to the slider without hijacking the pointer UI. */
.aa-ba__range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0; padding: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}
.aa-ba__range:focus-visible { opacity: 0; outline: none; }
.aa-ba:focus-within { outline: 2px solid var(--aa-red); outline-offset: 4px; }

.aa-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.aa-gallery__item { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--aa-radius-sm); }
.aa-gallery__item--arch { border-radius: 999px 999px 32px 32px; }

/* --------------------------------------------------------------------------
   12. SERVICES
   -------------------------------------------------------------------------- */
.aa-services__head { margin-bottom: clamp(30px, 4vw, 52px); max-width: 680px; }
.aa-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.4vw, 54px);
  align-items: start;
}
.aa-services__stage {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 400px;
  overflow: hidden;
  background: var(--aa-sand-deep);
  border-radius: 999px 999px 40px 40px;
}
.aa-services__shot {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  animation: aa-kb 18s ease-in-out infinite alternate;
}
.aa-services__shot.is-active { opacity: 1; }
.aa-services__tag {
  position: absolute; left: 22px; bottom: 22px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(36, 28, 18, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--aa-gold-light);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  z-index: 2;
}

.aa-services__list { display: flex; flex-direction: column; }

.aa-svc {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: clamp(12px, 1.8vw, 24px);
  padding: clamp(18px, 2.2vw, 26px) 20px;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  border-radius: 28px;
  width: 100%;
  transition: padding-left .5s var(--aa-ease), background .4s ease;
}
.aa-svc:hover, .aa-svc:focus-visible { padding-left: 32px; background: rgba(255, 253, 248, .55); }
.aa-svc__num {
  font-family: var(--aa-display);
  font-size: 14px;
  color: var(--aa-brown);
  padding-top: 10px;
  min-width: 26px;
  transition: color .35s ease;
}
.aa-svc.is-active .aa-svc__num { color: var(--aa-red-deep); }
.aa-svc__main { flex: 1; min-width: 0; }
.aa-svc__titlerow { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.aa-svc__title { display: block; font-family: var(--aa-display); font-size: clamp(22px, 2.9vw, 38px); line-height: 1.1; }
.aa-svc__flag {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(179, 38, 30, .12);
  color: var(--aa-red-deep);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-indent: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.aa-svc__body { display: block; font-size: 14px; line-height: 1.75; color: var(--aa-ink-75); max-width: 52ch; text-wrap: pretty; }
.aa-svc__time { font-size: 10px; letter-spacing: .16em; color: var(--aa-brown); padding-top: 12px; white-space: nowrap; }
.aa-svc-rule { height: 1px; background: var(--aa-ink-14); margin: 0 20px; }

.aa-services__ask {
  align-self: flex-start;
  margin: 26px 0 0 20px;
  display: inline-flex; align-items: center;
  min-height: 44px;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-indent: .22em;
  text-transform: uppercase;
  color: var(--aa-red-deep);
  border-bottom: 1px solid rgba(148, 53, 20, .35);
}

/* --------------------------------------------------------------------------
   13. METHOD — sticky horizontal scroll
   -------------------------------------------------------------------------- */
.aa-method {
  position: relative;
  background: var(--aa-ink);
  border-radius: var(--aa-radius-section);
  margin-top: 24px;
  height: auto;
}
.aa-method__sticky {
  position: static;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--aa-radius-section);
  padding: clamp(56px, 9vw, 100px) 0;
}
.aa-method__flare {
  position: absolute;
  width: 60vw; height: 60vw; left: 8vw; top: -12vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .18), transparent 66%);
  filter: blur(60px);
  animation: aa-sun 30s ease-in-out infinite;
  pointer-events: none;
}
.aa-method__track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(18px, 2.6vw, 40px);
  padding: 0 clamp(18px, 5vw, 80px);
  will-change: transform;
  width: 100%;
}
.aa-method__intro { flex: 0 0 auto; width: 100%; }
.aa-method__intro h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.08;
  color: var(--aa-paper);
}
.aa-method__intro h2 em { font-style: italic; color: var(--aa-gold-light); }
.aa-method__intro p { margin: 0; font-size: 15px; line-height: 1.85; color: var(--aa-paper-62); max-width: 38ch; text-wrap: pretty; }
.aa-method__cue {
  display: flex; align-items: center; gap: 10px;
  margin-top: 26px;
  color: rgba(232, 200, 126, .7);
  font-size: 9.5px;
  letter-spacing: .26em;
  text-indent: .26em;
  text-transform: uppercase;
}
.aa-method__card {
  flex: 0 0 auto;
  width: 100%;
  height: auto;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(201, 162, 39, .28);
  background: rgba(255, 253, 248, .05);
  border-radius: 999px 999px 36px 36px;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 14px;
  margin: 0;
}
.aa-method__num { font-family: var(--aa-display); font-size: 56px; line-height: 1; color: var(--aa-gold-light); }
.aa-method__card h3 { margin: 0; font-size: 25px; color: var(--aa-paper); }
.aa-method__card p { margin: 0; font-size: 13.5px; line-height: 1.8; color: var(--aa-paper-62); }

/* align-items keeps the CTA hugging its label instead of stretching the column. */
.aa-method__outro { flex: 0 0 auto; width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 22px; }
.aa-method__outro p {
  margin: 0;
  font-family: var(--aa-display);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--aa-gold-light);
  text-wrap: pretty;
}
.aa-method__progress {
  position: absolute;
  left: clamp(18px, 5vw, 80px); right: clamp(18px, 5vw, 80px);
  bottom: 7vh;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .14);
  display: none;
}
.aa-method__bar { height: 2px; border-radius: 999px; background: var(--aa-gold-light); width: 0%; }

/* --------------------------------------------------------------------------
   14. CANDIDACY
   -------------------------------------------------------------------------- */
.aa-cand__head { margin-bottom: clamp(24px, 3.2vw, 40px); }
.aa-cand__head h2 { margin: 0 0 16px; font-size: clamp(30px, 5vw, 70px); line-height: 1.08; }
.aa-cand__head h2 em { font-style: italic; color: var(--aa-red); }
.aa-cand__head p { margin: 0; max-width: 52ch; font-size: 15px; line-height: 1.85; color: var(--aa-ink-75); text-wrap: pretty; }

.aa-cand__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.aa-cand__chip {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--aa-ink-20);
  background: transparent;
  color: var(--aa-ink);
  font-family: var(--aa-body);
  font-size: 12.5px;
  font-weight: 400;
  cursor: pointer;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s var(--aa-spring);
}
.aa-cand__chip.is-active {
  background: var(--aa-red);
  border-color: var(--aa-red);
  color: var(--aa-paper);
  font-weight: 500;
  transform: scale(1.04);
}

.aa-cand__panels {
  border: 1px solid rgba(179, 38, 30, .2);
  padding: clamp(26px, 3vw, 42px);
  background: var(--aa-cream);
  border-radius: var(--aa-radius-card);
  min-height: 210px;
}
.aa-cand__panel { display: none; }
.aa-cand__panel.is-active { display: block; }
.aa-cand__verdict {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-indent: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.aa-cand__verdict--yes     { background: rgba(179, 38, 30, .12); color: var(--aa-red-deep); }
.aa-cand__verdict--special { background: rgba(201, 162, 39, .18); color: var(--aa-gold-deeper); }
.aa-cand__verdict--wait    { background: rgba(36, 28, 18, .1); color: var(--aa-brown); }
.aa-cand__panel h3 { margin: 0 0 12px; font-size: clamp(21px, 2.8vw, 33px); line-height: 1.25; }
.aa-cand__panel p { margin: 0; font-size: 15px; line-height: 1.85; color: var(--aa-ink-78); max-width: 62ch; text-wrap: pretty; }

/* --------------------------------------------------------------------------
   15. STORY
   -------------------------------------------------------------------------- */
.aa-story {
  position: relative;
  padding: var(--aa-pad-y) var(--aa-gut);
  background: var(--aa-cream);
  border-radius: var(--aa-radius-section);
  overflow: hidden;
}
.aa-story__ghost {
  position: absolute;
  top: clamp(14px, 2.6vw, 32px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--aa-display);
  font-size: clamp(60px, 14vw, 228px);
  line-height: 1;
  color: rgba(36, 28, 18, .05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: .02em;
}
.aa-story__grid {
  position: relative;
  max-width: var(--aa-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
}
.aa-story__portrait { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--aa-arch); }
.aa-story__body h2 { margin: 0 0 24px; font-size: clamp(30px, 4.8vw, 68px); line-height: 1.08; }
.aa-story__body h2 em { font-style: italic; color: var(--aa-red); }
.aa-story__body p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.2vw, 16.5px);
  line-height: 1.9;
  color: var(--aa-ink-80);
  max-width: 56ch;
  text-wrap: pretty;
}
.aa-story__body p:last-of-type { margin-bottom: 32px; }

.aa-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  border-top: 1px solid var(--aa-ink-14);
  padding-top: 26px;
}
.aa-stat__value { font-family: var(--aa-display); font-size: 33px; line-height: 1; color: var(--aa-red); }
.aa-stat__label {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-indent: .18em;
  text-transform: uppercase;
  color: var(--aa-ink-70);
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   16. TESTIMONIALS
   -------------------------------------------------------------------------- */
.aa-testi__head {
  display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 3.2vw, 42px);
}
.aa-testi__score { display: flex; align-items: center; gap: 14px; }
.aa-testi__score-num { font-family: var(--aa-display); font-size: 42px; line-height: 1; color: var(--aa-red); }
.aa-testi__score-label {
  font-size: 9.5px;
  letter-spacing: .18em;
  text-indent: .18em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--aa-ink-70);
}
.aa-testi__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 14px; }
.aa-testi__card { margin: 0; padding: clamp(26px, 2.8vw, 36px); background: var(--aa-sand); border-radius: var(--aa-radius-card); }
.aa-testi__quote { margin: 0 0 20px; font-family: var(--aa-display); font-size: 20px; line-height: 1.6; text-wrap: pretty; }
.aa-testi__who { display: flex; align-items: center; gap: 12px; }
.aa-testi__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(179, 38, 30, .14);
  color: var(--aa-red-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--aa-display);
  font-size: 15px;
  flex: 0 0 auto;
  overflow: hidden;
}
.aa-testi__avatar img { width: 100%; height: 100%; object-fit: cover; }
.aa-testi__name {
  font-size: 10px;
  letter-spacing: .18em;
  text-indent: .18em;
  text-transform: uppercase;
  color: var(--aa-ink-70);
}

/* --------------------------------------------------------------------------
   17. ACADEMY
   -------------------------------------------------------------------------- */
.aa-academy__grid {
  max-width: var(--aa-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.aa-academy__body h2 { margin: 0 0 22px; font-size: clamp(28px, 4.4vw, 64px); line-height: 1.1; }
.aa-academy__body h2 em { font-style: italic; color: var(--aa-red); }
.aa-academy__body p { margin: 0 0 30px; font-size: 15.5px; line-height: 1.85; color: var(--aa-ink-78); max-width: 50ch; text-wrap: pretty; }
.aa-academy__body .aa-btn--ghost { min-height: 52px; padding: 0 30px; font-size: 10.5px; }
.aa-academy__body .aa-btn--ghost:hover { background: rgba(255, 253, 248, .6); }
.aa-academy__media { aspect-ratio: 4/3; overflow: hidden; border-radius: 999px 999px 36px 36px; }

/* --------------------------------------------------------------------------
   18. FAQ
   -------------------------------------------------------------------------- */
.aa-faq h2 { margin: 0 0 clamp(24px, 3.2vw, 42px); font-size: clamp(30px, 4.8vw, 68px); line-height: 1.08; }
/* The wrapper carries the card look; the trigger and panel sit inside it. */
.aa-faq__item {
  border: 1px solid var(--aa-ink-14);
  background: var(--aa-cream);
  margin-bottom: 10px;
  border-radius: var(--aa-radius-sm);
  overflow: hidden;
  transition: background .4s ease, border-color .4s ease;
}
.aa-faq__item:hover { border-color: rgba(179, 38, 30, .4); }
.aa-faq__item.is-open { background: var(--aa-sand); }

.aa-faq__trigger {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  padding: 22px 26px;
  cursor: pointer;
}
.aa-faq__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.aa-faq__q { font-size: clamp(15.5px, 1.9vw, 20px); }
.aa-faq__icon {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(179, 38, 30, .12);
  color: var(--aa-red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: transform .5s var(--aa-spring);
  transform: rotate(0deg);
}
.aa-faq__item.is-open .aa-faq__icon { transform: rotate(135deg); }
.aa-faq__panel {
  overflow: hidden;
  transition: max-height .55s var(--aa-ease);
  max-height: 0;
}
.aa-faq__answer {
  padding: 0 26px 24px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--aa-ink-78);
  max-width: 62ch;
}
/* Without JS the panels stay open so the answers remain readable + indexable. */
html:not(.aa-js) .aa-faq__panel { max-height: none; }

/* --------------------------------------------------------------------------
   19. BOOK
   -------------------------------------------------------------------------- */
.aa-book {
  position: relative;
  padding: clamp(62px, 8.5vw, 136px) var(--aa-gut);
  background: var(--aa-ink);
  border-radius: var(--aa-radius-section) var(--aa-radius-section) 0 0;
  overflow: hidden;
}
.aa-book__flare {
  position: absolute;
  width: 70vw; height: 70vw;
  left: 50%; top: 36%;
  margin-left: -35vw; margin-top: -35vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .2), transparent 64%);
  filter: blur(70px);
  animation: aa-sun 34s ease-in-out infinite;
  pointer-events: none;
}
.aa-book__inner { position: relative; max-width: var(--aa-shell); margin: 0 auto; }
.aa-book__head { text-align: center; max-width: 820px; margin: 0 auto clamp(24px, 3.2vw, 36px); }
.aa-book__head h2 {
  margin: 0 0 22px;
  font-size: clamp(36px, 6.6vw, 98px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--aa-paper);
}
.aa-book__head h2 em { font-style: italic; color: var(--aa-gold-light); }
.aa-book__head p { margin: 0 auto; max-width: 50ch; font-size: 16px; line-height: 1.85; color: var(--aa-paper-66); text-wrap: pretty; }

.aa-book__slots { display: flex; justify-content: center; margin-bottom: clamp(28px, 3.6vw, 44px); }
.aa-book__slots-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px;
  border: 1px solid rgba(201, 162, 39, .45);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-indent: .16em;
  text-transform: uppercase;
  color: var(--aa-gold-light);
}

.aa-book__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 14px; margin-bottom: 30px; }
.aa-book__card {
  display: flex; flex-direction: column; gap: 10px;
  padding: clamp(26px, 2.8vw, 38px);
  border: 1px solid var(--aa-paper-18);
  border-radius: var(--aa-radius-card);
  min-height: 44px;
}
.aa-book__card--gold { background: var(--aa-gold-light); border-color: var(--aa-gold-light); color: var(--aa-ink); }
.aa-book__card--gold:hover { color: var(--aa-ink); }
.aa-book__card-kicker {
  font-size: 9px;
  letter-spacing: .26em;
  text-indent: .26em;
  text-transform: uppercase;
  color: var(--aa-gold-light);
}
.aa-book__card--gold .aa-book__card-kicker { color: var(--aa-ink); }
.aa-book__card-title { font-family: var(--aa-display); font-size: 27px; line-height: 1.2; color: var(--aa-paper); }
.aa-book__card--gold .aa-book__card-title { color: var(--aa-ink); }
.aa-book__card-note { font-size: 13.5px; line-height: 1.65; color: var(--aa-paper-62); }
.aa-book__card--gold .aa-book__card-note { color: var(--aa-ink-75); }

.aa-book__studio { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.aa-book__studio-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--aa-radius-sm); }
.aa-book__studio-item--arch { border-radius: 999px 999px 32px 32px; }

/* Consultation form -------------------------------------------------------- */
.aa-form-wrap {
  max-width: 720px;
  margin: 0 auto clamp(30px, 4vw, 46px);
  padding: clamp(26px, 3.4vw, 44px);
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: var(--aa-radius-card);
  background: rgba(255, 253, 248, .04);
}
.aa-form__title { margin: 0 0 6px; font-family: var(--aa-display); font-size: clamp(22px, 2.6vw, 32px); color: var(--aa-paper); }
.aa-form__note { margin: 0 0 24px; font-size: 13.5px; line-height: 1.7; color: var(--aa-paper-62); }
.aa-form__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.aa-field { display: flex; flex-direction: column; gap: 7px; }
.aa-field--wide { grid-column: 1 / -1; }
.aa-field label {
  font-size: 9.5px;
  letter-spacing: .2em;
  text-indent: .2em;
  text-transform: uppercase;
  color: var(--aa-gold-light);
}
.aa-field input,
.aa-field select,
.aa-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid var(--aa-paper-18);
  background: rgba(255, 253, 248, .06);
  color: var(--aa-paper);
  font-family: var(--aa-body);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color .3s ease, background .3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.aa-field textarea { min-height: 104px; resize: vertical; }
.aa-field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E8C87E' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.aa-field select option { background: var(--aa-ink); color: var(--aa-paper); }
.aa-field input::placeholder,
.aa-field textarea::placeholder { color: rgba(255, 253, 248, .38); }
.aa-field input:focus,
.aa-field select:focus,
.aa-field textarea:focus { border-color: rgba(201, 162, 39, .7); background: rgba(255, 253, 248, .1); outline: none; }
.aa-field.has-error input,
.aa-field.has-error select,
.aa-field.has-error textarea { border-color: #E5736B; }

.aa-form__consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; }
.aa-form__consent input { width: 18px; height: 18px; min-height: 0; flex: 0 0 auto; margin-top: 3px; accent-color: var(--aa-gold); }
.aa-form__consent label { font-size: 12px; letter-spacing: normal; text-indent: 0; text-transform: none; color: var(--aa-paper-62); line-height: 1.6; }
.aa-form__consent a { color: var(--aa-gold-light); text-decoration: underline; }

.aa-form__error {
  grid-column: 1 / -1;
  display: none;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(229, 115, 107, .14);
  border: 1px solid rgba(229, 115, 107, .4);
  color: #F3B5B0;
  font-size: 13px;
}
.aa-form__error.is-visible { display: block; }

.aa-form__submit { grid-column: 1 / -1; margin-top: 6px; }
.aa-form__submit .aa-btn { width: 100%; }
.aa-btn.is-busy { pointer-events: none; opacity: .75; }
.aa-btn.is-busy .aa-btn__label::after {
  content: "";
  display: inline-block;
  width: 12px; height: 12px;
  margin-left: 10px;
  vertical-align: -1px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: aa-spinner .7s linear infinite;
}
.aa-form__legal { grid-column: 1 / -1; margin: 4px 0 0; font-size: 11.5px; line-height: 1.6; color: var(--aa-paper-52); }

.aa-form__success { display: none; text-align: center; padding: clamp(20px, 3vw, 34px) 0; }
.aa-form__success.is-visible { display: block; }
.aa-form__success h3 { margin: 0 0 12px; font-family: var(--aa-display); font-size: clamp(24px, 3vw, 36px); color: var(--aa-gold-light); }
.aa-form__success p { margin: 0 auto; max-width: 46ch; font-size: 15px; line-height: 1.8; color: var(--aa-paper-66); }

/* --------------------------------------------------------------------------
   20. FOOTER + MOBILE CTA
   -------------------------------------------------------------------------- */
.aa-footer {
  padding: clamp(46px, 6vw, 74px) var(--aa-gut) 116px;
  background: var(--aa-ink);
  color: var(--aa-paper);
}
.aa-footer__top { max-width: var(--aa-shell); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 38px; justify-content: space-between; }
.aa-footer__brand { max-width: 330px; }
.aa-footer__mark { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.aa-footer__name { font-family: var(--aa-display); font-size: 19px; letter-spacing: .22em; text-indent: .22em; }
.aa-footer__blurb { margin: 0; font-size: 13.5px; line-height: 1.85; color: var(--aa-paper-52); }
.aa-footer__navs { display: flex; flex-wrap: wrap; gap: 54px; }
.aa-footer__nav { display: flex; flex-direction: column; gap: 12px; }
.aa-footer__heading { font-size: 9px; letter-spacing: .28em; text-indent: .28em; text-transform: uppercase; color: var(--aa-gold-light); }
.aa-footer__nav a { font-size: 13.5px; color: var(--aa-paper-72); }
.aa-footer__nav a:hover { color: var(--aa-gold-light); }
.aa-footer__base {
  max-width: var(--aa-shell);
  margin: 46px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--aa-paper-12);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 11.5px;
  color: var(--aa-paper-62);
}
.aa-footer__base a { color: var(--aa-paper-62); text-decoration: underline; }
.aa-footer__base a:hover { color: var(--aa-gold-light); }

.aa-mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 85;
  display: flex;
  gap: 10px;
}
.aa-mobile-cta a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-indent: .18em;
  text-transform: uppercase;
}
.aa-mobile-cta__wa {
  border: 1px solid rgba(201, 162, 39, .5);
  background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--aa-ink);
}
.aa-mobile-cta__wa:hover { color: var(--aa-ink); }
.aa-mobile-cta__book {
  background: var(--aa-red);
  color: var(--aa-paper);
  box-shadow: 0 12px 30px -10px rgba(179, 38, 30, .7);
}
.aa-mobile-cta__book:hover { color: var(--aa-paper); }

/* --------------------------------------------------------------------------
   21. IMAGE SLOTS
   -------------------------------------------------------------------------- */
.aa-slot { position: relative; width: 100%; height: 100%; overflow: hidden; background: var(--aa-sand-deep); }
.aa-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Shown until a real photograph is attached in the Customizer. */
.aa-slot--empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(201, 162, 39, .07) 0 12px,
      rgba(201, 162, 39, 0) 12px 24px
    ),
    var(--aa-sand-deep);
  border: 1px dashed rgba(201, 162, 39, .55);
}
.aa-slot__icon { color: rgba(179, 38, 30, .45); }
.aa-slot__label {
  font-size: 10px;
  letter-spacing: .16em;
  text-indent: .16em;
  text-transform: uppercase;
  color: var(--aa-brown);
  max-width: 26ch;
  line-height: 1.7;
}
.aa-slot__hint { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(74, 59, 34, .55); }
/* On the dark sections the dashed placeholder needs to invert. */
.aa-section--ink .aa-slot--empty,
.aa-book .aa-slot--empty { background: rgba(255, 253, 248, .05); border-color: rgba(201, 162, 39, .45); }
.aa-section--ink .aa-slot__label,
.aa-book .aa-slot__label { color: var(--aa-gold-light); }
.aa-section--ink .aa-slot__hint,
.aa-book .aa-slot__hint { color: var(--aa-paper-52); }

/* --------------------------------------------------------------------------
   22. INNER PAGES — page.php / single.php / archive / search / 404 / Woo
   These keep the other 77 pages and the shop legible under the new theme.
   -------------------------------------------------------------------------- */
.aa-page { padding: clamp(120px, 14vw, 176px) var(--aa-gut) clamp(60px, 8vw, 110px); background: var(--aa-paper); }
.aa-page__header { max-width: 940px; margin: 0 auto clamp(28px, 4vw, 48px); }
.aa-page__title { margin: 0; font-size: clamp(32px, 5.4vw, 68px); line-height: 1.08; }
.aa-page__meta { margin-top: 14px; font-size: 10px; letter-spacing: .2em; text-indent: .2em; text-transform: uppercase; color: var(--aa-ink-70); }
.aa-page__thumb { max-width: 1160px; margin: 0 auto clamp(28px, 4vw, 48px); border-radius: var(--aa-radius-card); overflow: hidden; }

/* Elementor and WooCommerce lay out their own containers — give them the full
   width they expect rather than forcing them into the prose column. */
.aa-entry { max-width: 940px; margin: 0 auto; font-size: 16.5px; line-height: 1.85; color: var(--aa-ink-80); }
.aa-entry--wide { max-width: var(--aa-shell); }
.aa-entry > .elementor,
.aa-entry > .woocommerce { max-width: none; }

.aa-entry h1, .aa-entry h2, .aa-entry h3, .aa-entry h4 { color: var(--aa-ink); line-height: 1.2; margin: 1.6em 0 .55em; }
.aa-entry h1 { font-size: clamp(30px, 4vw, 48px); }
.aa-entry h2 { font-size: clamp(26px, 3.2vw, 38px); }
.aa-entry h3 { font-size: clamp(21px, 2.4vw, 28px); }
.aa-entry h4 { font-size: 19px; }
.aa-entry p { margin: 0 0 1.25em; }
.aa-entry ul, .aa-entry ol { margin: 0 0 1.25em; padding-left: 1.4em; }
.aa-entry li { margin-bottom: .5em; }
.aa-entry img { border-radius: 24px; }
.aa-entry blockquote {
  margin: 1.8em 0;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--aa-gold);
  font-family: var(--aa-display);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.55;
  color: var(--aa-ink);
}
.aa-entry code, .aa-entry kbd {
  background: var(--aa-sand);
  padding: .15em .45em;
  border-radius: 6px;
  font-size: .9em;
}
.aa-entry pre { background: var(--aa-ink); color: var(--aa-paper); padding: 22px; border-radius: 20px; overflow-x: auto; }
.aa-entry pre code { background: none; color: inherit; padding: 0; }
.aa-entry table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; }
.aa-entry th, .aa-entry td { padding: 12px 14px; border-bottom: 1px solid var(--aa-ink-14); text-align: left; }
.aa-entry th { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--aa-ink-70); }
.aa-entry hr { border: 0; border-top: 1px solid var(--aa-ink-14); margin: 2.4em 0; }
.aa-entry .alignleft  { float: left;  margin: 0 1.6em 1.2em 0; }
.aa-entry .alignright { float: right; margin: 0 0 1.2em 1.6em; }
.aa-entry .aligncenter { display: block; margin-inline: auto; }
.aa-entry .wp-caption { max-width: 100%; }
.aa-entry .wp-caption-text { font-size: 12.5px; color: var(--aa-ink-70); margin-top: 8px; text-align: center; }

.aa-cardgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; max-width: var(--aa-shell); margin: 0 auto; }
.aa-card {
  display: flex; flex-direction: column;
  background: var(--aa-cream);
  border: 1px solid var(--aa-ink-08);
  border-radius: var(--aa-radius-card);
  overflow: hidden;
  transition: transform .5s var(--aa-spring), border-color .4s ease;
}
.aa-card:hover { transform: translateY(-5px); border-color: rgba(179, 38, 30, .3); }
.aa-card__thumb { aspect-ratio: 3/2; overflow: hidden; }
.aa-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.aa-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.aa-card__title { margin: 0; font-family: var(--aa-display); font-size: 23px; line-height: 1.25; }
.aa-card__title a { color: var(--aa-ink); }
.aa-card__title a:hover { color: var(--aa-red); }
.aa-card__meta { font-size: 9.5px; letter-spacing: .2em; text-indent: .2em; text-transform: uppercase; color: var(--aa-ink-70); }
.aa-card__excerpt { margin: 0; font-size: 14.5px; line-height: 1.75; color: var(--aa-ink-75); }

.aa-pagination { max-width: var(--aa-shell); margin: clamp(36px, 5vw, 60px) auto 0; display: flex; justify-content: center; }
.aa-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; min-height: 46px;
  padding: 0 14px;
  margin: 0 4px;
  border-radius: 999px;
  border: 1px solid var(--aa-ink-14);
  color: var(--aa-ink);
  font-size: 13px;
}
.aa-pagination .page-numbers.current,
.aa-pagination .page-numbers:hover { background: var(--aa-red); border-color: var(--aa-red); color: var(--aa-paper); }

.aa-searchform { display: flex; gap: 10px; max-width: 520px; }
.aa-searchform input[type="search"] {
  flex: 1;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--aa-ink-20);
  background: var(--aa-paper);
  color: var(--aa-ink);
  font-family: var(--aa-body);
  font-size: 15px;
}
.aa-searchform input[type="search"]:focus { border-color: var(--aa-red); outline: none; }

.aa-404 { text-align: center; max-width: 620px; margin: 0 auto; }
.aa-404__code { font-family: var(--aa-display); font-size: clamp(88px, 20vw, 200px); line-height: .9; color: var(--aa-red); }
.aa-404 p { margin: 18px 0 32px; font-size: 16px; line-height: 1.8; color: var(--aa-ink-75); }

.aa-comments { max-width: 940px; margin: clamp(44px, 6vw, 72px) auto 0; padding-top: clamp(30px, 4vw, 48px); border-top: 1px solid var(--aa-ink-14); }
.aa-comments h2 { font-family: var(--aa-display); font-size: clamp(23px, 3vw, 32px); margin: 0 0 24px; }
.aa-comments .comment-list { list-style: none; margin: 0 0 40px; padding: 0; }
.aa-comments .comment-list ul.children { list-style: none; padding-left: 26px; }
.aa-comments .comment-body { padding: 20px 0; border-bottom: 1px solid var(--aa-ink-08); }
.aa-comments input[type="text"],
.aa-comments input[type="email"],
.aa-comments input[type="url"],
.aa-comments textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid var(--aa-ink-20);
  background: var(--aa-paper);
  font-family: var(--aa-body);
  font-size: 15px;
  margin-bottom: 14px;
}
.aa-comments .submit {
  min-height: 52px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: var(--aa-red);
  color: var(--aa-paper);
  font-family: var(--aa-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
}

/* WooCommerce — nudge Woo's own markup toward the palette without fighting it */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--aa-red) !important;
  color: var(--aa-paper) !important;
  border-radius: 999px !important;
  padding: 14px 28px !important;
  font-family: var(--aa-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--aa-ink) !important; color: var(--aa-paper) !important; }
.woocommerce ul.products li.product a img { border-radius: var(--aa-radius-sm); }
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info { border-top-color: var(--aa-gold); }
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before { color: var(--aa-gold); }
.woocommerce span.onsale { background: var(--aa-red); border-radius: 999px; }
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price { color: var(--aa-red-deep); }

/* WordPress admin bar keeps the fixed nav clear of itself. */
.admin-bar .aa-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .aa-nav { top: 46px; } }

/* --------------------------------------------------------------------------
   23. RESPONSIVE
   The prototype set these from JS (_responsive). Media queries do it natively,
   which means the layout is correct before a single byte of JS has run.
   -------------------------------------------------------------------------- */

/* Below 1060px: burger menu + fixed bottom CTA bar */
@media (max-width: 1059px) {
  .aa-nav__links { display: none !important; }
  /* The fixed bottom bar already carries Book, so the pill drops its duplicate
     — which is also what stops the burger being pushed off a 390px screen. */
  .aa-nav__actions .aa-btn { display: none; }
  /* Bottom CTA bar overlaps the footer, so buy back the space. */
  .aa-footer { padding-bottom: 116px; }
}
@media (min-width: 1060px) {
  .aa-nav__links { display: flex; }
  .aa-nav__toggle { display: none; }
  .aa-mobile-cta { display: none; }
  .aa-footer { padding-bottom: clamp(46px, 6vw, 74px); }
}

/* At 1000px the two-column sections split */
@media (min-width: 1000px) {
  .aa-hero__grid    { grid-template-columns: 1.15fr .85fr; }
  .aa-hook__grid    { grid-template-columns: .9fr 1.1fr; }
  .aa-services__grid { grid-template-columns: .8fr 1.2fr; }
  .aa-story__grid   { grid-template-columns: .85fr 1.15fr; }
  .aa-academy__grid { grid-template-columns: 1fr 1fr; }
  .aa-form__grid    { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 640px) {
  .aa-form__grid { grid-template-columns: 1fr 1fr; }
}

/* At 900px the Method section becomes a sticky horizontal scroll rig */
@media (min-width: 900px) {
  .aa-method { height: 340vh; }
  .aa-method__sticky { position: sticky; top: 0; height: 100vh; padding: 0; }
  .aa-method__track { flex-direction: row; align-items: center; width: auto; }
  .aa-method__intro { width: min(80vw, 400px); }
  .aa-method__card  { width: min(78vw, 330px); height: min(56vh, 400px); }
  .aa-method__outro { width: min(78vw, 320px); }
  .aa-method__progress { display: block; }
}

/* Phones */
@media (max-width: 640px) {
  :root { --aa-radius-section: 40px; --aa-radius-card: 28px; --aa-radius-sm: 24px; }

  /* The wordmark's wide tracking is what eats a narrow pill; tighten it and
     drop the subtitle so the brand and the burger always both fit. */
  .aa-nav { padding: 10px 12px; }
  .aa-nav__pill { gap: 10px; padding: 8px 8px 8px 14px; }
  .aa-brand { gap: 9px; min-width: 0; overflow: hidden; }
  .aa-brand__name { font-size: 12.5px; letter-spacing: .14em; text-indent: .14em; }
  .aa-brand__sub { display: none; }
  .aa-nav__panel { padding: 8px 18px 14px; }
  .aa-nav__panel a { min-height: 48px; font-size: 21px; }

  .aa-ba { aspect-ratio: 4/5; }
  .aa-gallery { grid-template-columns: repeat(2, 1fr); }
  .aa-story__ghost { display: none; }
  .aa-footer__navs { gap: 32px; }
  .aa-svc { padding-left: 12px; padding-right: 12px; }
  .aa-svc:hover, .aa-svc:focus-visible { padding-left: 18px; }
  .aa-svc-rule { margin: 0 12px; }
  .aa-services__ask { margin-left: 12px; }
  .aa-hero__slots { bottom: 16px; left: 8px; padding: 11px 16px; }
}

/* Pointer devices only — the custom cursor is meaningless on touch */
@media (hover: none), (pointer: coarse) {
  .aa-cursor, .aa-cursor-canvas { display: none !important; }
}

/* Print */
@media print {
  .aa-nav, .aa-mobile-cta, .aa-intro, .aa-cursor, .aa-cursor-canvas, .aa-grain, .aa-marquee { display: none !important; }
  .aa-shell { background: #fff; }
  body.aa-body { color: #000; }
}
