body { -webkit-font-smoothing: antialiased; }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.display sup {
  letter-spacing: normal;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ph {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 110% at 18% 8%,  #2c2c2c 0%, transparent 58%),
    radial-gradient(90%  90%  at 88% 84%, #202020 0%, transparent 62%),
    linear-gradient(158deg, #141414 0%, #090909 100%);
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right,  rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 0; right: 0; bottom: 1.25rem;
  text-align: center;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #4a4a4a;
}

.marquee { display: flex; width: max-content; animation: marquee var(--marquee-duration, 126s) linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

details[open] .plus { transform: rotate(45deg); color: var(--color-accent); }
summary:hover .plus { color: var(--color-accent); }
summary::-webkit-details-marker { display: none; }

.tick { color: var(--color-accent); opacity: 0.85; }

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  flex: none;
}

.map-embed iframe {
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) contrast(0.9);
  transition: filter 0.4s ease;
}
.map-embed:hover iframe,
.map-embed:focus-within iframe {
  filter: none;
}

a.rounded-full.bg-white,
button.rounded-full.bg-white {
  box-shadow: 0 8px 26px -12px color-mix(in srgb, var(--color-accent) 55%, transparent);
}
a.rounded-full.bg-white:hover,
button.rounded-full.bg-white:hover {
  box-shadow:
    0 0 22px -3px color-mix(in srgb, var(--color-accent) 65%, transparent),
    0 10px 32px -8px color-mix(in srgb, var(--color-accent) 45%, transparent);
}

a.rounded-full.border:hover,
button.rounded-full.border:hover {
  box-shadow: 0 0 20px -5px color-mix(in srgb, var(--color-accent) 45%, transparent);
}

@media (prefers-reduced-motion: reduce) {
  a.rounded-full.bg-white,
  button.rounded-full.bg-white,
  a.rounded-full.border,
  button.rounded-full.border { transition: none; }
}

details[open] > summary ~ * {
  animation: details-reveal 0.28s ease-out;
}
@keyframes details-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  details[open] > summary ~ * { animation: none; }
}

.rich-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.375rem;
  line-height: 1.2;
  color: #fff;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rich-text h2:first-of-type { margin-top: 2.5rem; }
.rich-text p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.25rem;
}
.rich-text ul {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rich-text li {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  padding: 1rem 0 1rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.rich-text li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0.85rem;
  color: var(--color-accent);
  opacity: 0.85;
}
.rich-text strong { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.rich-text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--color-accent); }
.rich-text a:hover { text-decoration-color: #fff; }