@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --ab-black: #08070b;
  --ab-charcoal: #141217;
  --ab-ink: #211d24;
  --ab-white: #fffaf7;
  --ab-muted: #c9c0c9;
  --ab-pink: #d6249f;
  --ab-blue: #2ea3f2;
  --ab-gold: #dca57d;
  --ab-gold-soft: #f3d1a4;
  --ab-line: rgba(255,255,255,.16);
}

body {
  background: var(--ab-black);
}

.ct-container-full, .site-main, .entry-content {
  padding-top: 0 !important;
}

.hero-section, .entry-header, .page-title {
  display: none !important;
}

.ab-page {
  background: var(--ab-black);
  color: var(--ab-white);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ab-page h1, .ab-page h2, .ab-page h3 {
  font-family: "Oswald", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
}

.ab-page h1 { font-size: clamp(44px, 8vw, 96px); max-width: 980px; }
.ab-page h2 { font-size: clamp(34px, 4vw, 58px); }
.ab-page h3 { font-size: 24px; }
.ab-page p { font-size: 18px; line-height: 1.7; margin: 0 0 18px; }

.ab-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.ab-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: 58% center;
  isolation: isolate;
}

.ab-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,7,11,.94) 0%, rgba(8,7,11,.70) 38%, rgba(8,7,11,.18) 100%),
    linear-gradient(0deg, rgba(8,7,11,.92) 0%, rgba(8,7,11,0) 42%);
  z-index: -1;
}

.ab-hero__content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 76px;
}

.ab-kicker {
  color: var(--ab-gold-soft);
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: .15em !important;
  margin-bottom: 16px !important;
  text-transform: uppercase;
}

.ab-lead {
  color: #f6edf5;
  font-size: clamp(20px, 2.1vw, 28px) !important;
  max-width: 720px;
}

.ab-actions, .ab-hero__facts, .ab-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ab-button {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.ab-button:hover { transform: translateY(-1px); }
.ab-button--primary { background: var(--ab-pink); color: white; }
.ab-button--ghost { border: 1px solid var(--ab-line); color: white; background: rgba(255,255,255,.06); }
.ab-button--dark { background: var(--ab-black); color: white; }

.ab-button.wp-block-button,
.ab-button--primary.wp-block-button,
.ab-button--ghost.wp-block-button,
.ab-button--dark.wp-block-button {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: inherit !important;
  min-height: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.ab-button.wp-block-button:hover {
  transform: none !important;
}

.ab-hero__facts {
  margin-top: 28px;
  max-width: 820px;
}

.ab-hero__facts span {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: white;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 800;
}

.ab-section {
  padding: clamp(70px, 8vw, 118px) 0;
}

.ab-section--light {
  background: #fffaf7;
  color: #1c171d;
}

.ab-section--dark {
  background: var(--ab-black);
  color: var(--ab-white);
}

.ab-section--gold {
  background: #dca57d;
  color: #1d140b;
}

.ab-section--history {
  background: #f4eee8;
  color: #1d140b;
}

.ab-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.ab-split--reverse {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.ab-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.ab-current-grid, .ab-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ab-current-card, .ab-package-grid article, .ab-note {
  border-radius: 8px;
  overflow: hidden;
  background: white;
  color: #201b22;
  box-shadow: 0 20px 60px rgba(8,7,11,.10);
}

.ab-current-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.ab-current-card h3, .ab-current-card p, .ab-current-card a {
  margin-left: 18px;
  margin-right: 18px;
}

.ab-current-card h3 { margin-top: 18px; }
.ab-current-card p { font-size: 15px; line-height: 1.55; }
.ab-current-card a { display: inline-block; margin-bottom: 20px; color: #a31978; font-weight: 900; }

.ab-package-grid article {
  background: var(--ab-charcoal);
  border: 1px solid var(--ab-line);
  color: white;
  padding: 26px;
  box-shadow: none;
}

.ab-package-grid span {
  color: var(--ab-gold-soft);
  font-weight: 900;
  display: inline-block;
  margin-bottom: 28px;
}

.ab-package-grid p, .ab-section--dark .ab-heading-row p {
  color: var(--ab-muted);
}

.ab-image-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 34px;
  align-items: center;
  margin-top: 42px;
  background: var(--ab-ink);
  border: 1px solid var(--ab-line);
  border-radius: 8px;
  overflow: hidden;
}

.ab-image-band img, .ab-wide-image {
  width: 100%;
  display: block;
}

.ab-image-band img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.ab-image-band div {
  padding: 30px;
}

.ab-disc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ab-disc-grid img, .ab-gallery img, .ab-portrait, .ab-wide-image {
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(8,7,11,.18);
}

.ab-disc-grid img {
  aspect-ratio: 1;
  width: 100%;
}

.ab-hit-list {
  columns: 2;
  font-weight: 900;
  padding-left: 20px;
}

.ab-wide-image {
  aspect-ratio: 16 / 6;
  margin-bottom: 18px;
}

.ab-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ab-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.ab-gallery--large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.ab-portrait {
  width: 100%;
  max-height: 720px;
}

.ab-cta {
  background:
    linear-gradient(90deg, rgba(8,7,11,.95), rgba(8,7,11,.80)),
    var(--ab-pink);
  color: white;
  text-align: center;
}

.ab-cta--tall {
  min-height: 72vh;
  display: flex;
  align-items: center;
}

.ab-cta .ab-wrap {
  max-width: 900px;
}

.ab-contact-grid {
  justify-content: center;
  margin-top: 26px;
}

.ab-contact-grid a {
  min-width: min(100%, 260px);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  text-decoration: none;
  font-weight: 900;
}

.ab-contact-grid span {
  display: block;
  color: var(--ab-gold-soft);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 4px;
}

.ab-subhero {
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
}

.ab-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,7,11,.92), rgba(8,7,11,.30));
}

.ab-subhero > div {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 56px;
}

.ab-subhero--light::before {
  background: linear-gradient(90deg, rgba(255,250,247,.95), rgba(255,250,247,.15));
}

.ab-subhero--light {
  color: #1d140b;
}

.ab-note {
  padding: 26px;
}

.ab-note li {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .ab-split, .ab-split--reverse, .ab-heading-row, .ab-image-band {
    grid-template-columns: 1fr;
  }

  .ab-current-grid, .ab-package-grid, .ab-gallery--large {
    grid-template-columns: 1fr;
  }

  .ab-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ab-hero {
    min-height: 820px;
    background-position: 62% center;
  }

  .ab-hero__shade {
    background: linear-gradient(0deg, rgba(8,7,11,.96) 0%, rgba(8,7,11,.72) 55%, rgba(8,7,11,.18) 100%);
  }

  .ab-hit-list {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .ab-wrap, .ab-hero__content, .ab-subhero > div {
    width: min(100% - 28px, 1120px);
  }

  .ab-page p {
    font-size: 16px;
  }

  .ab-actions .ab-button, .ab-contact-grid a {
    width: 100%;
  }

  .ab-gallery {
    grid-template-columns: 1fr;
  }
}

/* AB polish 2026-05-10 */
700&family=Montserrat:wght@600;700;800&display=swap');

#header.ct-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
}

.admin-bar #header.ct-header {
  top: 32px;
}

#header [data-row] {
  min-height: 86px;
  background: linear-gradient(180deg, rgba(8, 7, 11, .78) 0%, rgba(8, 7, 11, .42) 58%, rgba(8, 7, 11, 0) 100%) !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

#header .ct-container {
  min-height: 86px;
}

#header .site-branding .site-title-container,
#header .site-logo-container img {
  display: none !important;
}

#header .site-logo-container {
  width: 224px;
  min-height: 58px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

#header .site-logo-container::before {
  content: "Ankie";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  line-height: .82;
  color: #fffaf7;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .45);
}

#header .site-logo-container::after {
  content: "Bagger";
  margin-top: 5px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #f3d1a4;
}

#header .ct-menu-link {
  color: #fffaf7 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}

#header .ct-menu-link:hover,
#header .current-menu-item > .ct-menu-link {
  color: #f3d1a4 !important;
}

#header .ct-header-search,
#header .ct-header-trigger,
#header .ct-icon {
  color: #fffaf7 !important;
}

.ab-section--light h1,
.ab-section--light h2,
.ab-section--light h3,
.ab-note h3,
.ab-current-card h3,
.ab-form-section h1,
.ab-form-section h2,
.ab-form-section h3 {
  color: #1c171d !important;
}

.ab-section--dark h1,
.ab-section--dark h2,
.ab-section--dark h3,
.ab-hero h1,
.ab-cta h1,
.ab-cta h2,
.ab-cta h3,
.ab-subhero:not(.ab-subhero--light) h1,
.ab-subhero:not(.ab-subhero--light) h2,
.ab-subhero:not(.ab-subhero--light) h3 {
  color: #fffaf7 !important;
}

.ab-section--gold h1,
.ab-section--gold h2,
.ab-section--gold h3,
.ab-section--history h1,
.ab-section--history h2,
.ab-section--history h3,
.ab-subhero--light h1,
.ab-subhero--light h2,
.ab-subhero--light h3 {
  color: #1d140b !important;
}

.ab-section--light .ab-kicker,
.ab-section--history .ab-kicker,
.ab-form-section .ab-kicker {
  color: #a31978 !important;
}

.ab-section--gold .ab-kicker {
  color: #64164d !important;
}

.ab-current-card p,
.ab-note p,
.ab-form-section p {
  color: #403743 !important;
}

.ab-form-section {
  background: #fffaf7;
  color: #1c171d;
  text-align: left;
}

.ab-form-shell {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(8, 7, 11, .10);
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 28px 90px rgba(8, 7, 11, .14);
}

.ab-form-shell .wpforms-container-full {
  margin: 24px 0 0 !important;
}

.ab-form-shell .wpforms-field-label,
.ab-form-shell .wpforms-field-sublabel,
.ab-form-shell label {
  color: #1c171d !important;
  font-weight: 800 !important;
}

.ab-form-shell .wpforms-required-label {
  color: #a31978 !important;
}

.ab-form-shell input[type="text"],
.ab-form-shell input[type="email"],
.ab-form-shell input[type="tel"],
.ab-form-shell select,
.ab-form-shell textarea {
  min-height: 48px !important;
  border: 1px solid rgba(8, 7, 11, .18) !important;
  border-radius: 8px !important;
  background: #fffaf7 !important;
  color: #1c171d !important;
  box-shadow: none !important;
}

.ab-form-shell textarea {
  min-height: 150px !important;
}

.ab-form-shell input:focus,
.ab-form-shell select:focus,
.ab-form-shell textarea:focus {
  border-color: #d6249f !important;
  box-shadow: 0 0 0 3px rgba(214, 36, 159, .16) !important;
}

.ab-form-shell button[type="submit"],
.ab-form-shell .wpforms-submit {
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #d6249f !important;
  color: #ffffff !important;
  padding: 0 24px !important;
  font-weight: 900 !important;
  letter-spacing: .02em;
  text-transform: none !important;
}

.ab-form-shell button[type="submit"]:hover,
.ab-form-shell .wpforms-submit:hover {
  background: #b91f89 !important;
}

@media (max-width: 999px) {
  #header [data-row],
  #header .ct-container {
    min-height: 76px;
  }

  #header .site-logo-container {
    width: 178px;
    min-height: 50px;
  }

  #header .site-logo-container::before {
    font-size: 31px;
  }

  #header .site-logo-container::after {
    font-size: 11px;
  }
}
/* End AB polish 2026-05-10 */
/* AB real logo 2026-05-10 */
#header .site-logo-container::before,
#header .site-logo-container::after {
  content: none !important;
  display: none !important;
}

#header .site-logo-container {
  width: 244px !important;
  min-height: 86px !important;
  display: inline-flex !important;
  align-items: center !important;
}

#header .site-logo-container img.default-logo {
  display: block !important;
  width: 244px !important;
  height: auto !important;
  max-height: 96px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .48));
}

@media (max-width: 999px) {
  #header .site-logo-container {
    width: 184px !important;
    min-height: 74px !important;
  }

  #header .site-logo-container img.default-logo {
    width: 184px !important;
    max-height: 74px !important;
  }
}
/* End AB real logo 2026-05-10 */

/* AB footer 2026-05-11 */
#footer {
  margin: 0;
  background: #07060a;
}

#footer [data-block^="footer:"] {
  width: 100%;
}

.ab-site-footer {
  position: relative;
  background: #07060a;
  color: #fffaf7;
  border-top: 1px solid rgba(224, 177, 91, .36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.ab-site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(219, 55, 124, .78), rgba(224, 177, 91, .88), rgba(255, 255, 255, .12));
  pointer-events: none;
}

.ab-site-footer__inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ab-site-footer__copyright,
.ab-site-footer__credit {
  margin: 0;
  color: rgba(255, 250, 247, .86);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: .04em;
}

.ab-site-footer__credit {
  color: #e0b15b;
  text-align: right;
  font-weight: 700;
}

@media (max-width: 680px) {
  .ab-site-footer__inner {
    width: min(100% - 28px, 1120px);
    min-height: 0;
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ab-site-footer__credit {
    text-align: left;
  }
}
/* /AB footer 2026-05-11 */

/* AB motion effects 2026-05-11 */
#header.ct-header {
  position: fixed !important;
  top: 0;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 100;
  transform: none !important;
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.admin-bar #header.ct-header {
  top: 32px;
}

#header [data-row] {
  transition: background-color .28s ease, box-shadow .28s ease, border-color .28s ease;
}

body.ab-header-scrolled #header.ct-header {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: rgba(7, 6, 10, .80) !important;
  border-bottom: 1px solid rgba(224, 177, 91, .26);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

body.ab-header-scrolled #header [data-row] {
  background: linear-gradient(180deg, rgba(7, 6, 10, .88), rgba(7, 6, 10, .68)) !important;
}

.ab-hero {
  isolation: isolate;
  overflow: hidden;
}

.ab-hero::after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, rgba(219, 55, 124, .34), transparent 31%),
    radial-gradient(circle at 78% 18%, rgba(224, 177, 91, .28), transparent 27%),
    linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, .16) 44%, transparent 59%);
  mix-blend-mode: screen;
  opacity: .62;
  transform: translate3d(-4%, -1%, 0) rotate(-2deg);
  animation: ab-hero-light 9s ease-in-out infinite alternate;
}

.ab-hero__shade {
  z-index: 1;
}

.ab-hero__content {
  position: relative;
  z-index: 2;
}

@keyframes ab-hero-light {
  from { opacity: .48; transform: translate3d(-5%, -1%, 0) rotate(-2deg); }
  to { opacity: .82; transform: translate3d(5%, 2%, 0) rotate(2deg); }
}

.ab-effects-ready .ab-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .82s ease, transform .82s cubic-bezier(.2, .82, .2, 1);
  transition-delay: var(--ab-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.ab-effects-ready .ab-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ab-current-card,
.ab-package-grid article,
.ab-image-band,
.ab-disc-grid img,
.ab-gallery img,
.ab-wide-image {
  transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease, filter .38s ease;
}

.ab-current-card,
.ab-package-grid article,
.ab-disc-grid img,
.ab-gallery img,
.ab-wide-image {
  will-change: transform;
}

.ab-current-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 64px rgba(30, 7, 25, .22);
}

.ab-current-card img {
  transition: transform .55s ease, filter .55s ease;
}

.ab-current-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.05);
}

.ab-package-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 177, 91, .76);
  box-shadow: 0 26px 72px rgba(219, 55, 124, .24), inset 0 1px 0 rgba(255, 255, 255, .10);
}

.ab-package-grid article:hover span {
  color: #f3d1a4;
  text-shadow: 0 0 20px rgba(224, 177, 91, .72);
}

.ab-image-band:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 74px rgba(0, 0, 0, .26);
}

.ab-disc-grid img:hover {
  transform: translateY(-8px) rotate(-1.6deg) scale(1.035);
  box-shadow: 0 28px 70px rgba(94, 17, 72, .34);
  filter: saturate(1.14) contrast(1.06);
}

.ab-disc-grid img:nth-child(2):hover {
  transform: translateY(-8px) rotate(1.6deg) scale(1.035);
}

.ab-gallery img:hover,
.ab-wide-image:hover {
  transform: translateY(-5px) scale(1.024);
  box-shadow: 0 22px 58px rgba(30, 7, 25, .22);
  filter: saturate(1.12) contrast(1.05);
}

.ab-button,
.ab-form-shell .wpforms-submit {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.ab-button--primary:hover,
.ab-form-shell .wpforms-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(163, 25, 120, .30);
}

.ab-form-shell input:not([type="hidden"]):focus,
.ab-form-shell select:focus,
.ab-form-shell textarea:focus {
  border-color: #e0b15b !important;
  box-shadow: 0 0 0 3px rgba(224, 177, 91, .20), 0 12px 26px rgba(30, 7, 25, .08) !important;
  outline: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .ab-hero::after {
    animation: none !important;
  }

  #header.ct-header,
  #header [data-row],
  .ab-effects-ready .ab-reveal,
  .ab-current-card,
  .ab-package-grid article,
  .ab-image-band,
  .ab-disc-grid img,
  .ab-gallery img,
  .ab-wide-image,
  .ab-button,
  .ab-form-shell .wpforms-submit {
    transition: none !important;
  }

  .ab-effects-ready .ab-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* /AB motion effects 2026-05-11 */

/* AB button color fix 2026-05-11 */
.ab-page a.ab-button,
.ab-page a.ab-button:visited,
.ab-page a.ab-button:hover,
.ab-page a.ab-button:focus,
.ab-page a.ab-button:active,
.ab-page .ab-actions a.ab-button,
.ab-page .ab-actions a.ab-button:visited,
.ab-page .ab-actions a.ab-button:hover,
.ab-page .ab-actions a.ab-button:focus,
.ab-page .ab-actions a.ab-button:active {
  color: #fffaf7 !important;
  text-decoration: none !important;
}

.ab-page a.ab-button--primary:hover,
.ab-page a.ab-button--primary:focus,
.ab-page a.ab-button--primary:active {
  background: #b91f89 !important;
  color: #fffaf7 !important;
}

.ab-page a.ab-button--ghost:hover,
.ab-page a.ab-button--ghost:focus,
.ab-page a.ab-button--ghost:active {
  background: rgba(255, 255, 255, .13) !important;
  border-color: rgba(224, 177, 91, .58) !important;
  color: #fffaf7 !important;
}

.ab-page a.ab-button--dark:hover,
.ab-page a.ab-button--dark:focus,
.ab-page a.ab-button--dark:active {
  background: #1d141f !important;
  color: #fffaf7 !important;
}

.ab-form-shell button[type="submit"],
.ab-form-shell button[type="submit"]:hover,
.ab-form-shell button[type="submit"]:focus,
.ab-form-shell button[type="submit"]:active,
.ab-form-shell .wpforms-submit,
.ab-form-shell .wpforms-submit:hover,
.ab-form-shell .wpforms-submit:focus,
.ab-form-shell .wpforms-submit:active {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
/* /AB button color fix 2026-05-11 */


/* AB dark stage palette 2026-05-11 */
.ab-page {
  background: #07060a !important;
  color: #fffaf7 !important;
}

.ab-section,
.ab-section--light,
.ab-section--dark,
.ab-section--gold,
.ab-section--history,
.ab-form-section {
  color: #fffaf7 !important;
  border-top: 1px solid rgba(224, 177, 91, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .035);
}

.ab-section--light,
.ab-form-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(219, 55, 124, .16), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(224, 177, 91, .10), transparent 30%),
    linear-gradient(180deg, #100812 0%, #0a070d 100%) !important;
}

.ab-section--dark {
  background:
    radial-gradient(circle at 82% 18%, rgba(219, 55, 124, .18), transparent 32%),
    linear-gradient(180deg, #07060a 0%, #120914 100%) !important;
}

.ab-section--gold,
.ab-section--history {
  background:
    radial-gradient(circle at 18% 12%, rgba(224, 177, 91, .16), transparent 32%),
    radial-gradient(circle at 82% 28%, rgba(219, 55, 124, .14), transparent 34%),
    linear-gradient(135deg, #1b0d16 0%, #251020 52%, #100b0d 100%) !important;
}

.ab-cta {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 250, 247, .14), transparent 30%),
    radial-gradient(circle at 76% 26%, rgba(224, 177, 91, .18), transparent 34%),
    linear-gradient(90deg, rgba(8, 7, 11, .96), rgba(26, 8, 26, .86)),
    #a31978 !important;
}

.ab-section h1,
.ab-section h2,
.ab-section h3,
.ab-section--light h1,
.ab-section--light h2,
.ab-section--light h3,
.ab-section--gold h1,
.ab-section--gold h2,
.ab-section--gold h3,
.ab-section--history h1,
.ab-section--history h2,
.ab-section--history h3,
.ab-form-section h1,
.ab-form-section h2,
.ab-form-section h3,
.ab-current-card h3,
.ab-note h3 {
  color: #fffaf7 !important;
}

.ab-section p,
.ab-section li,
.ab-section--light p,
.ab-section--gold p,
.ab-section--history p,
.ab-current-card p,
.ab-note p,
.ab-form-section p,
.ab-package-grid p,
.ab-section--dark .ab-heading-row p {
  color: rgba(255, 250, 247, .76) !important;
}

.ab-kicker,
.ab-section--light .ab-kicker,
.ab-section--gold .ab-kicker,
.ab-section--history .ab-kicker,
.ab-form-section .ab-kicker {
  color: #f3d1a4 !important;
}

.ab-current-card,
.ab-package-grid article,
.ab-note,
.ab-form-shell {
  background: linear-gradient(180deg, rgba(255, 250, 247, .075), rgba(255, 250, 247, .035)) !important;
  color: #fffaf7 !important;
  border: 1px solid rgba(224, 177, 91, .16) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24) !important;
  backdrop-filter: blur(10px);
}

.ab-current-card a {
  color: #f3d1a4 !important;
}

.ab-current-card a:hover,
.ab-current-card a:focus {
  color: #ffffff !important;
}

.ab-image-band {
  background: linear-gradient(135deg, rgba(255, 250, 247, .08), rgba(219, 55, 124, .10)) !important;
  border: 1px solid rgba(224, 177, 91, .16) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24) !important;
}

.ab-hit-list li {
  border-color: rgba(255, 250, 247, .16) !important;
}

.ab-contact-grid a {
  background: rgba(255, 250, 247, .08) !important;
  border-color: rgba(224, 177, 91, .22) !important;
  color: #fffaf7 !important;
}

.ab-contact-grid a:hover,
.ab-contact-grid a:focus {
  border-color: rgba(224, 177, 91, .58) !important;
  background: rgba(255, 250, 247, .13) !important;
}

.ab-form-shell .wpforms-field-label,
.ab-form-shell .wpforms-field-sublabel,
.ab-form-shell label {
  color: #fffaf7 !important;
}

.ab-form-shell .wpforms-required-label {
  color: #f3d1a4 !important;
}

.ab-form-shell input[type="text"],
.ab-form-shell input[type="email"],
.ab-form-shell input[type="tel"],
.ab-form-shell select,
.ab-form-shell textarea {
  background: rgba(7, 6, 10, .74) !important;
  border-color: rgba(224, 177, 91, .22) !important;
  color: #fffaf7 !important;
}

.ab-form-shell input::placeholder,
.ab-form-shell textarea::placeholder {
  color: rgba(255, 250, 247, .48) !important;
}

.ab-form-shell select option {
  background: #120914 !important;
  color: #fffaf7 !important;
}

.ab-wide-image,
.ab-gallery img,
.ab-disc-grid img,
.ab-portrait {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .25) !important;
  border: 1px solid rgba(224, 177, 91, .12);
}
/* /AB dark stage palette 2026-05-11 */

/* AB hero image crop 2026-05-11 */
.ab-hero {
  background-position: 58% 18% !important;
}

@media (max-width: 1200px) {
  .ab-hero {
    background-position: 62% 18% !important;
  }
}

@media (max-width: 760px) {
  .ab-hero {
    background-position: 64% 20% !important;
  }
}
/* /AB hero image crop 2026-05-11 */

/* AB full width layout 2026-05-11 */
body.page .ct-container-full[data-content="normal"],
body.page .entry-content.is-layout-constrained,
body.page .entry-content.is-layout-constrained > .ab-page {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.page .entry-content.is-layout-constrained > .ab-page {
  display: block !important;
}

body.page .entry-content.is-layout-constrained > .ab-page,
body.page .entry-content.is-layout-constrained > .ab-page > .ab-hero,
body.page .entry-content.is-layout-constrained > .ab-page > .ab-subhero,
body.page .entry-content.is-layout-constrained > .ab-page > .ab-section {
  max-inline-size: none !important;
}

body.page .entry-content.is-layout-constrained > .ab-page > * {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.page article[id^="post-"],
body.page .site-main,
body.page #main-container {
  overflow-x: clip;
}
/* /AB full width layout 2026-05-11 */

/* AB dark subhero pages 2026-05-11 */
.ab-subhero--light {
  color: #fffaf7 !important;
}

.ab-subhero--light::before {
  background:
    linear-gradient(90deg, rgba(7, 6, 10, .94) 0%, rgba(13, 7, 14, .76) 44%, rgba(7, 6, 10, .42) 100%),
    radial-gradient(circle at 74% 22%, rgba(219, 55, 124, .24), transparent 34%) !important;
}

.ab-subhero--light h1,
.ab-subhero--light h2,
.ab-subhero--light h3 {
  color: #fffaf7 !important;
}

.ab-subhero--light p {
  color: rgba(255, 250, 247, .82) !important;
}

.ab-subhero--light .ab-kicker {
  color: #f3d1a4 !important;
}

body.page-id-26 .ab-subhero {
  background-position: center 34% !important;
}
/* /AB dark subhero pages 2026-05-11 */

/* AB editable block structure 2026-05-13 */
.ab-page.wp-block-group {
  margin-block-start: 0 !important;
}

.ab-page > .wp-block-group,
.ab-page > .wp-block-cover {
  margin-block-start: 0 !important;
}

.ab-hero.wp-block-cover,
.ab-subhero.wp-block-cover {
  padding: 0 !important;
  overflow: hidden;
  color: #fffaf7;
}

.ab-hero.wp-block-cover {
  align-items: flex-end;
}

.ab-hero .wp-block-cover__inner-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 76px;
  position: relative;
  z-index: 2;
}

.ab-hero .wp-block-cover__background {
  background:
    linear-gradient(90deg, rgba(8,7,11,.94) 0%, rgba(8,7,11,.70) 38%, rgba(8,7,11,.18) 100%),
    linear-gradient(0deg, rgba(8,7,11,.92) 0%, rgba(8,7,11,0) 42%) !important;
  opacity: 1 !important;
}

.ab-hero .wp-block-cover__image-background {
  object-position: 58% 18% !important;
}

.ab-subhero.wp-block-cover {
  align-items: flex-end;
}

.ab-subhero .wp-block-cover__inner-container {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 56px;
  z-index: 2;
}

.ab-subhero .wp-block-cover__background {
  background: linear-gradient(90deg, rgba(8,7,11,.92), rgba(8,7,11,.30)) !important;
  opacity: 1 !important;
}

.ab-subhero--light .wp-block-cover__background {
  background:
    linear-gradient(90deg, rgba(7, 6, 10, .94) 0%, rgba(13, 7, 14, .76) 44%, rgba(7, 6, 10, .42) 100%),
    radial-gradient(circle at 74% 22%, rgba(219, 55, 124, .24), transparent 34%) !important;
}

body.page-id-26 .ab-subhero .wp-block-cover__image-background {
  object-position: center 34% !important;
}

.ab-button.wp-block-button {
  display: inline-flex;
}

.ab-button.wp-block-button .wp-block-button__link {
  border-radius: 8px;
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  color: #fffaf7 !important;
  background: transparent;
}

.ab-button--primary.wp-block-button .wp-block-button__link {
  background: var(--ab-pink) !important;
}

.ab-button--ghost.wp-block-button .wp-block-button__link {
  border: 1px solid var(--ab-line);
  background: rgba(255,255,255,.06) !important;
}

.ab-button--dark.wp-block-button .wp-block-button__link {
  background: var(--ab-black) !important;
}

.ab-actions.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ab-hero__facts.wp-block-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  max-width: 820px;
}

.ab-hero__facts p {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: white !important;
  padding: 9px 12px;
  font-size: 14px !important;
  font-weight: 800;
  margin: 0 !important;
}

.ab-current-card .wp-block-image,
.ab-disc-grid .wp-block-image,
.ab-gallery .wp-block-image,
.ab-image-band > .wp-block-image {
  margin: 0 !important;
}

.ab-hero__facts.wp-block-group,
.ab-hero__facts.is-layout-flow,
.ab-hero .ab-hero__facts {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 12px !important;
  width: auto !important;
  max-width: 820px !important;
  margin-top: 28px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.ab-hero__facts.wp-block-group > p,
.ab-hero__facts.is-layout-flow > p,
.ab-hero .ab-hero__facts > p {
  display: inline-flex !important;
  width: auto !important;
  max-width: max-content !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

.ab-current-card .wp-block-image img,
.ab-current-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.ab-package-grid .ab-package-card {
  background: var(--ab-charcoal);
  border: 1px solid var(--ab-line);
  color: white;
  padding: 26px;
  box-shadow: none;
  border-radius: 8px;
  overflow: hidden;
}

.ab-package-grid .ab-package-number {
  color: var(--ab-gold-soft) !important;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 28px !important;
}

.ab-image-band > .wp-block-image,
.ab-image-band > .wp-block-image img {
  height: 100%;
}

.ab-image-band > .wp-block-image img {
  min-height: 360px;
  object-fit: cover;
}

.ab-image-band .ab-image-band__content {
  padding: 30px;
}

.ab-disc-grid .wp-block-image img,
.ab-gallery .wp-block-image img,
.ab-portrait img,
.ab-wide-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(8,7,11,.18);
}

.ab-disc-grid .wp-block-image img {
  aspect-ratio: 1;
}

.ab-wide-image,
.ab-wide-image.wp-block-image {
  margin-bottom: 18px !important;
}

.ab-wide-image img {
  aspect-ratio: 16 / 6;
}

.ab-gallery .wp-block-image img {
  aspect-ratio: 4 / 5;
}

.ab-portrait img {
  max-height: 720px;
}

.ab-contact-grid p {
  margin: 0 !important;
}

.ab-note ul {
  margin-bottom: 0;
}

.ab-package-grid.wp-block-group,
.ab-package-grid.is-layout-flow,
.ab-package-grid {
  align-items: stretch !important;
}

.ab-package-grid > .ab-package-card,
.ab-package-grid > article {
  box-sizing: border-box;
  height: 100% !important;
}

.ab-current-grid > .ab-current-card,
.ab-package-grid > .ab-package-card,
.ab-package-grid > article,
.ab-disc-grid > .wp-block-image,
.ab-gallery > .wp-block-image {
  margin: 0 !important;
}

.ab-hero .wp-block-cover__inner-container > h1.wp-block-heading,
.ab-hero .wp-block-cover__inner-container > .ab-lead {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.ab-hero .wp-block-cover__inner-container > h1.wp-block-heading {
  max-width: 980px !important;
}

.ab-hero .wp-block-cover__inner-container > .ab-lead {
  max-width: 720px !important;
}

@media (max-width: 1200px) {
  .ab-hero .wp-block-cover__image-background {
    object-position: 62% 18% !important;
  }
}

@media (max-width: 760px) {
  .ab-hero .wp-block-cover__image-background {
    object-position: 64% 20% !important;
  }
}

@media (max-width: 560px) {
  .ab-hero .wp-block-cover__inner-container,
  .ab-subhero .wp-block-cover__inner-container {
    width: min(100% - 28px, 1120px);
  }
}

.ab-hero::after {
  content: none !important;
  display: none !important;
  animation: none !important;
}
/* /AB editable block structure 2026-05-13 */
