
:root {
  --bg: #fbfbfd;
  --card-bg: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --border: #e5e5ea;
  --ring: #0a84ff;
  --shadow: 0 8px 24px rgba(0,0,0,.06), 0 1px 1px rgba(0,0,0,.04);
  --radius: 18px;
  --wrap: 1120px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --card-bg: #111113;
    --text: #f5f5f7;
    --muted: #a1a1a6;
    --border: #2c2c2e;
    --ring: #0a84ff;
    --shadow: 0 12px 32px rgba(0,0,0,.5);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); }

.all-section { padding: clamp(32px, 5vw, 64px) 16px; }
.all-wrap { max-width: var(--wrap); margin: 0 auto; }

.all-header { margin: 0 0 20px; }
.all-header h2 {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.1;
}
.all-sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Arial, "Noto Sans";
  font-size: clamp(14px, 1.6vw, 16px);
}

.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(12px, 2.2vw, 20px);
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:has(a:focus-visible),
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08), 0 1px 1px rgba(0,0,0,.05);
  border-color: color-mix(in srgb, var(--ring) 22%, var(--border));
}

.card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  height: 100%;
  outline: none;
}

.card-media {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f2f2f7;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.005);
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .2s ease;
}
.card:hover .card-media img { transform: scale(1.03); }

.card-body {
  padding: 14px 16px 16px;
  display: grid;
  gap: 8px;
}

.card-title {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Arial, "Noto Sans";
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: 18px;
  line-height: 1.25;
}

.card-desc {
  margin: 0;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Arial, "Noto Sans";
  font-size: 15px;
  line-height: 1.45;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}
.tags li {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Arial, "Noto Sans";
  font-size: 12.5px;
  line-height: 1;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card-bg) 86%, var(--border));
  color: var(--text);
}

.card-link:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 70%, transparent);
  border-radius: calc(var(--radius) - 2px);
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .card-media img { transition: none !important; }
}

@media (max-width: 380px) {
  .card-title { font-size: 17px; }
  .card-desc { font-size: 14px; }
}

.recipe-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 64px) 16px;
}

.recipe-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  font-weight: 700;
}

.recipe-sub {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero {
  border-radius: 22px;
  overflow: hidden;
  background: #f2f2f7;
  box-shadow: var(--shadow);
  margin-bottom: clamp(20px, 3vw, 28px);
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.recipe-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .recipe-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}


.cardish {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
}
.cardish h2 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.meta {
  display: flex;
  gap: 14px;
  color: var(--muted);
  margin-bottom: 4px;
}
.meta span { white-space: nowrap; }


.ingredients,
.steps {
  margin: 0;
  padding-left: 18px;
}
.ingredients li,
.steps li {
  margin: 6px 0;
}

.credits {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
}
.credits a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .cardish { transition: none !important; }
}


.cta-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.cta-text h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.cta-sub {
  margin: 6px 0 12px;
  color: var(--muted);
}

.cta-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f7;
}
.cta-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 860px) {
  .cta-banner {
    grid-template-columns: 1.1fr .9fr;
  }
}

.section-head { display: flex; gap: 12px; justify-content: space-between; align-items: end; margin: 0 0 16px; }
.section-head h1, .section-head h2 { margin: 0; letter-spacing: -0.02em; }

.link-pill {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card-bg) 88%, var(--border));
  color: var(--text);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Arial, "Noto Sans";
  font-size: 14px;
  line-height: 1;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.link-pill:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--ring) 22%, var(--border)); }
.link-pill:focus-visible { outline: 2px solid transparent; box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 70%, transparent); }

.v-flipped{
    -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(48px, 8vw, 96px) 0;
  background: radial-gradient(1400px 800px at 10% -10%, rgba(10,132,255,.08), transparent 60%),
              radial-gradient(1000px 600px at 90% -20%, rgba(255,55,95,.08), transparent 60%),
              var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; }
}

.hero-bg { 
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.blob {
  position: absolute; filter: blur(40px); opacity: .55; transform: translateZ(0);
}
.blob-a { 
  width: 44vmax; height: 44vmax; top: -18vmax; left: -10vmax;
  background: radial-gradient(closest-side, rgba(10,132,255,.25), transparent 70%);
}
.blob-b {
  width: 36vmax; height: 36vmax; top: -22vmax; right: -8vmax;
  background: radial-gradient(closest-side, rgba(255,55,95,.22), transparent 70%);
}

.grid-noise {
  position: absolute; inset: -50% -20%;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 18px 18px,
    radial-gradient(circle at 1px 1px, rgba(0,0,0,.15) 1px, transparent 1px) 0 0 / 18px 18px;
  opacity: .08;
  mix-blend-mode: overlay;
}

.hero-content { 
  display: grid; gap: clamp(12px, 2.2vw, 18px);
}
.hero-eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.05;
}
.hero-title .accent {
  background: linear-gradient(90deg, #0a84ff, #ff375f);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 60ch;
}
.nowrap { white-space: nowrap; }

.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 16px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 14px; line-height: 1;
  border: 1px solid var(--border); transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary {
  background: #0a84ff; color: #fff; border-color: transparent;
  box-shadow: 0 10px 20px rgba(10,132,255,.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(10,132,255,.32); }
.btn-ghost {
  background: color-mix(in srgb, var(--card-bg) 88%, var(--border));
  color: var(--text);
}
.btn-ghost:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--ring) 22%, var(--border)); }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 4px 0 0; list-style: none;
}
.hero-chips li {
  font-size: 12.5px; line-height: 1;
  padding: 8px 10px; border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card-bg) 86%, var(--border));
}

.hero-art {
  margin: 0; border-radius: 22px; overflow: hidden;
  background: #f2f2f7; border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (prefers-color-scheme: dark) {
  .hero { 
    background: radial-gradient(1400px 800px at 10% -10%, rgba(10,132,255,.12), transparent 60%),
                radial-gradient(1000px 600px at 90% -20%, rgba(255,55,95,.12), transparent 60%),
                var(--bg);
  }
  .hero-art { background: #0d0d0f; }
}

@media (prefers-reduced-motion: reduce) {
  .blob, .btn, .hero-art { transition: none !important; }
}

.random-card{
  display:grid;
  grid-template-columns:1fr;
  gap: clamp(14px, 2.5vw, 20px);
  border:1px solid var(--border);
  border-radius:22px;
  background:var(--card-bg);
  box-shadow: var(--shadow);
  overflow:hidden;
  padding: clamp(12px, 2vw, 16px);
}

@media (min-width: 920px){
  .random-card{
    grid-template-columns: 1.1fr .9fr;
  }
}

.random-media{
  position:relative; margin:0; border-radius:16px; overflow:hidden;
  background:#f2f2f7; min-height: 220px;
  aspect-ratio: 16/10;
}
.random-media img{
  width:100%; height:100%; object-fit: cover; display:block; filter: saturate(.9);
}
.random-media::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), transparent 40%, rgba(0,0,0,.25));
}

.mystery-mark{
  position:absolute; inset:auto 0 8% 0; margin:auto; text-align:center;
  width:min(40%, 220px); aspect-ratio:1/1; line-height:1;
  display:grid; place-items:center;
  font-weight:800; font-size: clamp(48px, 10vw, 92px);
  color:#fff; text-shadow: 0 6px 24px rgba(0,0,0,.45);
  background: radial-gradient(closest-side, rgba(255,255,255,.16), transparent 70%);
  border-radius:50%;
  backdrop-filter: blur(6px);
  scale: 2;
}

.random-body{
  display:grid; gap:10px; align-content:center; padding: clamp(8px, 1.5vw, 12px);
}
.random-lead{ margin:0; font-size: clamp(16px, 1.7vw, 18px); }
.random-hint{ margin:0; color:var(--muted); font-size: 14px; }
.random-hint .link-pill{ margin-left:.35rem; }


.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: clamp(18px, 3vw, 28px) 0;
}
.footer-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 16px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.footer-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: color-mix(in srgb, var(--card-bg) 88%, transparent);
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}
.footer-links a:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--ring) 22%, var(--border));
}
.footer-links a:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 70%, transparent);
}
@media (prefers-color-scheme: dark) {
  .footer-links a { background: color-mix(in srgb, var(--card-bg) 92%, transparent); }
}

.force-dark {
  --bg: #0b0b0c;
  --card-bg: #111113;
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --border: #2c2c2e;
  --ring: #0a84ff;
  --shadow: 0 12px 32px rgba(0,0,0,.5);
  color-scheme: dark;
  background: var(--bg);
}

.error-wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 16px;
  display: grid;
  gap: 18px;
  place-items: center;
  text-align: center;
}

.error-card {
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: clamp(16px, 3vw, 24px);
  width: min(780px, 100%);
}

.error-code {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(40px, 10vw, 96px);
  line-height: 1;
}

.error-sub {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  max-width: 60ch;
}

.error-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 16px; border-radius: 999px; text-decoration: none;
  font-weight: 600; font-size: 14px; line-height: 1;
  border: 1px solid var(--border);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.btn-primary {
  background: #0a84ff; color: #fff; border-color: transparent;
  box-shadow: 0 10px 20px rgba(10,132,255,.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(10,132,255,.32); }
.btn-ghost {
  background: color-mix(in srgb, var(--card-bg) 88%, var(--border));
  color: var(--text);
}
.btn-ghost:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--ring) 22%, var(--border)); }
.btn:focus-visible { outline: 2px solid transparent; box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 70%, transparent); }

.page-card{
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: clamp(16px, 3vw, 24px);
}

.page-h2{
  margin: 14px 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -0.01em;
}
.page-list{
  margin: 0;
  padding-left: 18px;
}
.page-list li{ margin: 6px 0; }

.soon{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card-bg) 88%, var(--border));
  margin: 4px 0 10px;
}
.soon .dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: #0a84ff;
  box-shadow: 0 0 0 0 rgba(10,132,255,.35);
  animation: ping 1.6s infinite;
}
@keyframes ping{
  0% { box-shadow: 0 0 0 0 rgba(10,132,255,.35); }
  70%{ box-shadow: 0 0 0 10px rgba(10,132,255,0); }
  100%{ box-shadow: 0 0 0 0 rgba(10,132,255,0); }
}

.contact-form{
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.form-row{ display: grid; gap: 6px; }
.form-row label{
  font-size: 13px; color: var(--muted);
}
input[type="text"],
input[type="email"],
textarea{
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  resize: vertical;
}
input:disabled,
textarea:disabled,
button:disabled{
  opacity: .6;
  cursor: not-allowed;
}

.site-header{
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 85%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 85%, transparent), transparent),
    color-mix(in srgb, var(--bg) 92%, transparent);
}
.nav-wrap{
  max-width: var(--wrap); margin: 0 auto; padding: 10px 16px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px;
}

.brand{ display:inline-flex; align-items:center; gap:10px; text-decoration:none; color:var(--text); }
.brand img{ width:28px; height:28px; border-radius: 6px; box-shadow: 0 1px 3px rgba(0,0,0,.15); }
.brand-name{
  font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(16px, 2.2vw, 18px);
}

.nav-toggle{ position: absolute; opacity: 0; pointer-events: none; }
.hamburger{ display: inline-flex; flex-direction: column; gap: 4px; padding: 10px; cursor: pointer; }
.hamburger span{
  width: 22px; height: 2px; border-radius: 2px; background: var(--text); display: block;
  transition: transform .2s ease, opacity .2s ease;
}

.site-nav{ justify-self: end; }
.nav-links{
  display: flex; gap: 6px; list-style: none; margin: 0; padding: 0;
}
.nav-links a{
  display: inline-flex; align-items: center; height: 36px; padding: 0 12px;
  border-radius: 999px; text-decoration: none; color: var(--text);
  border: 1px solid transparent;
  background: color-mix(in srgb, var(--card-bg) 88%, transparent);
  font-size: 14px; font-weight: 600;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.nav-links a:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--ring) 22%, var(--border));
}
.nav-links a:focus-visible{
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ring) 70%, transparent);
}

@media (max-width: 860px){
  .nav-wrap{ grid-template-columns: auto 1fr auto; }
  .site-nav{
    grid-column: 1 / -1;
    width: 100%;
  }
  .nav-links{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 0 12px;
  }

  .site-nav{ max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .nav-toggle:not(:checked) + .hamburger + .site-nav{ max-height: 0; }
  .nav-toggle:checked + .hamburger + .site-nav{ max-height: 220px; }

  .nav-toggle:checked + .hamburger span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked + .hamburger span:nth-child(2){ opacity: 0; }
  .nav-toggle:checked + .hamburger span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }
}

@media (min-width: 861px){
  .hamburger{ display: none; }
}

@media (prefers-reduced-motion: reduce){
  .hamburger span, .nav-links a{ transition: none !important; }
}

.cookie-policy{
  max-width: 80ch; 
  margin-inline: auto;
}

.cookie-policy p{
  margin: 10px 0 12px;
  line-height: 1.7;
  font-size: clamp(15px, 1.7vw, 16px);
  color: var(--text);
}

.cookie-policy .soon + .page-h2 + p,
.cookie-policy p:first-of-type{
  font-size: clamp(16px, 1.9vw, 17px);
}

.cookie-policy .page-h2{
  margin: 18px 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.cookie-policy .page-list{
  padding-left: 22px;
  margin: 6px 0 14px;
}
.cookie-policy .page-list li{
  margin: 6px 0;
  line-height: 1.65;
}

.cookie-policy a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.cookie-policy a:hover{ text-decoration-thickness: 2px; }

.cookie-policy .error-sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.cookie-policy .note{
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card-bg) 90%, var(--border));
  margin: 10px 0;
  font-size: 14.5px;
}
.cookie-policy .note--ok{ border-color: color-mix(in srgb, #0a84ff 30%, var(--border)); }

.privacy-policy{
  max-width: 80ch; 
  margin-inline: auto;
}

.privacy-policy p{
  margin: 10px 0 12px;
  line-height: 1.7;
  font-size: clamp(15px, 1.7vw, 16px);
  color: var(--text);
}

.privacy-policy .page-h2{
  margin: 18px 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.privacy-policy .page-list{
  padding-left: 22px;
  margin: 6px 0 14px;
}
.privacy-policy .page-list li{
  margin: 6px 0;
  line-height: 1.65;
}

.privacy-policy a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.privacy-policy a:hover{ text-decoration-thickness: 2px; }

.privacy-policy .error-sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.privacy-policy .note{
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card-bg) 90%, var(--border));
  margin: 10px 0;
  font-size: 14.5px;
}

@media (max-width: 400px){
  .privacy-policy{ max-width: 100%; }
}

@media print{
  .site-header, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .page-card { box-shadow: none; border-color: #ccc; }
  .privacy-policy a { color: #000; text-decoration: underline; }
}

.impresszum{
  max-width: 80ch;
  margin-inline: auto;
}

.impresszum p{
  margin: 10px 0 12px;
  line-height: 1.7;
  font-size: clamp(15px, 1.7vw, 16px);
  color: var(--text);
}

.impresszum .page-h2{
  margin: 18px 0 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(18px, 2.2vw, 22px);
}

.impresszum .page-list{
  padding-left: 22px;
  margin: 6px 0 14px;
}
.impresszum .page-list li{
  margin: 6px 0;
  line-height: 1.65;
}

.impresszum a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.impresszum a:hover{ text-decoration-thickness: 2px; }

.impresszum .error-sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.impresszum .note{
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card-bg) 90%, var(--border));
  margin: 10px 0;
  font-size: 14.5px;
}

@media (max-width: 400px){
  .impresszum{ max-width: 100%; }
}

@media print{
  .site-header, .site-footer { display: none !important; }
  body { background: #fff; color: #000; }
  .page-card { box-shadow: none; border-color: #ccc; }
  .impresszum a { color: #000; text-decoration: underline; }
}

.contact-info{
  max-width: 70ch;
  margin-inline: auto;
}

.contact-info .page-h2{
  margin: 10px 0 8px;
}

.contact-info .page-list{
  list-style: none;
  padding: 0;
  margin: 6px 0 10px;
}

.contact-info .page-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin: 6px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card-bg) 92%, var(--border));
}

.contact-info .page-list a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  word-break: break-word; 
}
.contact-info .page-list a:hover{
  text-decoration-thickness: 2px;
}

.contact-info .field-hint{
  margin: 6px 2px 0;
  font-size: 12.5px;
  color: var(--muted);
}

.contact-info .error-actions{
  justify-content: flex-start; 
  gap: 10px;
}

@media (max-width: 420px){
  .contact-info .page-list li{ padding: 10px; }
}
