/* ============================================================
   CreaBlond — style.css
   ============================================================ */

:root {
  --ink: oklch(0.16 0.02 280);
  --background: oklch(0.985 0.012 95);
  --card: oklch(1 0 0);
  --muted: oklch(0.4 0.02 280);
  --pop-pink: oklch(0.68 0.27 350);
  --pop-lime: oklch(0.88 0.22 130);
  --pop-blue: oklch(0.62 0.22 250);
  --pop-yellow: oklch(0.9 0.18 95);
  --pop-orange: oklch(0.72 0.2 50);
  --shadow: 6px 6px 0 0 var(--ink);
  --shadow-lg: 10px 10px 0 0 var(--ink);
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--ink);
  background-image: radial-gradient(oklch(0.16 0.02 280 / 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  line-height: 1.6;
}
h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: -0.025em; line-height: 0.95; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul,ol { list-style: none; }
address { font-style: normal; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 6rem 0; }
.section-dark { background-color: var(--ink); color: var(--background); }
.section-usp { background-color: var(--pop-pink); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.section-usp .section-desc { color: var(--ink); opacity: 0.75; }
.usp-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 2rem; }
@media(min-width:640px){ .usp-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .usp-grid { grid-template-columns: 1fr 1fr 1fr; } }
.usp-card { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; }
.usp-card .service-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.usp-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin-bottom: 0.5rem; }
.section-yellow { background-color: var(--pop-yellow); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.section-faq { background-color: var(--pop-lime); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }

.section-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 3rem; }
.section-h2 { margin-top: .75rem; font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900; }
.section-desc { max-width: 28rem; color: var(--muted); }

/* Tags */
.tag { display: inline-flex; align-items: center; padding: .3rem .8rem; border-radius: 999px; border: 2px solid var(--ink); background: var(--background); font-family: var(--font-display); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.tag-lime { background: var(--pop-lime); }
.tag-pink { background: var(--pop-pink); }
.tag-blue { background: var(--pop-blue); }
.tag-orange { background: var(--pop-orange); }
.tag-white { color: white; }
.tag-outline-light { border-color: var(--background); color: var(--background); background: transparent; }

/* Buttons */
.btn-pop { display: inline-flex; align-items: center; gap: .5rem; padding: .9rem 1.4rem; border-radius: 999px; border: 2px solid var(--ink); background: var(--ink); color: var(--background); font-weight: 700; font-family: var(--font-display); box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s; cursor: pointer; }
.btn-pop:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 0 var(--ink); }
.btn-pop:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 0 var(--ink); }
.btn-pop-pink { background: var(--pop-pink); color: white; }
.btn-pop-blue { background: var(--pop-blue); color: white; }
.btn-pop-lime { background: var(--pop-lime); color: var(--ink); }
.btn-pop-outline { background: var(--background); color: var(--ink); }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

/* Cards */
.card-pop { background: var(--card); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── NAV ── */
.nav-sticky { position: sticky; top: 0; z-index: 50; border-bottom: 2px solid var(--ink); background: oklch(0.985 0.012 95 / 0.85); backdrop-filter: blur(12px); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: .75rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; }
.nav-dot { display: inline-block; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--pop-pink); border: 2px solid var(--ink); flex-shrink: 0; }
.nav-links { display: none; gap: 1.75rem; }
.nav-links a { font-family: var(--font-display); font-weight: 600; font-size: .875rem; transition: color .15s; }
.nav-links a:hover { color: var(--pop-pink); }
@media(min-width:768px){ .nav-links { display: flex; } }

/* Hamburger */
.nav-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 2.25rem; height: 2.25rem; background: none; border: 2px solid var(--ink); border-radius: 8px; cursor: pointer; padding: .35rem .4rem; flex-shrink: 0; }
.nav-hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media(min-width:768px){ .nav-hamburger { display: none; } }

/* Mobile drawer */
.nav-drawer { display: flex; flex-direction: column; gap: 0; background: oklch(0.985 0.012 95); border-top: 2px solid var(--ink); padding: 0 1.25rem; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.nav-drawer.open { max-height: 400px; padding: 1rem 1.25rem 1.25rem; }
.nav-drawer a { font-family: var(--font-display); font-weight: 600; font-size: 1rem; padding: .65rem 0; border-bottom: 1px solid oklch(0.9 0.01 95); transition: color .15s; }
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: var(--pop-pink); }
.nav-drawer .drawer-cta { margin-top: .75rem; text-align: center; }
@media(min-width:768px){ .nav-drawer { display: none !important; } }

/* ── HERO ── */
.hero-section { position: relative; overflow: hidden; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 3.5rem 1.25rem 5rem; display: grid; gap: 2.5rem; align-items: center; }
@media(min-width:768px){ .hero-inner { grid-template-columns: 7fr 5fr; padding-top: 5rem; } }
.hero-h1 { margin-top: 1.25rem; font-size: clamp(2.8rem, 8vw, 5rem); font-weight: 900; line-height: 0.95; text-wrap: balance; }
.highlight { display: inline-block; padding: 0 .5rem; margin: 0 .3rem; }
.highlight-pink { background: var(--pop-pink); color: white; transform: rotate(-2deg); }
.highlight-blue { background: var(--pop-blue); color: white; transform: rotate(2deg); }
.hero-sub { margin-top: 1.5rem; max-width: 36rem; font-size: 1.1rem; color: var(--muted); line-height: 1.6; }
.hero-btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 28rem; }
.stat-num { font-family: var(--font-display); font-size: 1.875rem; font-weight: 900; color: var(--pop-pink); }
.stat-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.hero-image-wrap { position: relative; }
.deco-circle { position: absolute; border: 2px solid var(--ink); border-radius: 50%; display: none; }
.deco-lime { width: 6rem; height: 6rem; background: var(--pop-lime); top: -1.5rem; left: -1.5rem; }
.deco-blue-br { width: 4rem; height: 4rem; background: var(--pop-blue); bottom: 2.5rem; right: -1rem; }
@media(min-width:768px){ .deco-circle { display: block; } }
.hero-img-card { overflow: hidden; transform: rotate(2deg); }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: -1.25rem; left: -1.25rem; padding: .75rem 1rem; transform: rotate(-3deg); }
.hero-badge p { font-family: var(--font-display); font-size: .875rem; font-weight: 900; }

/* ── MARQUEE ── */
.marquee-strip { border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--pop-yellow); overflow: hidden; }
.marquee-track { display: flex; width: max-content; white-space: nowrap; animation: marquee 28s linear infinite; padding: .75rem 0; will-change: transform; }
@media(max-width:767px){ .marquee-track { animation-duration: 14s; } }
.marquee-track span { padding: 0 1.5rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; text-transform: uppercase; flex-shrink: 0; }
@keyframes marquee { from{transform:translate3d(0,0,0)} to{transform:translate3d(-50%,0,0)} }

/* ── SERVICES ── */
.services-grid { display: grid; gap: 2rem; }
@media(min-width:768px){ .services-grid { grid-template-columns: 1fr 1fr; } }
.service-card { overflow: hidden; }
.service-img-wrap { position: relative; aspect-ratio: 5/3; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; }
.service-tag { position: absolute; top: 1rem; left: 1rem; }
.service-body { padding: 1.75rem; }
.service-body h3 { font-size: clamp(1.3rem,2.5vw,1.7rem); font-weight: 900; line-height: 1.1; }
.service-body p { margin-top: .75rem; color: var(--muted); }
.service-bullets { margin-top: 1.25rem; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; font-size: .875rem; font-weight: 600; }
.service-bullets li { display: flex; align-items: center; gap: .5rem; }
.bullet-dot { display: inline-block; width: .5rem; height: .5rem; border-radius: 50%; background: var(--ink); flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(min-width:768px){ .gallery-grid { grid-template-columns: repeat(4,1fr); } }
.gallery-item { position: relative; overflow: hidden; border-radius: 1rem; border: 2px solid var(--background); aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── ABOUT ── */
.about-grid { display: grid; gap: 3rem; }
@media(min-width:768px){ .about-grid { grid-template-columns: 7fr 5fr; align-items: start; } }
.about-h2 { color: var(--ink); }
.about-lead { margin-top: 1rem; font-size: 1.1rem; color: oklch(0.16 0.02 280 / 0.8); }
.about-card { margin-top: 1.5rem; padding: 1.5rem; background: var(--card); }
.about-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; }
.about-card p { margin-top: .5rem; color: var(--muted); }
.about-extra { margin-top: 1.5rem; color: oklch(0.16 0.02 280 / 0.8); }
.about-cards { display: flex; flex-direction: column; gap: 1rem; padding-top: 4rem; }
.about-tag-card { padding: 1.25rem 1.5rem; background: var(--pop-lime); }
.about-tag-card p { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--ink); }

/* ── PROCESS ── */
.process-header { max-width: 40rem; margin-bottom: 3rem; }
.process-grid { display: grid; gap: 1.25rem; }
@media(min-width:768px){ .process-grid { grid-template-columns: repeat(4,1fr); } }
.process-step { padding: 1.5rem; }
.step-num { display: block; font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--pop-pink); line-height: 1; }
.process-step h3 { margin-top: .5rem; font-size: 1.25rem; font-weight: 900; line-height: 1.2; }
.process-step p { margin-top: .5rem; font-size: .875rem; color: var(--muted); line-height: 1.5; }

/* ── FAQ ── */
.faq-inner { display: grid; gap: 3rem; }
@media(min-width:768px){ .faq-inner { grid-template-columns: 4fr 8fr; align-items: start; } }
.faq-left p { margin-top: .75rem; color: var(--ink); opacity: .8; }
.faq-list { display: flex; flex-direction: column; gap: 2rem; }
.faq-item { padding: 1.25rem; background: var(--background); }
.faq-item summary { cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span:first-child { font-family: var(--font-display); font-size: 1rem; font-weight: 900; }
.faq-icon { display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; border: 2px solid var(--ink); background: var(--pop-pink); color: white; font-weight: 900; font-family: var(--font-display); transition: transform .2s; flex-shrink: 0; }
.faq-item p { margin-top: .75rem; color: var(--muted); line-height: 1.5; }
.faq-group { display: flex; flex-direction: column; gap: .75rem; }
.faq-group .faq-items { display: flex; flex-direction: column; gap: .75rem; }
.faq-group-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; padding: .5rem 1rem; background: var(--ink); color: var(--background); border-radius: 4px; display: inline-block; margin-bottom: .25rem; }

/* ── QUOTE ── */
.quote-card { background-image: linear-gradient(135deg, var(--pop-pink) 0%, var(--pop-orange) 50%, var(--pop-yellow) 100%); color: var(--ink); padding: 2rem; position: relative; overflow: hidden; }
@media(min-width:768px){ .quote-card { padding: 3.5rem; } }
.quote-deco-circle { position: absolute; top: -2.5rem; right: -2.5rem; width: 12rem; height: 12rem; border-radius: 50%; background: var(--pop-blue); border: 2px solid var(--ink); opacity: .9; animation: spin-slow 18s linear infinite; }
.quote-content { position: relative; }
.quote-card h2 { font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; text-wrap: balance; }
.quote-card p { margin-top: 1rem; max-width: 36rem; font-size: 1.1rem; line-height: 1.6; }
.quote-btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── FOOTER ── */
.site-footer { border-top: 2px solid var(--ink); background: var(--ink); color: var(--background); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 2.5rem 1.25rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
@media(min-width:768px){ .footer-inner { flex-direction: row; align-items: center; } }
.footer-logo { display: flex; align-items: center; gap: .75rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 900; margin-bottom: .5rem; }
.footer-dot { display: inline-block; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--pop-pink); border: 2px solid var(--background); flex-shrink: 0; }
.footer-address { font-size: .875rem; opacity: .8; line-height: 1.8; }
.footer-address a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-copy { font-size: .875rem; opacity: .7; }
.footer-social { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0 .5rem; }
.footer-social-link { display: inline-flex; align-items: center; gap: .4rem; color: inherit; text-decoration: none; font-size: .875rem; opacity: .8; transition: opacity .2s; }
.footer-social-link:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

/* ── GALLERY FILTER ── */
.gallery-filters {
  display: flex;
  gap: .625rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.gallery-btn {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1.1rem;
  border-radius: 999px;
  border: 2px solid var(--background);
  background: transparent;
  color: var(--background);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s, box-shadow .15s;
}

.gallery-btn:hover {
  background: oklch(1 0 0 / .15);
  transform: translate(-2px,-2px);
  box-shadow: 4px 4px 0 0 var(--background);
}

.gallery-btn.active {
  background: var(--background);
  color: var(--ink);
  box-shadow: 4px 4px 0 0 oklch(1 0 0 / .4);
}

/* label badge on each image */
.gallery-label {
  position: absolute;
  bottom: .6rem;
  left: .6rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: white;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}

.gallery-label-laser { background: var(--pop-pink); }
.gallery-label-druck { background: var(--pop-blue); }

.gallery-item:hover .gallery-label { opacity: 1; transform: translateY(0); }

/* hide filtered-out items */
.gallery-item.hidden {
  display: none;
}

/* ── Impressum Modal ── */
.footer-legal-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  color: inherit; font: inherit; font-size: .875rem; opacity: .7;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity .2s;
}
.footer-legal-btn:hover { opacity: 1; }

.legal-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.legal-modal[hidden] { display: none; }
.legal-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); backdrop-filter: blur(3px); }
.legal-modal-box {
  position: relative; z-index: 1;
  background: var(--color-surface, #fff); color: var(--color-text, #111);
  border-radius: 1rem; padding: 2rem 2rem 2.5rem;
  max-width: 640px; width: calc(100% - 2rem);
  max-height: 85vh; overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.legal-modal-box h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 1.25rem; font-family: var(--font-display, inherit); }
.legal-modal-box h3 { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .6; margin: 1.25rem 0 .35rem; }
.legal-modal-box p { font-size: .9375rem; line-height: 1.7; margin-bottom: .5rem; }
.legal-modal-box a { color: inherit; text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.legal-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; opacity: .5; padding: .25rem .5rem; border-radius: .375rem;
  transition: opacity .2s, background .2s; color: inherit;
}
.legal-modal-close:hover { opacity: 1; background: rgba(0,0,0,.07); }

/* ============================================================
   GOOGLE REVIEWS SECTION
   ============================================================ */
.section-reviews {
  background-color: var(--background);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.reviews-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.reviews-rating-summary {
  margin-top: 1rem;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  flex-wrap: wrap;
  font-size: 1.05rem;
}
.reviews-stars { color: var(--pop-orange); font-size: 1.3rem; letter-spacing: .1em; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.review-card-wide { grid-column: span 2; }
.review-stars { color: var(--pop-orange); font-size: 1.05rem; letter-spacing: .1em; }
.review-text { font-size: .95rem; line-height: 1.65; flex-grow: 1; }
.review-author { font-family: var(--font-display); font-weight: 700; font-size: .9rem; opacity: .75; }
.reviews-cta { text-align: center; margin-top: 3rem; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card-wide { grid-column: span 1; }
}

/* xTool ProHub Badge */
.xtool-badge {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: var(--pop-lime);
  color: var(--ink);
  padding: 1.75rem 2rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.xtool-badge:hover { transform: rotate(0deg) translateY(-2px) !important; }
.xtool-badge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* 3-column material/textile grids */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3col { grid-template-columns: 1fr; }
}
.xtool-badge-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.xtool-badge-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .65;
}
.xtool-badge-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}
.xtool-badge-sub {
  font-size: .9rem;
  opacity: .85;
  line-height: 1.55;
  margin-top: .25rem;
}
.xtool-badge-arrow {
  font-size: 1.5rem;
  opacity: .5;
  flex-shrink: 0;
}

/* ============================================================
   LEGAL PAGES (standalone /impressum/ & /datenschutz/)
   ============================================================ */
.legal-page-section { padding-top: 7rem; }
.legal-page-content {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-surface, #fff);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.legal-page-content h1 {
  font-size: 2rem; font-weight: 900; margin-bottom: 1.5rem;
  font-family: var(--font-display, inherit);
}
.legal-page-content h2 {
  font-size: .875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; opacity: .6; margin: 1.75rem 0 .5rem;
}
.legal-page-content h2:first-of-type { margin-top: 0; }
.legal-page-content p { font-size: .9375rem; line-height: 1.7; margin-bottom: .5rem; }
.legal-page-content a { color: inherit; text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.legal-page-back { display: inline-block; margin-bottom: 1.5rem; font-size: .875rem; opacity: .7; text-decoration: underline; text-underline-offset: 3px; }
.legal-page-back:hover { opacity: 1; }
