@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 */

/* AB creative light refresh 2026-05-18 */
:root {
  --ab-ink-deep: #171318;
  --ab-ink: #261f26;
  --ab-cream: #fbf5ee;
  --ab-paper: #fffdf9;
  --ab-blush: #f7e8e8;
  --ab-champagne: #b8904f;
  --ab-champagne-soft: #ead5ad;
  --ab-rose: #b91f79;
  --ab-rose-soft: #f4d7e4;
  --ab-cobalt: #315f8f;
  --ab-mint: #5a8f7d;
  --ab-text: #272127;
  --ab-subtle: #70656e;
  --ab-border-light: rgba(38, 31, 38, .14);
  --ab-border-gold: rgba(184, 144, 79, .34);
}

body {
  background: var(--ab-cream) !important;
  color: var(--ab-text);
}

.ab-page {
  background: var(--ab-cream) !important;
  color: var(--ab-text) !important;
  font-family: "Montserrat", Arial, sans-serif !important;
  overflow: hidden;
}

.ab-page h1,
.ab-page h2,
.ab-page h3 {
  color: var(--ab-ink) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: .96 !important;
}

.ab-page h1 {
  font-size: 104px !important;
  max-width: 760px !important;
}

.ab-page h2 {
  font-size: 62px !important;
  max-width: 820px;
}

.ab-page h3 {
  font-size: 30px !important;
  line-height: 1.05 !important;
}

.ab-page p,
.ab-page li {
  color: var(--ab-subtle) !important;
  font-size: 18px !important;
  line-height: 1.72 !important;
}

.ab-wrap {
  width: min(1120px, calc(100% - 48px)) !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.page .entry-content.is-layout-constrained > .ab-page,
body.page .entry-content.is-layout-constrained > .ab-page > * {
  width: 100% !important;
  max-width: none !important;
}

#header.ct-header {
  position: fixed !important;
  top: 0;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 100;
  background: linear-gradient(180deg, rgba(251, 245, 238, .56), rgba(251, 245, 238, .18), rgba(251, 245, 238, 0)) !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

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

#header [data-device="desktop"] {
  display: none !important;
}

#header [data-device="mobile"] {
  display: block !important;
}

#header [data-row],
#header .ct-container {
  min-height: 92px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

#header [data-row] .ct-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

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

#header .ct-header-trigger {
  width: 50px !important;
  height: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(38, 31, 38, .20) !important;
  border-radius: 999px !important;
  background: rgba(255, 253, 249, .82) !important;
  color: var(--ab-ink) !important;
  box-shadow: 0 18px 36px rgba(38, 31, 38, .10) !important;
}

#header .ct-header-trigger .ct-icon {
  color: var(--ab-ink) !important;
}

#offcanvas .ct-panel-content[data-device="desktop"] {
  display: none !important;
}

#offcanvas .ct-panel-content[data-device="mobile"] {
  display: block !important;
}

#offcanvas .ct-panel-inner {
  background:
    linear-gradient(135deg, rgba(185, 31, 121, .08), rgba(184, 144, 79, .10)),
    var(--ab-cream) !important;
  color: var(--ab-ink) !important;
}

#offcanvas .ct-panel-actions {
  padding: 28px 32px 0 !important;
}

#offcanvas .ct-toggle-close {
  width: 48px !important;
  height: 48px !important;
  border: 1px solid rgba(38, 31, 38, .16) !important;
  border-radius: 999px !important;
  background: rgba(255, 253, 249, .82) !important;
  color: var(--ab-ink) !important;
}

#offcanvas .ct-toggle-close .ct-icon {
  color: var(--ab-ink) !important;
  fill: currentColor !important;
}

#offcanvas .ct-panel-content-inner {
  padding: 72px 42px 42px !important;
}

#offcanvas .mobile-menu ul {
  display: grid !important;
  gap: 10px !important;
}

#offcanvas .mobile-menu .ct-menu-link {
  color: var(--ab-ink) !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 44px !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  padding: 6px 0 !important;
}

#offcanvas .mobile-menu .ct-menu-link:hover,
#offcanvas .mobile-menu .current-menu-item > .ct-menu-link {
  color: var(--ab-rose) !important;
}

body.ab-header-scrolled #header.ct-header,
body:not(.home) #header.ct-header {
  background: rgba(251, 245, 238, .74) !important;
  border-bottom: 1px solid rgba(38, 31, 38, .07) !important;
  box-shadow: 0 14px 34px rgba(38, 31, 38, .07) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

body.ab-header-scrolled #header [data-row] {
  background: transparent !important;
}

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

.ab-hero--home {
  background: var(--ab-cream) !important;
  color: var(--ab-text) !important;
  min-height: 88vh !important;
}

.ab-hero--home .wp-block-cover__background {
  background:
    linear-gradient(90deg, rgba(251, 245, 238, .98) 0%, rgba(251, 245, 238, .94) 42%, rgba(251, 245, 238, .35) 62%, rgba(23, 19, 24, .76) 100%),
    linear-gradient(180deg, rgba(255, 253, 249, .82) 0%, rgba(255, 253, 249, 0) 42%, rgba(185, 31, 121, .14) 100%) !important;
  opacity: 1 !important;
}

.ab-hero--home .wp-block-cover__image-background {
  object-position: 78% 28% !important;
}

.ab-hero .wp-block-cover__inner-container,
.ab-subhero .wp-block-cover__inner-container {
  width: min(1120px, calc(100% - 48px)) !important;
  max-width: 1120px !important;
  margin: 0 auto !important;
  position: relative;
  z-index: 2;
}

.ab-hero .wp-block-cover__inner-container {
  padding: 174px 0 86px !important;
}

.ab-hero--home .wp-block-cover__inner-container::before {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--ab-rose), var(--ab-champagne), var(--ab-cobalt));
}

.ab-hero--home .wp-block-cover__inner-container::after {
  content: none !important;
  display: none !important;
}

.ab-kicker {
  color: var(--ab-champagne) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .18em !important;
  line-height: 1.35 !important;
  margin-bottom: 18px !important;
  text-transform: uppercase !important;
}

.ab-lead,
.ab-section-lead {
  color: var(--ab-ink) !important;
  font-size: 23px !important;
  line-height: 1.55 !important;
  max-width: 760px !important;
}

.ab-section {
  padding: 104px 0 !important;
  border: 0 !important;
  position: relative;
}

.ab-section--ivory {
  background:
    linear-gradient(90deg, rgba(184, 144, 79, .13) 0 1px, transparent 1px 100%) 0 0 / 132px 100%,
    var(--ab-cream) !important;
}

.ab-section--white {
  background: var(--ab-paper) !important;
}

.ab-section--blush {
  background:
    linear-gradient(135deg, rgba(185, 31, 121, .08), rgba(49, 95, 143, .08)),
    var(--ab-blush) !important;
}

.ab-section--ink {
  background:
    linear-gradient(135deg, rgba(185, 31, 121, .26), rgba(49, 95, 143, .20)),
    var(--ab-ink-deep) !important;
}

.ab-section--ink h1,
.ab-section--ink h2,
.ab-section--ink h3,
.ab-section--ink .ab-section-lead {
  color: var(--ab-paper) !important;
}

.ab-section--ink p,
.ab-section--ink li {
  color: rgba(255, 253, 249, .76) !important;
}

.ab-section--ink .ab-kicker {
  color: var(--ab-champagne-soft) !important;
}

.ab-section--book,
.ab-section--contact-hero {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, .92), rgba(251, 245, 238, .84)),
    linear-gradient(90deg, rgba(185, 31, 121, .08), rgba(90, 143, 125, .10)) !important;
}

.ab-section--contact-hero {
  padding-top: 188px !important;
  padding-bottom: 72px !important;
}

.ab-section--social > .ab-wrap > .ab-kicker,
.ab-section--social > .ab-wrap > h2,
.ab-section--social > .ab-wrap > .ab-section-lead,
.ab-section--book > .ab-wrap > .ab-kicker,
.ab-section--book > .ab-wrap > h2,
.ab-section--book > .ab-wrap > .ab-section-lead,
.ab-section--contact-hero > .ab-wrap > .ab-kicker,
.ab-section--contact-hero > .ab-wrap > h1,
.ab-section--contact-hero > .ab-wrap > .ab-lead,
.ab-section--contact-hero > .ab-wrap > .ab-section-lead,
.ab-section--ivory > .ab-wrap > .ab-kicker,
.ab-section--ivory > .ab-wrap > h2,
.ab-section--ivory > .ab-wrap > .ab-section-lead,
.ab-section--white > .ab-wrap > .ab-kicker,
.ab-section--white > .ab-wrap > h2,
.ab-section--white > .ab-wrap > .ab-section-lead {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ab-columns {
  gap: 62px !important;
  align-items: center !important;
  margin-bottom: 0 !important;
}

.ab-columns--intro {
  align-items: end !important;
}

.ab-columns--split > .wp-block-column:first-child {
  flex-basis: 48% !important;
}

.ab-columns--split > .wp-block-column:last-child {
  flex-basis: 52% !important;
}

.ab-columns--reverse > .wp-block-column:first-child {
  order: 2;
}

.ab-columns--reverse > .wp-block-column:last-child {
  order: 1;
}

.ab-card-grid,
.ab-social-grid,
.ab-gallery--press {
  display: grid !important;
  gap: 18px !important;
  margin-top: 34px !important;
}

.ab-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ab-social-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.ab-gallery--press {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ab-card,
.ab-social-card,
.ab-form-shell {
  border: 1px solid var(--ab-border-light) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 249, .76) !important;
  box-shadow: 0 24px 70px rgba(38, 31, 38, .08) !important;
  color: var(--ab-text) !important;
}

.ab-card,
.ab-social-card {
  padding: 30px !important;
}

.ab-card h3,
.ab-social-card h3 {
  margin-bottom: 12px !important;
}

.ab-card-number {
  color: var(--ab-champagne) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .18em !important;
  margin-bottom: 26px !important;
}

.ab-social-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .92), rgba(251, 245, 238, .72)) !important;
}

.ab-social-card:nth-child(2) {
  border-color: rgba(185, 31, 121, .28) !important;
}

.ab-social-card:nth-child(3) {
  border-color: rgba(49, 95, 143, .24) !important;
}

.ab-social-card:nth-child(4) {
  border-color: rgba(90, 143, 125, .26) !important;
}

.ab-button.wp-block-button,
.ab-button.wp-block-button:hover {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  transform: none !important;
  box-shadow: none !important;
}

.ab-button.wp-block-button .wp-block-button__link,
.ab-page a.ab-button,
.ab-page .ab-actions a {
  min-height: 48px !important;
  padding: 13px 20px !important;
  border-radius: 999px !important;
  border: 1px solid transparent !important;
  color: var(--ab-paper) !important;
  background: var(--ab-ink) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: .02em !important;
  text-decoration: none !important;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease, color .2s ease !important;
}

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

.ab-button--ghost.wp-block-button .wp-block-button__link {
  background: rgba(255, 253, 249, .72) !important;
  border-color: rgba(38, 31, 38, .20) !important;
  color: var(--ab-ink) !important;
}

.ab-button--ghost-dark.wp-block-button .wp-block-button__link {
  background: transparent !important;
  border-color: rgba(38, 31, 38, .24) !important;
  color: var(--ab-ink) !important;
}

.ab-button--gold.wp-block-button .wp-block-button__link {
  background: var(--ab-champagne-soft) !important;
  color: var(--ab-ink) !important;
}

.ab-button--small.wp-block-button .wp-block-button__link {
  min-height: 40px !important;
  padding: 9px 15px !important;
  font-size: 13px !important;
}

.ab-button.wp-block-button .wp-block-button__link:hover,
.ab-button.wp-block-button .wp-block-button__link:focus {
  background: var(--ab-champagne) !important;
  border-color: var(--ab-champagne) !important;
  color: var(--ab-paper) !important;
  transform: translateY(-1px) !important;
}

.ab-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

.ab-actions--compact,
.ab-actions--stack {
  margin-top: 18px !important;
}

.ab-actions--stack {
  flex-direction: column !important;
  align-items: flex-start !important;
}

.ab-hero__facts {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  max-width: 760px !important;
  margin-top: 28px !important;
}

.ab-hero__facts p {
  width: auto !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(38, 31, 38, .16) !important;
  border-radius: 999px !important;
  background: rgba(255, 253, 249, .68) !important;
  color: var(--ab-ink) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.ab-image,
.ab-gallery-image,
.ab-image img,
.ab-gallery-image img {
  display: block !important;
  width: 100% !important;
}

.ab-image img,
.ab-gallery-image img {
  border-radius: 8px !important;
  object-fit: cover !important;
  box-shadow: 0 24px 72px rgba(38, 31, 38, .14) !important;
}

.ab-image--portrait img {
  aspect-ratio: 4 / 5 !important;
  object-position: center top !important;
}

.ab-image--stage img {
  aspect-ratio: 4 / 5 !important;
  object-position: center center !important;
}

.ab-image--archive img {
  aspect-ratio: 4 / 5 !important;
  filter: sepia(.06) contrast(1.03) !important;
}

.ab-gallery-image img {
  aspect-ratio: 4 / 5 !important;
}

.ab-hit-list {
  columns: 1 !important;
  padding-left: 18px !important;
  margin-top: 20px !important;
  font-weight: 800 !important;
}

.ab-hit-list li {
  margin-bottom: 7px !important;
}

.ab-form-shell {
  max-width: 900px !important;
  padding: 42px !important;
  margin-top: 30px !important;
}

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

.ab-form-shell .wpforms-field-label,
.ab-form-shell .wpforms-field-sublabel,
.ab-form-shell label {
  color: var(--ab-ink) !important;
  font-weight: 800 !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(38, 31, 38, .18) !important;
  border-radius: 8px !important;
  background: var(--ab-paper) !important;
  color: var(--ab-ink) !important;
  box-shadow: none !important;
}

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

.ab-form-shell .wpforms-submit,
.ab-form-shell button[type="submit"] {
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--ab-rose) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: 0 24px !important;
  font-weight: 900 !important;
}

.ab-subhero {
  color: var(--ab-paper) !important;
}

.ab-subhero .wp-block-cover__background {
  background:
    linear-gradient(90deg, rgba(23, 19, 24, .90) 0%, rgba(23, 19, 24, .58) 48%, rgba(23, 19, 24, .18) 100%),
    linear-gradient(0deg, rgba(23, 19, 24, .70), rgba(23, 19, 24, 0) 54%) !important;
  opacity: 1 !important;
}

.ab-subhero .wp-block-cover__inner-container {
  padding: 164px 0 66px !important;
}

.ab-subhero h1,
.ab-subhero h2,
.ab-subhero h3,
.ab-subhero .ab-lead {
  color: var(--ab-paper) !important;
}

.ab-subhero p {
  color: rgba(255, 253, 249, .82) !important;
}

.ab-subhero--press .wp-block-cover__background {
  background:
    linear-gradient(90deg, rgba(251, 245, 238, .98) 0%, rgba(251, 245, 238, .86) 46%, rgba(251, 245, 238, .26) 74%, rgba(38, 31, 38, .18) 100%) !important;
}

.ab-subhero--press h1,
.ab-subhero--press .ab-lead {
  color: var(--ab-ink) !important;
}

.ab-subhero.ab-subhero--press h1,
.ab-subhero.ab-subhero--press h2,
.ab-subhero.ab-subhero--press h3 {
  color: var(--ab-ink) !important;
}

.ab-subhero.ab-subhero--press .ab-kicker {
  color: var(--ab-subtle) !important;
}

.ab-subhero--press p {
  color: var(--ab-subtle) !important;
}

.ab-subhero--press .wp-block-cover__image-background {
  object-position: 78% 26% !important;
}

.ab-subhero--about .wp-block-cover__image-background {
  object-position: center 18% !important;
}

.ab-subhero--booking .wp-block-cover__image-background {
  object-position: center 26% !important;
}

.ab-card-grid > .wp-block-group,
.ab-social-grid > .wp-block-group,
.ab-gallery--press > .wp-block-image {
  margin: 0 !important;
}

.ab-effects-ready .ab-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (max-width: 999px) {
  .ab-page h1 {
    font-size: 72px !important;
  }

  .ab-page h2 {
    font-size: 48px !important;
  }

  #header [data-row],
  #header .ct-container {
    min-height: 82px !important;
  }

  #header [data-row] .ct-container {
    width: min(100% - 32px, 1180px);
  }

  #header .site-logo-container,
  #header .site-logo-container img.default-logo {
    width: 208px !important;
  }

  #header .site-logo-container {
    min-height: 78px !important;
  }

  .ab-hero .wp-block-cover__inner-container {
    padding-top: 142px !important;
  }

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

  .ab-columns--reverse > .wp-block-column:first-child,
  .ab-columns--reverse > .wp-block-column:last-child {
    order: initial;
  }
}

@media (max-width: 690px) {
  .ab-wrap,
  .ab-hero .wp-block-cover__inner-container,
  .ab-subhero .wp-block-cover__inner-container {
    width: min(100% - 30px, 1120px) !important;
  }

  .ab-page h1 {
    font-size: 50px !important;
  }

  .ab-page h2 {
    font-size: 38px !important;
  }

  .ab-page h3 {
    font-size: 25px !important;
  }

  .ab-page p,
  .ab-page li {
    font-size: 16px !important;
  }

  .ab-lead,
  .ab-section-lead {
    font-size: 19px !important;
  }

  .ab-section {
    padding: 76px 0 !important;
  }

  .ab-section--contact-hero {
    padding-top: 138px !important;
  }

  .ab-hero--home {
    min-height: 780px !important;
  }

  .ab-hero--home .wp-block-cover__background {
    background:
      linear-gradient(0deg, rgba(251, 245, 238, .98) 0%, rgba(251, 245, 238, .94) 48%, rgba(251, 245, 238, .40) 100%) !important;
  }

  .ab-hero--home .wp-block-cover__image-background {
    object-position: 66% top !important;
  }

  .ab-hero--home .wp-block-cover__inner-container::after {
    content: none;
  }

  .ab-card-grid,
  .ab-social-grid,
  .ab-gallery--press {
    grid-template-columns: 1fr !important;
  }

  .ab-card,
  .ab-social-card,
  .ab-form-shell {
    padding: 24px !important;
  }

  #offcanvas .ct-panel-content-inner {
    padding: 58px 28px 36px !important;
  }

  #offcanvas .mobile-menu .ct-menu-link {
    font-size: 36px !important;
  }

  .ab-actions .wp-block-button,
  .ab-actions .wp-block-button__link {
    width: 100% !important;
  }
}
/* /AB creative light refresh 2026-05-18 */

/* AB media/contact/video refresh 2026-05-20 */
.ab-hero::after {
  content: none !important;
  display: none !important;
  animation: none !important;
  background: none !important;
}

.ab-hero--home .wp-block-cover__image-background {
  filter: saturate(1.06) contrast(1.08) brightness(.98) !important;
  object-position: 78% 24% !important;
}

.ab-hero--home .wp-block-cover__background {
  background:
    linear-gradient(90deg, rgba(251, 245, 238, .91) 0%, rgba(251, 245, 238, .84) 40%, rgba(251, 245, 238, .22) 63%, rgba(23, 19, 24, .52) 100%),
    linear-gradient(180deg, rgba(255, 253, 249, .48) 0%, rgba(255, 253, 249, 0) 46%, rgba(185, 31, 121, .08) 100%) !important;
}

.ab-social-grid--channels {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.ab-contact-cards,
.ab-video-grid {
  display: grid !important;
  gap: 18px !important;
  margin-top: 34px !important;
}

.ab-contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ab-contact-card {
  border: 1px solid var(--ab-border-light) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .92), rgba(251, 245, 238, .74)) !important;
  box-shadow: 0 24px 70px rgba(38, 31, 38, .08) !important;
  color: var(--ab-text) !important;
  padding: 30px !important;
}

.ab-contact-card h3 {
  margin-bottom: 12px !important;
}

.ab-contact-value {
  color: var(--ab-ink) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  overflow-wrap: anywhere;
}

.ab-actions--center {
  justify-content: center !important;
}

.ab-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ab-video-embed {
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--ab-border-light);
  border-radius: 8px;
  background: var(--ab-paper);
  box-shadow: 0 24px 70px rgba(38, 31, 38, .10);
}

.ab-video-embed .wp-block-embed__wrapper {
  aspect-ratio: 16 / 9;
  display: block;
}

.ab-video-embed iframe,
.ab-video-embed .wp-block-embed__wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.ab-video-card {
  overflow: hidden;
  border: 1px solid var(--ab-border-light) !important;
  border-radius: 8px !important;
  background: rgba(255, 253, 249, .82) !important;
  box-shadow: 0 24px 70px rgba(38, 31, 38, .10) !important;
}

.ab-video-thumb,
.ab-video-thumb img {
  width: 100% !important;
  display: block !important;
}

.ab-video-thumb {
  margin: 0 !important;
}

.ab-video-thumb img {
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.ab-video-card__body {
  padding: 24px !important;
}

.ab-video-card__body h3 {
  font-size: 28px !important;
}

.ab-section--video .ab-actions {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ab-gallery--albums {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.ab-gallery--archive,
.ab-gallery--large-set {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.ab-gallery--albums .ab-gallery-image img,
.ab-gallery-image--album img {
  aspect-ratio: 1 / 1 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 10px !important;
  background: #fffdf9 !important;
}

.ab-gallery-image--wide img {
  aspect-ratio: 16 / 9 !important;
}

.ab-gallery--archive .ab-gallery-image img {
  background-color: #fffdf9 !important;
}

/* AB audit refinements 2026-05-22 */
.ab-card-grid,
.ab-social-grid,
.ab-contact-cards,
.ab-video-grid {
  align-items: stretch !important;
}

.ab-card-grid > .wp-block-group,
.ab-social-grid > .wp-block-group,
.ab-contact-cards > .wp-block-group,
.ab-video-grid > .wp-block-group {
  min-width: 0 !important;
  height: 100% !important;
}

.ab-card,
.ab-social-card,
.ab-contact-card,
.ab-video-card {
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.ab-card > .ab-actions,
.ab-social-card > .ab-actions,
.ab-contact-card > .ab-actions,
.ab-video-card .ab-actions {
  margin-top: auto !important;
}

.ab-video-card__body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
}

.ab-video-card__body p {
  margin-bottom: 22px !important;
}

.ab-gallery--albums .ab-gallery-image img,
.ab-gallery-image--album img {
  padding: 6px !important;
}
/* /AB audit refinements 2026-05-22 */

@media (max-width: 1180px) {
  .ab-social-grid--channels,
  .ab-gallery--albums,
  .ab-gallery--archive,
  .ab-gallery--large-set {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .ab-contact-cards,
  .ab-video-grid,
  .ab-social-grid--channels,
  .ab-gallery--albums,
  .ab-gallery--archive,
  .ab-gallery--large-set {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 690px) {
  .ab-contact-cards,
  .ab-video-grid,
  .ab-social-grid--channels,
  .ab-gallery--albums,
  .ab-gallery--archive,
  .ab-gallery--large-set {
    grid-template-columns: 1fr !important;
  }

  .ab-contact-card {
    padding: 24px !important;
  }

  .ab-hero--home .wp-block-cover__image-background {
    object-position: 70% top !important;
  }

  .ab-hero--home .wp-block-cover__background {
    background:
      linear-gradient(0deg, rgba(251, 245, 238, .92) 0%, rgba(251, 245, 238, .82) 52%, rgba(251, 245, 238, .34) 100%) !important;
  }
}
/* /AB media/contact/video refresh 2026-05-20 */
