/*
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
  AMANDA MARINO SPEAKS â€” Header CSS
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
  WHERE TO PASTE THIS:
  WordPress Dashboard â†’ Appearance â†’ Customize
  â†’ Additional CSS â†’ paste entire contents â†’ Publish
  â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
*/

/* â”€â”€ RESET â”€â”€ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'DM Sans', system-ui, sans-serif; background: #FFF5EC; }

    /* â”€â”€ HEADER / NAV â”€â”€ */
    .am-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 9999;
      width: 100%;
      height: 96px;
      display: flex;
      align-items: center;
      background: rgba(255,245,236,0.0);
      transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
    }

    .am-header.scrolled {
      background: rgba(255,245,236,0.97) !important;
      backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(232,0,125,0.12), 0 4px 32px rgba(0,0,0,0.07);
      height: 80px;
    }

    /* Dark variant â€” use class="am-header dark" on pages with dark hero */
    .am-header.dark {
      background: transparent;
    }
    .am-header.dark.scrolled {
      background: rgba(255,245,236,0.97) !important;
    }

    .am-header-inner {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    /* LOGO */
    .am-header .h-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .am-header .h-logo img {
      height: 58px;
      width: auto;
      max-width: 220px;
      display: block;
      object-fit: contain;
      /* Default: dark bg or scrolled state â€” show logo in brand color */
      filter: brightness(0) !important;
      transition: filter 0.3s, height 0.35s;
    }
    .am-header.dark .h-logo img {
      filter: brightness(0) invert(1) !important;
    }
    .am-header.dark.scrolled .h-logo img {
      filter: brightness(0) !important;
    }
    .am-header.scrolled .h-logo img {
      height: 48px;
    }

    /* NAV LINKS */
    .am-header .h-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
      flex-wrap: nowrap;
    }

    .am-header .h-nav a {
      font-family: 'DM Sans', system-ui, sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      color: #5A0F30;
      text-decoration: none;
      padding: 7px 10px;
      border-radius: 4px;
      white-space: nowrap;
      transition: color 0.2s, background 0.2s;
    }
    .am-header.dark .h-nav a {
      color: rgba(255,255,255,0.85);
    }
    .am-header.dark.scrolled .h-nav a {
      color: #5A0F30;
    }
    .am-header .h-nav a:hover {
      color: #E8007D !important;
      background: rgba(232,0,125,0.06);
    }
    .am-header .h-nav a.active {
      color: #E8007D !important;
    }

    /* DROPDOWN wrapper */
    .am-header .h-nav .h-dropdown {
      position: relative;
    }
    .am-header .h-nav .h-dropdown > a {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .am-header .h-nav .h-dropdown > a::after {
      content: '';
      display: block;
      width: 0; height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-top: 5px solid currentColor;
      opacity: 0.5;
      transition: transform 0.2s;
      flex-shrink: 0;
    }
    .am-header .h-nav .h-dropdown:hover > a::after {
      transform: rotate(180deg);
    }
    .am-header .h-nav .h-drop-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: #FFFFFF;
      border: 1px solid rgba(232,0,125,0.12);
      border-radius: 6px;
      box-shadow: 0 12px 48px rgba(90,15,48,0.12);
      min-width: 220px;
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
      transform: translateX(-50%) translateY(-6px);
      list-style: none;
    }
    .am-header .h-nav .h-dropdown:hover .h-drop-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }
    .am-header .h-nav .h-drop-menu a {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: #5A0F30;
      padding: 10px 18px;
      background: transparent;
      border-radius: 0;
      transition: background 0.15s, color 0.15s;
    }
    .am-header .h-nav .h-drop-menu a:hover {
      background: rgba(232,0,125,0.07) !important;
      color: #E8007D !important;
    }
    .am-header .h-nav .h-drop-menu li:not(:last-child) a {
      border-bottom: 1px solid rgba(232,0,125,0.06);
    }

    /* BOOK AMANDA CTA */
    .am-header .h-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', system-ui, sans-serif;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #FFFFFF !important;
      background: #E8007D;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 100px;
      white-space: nowrap;
      flex-shrink: 0;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .am-header .h-cta:hover {
      background: #C4006A !important;
      color: #FFFFFF !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(232,0,125,0.35);
    }

    /* MOBILE HAMBURGER */
    .am-header .h-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
      flex-shrink: 0;
    }
    .am-header .h-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #5A0F30;
      border-radius: 2px;
      transition: background 0.2s;
    }
    .am-header.dark .h-hamburger span { background: #FFFFFF; }
    .am-header.dark.scrolled .h-hamburger span { background: #5A0F30; }

    /* MOBILE DRAWER */
    .am-mobile-menu {
      position: fixed;
      top: 0; right: 0;
      width: min(320px, 85vw);
      height: 100vh;
      background: #FFFFFF;
      z-index: 10000;
      padding: 28px 28px 40px;
      box-shadow: -8px 0 40px rgba(90,15,48,0.15);
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }
    .am-mobile-menu.open {
      transform: translateX(0);
    }
    .am-mobile-menu .mm-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 36px;
    }
    .am-mobile-menu .mm-logo img {
      height: 44px;
      width: auto;
      filter: brightness(0);
    }
    .am-mobile-menu .mm-close {
      width: 36px; height: 36px;
      border: 1.5px solid rgba(232,0,125,0.25);
      border-radius: 50%;
      background: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: #5A0F30;
      transition: background 0.2s;
    }
    .am-mobile-menu .mm-close:hover { background: rgba(232,0,125,0.08); }
    .am-mobile-menu .mm-links {
      list-style: none;
      flex: 1;
    }
    .am-mobile-menu .mm-links li {
      border-bottom: 1px solid rgba(232,0,125,0.08);
    }
    .am-mobile-menu .mm-links a {
      display: block;
      font-family: 'DM Sans', system-ui, sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #5A0F30;
      text-decoration: none;
      padding: 16px 4px;
      transition: color 0.2s;
    }
    .am-mobile-menu .mm-links a:hover { color: #E8007D; }
    .am-mobile-menu .mm-links .mm-sub {
      padding: 0 0 4px 16px;
    }
    .am-mobile-menu .mm-links .mm-sub a {
      font-size: 12px;
      font-weight: 400;
      color: #8B1A4A;
      padding: 10px 4px;
      letter-spacing: 0.08em;
      border-bottom: 1px solid rgba(232,0,125,0.05);
    }
    .am-mobile-menu .mm-links .mm-sub li:last-child a { border-bottom: none; }
    .am-mobile-menu .mm-cta {
      margin-top: 28px;
      display: block;
      text-align: center;
      font-family: 'DM Sans', system-ui, sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #FFFFFF;
      background: #E8007D;
      text-decoration: none;
      padding: 15px 28px;
      border-radius: 100px;
      transition: background 0.2s;
    }
    .am-mobile-menu .mm-cta:hover { background: #C4006A; }

    /* Overlay */
    .am-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26,10,18,0.4);
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    .am-overlay.open { opacity: 1; visibility: visible; }

    /* â”€â”€ RESPONSIVE â”€â”€ */
    @media (max-width: 1100px) {
      .am-header-inner { padding: 0 32px; }
      .am-header .h-nav a { font-size: 10.5px; letter-spacing: 0.09em; padding: 7px 8px; }
      .am-header .h-nav { gap: 2px; }
    }
    @media (max-width: 900px) {
      .am-header .h-nav { display: none; }
      .am-header .h-cta { display: none; }
      .am-header .h-hamburger { display: flex; }
      .am-header-inner { padding: 0 24px; }
    }