  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --green:  #22392C;
      --cream:  #F4EBDF;
      --taupe:  #937E74;
      --white:  #FFFFFF;
      --gold:   #C9A84C;
      --gold-light: #e2c97e;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--cream);
      color: var(--green);
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      cursor: none;
      overflow-x: hidden;
    }

    /* ── CUSTOM CURSOR ── */
    #cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
      z-index: 9999;
    }
    #cursor-ring {
      position: fixed;
      width: 38px; height: 38px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
      z-index: 9998;
      opacity: 0.6;
    }
    body:has(a:hover) #cursor,
    body:has(button:hover) #cursor { width: 16px; height: 16px; background: var(--gold-light); }
    body:has(a:hover) #cursor-ring,
    body:has(button:hover) #cursor-ring { width: 54px; height: 54px; opacity: 1; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      display: flex; align-items: center; justify-content: space-between;
      padding: 28px 60px;
      z-index: 100;
      background: transparent;
      transition: background 0.4s ease, padding 0.4s ease;
    }
    nav.scrolled {
      background: rgba(244, 235, 223, 0.95);
      backdrop-filter: blur(10px);
      padding: 18px 60px;
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.25em;
      color: var(--green);
      text-decoration: none;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 40px; list-style: none; }
    .nav-links a {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      position: relative;
      opacity: 0.75;
      transition: opacity 0.3s;
    }
    .nav-link {
      color: var(--green);
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.35s ease;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }
    .nav-links a.active { opacity: 1; }

    /* ── PAGE SECTIONS ── */
    .page { display: none; }
    .page.active { display: block; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }
    .hero-left {
      background: var(--green);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 80px 60px;
      position: relative;
    }
    .hero-left::after {
      content: '';
      position: absolute;
      top: 60px; right: -1px;
      width: 1px; height: calc(100% - 120px);
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    }
    .hero-eyebrow {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5.5vw, 6rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--cream);
      margin-bottom: 36px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-sub {
      font-size: 0.88rem;
      line-height: 1.8;
      color: rgba(244,235,223,0.65);
      max-width: 380px;
      margin-bottom: 52px;
    }
    .hero-right {
      background: var(--cream);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 140px 60px 80px;
    }
    .hero-right-label {
      font-size: 0.62rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--taupe);
      margin-bottom: 20px;
    }
    .hero-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.4rem, 2.5vw, 2.2rem);
      font-weight: 300;
      font-style: italic;
      line-height: 1.5;
      color: var(--green);
      border-left: 2px solid var(--gold);
      padding-left: 28px;
      margin-bottom: 48px;
    }
    .pillars {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .pillar {
      display: flex;
      align-items: flex-start;
      gap: 18px;
    }
    .pillar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      min-width: 36px;
    }
    .pillar-text strong {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 4px;
    }
    .pillar-text span {
      font-size: 0.82rem;
      color: var(--taupe);
      line-height: 1.6;
    }

    /* ── SECTION ── */
    section {
      padding: 120px 60px;
    }
    .section-label {
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 48px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.6rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--green);
      margin-bottom: 24px;
      max-width: 680px;
    }
    .section-title em { font-style: italic; color: var(--taupe); }
    .section-body {
      font-size: 0.9rem;
      line-height: 1.9;
      color: var(--taupe);
      max-width: 560px;
      margin-bottom: 56px;
    }

    /* ── DARK SECTION ── */
    .dark-section {
      background: var(--green);
      padding: 120px 60px;
    }
    .dark-section .section-title { color: var(--cream); }
    .dark-section .section-body { color: rgba(244,235,223,0.6); }

    /* ── BENTO GRID ── */
    .bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 2px;
      background: rgba(34,57,44,0.08);
    }
    .bento-item {
      background: var(--white);
      padding: 44px 36px;
      position: relative;
      overflow: hidden;
      transition: background 0.4s ease;
    }
    .bento-item:hover { background: var(--green); }
    .bento-item:hover .bento-title,
    .bento-item:hover .bento-age { color: var(--cream); }
    .bento-item:hover .bento-body { color: rgba(244,235,223,0.65); }
    .bento-item:hover .bento-icon { color: var(--gold); }
    .bento-item.wide { grid-column: span 2; }
    .bento-item.tall { grid-row: span 2; }
    .bento-icon {
      font-size: 1.6rem;
      color: var(--gold);
      margin-bottom: 20px;
      transition: color 0.4s;
    }
    .bento-age {
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .bento-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--green);
      margin-bottom: 14px;
      transition: color 0.4s;
      line-height: 1.3;
    }
    .bento-body {
      font-size: 0.8rem;
      line-height: 1.75;
      color: var(--taupe);
      transition: color 0.4s;
    }

    /* ── APPROACH LIST ── */
    .approach-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .approach-item {
      padding: 48px 0;
      border-bottom: 1px solid rgba(34,57,44,0.12);
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 20px;
      align-items: start;
    }
    .approach-item:nth-child(odd) { padding-right: 60px; border-right: 1px solid rgba(34,57,44,0.12); }
    .approach-item:nth-child(even) { padding-left: 60px; }
    .approach-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: rgba(34,57,44,0.12);
      line-height: 1;
    }
    .approach-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 400;
      color: var(--green);
      margin-bottom: 10px;
    }
    .approach-body {
      font-size: 0.8rem;
      line-height: 1.75;
      color: var(--taupe);
    }

    /* ── CTA BLOCK ── */
    .cta-block {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 60px;
      background: var(--green);
      gap: 40px;
      flex-wrap: wrap;
    }
    .cta-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 3vw, 2.6rem);
      font-weight: 300;
      color: var(--cream);
      line-height: 1.3;
      max-width: 560px;
    }
    .cta-text em { font-style: italic; color: var(--gold-light); }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 18px 38px;
      font-family: 'Lato', sans-serif;
      font-size: 0.7rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: none;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
    }
    .btn:hover::before { transform: translateX(0); }
    .btn span { position: relative; z-index: 1; }
    .btn-gold {
      background: var(--gold);
      color: var(--green);
    }
    .btn-gold::before { background: var(--gold-light); }
    .btn-gold:hover { color: var(--green); }
    .btn-outline {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(244,235,223,0.4);
    }
    .btn-outline::before { background: rgba(244,235,223,0.08); }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .btn-arrow {
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1;
    }

    /* ── B2B SERVICES ── */
    .services-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 80vh;
    }
    .service-col {
      padding: 100px 60px;
      position: relative;
    }
    .service-col:first-child {
      background: var(--green);
    }
    .service-col:first-child .section-title { color: var(--cream); max-width: 100%; }
    .service-col:first-child .section-body { color: rgba(244,235,223,0.6); }
    .service-col:first-child .section-label { color: var(--gold); }
    .service-col:last-child {
      background: var(--white);
    }
    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .service-list li {
      padding: 20px 0;
      border-bottom: 1px solid rgba(34,57,44,0.1);
      display: flex;
      align-items: flex-start;
      gap: 16px;
      font-size: 0.85rem;
      line-height: 1.7;
      color: var(--taupe);
      transition: color 0.3s;
    }
    .service-col:first-child .service-list li {
      border-bottom-color: rgba(244,235,223,0.12);
      color: rgba(244,235,223,0.65);
    }
    .service-list li:hover { color: var(--green); }
    .service-col:first-child .service-list li:hover { color: var(--gold); }
    .service-list li::before {
      content: '—';
      color: var(--gold);
      font-size: 0.75rem;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ── FORMATION CARDS ── */
    .formations {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: rgba(34,57,44,0.08);
      margin-top: 60px;
    }
    .formation-card {
      background: var(--cream);
      padding: 56px 48px;
      position: relative;
    }
    .formation-card::before {
      content: attr(data-letter);
      position: absolute;
      top: 40px; right: 40px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 7rem;
      font-weight: 300;
      color: rgba(34,57,44,0.05);
      line-height: 1;
    }
    .formation-tag {
      display: inline-block;
      padding: 6px 16px;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .formation-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      font-weight: 400;
      color: var(--green);
      margin-bottom: 20px;
      line-height: 1.3;
    }
    .formation-body {
      font-size: 0.82rem;
      line-height: 1.8;
      color: var(--taupe);
    }

    /* ── B2B2C CONTENT TYPES ── */
    .content-types {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      background: rgba(34,57,44,0.08);
      margin-top: 60px;
    }
    .content-type {
      background: var(--white);
      padding: 40px 28px;
      text-align: center;
      transition: background 0.35s;
    }
    .content-type:hover { background: var(--green); }
    .content-type:hover .ct-title { color: var(--cream); }
    .content-type:hover .ct-body { color: rgba(244,235,223,0.6); }
    .ct-icon {
      font-size: 1.8rem;
      margin-bottom: 20px;
      display: block;
    }
    .ct-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--green);
      margin-bottom: 10px;
      transition: color 0.35s;
    }
    .ct-body {
      font-size: 0.75rem;
      line-height: 1.7;
      color: var(--taupe);
      transition: color 0.35s;
    }

    /* ── MANIFESTO STRIP ── */
    .manifesto {
      overflow: hidden;
      background: var(--gold);
      padding: 22px 0;
      white-space: nowrap;
    }
    .manifesto-track {
      display: inline-flex;
      gap: 0;
      animation: marquee 22s linear infinite;
    }
    .manifesto-track span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-style: italic;
      color: var(--green);
      padding: 0 32px;
    }
    .manifesto-track span::after {
      content: '◆';
      margin-left: 32px;
      font-size: 0.5rem;
      vertical-align: middle;
      opacity: 0.6;
    }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--green);
      padding: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(201,168,76,0.2);
    }
    footer .foot-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      letter-spacing: 0.3em;
      color: var(--cream);
    }
    footer .foot-logo span { color: var(--gold); }
    footer .foot-mention {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      color: rgba(244,235,223,0.35);
      text-transform: uppercase;
    }

    /* ── REVEAL ANIMATION ── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.22s; }
    .reveal-delay-3 { transition-delay: 0.36s; }
    .reveal-delay-4 { transition-delay: 0.5s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 22px 28px; }
      nav.scrolled { padding: 14px 28px; }
      .hero { grid-template-columns: 1fr; }
      .hero-left { padding: 120px 28px 60px; }
      .hero-left::after { display: none; }
      .hero-right { padding: 60px 28px; }
      section { padding: 80px 28px; }
      .dark-section { padding: 80px 28px; }
      .bento { grid-template-columns: 1fr; }
      .bento-item.wide { grid-column: span 1; }
      .approach-grid { grid-template-columns: 1fr; }
      .approach-item:nth-child(odd) { padding-right: 0; border-right: none; }
      .approach-item:nth-child(even) { padding-left: 0; }
      .services-split { grid-template-columns: 1fr; }
      .formations { grid-template-columns: 1fr; }
      .content-types { grid-template-columns: 1fr 1fr; }
      .cta-block { padding: 60px 28px; }
      footer { padding: 40px 28px; flex-direction: column; gap: 20px; text-align: center; }
      .nav-links { gap: 20px; }
    }
        @media (max-width: 900px) {
nav { flex-direction: column; }
    .hero-left {
        padding: 180px 28px 60px;
    }
     .nav-link {
        color: var(--gold);
    }
    .nav-link.scrolled {
        color: var(--green);
    }
    
        }

  /* ── FLOATING MENU ── */
  #float-menu {
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
  }

  #float-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--green);
    border: 1px solid rgba(201, 168, 76, 0.9);
    padding: 10px 8px;
    box-shadow: 0 8px 40px rgba(34, 57, 44, 0.22);
  }

  .float-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 56px;
    height: 56px;
    background: transparent;
    border: none;
    cursor: none;
    text-decoration: none;
    color: rgba(244, 235, 223, 0.55);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
  }

  .float-item:hover {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    transform: scale(1.1);
  }

 

  .float-icon {
    font-size: 1rem;
    line-height: 1;
  }

  .float-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.48rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
  }

  /* Tooltip on hover */
  .float-item::before {
    content: attr(aria-label);
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--green);
    color: var(--cream);
    font-family: 'Lato', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 7px 14px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .float-item:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* ── MODAL OVERLAY ── */
  #float-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  #float-modal.open {
    pointer-events: all;
    opacity: 1;
  }

  #float-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(34, 57, 44, 0.65);
    backdrop-filter: blur(6px);
    cursor: none;
  }

  #float-modal-box {
    position: relative;
    background: var(--cream);
    max-width: 560px;
    width: 100%;
    padding: 60px;
    border-top: 3px solid var(--gold);
    transform: translateY(28px);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
    max-height: 90vh;
    overflow-y: auto;
  }

  #float-modal.open #float-modal-box {
    transform: translateY(0);
  }

  #float-modal-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    font-size: 0.85rem;
    color: var(--taupe);
    cursor: none;
    letter-spacing: 0.05em;
    transition: color 0.25s;
  }

  #float-modal-close:hover { color: var(--green); }

  .modal-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--green);
    margin-bottom: 14px;
  }

  .modal-title em { font-style: italic; color: var(--taupe); }

  .modal-sub {
    font-size: 0.82rem;
    line-height: 1.75;
    color: var(--taupe);
    margin-bottom: 36px;
  }

  /* Radio group */
  .modal-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
  }

  .modal-radio {
    display: flex;
    cursor: none;
  }

  .modal-radio input { display: none; }

  .radio-box {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(34, 57, 44, 0.15);
    transition: border-color 0.25s, background 0.25s;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .modal-radio input:checked + .radio-box {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
  }

  .radio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--green);
    min-width: 110px;
  }

  .radio-desc {
    font-size: 0.75rem;
    color: var(--taupe);
    line-height: 1.4;
  }

  /* Fields */
  .modal-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
  }

  .modal-field { display: flex; flex-direction: column; gap: 7px; }
  .modal-field--full { grid-column: span 2; }

  .modal-field label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    opacity: 0.7;
  }

  .modal-field label span { opacity: 0.5; }

  .modal-field input,
  .modal-field textarea {
    background: var(--white);
    border: 1px solid rgba(34, 57, 44, 0.15);
    padding: 13px 16px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: var(--green);
    outline: none;
    transition: border-color 0.25s;
    resize: none;
  }

  .modal-field input:focus,
  .modal-field textarea:focus { border-color: var(--gold); }

  .modal-submit { width: 100%; justify-content: center; }

  /* Success state */
  #modal-success {
    text-align: center;
    padding: 40px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .success-icon {
    font-size: 2rem;
    color: var(--gold);
  }

  .success-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--green);
  }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    #float-menu {
      right: 0px;
      top: unset;
      bottom: 0px;
      left: 0px;
      transform: translateX(0%);
    }

    #float-menu-inner {
      flex-direction: row;
      padding: 8px 10px;
    }
    .float-item {
      flex: 1;
    }
    /* Hide tooltips on mobile */
    .float-item::before { display: none; }

    #float-modal-box { padding: 36px 24px; }
    .modal-fields { grid-template-columns: 1fr; }
    .modal-field--full { grid-column: span 1; }
  }
