/* Tokens */
    :root {
      --color-orange: #E8762D;
      --color-orange-hover: #D4681F;
      --color-orange-light: #F4A261;
      --color-orange-glow: rgba(232, 118, 45, 0.12);
      --color-orange-subtle: rgba(232, 118, 45, 0.06);
      --color-teal: #1A6B6A;
      --color-cream: #FFF9F4;
      --color-sand: #F5EDE4;
      --color-sand-light: #FAF5EF;
      --color-navy: #1B2A4A;
      --color-text: #2D2A26;
      --color-text-muted: #7A756E;
      --color-text-light: #9E9890;
      --color-white: #FFFFFF;
      --color-border: rgba(45, 42, 38, 0.08);
      --font-body: 'Poppins', sans-serif;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-pill: 100px;
      --shadow-soft: 0 4px 24px rgba(45, 42, 38, 0.06);
      --shadow-card: 0 8px 32px rgba(45, 42, 38, 0.08);
      --shadow-elevated: 0 16px 48px rgba(45, 42, 38, 0.12);
      --shadow-glow: 0 8px 40px rgba(232, 118, 45, 0.2);
      --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    body {
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 400;
      line-height: 1.7;
      color: var(--color-text);
      background: var(--color-cream);
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }
    h1, h2, h3, h4 { font-family: var(--font-body); line-height: 1.2; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Navbar (copied from activity detail) */
    .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: var(--transition-smooth); background: rgba(255, 249, 244, 0.95); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); box-shadow: 0 1px 24px rgba(45, 42, 38, 0.06); }
    .navbar.scrolled { padding: 10px 0; }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; }
    .nav-logo img { height: 48px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a { font-size: 0.88rem; font-weight: 600; color: var(--color-text-muted); letter-spacing: 0.04em; text-transform: uppercase; position: relative; }
    .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--color-orange); border-radius: 2px; transition: var(--transition-smooth); }
    .nav-links a:hover { color: var(--color-text); }
    .nav-links a:hover::after { width: 100%; }
    .nav-right { display: flex; align-items: center; gap: 16px; }
    .btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; border: none; cursor: pointer; transition: var(--transition-smooth); }
    .btn-primary { background: var(--color-orange); color: var(--color-white); padding: 12px 24px; border-radius: var(--radius-pill); }
    .btn-primary:hover { background: var(--color-orange-hover); box-shadow: var(--shadow-glow); transform: translateY(-1px); }
    .btn-nav { padding: 10px 24px; }
    .lang-toggle { display: flex; background: var(--color-sand); border-radius: 100px; padding: 3px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; }
    .lang-toggle a { padding: 5px 12px; border-radius: 100px; color: var(--color-text-muted); }
    .lang-toggle a.active { background: var(--color-white); color: var(--color-text); box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; z-index: 1001; }
    .hamburger span { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: var(--transition-smooth); }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .mobile-menu { display: none; position: fixed; top: 0; right: -100%; width: 320px; height: 100vh; background: var(--color-cream); padding: 100px 40px 40px; box-shadow: -8px 0 40px rgba(45, 42, 38, 0.1); transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 999; }
    .mobile-menu.open { right: 0; }
    .mobile-menu a { display: block; font-size: 1.1rem; font-weight: 600; color: var(--color-text); padding: 16px 0; border-bottom: 1px solid rgba(45, 42, 38, 0.08); text-transform: uppercase; letter-spacing: 0.04em; }
    .mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(27, 42, 74, 0.5); z-index: 998; }
    .mobile-overlay.open { display: block; }
    @media (max-width: 1024px) {
      .nav-links, .lang-toggle { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
    }

    /* Back link */
    .back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-text-muted); font-weight: 600; font-size: 0.88rem; padding: 24px 0 8px; }
    .back-link:hover { color: var(--color-orange); }

    /* Footer */
    .footer { background: var(--color-navy); color: rgba(255,255,255,0.7); padding: 80px 0 40px; margin-top: 80px; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand p { margin-top: 16px; font-weight: 300; font-size: 0.92rem; line-height: 1.6; }
    .footer-logo img { filter: brightness(0) invert(1); }
    .footer h5 { color: var(--color-white); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
    .footer ul { list-style: none; }
    .footer li { margin-bottom: 10px; }
    .footer a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
    .footer a:hover { color: var(--color-orange-light); padding-left: 4px; }
    .footer-store-btns { display: flex; flex-direction: column; gap: 10px; }
    .footer-store-btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; background: rgba(255,255,255,0.08); border-radius: 10px; font-size: 0.88rem; font-weight: 600; }
    .footer-store-btn:hover { background: rgba(255,255,255,0.14); padding-left: 16px; color: var(--color-white); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
    @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }

    /* ============ HERO ============ */
    .provider-hero {
      padding: 32px 0 0;
    }
    .provider-hero-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 340px;
      background: var(--color-sand);
      box-shadow: var(--shadow-soft);
    }
    .provider-hero-cover {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transform: scale(1.02);
    }
    .provider-hero-cover::after {
      content:''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(27,42,74,0.62) 0%, rgba(27,42,74,0.42) 55%, rgba(27,42,74,0.78) 100%);
    }
    .provider-hero-inner {
      position: relative; z-index: 2;
      padding: 40px 40px 32px;
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 28px;
      align-items: end;
      min-height: 340px;
    }
    .provider-hero-logo {
      width: 120px; height: 120px;
      border-radius: 24px;
      background: var(--color-white);
      padding: 14px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.22);
      display: flex; align-items: center; justify-content: center;
    }
    .provider-hero-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
    .provider-hero-logo-fallback {
      width: 100%; height: 100%;
      background: var(--color-orange-subtle);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 2.8rem; font-weight: 800; color: var(--color-orange);
    }
    .provider-hero-text .eyebrow {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 14px;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: var(--radius-pill);
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
      color: rgba(255,255,255,0.95);
      margin-bottom: 14px;
    }
    .provider-hero-text h1 {
      font-size: 2.6rem; font-weight: 800; color: var(--color-white);
      margin-bottom: 14px; line-height: 1.1;
      text-shadow: 0 2px 18px rgba(0,0,0,0.28);
    }
    .provider-hero-meta {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .provider-hero-meta .chip {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 7px 14px;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: var(--radius-pill);
      font-size: 0.82rem; font-weight: 600;
      color: var(--color-white);
    }
    .provider-hero-meta .chip svg { width: 14px; height: 14px; }
    .provider-hero-meta .chip-rating {
      background: var(--color-white);
      color: var(--color-text);
      border-color: var(--color-white);
    }
    .provider-hero-meta .chip-rating .count { color: var(--color-text-muted); font-weight: 500; }
    @media (max-width: 768px) {
      .provider-hero-inner { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px 24px; align-items: start; }
      .provider-hero-logo { width: 84px; height: 84px; border-radius: 20px; }
      .provider-hero-text h1 { font-size: 1.9rem; }
    }

    /* Hero skeleton */
    .skel {
      background: linear-gradient(90deg, var(--color-sand) 25%, var(--color-sand-light) 50%, var(--color-sand) 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    @keyframes shimmer { 0% {background-position:200% 0;} 100% {background-position:-200% 0;} }

    /* ============ INFO BAR ============ */
    .provider-info-bar { padding: 24px 0 0; }
    .info-bar-inner {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: 18px;
      box-shadow: var(--shadow-soft);
    }
    .info-bar-item {
      display: flex; align-items: center; gap: 14px;
      padding: 10px 12px;
      border-radius: var(--radius-sm);
      transition: var(--transition-smooth);
      min-width: 0;
    }
    a.info-bar-item:hover { background: var(--color-orange-subtle); }
    .info-bar-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      border-radius: 50%;
      background: var(--color-orange-subtle);
      color: var(--color-orange);
      display: flex; align-items: center; justify-content: center;
    }
    .info-bar-icon svg { width: 18px; height: 18px; }
    .info-bar-text { flex: 1; min-width: 0; }
    .info-bar-text .label { font-size: 0.68rem; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
    .info-bar-text .value { font-size: 0.9rem; font-weight: 600; color: var(--color-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* ============ ABOUT ============ */
    .provider-about { padding: 48px 0 0; }
    .about-inner {
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: 36px;
      box-shadow: var(--shadow-soft);
    }
    .about-inner h2 {
      font-size: 1.6rem; font-weight: 700; color: var(--color-navy);
      margin-bottom: 16px;
    }
    .about-inner .about-body {
      font-size: 1rem; line-height: 1.75; color: var(--color-text);
      white-space: pre-wrap;
    }
    .about-inner .about-body p { margin-bottom: 12px; }

    /* ============ SECTION HEAD ============ */
    .section-head { text-align: center; margin-bottom: 40px; }
    .section-head h2 {
      font-size: 2rem; font-weight: 800; color: var(--color-navy);
      margin-bottom: 10px;
    }
    .section-head p {
      color: var(--color-text-muted);
      font-size: 1rem; font-weight: 300;
      max-width: 520px; margin: 0 auto;
    }
    @media (max-width: 768px) {
      .section-head h2 { font-size: 1.6rem; }
    }

    /* ============ ACTIVITIES GRID ============ */
    .provider-activities { padding: 64px 0 0; }
    .activities-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 900px) { .activities-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .activities-grid { grid-template-columns: 1fr; } }

    /* ============ CS-CARD (shared: activities + W1 restaurants) ============ */
    .cs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    @media (max-width: 900px) { .cs-grid-3 { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .cs-grid-3 { grid-template-columns: 1fr; } }

    .cs-card {
      background: var(--color-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: var(--transition-smooth);
      display: block;
      position: relative;
    }
    .cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
    .cs-card-img {
      width: 100%; height: 180px;
      background: var(--color-sand);
      overflow: hidden;
    }
    .cs-card-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cs-card:hover .cs-card-img img { transform: scale(1.05); }
    .cs-card-logo {
      position: absolute; top: 148px; left: 16px;
      width: 52px; height: 52px; border-radius: 12px;
      object-fit: cover; background: var(--color-sand);
      box-shadow: 0 3px 14px rgba(45, 42, 38, 0.18);
      border: 3px solid #fff; z-index: 5;
    }
    .cs-card-body { padding: 16px 20px; }
    .cs-card-body-with-logo { padding: 36px 20px 16px 20px; }
    .cs-card-title { font-size: 0.95rem; font-weight: 700; color: var(--color-navy); margin-bottom: 4px; line-height: 1.3; }
    .cs-card-meta { font-size: 0.78rem; color: var(--color-text-muted); }
    .cs-card-price { font-size: 0.85rem; font-weight: 700; color: var(--color-orange); margin-top: 6px; }
    .cs-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
    .cs-review-badge {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 3px 10px; border-radius: var(--radius-pill);
      font-size: 0.75rem; font-weight: 500;
      background: var(--color-white); border: 1px solid var(--color-border);
    }
    .cs-review-rating { font-weight: 700; color: var(--color-text); font-size: 0.78rem; }
    .cs-review-count { color: var(--color-text-muted); font-size: 0.7rem; }

    /* skeleton cards */
    .skel-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
    .skel-card .skel-img { width: 100%; height: 180px; }
    .skel-card .skel-body { padding: 16px 20px; }
    .skel-card .skel-line { height: 12px; border-radius: 6px; margin-bottom: 8px;
      background: linear-gradient(90deg, var(--color-sand) 25%, var(--color-sand-light) 50%, var(--color-sand) 75%);
      background-size: 200% 100%; animation: shimmer 1.5s infinite;
    }

    /* ============ W3: APP CTA BANNER ============ */
    .app-cta-wrap { padding: 80px 0 0; }
    .app-cta-banner {
      padding: 64px 24px;
      position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--color-orange) 0%, #D4681F 40%, #C45A15 100%);
      text-align: center;
      border-radius: var(--radius-lg);
      margin: 0 24px;
    }
    .app-cta-banner h3 { font-size: 2.2rem; font-weight: 800; color: white; margin-bottom: 12px; line-height: 1.15; }
    .app-cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.9); font-weight: 300; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
    .app-cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .app-store-link {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25); color: white;
      padding: 12px 24px; border-radius: 12px;
      transition: var(--transition-smooth);
    }
    .app-store-link:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
    .app-store-link svg { width: 24px; height: 24px; }
    .app-store-label { font-size: 0.6rem; font-weight: 400; opacity: 0.8; display: block; text-align: left; }
    .app-store-name { font-size: 0.92rem; font-weight: 700; display: block; text-align: left; }
    @media (max-width: 768px) { .app-cta-banner { padding: 48px 20px; } .app-cta-banner h3 { font-size: 1.6rem; } }

    /* ============ W1 SECTION ============ */
    .w1-wrap { padding: 80px 0 0; }
    .cs-cta { text-align: center; margin-top: 32px; }
    /* === KOHME MOBILE LAYOUT FIXES === */
    html, body { overflow-x: clip; max-width: 100%; }
    .hero { overflow: clip; }
    .btn, .btn-nav, .btn-primary, .btn-secondary { white-space: nowrap; }
    .nav-right { flex-wrap: nowrap; min-width: 0; }
    @media (max-width: 480px) {
      .btn-nav { padding: 9px 16px; font-size: 0.82rem; }
      .nav-right { gap: 10px; }
      .container { padding-left: 20px; padding-right: 20px; }
    }
    /* === /KOHME MOBILE LAYOUT FIXES === */

    /* === Mobile menu lang toggle (T-LANG-001 2026-04-30) === */
    .mobile-menu .lang-toggle {
      display: flex; margin: 0 0 20px; align-self: flex-start;
      background: var(--color-sand); border-radius: var(--radius-pill);
      padding: 4px; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
      width: fit-content;
    }
    .mobile-menu .lang-toggle a {
      padding: 6px 16px; border-radius: var(--radius-pill);
      color: var(--color-text-muted); text-decoration: none;
      transition: var(--transition-smooth); border-bottom: none;
      font-size: inherit; font-weight: inherit; letter-spacing: inherit;
      display: inline-block;
    }
    .mobile-menu .lang-toggle a.active {
      background: var(--color-white); color: var(--color-text);
      box-shadow: 0 2px 8px rgba(45, 42, 38, 0.08);
    }

    /* === Partnership floating widgets (T-LANG-001 / T-CONTACT-001 2026-04-30) === */
    .partner-floats {
      position: fixed; right: 20px; bottom: 20px; z-index: 1000;
      display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
      pointer-events: none;
    }
    .partner-floats > * { pointer-events: auto; }
    .floating-lang {
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-pill); box-shadow: var(--shadow-card);
      display: flex; padding: 4px; font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.04em;
    }
    .floating-lang a {
      padding: 6px 14px; border-radius: var(--radius-pill);
      color: var(--color-text-muted); text-decoration: none;
      transition: var(--transition-smooth);
    }
    .floating-lang a.active { background: var(--color-text); color: var(--color-cream); }
    .floating-lang a:hover:not(.active) { color: var(--color-text); }
    .floating-contact { position: relative; }
    .floating-contact-toggle {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--color-cream); cursor: pointer;
      border: 2px solid rgba(37, 211, 102, 0.4);
      display: flex; align-items: center; justify-content: center;
      color: #1FAE54; box-shadow: var(--shadow-card);
      transition: var(--transition-smooth); padding: 0;
    }
    .floating-contact-toggle:hover {
      border-color: #25D366; transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
    }
    .floating-contact-toggle svg { width: 24px; height: 24px; flex-shrink: 0; }
    .floating-contact[aria-expanded="true"] .floating-contact-toggle {
      border-color: #25D366; background: #25D366; color: white;
    }
    .floating-contact-panel {
      position: absolute; right: 0; bottom: calc(100% + 12px);
      min-width: 240px; padding: 8px;
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-md); box-shadow: var(--shadow-elevated);
      display: flex; flex-direction: column; gap: 4px;
      opacity: 0; transform: translateY(8px) scale(0.95);
      transform-origin: bottom right; pointer-events: none; visibility: hidden;
      transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  visibility 0s linear 0.25s;
    }
    .floating-contact[aria-expanded="true"] .floating-contact-panel {
      opacity: 1; transform: translateY(0) scale(1);
      pointer-events: auto; visibility: visible; transition-delay: 0s;
    }
    .floating-contact-panel a {
      display: flex; align-items: center; gap: 12px; padding: 10px 12px;
      border-radius: var(--radius-sm); text-decoration: none;
      font-size: 0.92rem; font-weight: 700; color: var(--color-text);
      transition: var(--transition-smooth); line-height: 1.2;
    }
    .floating-contact-panel a:hover { background: var(--color-orange-subtle); }
    .floating-contact-panel a .ico {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center; color: white;
    }
    .floating-contact-panel a .ico svg { width: 20px; height: 20px; flex-shrink: 0; }
    .floating-contact-panel a.wa .ico { background: #25D366; }
    .floating-contact-panel a.line .ico { background: #06C755; }
    .floating-contact-panel a small {
      display: block; font-weight: 500; color: var(--color-text-muted);
      font-size: 0.76rem; margin-top: 2px;
    }
    @media (max-width: 480px) {
      .partner-floats { right: 14px; bottom: 14px; gap: 10px; }
      .floating-lang { font-size: 0.74rem; padding: 3px; }
      .floating-lang a { padding: 5px 12px; }
      .floating-contact-toggle { width: 52px; height: 52px; }
      .floating-contact-panel { min-width: 220px; }
    }


/* Partnership dropdown nav — parity fix 2026-07-06 */
    .nav-links .has-dropdown { position: relative; }
    .nav-links .has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
    .nav-links .has-dropdown > a::after { display: none; }
    .nav-links .has-dropdown > a .caret {
      width: 10px; height: 10px;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav-links .has-dropdown:hover > a .caret,
    .nav-links .has-dropdown:focus-within > a .caret { transform: rotate(180deg); }
    .nav-links .nav-dropdown {
      position: absolute; top: calc(100% + 14px); left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 180px; padding: 8px 0; list-style: none;
      background: var(--color-cream); border: 1px solid var(--color-border);
      border-radius: var(--radius-md); box-shadow: var(--shadow-card);
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                  visibility 0s linear 0.25s;
    }
    .nav-links .has-dropdown:hover .nav-dropdown,
    .nav-links .has-dropdown:focus-within .nav-dropdown {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
      transition-delay: 0s;
    }
    /* Hover bridge so dropdown doesn't close in the gap */
    .nav-links .has-dropdown::before {
      content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px;
    }
    .nav-links .nav-dropdown a {
      display: block; padding: 10px 22px; font-size: 0.82rem; font-weight: 600;
      color: var(--color-text-muted); letter-spacing: 0.04em;
      text-transform: uppercase; text-align: left; white-space: nowrap;
    }
    .nav-links .nav-dropdown a::after { display: none; }
    .nav-links .nav-dropdown a:hover {
      color: var(--color-text); background: var(--color-orange-subtle);
    }
    /* Mobile partnership group */
    .mobile-menu .mobile-group-label {
      display: block; padding: 16px 0 8px; font-size: 0.78rem; font-weight: 700;
      color: var(--color-orange); letter-spacing: 0.06em; text-transform: uppercase;
      border-bottom: 1px solid var(--color-border);
    }
    .mobile-menu a.mobile-sub {
      padding-left: 18px; font-size: 1rem; text-transform: none;
      color: var(--color-text-muted); letter-spacing: 0.02em;
    }
    .mobile-menu a.mobile-sub:hover { color: var(--color-text); }
