@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./fonts/inter-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Syncopate';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./fonts/syncopate-700-latin.woff2') format('woff2');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #070707;
  --bg-soft: #0d0d0d;
  --bg-gradient: radial-gradient(circle at 50% -10%, #1a1a1a 0%, #070707 48%);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.56);
  --label: rgba(255,255,255,0.82);
  --border: rgba(255,255,255,0.1);
  --card: rgba(255,255,255,0.025);
  --card-strong: rgba(255,255,255,0.055);
  --accent-red: #8f1722;
  --accent-glow: rgba(143,23,34,0.16);
  --texture-base: rgba(255,255,255,0.052);
  --texture-edge: rgba(255,255,255,0.018);
  --crack-color: rgba(197,24,38,0.72);
  --crack-hot: rgba(255,223,223,0.58);
  --crack-soft: rgba(143,23,34,0.28);
  --branch-core: rgba(216,31,43,0.52);
  --branch-hot: rgba(255,216,216,0.46);
  --branch-deep: rgba(21,0,0,0.72);
  --smoke-core: rgba(255,255,255,0.13);
  --smoke-soft: rgba(255,255,255,0.05);
  --petal-core: #b51d2a;
  --petal-edge: #53080f;
  --switch-bg: rgba(255,255,255,0.05);
  --switch-border: rgba(255,255,255,0.1);
  --switch-knob: #ffffff;
  --switch-icon: #050505;
  --switch-muted-icon: rgba(255,255,255,0.4);
}

html.light-mode {
  --bg: #f4f2ee;
  --bg-soft: #ece9e4;
  --bg-gradient: radial-gradient(circle at 50% -10%, #ffffff 0%, #f4f2ee 48%);
  --text: #050505;
  --muted: rgba(0,0,0,0.5);
  --label: rgba(0,0,0,0.8);
  --border: rgba(0,0,0,0.09);
  --card: rgba(255,255,255,0.4);
  --card-strong: rgba(0,0,0,0.035);
  --accent-glow: rgba(143,23,34,0.08);
  --texture-base: rgba(0,0,0,0.075);
  --texture-edge: rgba(0,0,0,0.024);
  --crack-color: rgba(143,23,34,0.38);
  --crack-hot: rgba(255,255,255,0.7);
  --crack-soft: rgba(143,23,34,0.14);
  --branch-core: rgba(143,23,34,0.25);
  --branch-hot: rgba(255,255,255,0.44);
  --branch-deep: rgba(0,0,0,0.2);
  --smoke-core: rgba(120,120,120,0.14);
  --smoke-soft: rgba(120,120,120,0.055);
  --petal-core: #a31522;
  --petal-edge: #640c14;
  --switch-bg: rgba(0,0,0,0.04);
  --switch-border: rgba(0,0,0,0.08);
  --switch-knob: #050505;
  --switch-icon: #ffffff;
  --switch-muted-icon: rgba(0,0,0,0.4);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  transition: background-color 0.5s ease, color 0.5s ease;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: var(--bg);
  animation: pageReveal 0.85s cubic-bezier(0.8,0,0.2,1) forwards;
}

.brand-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint style;
  isolation: isolate;
}

.brand-atmosphere::before,
.brand-atmosphere::after {
  content: '';
  position: absolute;
  inset: -12vmax;
  opacity: 0.56;
  transition: opacity 0.5s ease;
  will-change: transform, opacity;
}

.brand-atmosphere::before {
  background:
    radial-gradient(circle at 18% 18%, var(--texture-base) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 22%, var(--texture-base) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 72%, var(--texture-edge) 0 1px, transparent 2px),
    linear-gradient(118deg, transparent 0 16%, var(--texture-edge) 16.3% 16.8%, transparent 17.1% 100%),
    linear-gradient(38deg, transparent 0 38%, var(--texture-edge) 38.2% 38.7%, transparent 39% 100%);
  background-size: 26px 26px, 36px 36px, 42px 42px, 100% 100%, 100% 100%;
  filter: contrast(1.18);
  animation: textureDrift 28s ease-in-out infinite alternate;
}

.brand-atmosphere::after {
  background:
    radial-gradient(circle at 50% 12%, var(--accent-glow), transparent 38%),
    radial-gradient(circle at 18% 78%, rgba(143,23,34,0.11), transparent 32%),
    radial-gradient(circle at 88% 45%, rgba(143,23,34,0.13), transparent 34%);
  filter: blur(24px);
  animation: ambientPulse 11s ease-in-out infinite alternate;
}

html.light-mode .brand-atmosphere::before {
  opacity: 0.48;
  filter: contrast(1.02);
}

html.light-mode .brand-atmosphere::after {
  opacity: 0.36;
}

.smoke-field,
.crack-field,
.branch-field,
.petal-field {
  position: absolute;
  inset: 0;
}

.smoke {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: auto;
  aspect-ratio: 2.08 / 1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--smoke-core) 0%, var(--smoke-soft) 38%, transparent 72%);
  filter: blur(var(--b));
  opacity: var(--o);
  transform: translate3d(0,0,0) rotate(var(--r));
  animation: smokeDrift var(--d) ease-in-out infinite alternate;
  animation-delay: var(--delay);
  mix-blend-mode: screen;
}

html.light-mode .smoke {
  mix-blend-mode: multiply;
}

.smoke-1 { --x: -10vw; --y: 20vh; --s: 34vw; --b: 16px; --o: 0.5; --r: -12deg; --d: 20s; --delay: -3s; }
.smoke-2 { --x: 62vw; --y: 42vh; --s: 40vw; --b: 22px; --o: 0.42; --r: 14deg; --d: 24s; --delay: -9s; }
.smoke-3 { --x: 12vw; --y: 84vh; --s: 34vw; --b: 20px; --o: 0.36; --r: 7deg; --d: 25s; --delay: -12s; }
.smoke-4 { --x: 38vw; --y: 10vh; --s: 24vw; --b: 17px; --o: 0.22; --r: 8deg; --d: 26s; --delay: -16s; }
.smoke-5 { --x: 76vw; --y: 78vh; --s: 28vw; --b: 19px; --o: 0.24; --r: -18deg; --d: 23s; --delay: -6s; }

.crack {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--crack-color) 18%, var(--crack-hot) 50%, var(--crack-color) 82%, transparent);
  box-shadow: 0 0 15px var(--crack-soft), 0 0 28px var(--crack-soft);
  opacity: var(--o);
  transform: rotate(var(--r)) scaleX(var(--scale, 1));
  transform-origin: center;
  animation: crackPulse var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}

.crack::before,
.crack::after {
  content: '';
  position: absolute;
  top: 0;
  width: 34%;
  height: 1px;
  border-radius: 999px;
  background: inherit;
  box-shadow: inherit;
  opacity: 0.65;
  transform-origin: left center;
}

.crack::before {
  left: 37%;
  transform: rotate(36deg);
}

.crack::after {
  left: 58%;
  transform: rotate(-31deg);
}

.crack-1 { --x: 5vw; --y: 28vh; --w: 24vw; --r: -17deg; --o: 0.32; --d: 7.6s; --delay: -1s; }
.crack-2 { --x: 64vw; --y: 16vh; --w: 27vw; --r: 15deg; --o: 0.38; --d: 8.4s; --delay: -4s; }
.crack-3 { --x: 67vw; --y: 76vh; --w: 23vw; --r: -21deg; --o: 0.3; --d: 9.2s; --delay: -2.4s; }

.branch {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: 78px;
  opacity: var(--o);
  transform: rotate(var(--r)) scale(var(--s, 1));
  transform-origin: center;
  animation: branchPulse var(--d) ease-in-out infinite;
  animation-delay: var(--delay);
}

.branch::before,
.branch::after,
.branch i,
.branch i::after {
  content: '';
  position: absolute;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--branch-deep) 4%, var(--branch-core) 22%, var(--branch-hot) 48%, var(--branch-core) 68%, transparent);
  box-shadow: 0 0 10px var(--crack-soft), 0 0 22px var(--crack-soft);
  transform-origin: left center;
}

.branch::before {
  left: 0;
  top: 45%;
  width: 100%;
  transform: skewY(-3deg);
}

.branch::after {
  left: 8%;
  top: 52%;
  width: 44%;
  opacity: 0.45;
  transform: rotate(8deg);
  filter: blur(0.4px);
}

.branch i:nth-child(1) { left: 18%; top: 43%; width: 28%; transform: rotate(-34deg); }
.branch i:nth-child(2) { left: 34%; top: 46%; width: 22%; transform: rotate(29deg); opacity: 0.82; }
.branch i:nth-child(3) { left: 53%; top: 44%; width: 30%; transform: rotate(-22deg); opacity: 0.72; }

.branch i::after {
  left: 62%;
  top: 0;
  width: 48%;
  opacity: 0.55;
  transform: rotate(var(--fork, 31deg));
}

.branch i:nth-child(2)::after { --fork: -35deg; }
.branch i:nth-child(3)::after { --fork: 24deg; }

.branch-1 { --x: -3vw; --y: 16vh; --w: 34vw; --r: -11deg; --o: 0.28; --s: 1; --d: 9s; --delay: -2s; }
.branch-2 { --x: 62vw; --y: 11vh; --w: 34vw; --r: 19deg; --o: 0.3; --s: 0.96; --d: 10s; --delay: -5s; }
.branch-3 { --x: 8vw; --y: 78vh; --w: 36vw; --r: 16deg; --o: 0.22; --s: 1; --d: 11s; --delay: -7s; }

.petal {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: auto;
  aspect-ratio: 1.62 / 1;
  border-radius: 78% 8% 76% 12%;
  background:
    radial-gradient(circle at 34% 36%, rgba(255,255,255,0.3), transparent 18%),
    linear-gradient(135deg, var(--petal-core), var(--petal-edge));
  box-shadow: inset -8px -7px 12px rgba(0,0,0,0.22), 0 0 18px rgba(143,23,34,0.18);
  opacity: 0;
  transform: translate3d(0,0,0) rotate(var(--r)) scale(var(--s));
  animation: petalDrift var(--d) linear infinite;
  animation-delay: var(--delay);
}

.petal::after {
  content: '';
  position: absolute;
  left: 18%;
  top: 49%;
  width: 68%;
  height: 1px;
  background: rgba(255,255,255,0.2);
  transform: rotate(-12deg);
  transform-origin: left center;
}

.petal-1 { --x: 6vw; --y: 60vh; --w: 28px; --r: 18deg; --s: 0.9; --d: 22s; --delay: -6s; --tx: 18vw; --ty: -70vh; --o: 0.58; }
.petal-2 { --x: 86vw; --y: 24vh; --w: 38px; --r: -32deg; --s: 1; --d: 26s; --delay: -12s; --tx: -24vw; --ty: 68vh; --o: 0.54; }
.petal-3 { --x: 78vw; --y: 76vh; --w: 32px; --r: 42deg; --s: 0.86; --d: 23s; --delay: -2s; --tx: -18vw; --ty: -70vh; --o: 0.52; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: 12vh;
  min-height: 90px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
}

.logo-box {
  height: 85%;
  min-height: 70px;
  display: flex;
  align-items: center;
  pointer-events: auto;
  transition: transform 0.4s ease;
}

.logo-box:hover {
  transform: scale(1.08) rotate(-2deg);
}

.logo-box img {
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.logo-black {
  display: none !important;
}

html.light-mode .logo-white {
  display: none !important;
}

html.light-mode .logo-black {
  display: block !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: auto;
}

.home-link {
  min-height: 34px;
  padding: 0 17px;
  border: 1px solid var(--switch-border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--switch-bg);
  color: var(--text);
  font-family: 'Syncopate', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.home-link:hover {
  border-color: var(--muted);
  transform: translateY(-2px);
}

.theme-toggle {
  position: relative;
  width: 66px;
  height: 34px;
  border: 1px solid var(--switch-border);
  border-radius: 999px;
  background: var(--switch-bg);
  backdrop-filter: blur(14px);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--muted);
  transform: translateY(-2px);
}

.theme-toggle-track {
  position: absolute;
  inset: 0;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.track-icon {
  width: 14px;
  height: 14px;
  color: var(--switch-muted-icon);
}

.theme-toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--switch-knob);
  color: var(--switch-icon);
  transition: transform 0.4s ease, background 0.35s ease, color 0.35s ease;
}

html.light-mode .theme-toggle-knob {
  transform: translateX(32px);
}

.knob-icon {
  position: absolute;
  width: 12px;
  height: 12px;
  transition: opacity 0.25s ease, transform 0.4s ease;
}

.knob-sun {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

.knob-moon {
  opacity: 1;
}

html.light-mode .knob-sun {
  opacity: 1;
  transform: scale(1) rotate(0);
}

html.light-mode .knob-moon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.legal-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 18vh 24px 70px;
}

.bg-glow {
  position: fixed;
  top: 36%;
  left: 50%;
  width: min(65vw, 850px);
  height: min(65vw, 850px);
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(130px);
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: breathe 8s ease-in-out infinite alternate;
}

.legal-shell {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 0 auto;
}

.legal-hero {
  margin-bottom: 42px;
  text-align: center;
  animation: fadeUp 0.8s ease 0.2s both;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-red);
  font-family: 'Syncopate', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.legal-hero h1 {
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(28px, 6vw, 62px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-line {
  width: 54px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--accent-red);
}

.legal-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.16);
  animation: fadeUp 0.9s ease 0.35s both;
}

.legal-section {
  padding: 34px 38px;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 15px;
  color: var(--label);
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.45;
  text-transform: uppercase;
}

.legal-section h3 {
  margin: 24px 0 10px;
  color: var(--label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.legal-section p,
.legal-section li,
.legal-address {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.85;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-section ul {
  margin: 10px 0 0 20px;
}

.legal-section li + li {
  margin-top: 5px;
}

.legal-section a {
  color: var(--text);
  text-decoration-color: var(--accent-red);
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}

.legal-section a:hover {
  color: #b93a45;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}

.detail-item {
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-strong);
}

.detail-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: 'Syncopate', sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.detail-value {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.required-note {
  padding: 20px 22px;
  border: 1px solid rgba(143,23,34,0.45);
  border-radius: 17px;
  background: rgba(143,23,34,0.08);
}

.required-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: 'Syncopate', sans-serif;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.required-note p {
  color: var(--label);
  font-size: 14px;
  line-height: 1.7;
}

.legal-footer {
  position: relative;
  z-index: 2;
  width: min(900px, 100%);
  margin: 28px auto 0;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: fadeUp 0.9s ease 0.5s both;
}

.legal-footer p {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  font-family: 'Syncopate', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-links a[aria-current='page'] {
  color: var(--text);
}

@keyframes pageReveal {
  from { opacity: 1; }
  to { opacity: 0; visibility: hidden; }
}

@keyframes textureDrift {
  from { transform: translate3d(0,0,0) scale(1.02) rotate(0deg); }
  to { transform: translate3d(18px,-14px,0) scale(1.05) rotate(0.35deg); }
}

@keyframes ambientPulse {
  from { opacity: 0.34; transform: scale(0.96); }
  to { opacity: 0.62; transform: scale(1.08); }
}

@keyframes smokeDrift {
  from { transform: translate3d(-3vw,1vh,0) rotate(var(--r)) scale(0.94); }
  to { transform: translate3d(4vw,-4vh,0) rotate(calc(var(--r) + 8deg)) scale(1.08); }
}

@keyframes crackPulse {
  0%, 100% { opacity: 0.12; transform: rotate(var(--r)) scaleX(0.72); }
  48%, 56% { opacity: var(--o); transform: rotate(var(--r)) scaleX(1); }
  58% { opacity: 0.06; }
}

@keyframes branchPulse {
  0%, 100% { opacity: 0.14; transform: rotate(var(--r)) scaleX(0.88) scaleY(var(--s, 1)); }
  42%, 52% { opacity: var(--o); transform: rotate(var(--r)) scaleX(1) scaleY(var(--s, 1)); }
  54% { opacity: 0.1; }
  58% { opacity: var(--o); }
}

@keyframes petalDrift {
  0% { opacity: 0; transform: translate3d(0,0,0) rotate(var(--r)) scale(var(--s)); }
  12%, 78% { opacity: var(--o); }
  100% { opacity: 0; transform: translate3d(var(--tx),var(--ty),0) rotate(calc(var(--r) + 360deg)) scale(var(--s)); }
}

@keyframes breathe {
  from { transform: translate(-50%,-50%) scale(0.9); opacity: 0.8; }
  to { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  .brand-atmosphere *,
  .brand-atmosphere::before,
  .brand-atmosphere::after,
  .branch-field,
  .bg-glow,
  .legal-hero,
  .legal-card,
  .legal-footer {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 700px) {
  .site-header {
    height: 84px;
    min-height: 84px;
    padding: 0 16px;
  }

  .logo-box {
    height: 58px;
    min-height: 0;
  }

  .header-actions {
    gap: 8px;
  }

  .home-link {
    min-height: 32px;
    padding: 0 12px;
    font-size: 7px;
    letter-spacing: 1px;
  }

  .theme-toggle {
    width: 62px;
    height: 32px;
  }

  .theme-toggle-knob {
    width: 24px;
    height: 24px;
  }

  html.light-mode .theme-toggle-knob {
    transform: translateX(30px);
  }

  .legal-page {
    padding: 118px 14px 42px;
  }

  .brand-atmosphere::before {
    inset: -18vmax;
  }

  .brand-atmosphere::after {
    filter: blur(18px);
  }

  .smoke-1 { --s: 72vw; }
  .smoke-2 { --x: 42vw; --s: 80vw; }
  .smoke-3 { --s: 68vw; }
  .smoke-4 { --x: 12vw; --s: 52vw; }
  .smoke-5 {
    display: none;
  }

  .branch {
    height: 62px;
  }

  .branch-1 { --x: -12vw; --w: 60vw; --o: 0.2; }
  .branch-2 { --x: 48vw; --w: 58vw; --o: 0.22; }
  .branch-3 {
    display: none;
  }

  .petal-2,
  .petal-3 {
    display: none;
  }

  .legal-hero {
    margin-bottom: 28px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 3.5px;
  }

  .legal-card {
    border-radius: 22px;
  }

  .legal-section {
    padding: 26px 22px;
  }

  .legal-section p,
  .legal-section li,
  .legal-address {
    font-size: 14px;
    line-height: 1.75;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .legal-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    gap: 13px;
  }
}
