/* Scoped Privacy Policy CSS: all rules are contained inside .privacy-page to avoid clashes with home.css */

.privacy-page {
      --black: #080808;
      --soft-black: #141414;
      --white: #ffffff;
      --off-white: #f8f6ef;
      --mustard: #d9a520;
      --mustard-dark: #b68613;
      --muted: #6b665c;
      --line: rgba(8, 8, 8, 0.12);
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
    }

    .privacy-page * {
      box-sizing: border-box;
    }

    .privacy-page {
      scroll-behavior: smooth;
    }

    .privacy-page {
      margin: 0;
      overflow-x: clip;
      /* font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
      font-family: "Inter", Arial, sans-serif;
      background: var(--off-white);
      color: var(--black);
      line-height: 1.7;
    }

    .privacy-page a {
      color: inherit;
    }

    .privacy-page .site-shell {
      position: relative;
    }

    .privacy-page .site-shell::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 18% 12%, rgba(217, 165, 32, 0.22), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(217, 165, 32, 0.14), transparent 24%);
      z-index: -2;
    }

    .privacy-page .site-shell::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image: linear-gradient(rgba(8, 8, 8, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 8, 8, 0.035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 65%);
      z-index: -1;
    }


    .privacy-page .hero {
      width: min(1180px, calc(100% - 40px));
      margin: 64px auto 56px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
      gap: 38px;
      align-items: stretch;
    }

    .privacy-page .hero-copy {
      /* padding: 18px 0; */
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(232, 229, 220, 0.9);
      border-radius: var(--radius-lg);
      padding: clamp(28px, 5vw, 54px);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .privacy-page .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      padding: 8px 14px;
      border: 1px solid rgba(8, 8, 8, 0.14);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.65);
      color: var(--soft-black);
      font-size: 0.84rem;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .privacy-page .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--mustard);
      box-shadow: 0 0 0 5px rgba(217, 165, 32, 0.18);
    }

    .privacy-page h1 {
      margin: 0;
      max-width: 780px;
      /* font-family: Georgia, "Times New Roman", serif; */
      font-size: clamp(3.2rem, 8vw, 4.2rem);
      line-height: 0.9;
      letter-spacing: -0.075em;
      color: var(--black);
    }

    .privacy-page .hero-lede {
      margin: 28px 0 0;
      max-width: 690px;
      color: var(--muted);
      font-size: clamp(1.05rem, 2vw, 0.28rem);
      line-height: 1.5;
    }

    .privacy-page .hero-card {
      background: var(--black);
      color: var(--white);
      border-radius: var(--radius-xl);
      padding: 34px;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .privacy-page .hero-card::before {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      right: -82px;
      top: -82px;
      border-radius: 50%;
      background: var(--mustard);
      opacity: 0.92;
    }

    .privacy-page .hero-card::after {
      content: "";
      position: absolute;
      width: 160px;
      height: 160px;
      right: 42px;
      top: 42px;
      border: 1px solid rgba(255, 255, 255, 0.38);
      border-radius: 50%;
    }

    .privacy-page .hero-card-content {
      position: relative;
      z-index: 1;
    }

    .privacy-page .hero-card-label {
      color: var(--mustard);
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .privacy-page .hero-card h2 {
      margin: 18px 0 14px;
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 1;
      letter-spacing: -0.055em;
    }

    .privacy-page .hero-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: 1rem;
    }

    .privacy-page .effective-pill {
      position: relative;
      z-index: 1;
      align-self: flex-start;
      display: inline-flex;
      padding: 11px 16px;
      border-radius: 999px;
      background: var(--mustard);
      color: var(--black);
      font-weight: 900;
      font-size: 13px;
    }

    .privacy-page .policy-layout {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto 90px;
      display: grid;
      grid-template-columns: 310px minmax(0, 1fr);
      gap: 34px;
      align-items: start;
    }

    .privacy-page .sidebar {
      border-radius: 0;
      position: sticky;
      position: -webkit-sticky;
      top: 130px;
      align-self: start;
      height: fit-content;
      max-height: none;
      overflow: visible;
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    }

    .privacy-page .sidebar h2 {
      margin: 0 0 16px;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
    }

    .privacy-page .sidebar a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      text-decoration: none;
      color: var(--black);
      padding: 11px 0;
      border-bottom: 1px solid rgba(8, 8, 8, 0.08);
      font-weight: 750;
      font-size: 0.95rem;
    }

    .privacy-page .sidebar a:last-child {
      border-bottom: 0;
    }

    .privacy-page .sidebar a span {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(217, 165, 32, 0.18);
      color: var(--black);
      font-size: 0.75rem;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .privacy-page .policy-content {
      display: grid;
      gap: 22px;
    }

    .privacy-page .policy-section {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: clamp(24px, 4vw, 42px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.045);
      position: relative;
      overflow: hidden;
    }

    .privacy-page .policy-section::before {
      content: attr(data-number);
      position: absolute;
      top: 22px;
      right: 26px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 5rem;
      line-height: 1;
      font-weight: 900;
      color: rgba(217, 165, 32, 0.16);
      letter-spacing: -0.08em;
    }

    .privacy-page .policy-section h3 {
      margin: 0 0 16px;
      max-width: 720px;
      font-size: clamp(1.45rem, 3vw, 2.25rem);
      line-height: 1.05;
      letter-spacing: -0.055em;
      color: var(--black);
      position: relative;
      z-index: 1;
    }

    .privacy-page .policy-section p {
      /* margin: 0 0 14px; */
      color: var(--muted);
      font-size: 1rem;
      position: relative;
      z-index: 1;
    }

    .privacy-page .policy-section h4 {
      margin: 24px 0 10px;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--black);
      position: relative;
      z-index: 1;
    }

    .privacy-page .chip-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 14px;
      position: relative;
      z-index: 1;
    }

    .privacy-page .chip {
      padding: 12px 14px;
      border: 1px solid rgba(8, 8, 8, 0.1);
      border-radius: 999px;
      background: #fbfaf6;
      color: var(--black);
      font-weight: 720;
      font-size: 0.94rem;
    }

    .privacy-page .mustard-note {
      margin-top: 20px;
      padding: 18px 20px;
      border-radius: var(--radius-md);
      background: rgba(217, 165, 32, 0.15);
      border: 1px solid rgba(217, 165, 32, 0.36);
      color: var(--black) !important;
      font-weight: 750;
    }

    .privacy-page .contact-card {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      border-radius: var(--radius-md);
      background: var(--black);
      color: var(--white);
      position: relative;
      z-index: 1;
    }

    .privacy-page .contact-card strong {
      color: var(--mustard);
    }

    .privacy-page .contact-card a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--mustard);
      color: var(--black);
      font-weight: 900;
      text-decoration: none;
    }

    .privacy-page .closing-band {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto 90px;
      padding: clamp(30px, 5vw, 58px);
      border-radius: var(--radius-xl);
      background: var(--black);
      color: var(--white);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .privacy-page .closing-band h2 {
      margin: 0 0 10px;
      font-size: clamp(1.8rem, 4vw, 3.5rem);
      line-height: 0.95;
      letter-spacing: -0.06em;
    }

    .privacy-page .closing-band p {
      margin: 0;
      color: rgba(255, 255, 255, 0.68);
      max-width: 720px;
    }

    .privacy-page .closing-badge {
      width: 132px;
      height: 132px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      background: var(--mustard);
      color: var(--black);
      font-weight: 950;
      letter-spacing: -0.04em;
      transform: rotate(-8deg);
    }

    @media (max-width: 940px) {
      .privacy-page .hero, .privacy-page .policy-layout, .privacy-page .closing-band {
        grid-template-columns: 1fr;
      }

      .privacy-page .policy-layout {
        align-items: stretch;
        gap: 22px;
      }

      .privacy-page .hero {
        margin-top: 50px auto;
      }

      .privacy-page .sidebar {
        position: relative;
        position: -webkit-sticky;
        top: 0; /* adjust to 95px / 110px if needed */
        z-index: 20;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-height: none;
        overflow: hidden;
        padding: 14px 12px;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
        scrollbar-width: none;
      }

      .privacy-page .sidebar::-webkit-scrollbar {
        display: none;
      }

      .privacy-page .sidebar h2 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        margin: 0;
        padding: 0;
        color: var(--black);
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        white-space: nowrap;
        width: 100%;
        text-align: center;
      }

      .privacy-page .sidebar-links {
        display: flex;
        padding-bottom: 2px;
        align-items: center;
        gap: 10px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
      }

      .privacy-page .sidebar-links::-webkit-scrollbar {
        display: none;
      }

      .privacy-page .sidebar a {
        flex: 0 0 auto;
        border-bottom: 0;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--black);
        color: var(--white);
        font-size: 0.86rem;
        white-space: nowrap;
      }

      .privacy-page .sidebar a span {
        background: var(--mustard);
        color: var(--black);
      }

      .privacy-page .closing-badge {
        width: 110px;
        height: 110px;
      }
    }

    @media (max-width: 620px) {

      .privacy-page .hero, .privacy-page .policy-layout, .privacy-page .closing-band {
        width: min(100% - 24px, 1180px);
      }

      .privacy-page .hero-card {
        min-height: 360px;
        padding: 26px;
      }

      .privacy-page .chip-grid {
        grid-template-columns: 1fr;
      }
    }