  :root {
    --cream:#FAF7F2; --cream-2:#F2EEE6; --sand:#E8DECA;
    --ink:#1B1B1F; --ink-soft:#3E3E45; --ink-mute:#8A8A92; --line:#E4E0D6;
    --red:#C8102E; --red-deep:#9E0C24; --red-dark:#7E0A1D; --paper:#FFFFFF;
    --serif:"Cormorant Garamond", "Times New Roman", serif;
    --sans:"Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sans-body:"Open Sans", -apple-system, sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body { font-family: var(--sans-body); color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; font-size: 16px; line-height: 1.65; }
  a { color: inherit; text-decoration: none; } img { display: block; max-width: 100%; }
  button { font: inherit; color: inherit; }

  /* ===== NAV ===== */
  .hr13-top { position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 100; width: calc(100% - 32px); max-width: 1400px; background: rgba(255,255,255,.38); backdrop-filter: blur(40px) saturate(220%); -webkit-backdrop-filter: blur(40px) saturate(220%); border: 1px solid rgba(255,255,255,.55); border-top: none; border-radius: 0 0 22px 22px; box-shadow: 0 18px 50px -16px rgba(27,27,31,.18), inset 0 1px 0 rgba(255,255,255,.85), inset 0 -1px 0 rgba(255,255,255,.12); transition: background .25s ease, box-shadow .35s ease; }
  .hr13-top::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,.4) 0%, transparent 30%, transparent 70%, rgba(255,255,255,.08) 100%); }
  .hr13-top-inner { position: relative; z-index: 1; padding: 30px 36px 0 36px; display: flex; justify-content: flex-start; align-items: center; gap: 32px; transition: padding .25s ease; }
  .hr13-top-inner > .hr13-brand { transform: translateY(-15px); transition: transform .25s ease; }
  .hr13-top.scrolled .hr13-top-inner > .hr13-brand { transform: translateY(-11px); }
  .hr13-top-inner > div:last-child { transform: translateY(-15px); transition: transform .25s ease; }
  .hr13-top.scrolled .hr13-top-inner > div:last-child { transform: translateY(-11px); }
  .hr13-top.scrolled { background: rgba(255,255,255,.65); box-shadow: 0 18px 40px -16px rgba(27,27,31,.22), inset 0 1px 0 rgba(255,255,255,.9); }
  .hr13-top.scrolled .hr13-top-inner { padding-top: 22px; }
  .hr13-top.scrolled .hr13-nav a { padding-bottom: 28px; }
  .hr13-brand img { height: 32px; width: auto; display: block; }
  .hr13-nav { display: flex; justify-content: flex-end; gap: 13px; margin-left: auto; }
  .hr13-nav a { position: relative; padding: 14px 4px 34px 4px; font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--ink-soft); cursor: pointer; transition: color .25s ease, font-weight .15s ease, padding-bottom .25s ease; white-space: nowrap; }
  .hr13-nav a::before { content: attr(data-label); display: block; height: 0; overflow: hidden; visibility: hidden; font-weight: 600; pointer-events: none; }
  .hr13-nav a::after { content: ""; position: absolute; left: 4px; right: 4px; bottom: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s cubic-bezier(.6,.2,.2,1); }
  .hr13-nav a.active::after { transform: scaleX(1); }
  .hr13-nav a.active { color: var(--ink); font-weight: 600; }
  .hr13-nav > a:not(.active):hover, .hr13-nav .has-dd > a:not(.active):hover { color: var(--ink-soft); font-weight: 500; }
  .hr13-nav > a:not(.active):hover::after, .hr13-nav .has-dd > a:not(.active):hover::after { transform: scaleX(0); }
  .hr13-nav .has-dd { position: relative; display: inline-flex; align-items: stretch; }
  .hr13-nav .has-dd > a { padding-right: 16px; }
  .hr13-nav .has-dd > a::after { right: 16px; }
  .hr13-nav .has-dd > a .caret { display: inline-block; width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); margin-left: 8px; opacity: .55; transition: transform .25s ease, opacity .25s ease; }
  .hr13-nav .has-dd:hover > a .caret, .hr13-nav .has-dd:focus-within > a .caret { transform: rotate(225deg) translate(-2px, -2px); opacity: 1; }
  .hr13-nav .dd { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-8px); min-width: 320px; margin-top: -8px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 10px; box-shadow: 0 24px 60px -20px rgba(27,27,31,.25); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, transform .3s cubic-bezier(.6,.2,.2,1), visibility .3s; z-index: 110; display: flex; flex-direction: column; gap: 2px; }
  .hr13-nav .has-dd::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
  .hr13-nav .has-dd:hover .dd, .hr13-nav .has-dd:focus-within .dd { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .hr13-nav .dd a { position: static; padding: 14px 18px; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); border-radius: 0; white-space: nowrap; border-bottom: 1px solid var(--line); }
  .hr13-nav .dd a:last-child { border-bottom: none; }
  .hr13-nav .dd a::before, .hr13-nav .dd a::after { display: none; }
  .hr13-nav .dd a:hover { color: var(--red); }
  .hr13-nav .dd a .sub { display: block; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 15px; color: var(--ink-mute); margin-top: 2px; }
  .hr13-nav .dd a:hover .sub { color: var(--ink-soft); }
  .hr13-burger { display: none; width: 42px; height: 42px; background: transparent; color: var(--ink); align-items: center; justify-content: center; border: none; cursor: pointer; padding: 0; }
  .hr13-burger:hover { color: var(--red); }
  .hr13-burger svg { width: 22px; height: 22px; }

  /* ===== LEGAL HERO ===== */
  .legal-hero { background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 55%, #E6E6E6 100%); padding: 170px 32px 90px; }
  .legal-hero .wrap { max-width: 920px; margin: 0 auto; }
  .eyebrow { display: inline-flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: 4px; color: #575759; font-weight: 500; }
  .eyebrow::before { content: ""; width: 35px; height: 1px; background: var(--red); }
  .legal-hero h1 { font-family: var(--sans); font-weight: 300; font-size: clamp(40px, 5vw, 72px); line-height: 1.02; letter-spacing: -0.025em; margin: 22px 0 18px; color: var(--ink); }
  .legal-hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--red); font-size: 1.1em; line-height: .9; }
  .legal-hero p { font-family: var(--sans-body); font-size: 17px; line-height: 1.7; color: var(--ink-soft); max-width: 620px; margin: 0; }

  /* ===== LEGAL BODY ===== */
  .legal { background: var(--paper); padding: 90px 32px 130px; }
  .legal .wrap { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }
  .legal-toc { position: sticky; top: 120px; align-self: start; }
  .legal-toc .lbl { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px; }
  .legal-toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
  .legal-toc li { counter-increment: toc; }
  .legal-toc a { display: flex; gap: 12px; padding: 9px 0; font-family: var(--sans); font-size: 13.5px; font-weight: 500; color: var(--ink-soft); line-height: 1.35; border-bottom: 1px solid var(--line); transition: color .2s ease; }
  .legal-toc li:last-child a { border-bottom: none; }
  .legal-toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--serif); font-style: italic; color: var(--red); font-size: 15px; }
  .legal-toc a:hover { color: var(--red); }

  .legal-content { max-width: 640px; }
  .legal-block { padding: 0 0 48px; }
  .legal-block + .legal-block { border-top: 1px solid var(--line); padding-top: 48px; }
  .legal-block h2 { font-family: var(--sans); font-weight: 400; font-size: clamp(24px, 3vw, 34px); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 22px; color: var(--ink); scroll-margin-top: 110px; }
  .legal-block h2 em { font-family: var(--serif); font-style: italic; color: var(--red); font-weight: 500; font-size: 1.15em; }
  .legal-block h3 { font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: -0.005em; color: var(--ink); margin: 28px 0 10px; }
  .legal-block p { font-size: 15.5px; line-height: 1.78; color: var(--ink-soft); margin: 0 0 16px; }
  .legal-block p:last-child { margin-bottom: 0; }
  .legal-block a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; word-break: break-word; }
  .legal-block a:hover { color: var(--red-deep); }
  .legal-block strong { color: var(--ink); font-weight: 600; }
  .addr-card { background: var(--cream); border-left: 2px solid var(--red); border-radius: 0 12px 12px 0; padding: 26px 30px; margin: 6px 0 8px; }
  .addr-card p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink); }
  .addr-card .name { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 24px; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 6px; }
  .addr-card .person { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink); margin-top: 12px; }
  .contact-rows { display: flex; flex-direction: column; gap: 0; margin: 4px 0 0; }
  .contact-rows div { display: flex; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
  .contact-rows div:last-child { border-bottom: none; }
  .contact-rows .k { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute); min-width: 96px; padding-top: 3px; }
  .contact-rows .v { color: var(--ink); }

  /* ===== FOOTER ===== */
  footer { background: var(--ink); color: var(--cream); padding: 100px 32px 40px; border-top: 1px solid rgba(255,255,255,.06); }
  .foot-grid { max-width: 1400px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
  .foot-brand img { height: 32px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 24px; }
  .foot-brand p { font-size: 14px; color: rgba(255,255,255,.7); max-width: 320px; line-height: 1.7; margin: 0; }
  footer h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 18px; }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer li { margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,.8); }
  footer li a:hover { color: var(--cream); }
  .foot-bottom { max-width: 1400px; margin: 80px auto 0; padding: 32px 0 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 10px; }
  .foot-bottom a { color: rgba(255,255,255,.5); }
  .foot-bottom .links a { margin-left: 20px; }
  .foot-bottom a:hover { color: var(--cream); }

  @media (max-width: 1180px) { .hr13-nav { gap: 4px; } .hr13-nav a { padding: 9px 4px; font-size: 14px; } .hr13-top-inner { padding: 18px 24px; } }
  @media (max-width: 980px) {
    .hr13-nav { display: none; } .hr13-burger { display: inline-flex; }
    .hr13-top-inner > div:last-child { margin-left: auto; }
    .hr13-brand img { height: 26px; }
    .hr13-top-inner { padding: 14px 22px; }
    .hr13-top.scrolled .hr13-top-inner { padding: 12px 22px; }
    .hr13-top-inner > .hr13-brand, .hr13-top-inner > div:last-child { transform: none; }
    .hr13-top.scrolled .hr13-top-inner > .hr13-brand, .hr13-top.scrolled .hr13-top-inner > div:last-child { transform: none; }
    .legal-hero { padding: 130px 24px 64px; }
    .legal .wrap { grid-template-columns: 1fr; gap: 12px; }
    .legal-toc { display: none; }
    .legal-content { max-width: 100%; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 720px) {
    .hr13-top-inner { padding: 12px 18px; gap: 12px; }
    .legal-hero { padding: 110px 20px 50px; }
    .legal { padding: 56px 20px 90px; }
    footer { padding: 70px 20px 30px; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
    .foot-bottom .links a { margin-left: 0; margin-right: 18px; }
  }
  @media (max-width: 640px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }
