/*
Theme Name: Playing Ducks Modern
Theme URI: https://playing-ducks.com/
Author: Playing Ducks
Description: Modernes, schnelles WordPress-Theme für Playing Ducks e. V. – mit News-Ticker, Team-Karten, Partnerbereich und responsivem Dark-Design.
Version: 1.1.10
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: playing-ducks-modern
*/

:root {
  --pd-bg: #07111f;
  --pd-bg-soft: #0d1a2b;
  --pd-surface: #102137;
  --pd-surface-2: #142942;
  --pd-text: #f7f9fc;
  --pd-muted: #9fb0c4;
  --pd-orange: #f36a10;
  --pd-orange-2: #ff7b22;
  --pd-blue: #2f86c7;
  --pd-border: rgba(255,255,255,.12);
  --pd-shadow: 0 20px 60px rgba(0,0,0,.28);
  --pd-radius: 22px;
  --pd-max: 1240px;
  --pd-header: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--pd-text);
  background:
    radial-gradient(circle at 80% 8%, rgba(47,134,199,.13), transparent 28rem),
    radial-gradient(circle at 12% 25%, rgba(243,106,16,.09), transparent 24rem),
    var(--pd-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--pd-orange-2); }
button, input, textarea, select { font: inherit; }
::selection { background: var(--pd-orange); color: #fff; }

.pd-container { width: min(var(--pd-max), calc(100% - 40px)); margin-inline: auto; }
.pd-section { padding: 88px 0; }
.pd-section--tight { padding: 48px 0; }
.pd-kicker { color: var(--pd-orange-2); font-size: .78rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.pd-title { margin: 8px 0 18px; font-size: clamp(2rem, 4vw, 4.2rem); line-height: .98; letter-spacing: -.04em; }
.pd-lead { max-width: 760px; color: var(--pd-muted); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.pd-grid { display: grid; gap: 22px; }
.pd-card {
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  background: linear-gradient(180deg, rgba(20,41,66,.86), rgba(12,27,44,.9));
  box-shadow: var(--pd-shadow);
  overflow: hidden;
}
.pd-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px;
  background: var(--pd-orange); color: #fff; font-weight: 820;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.pd-button:hover { color: #fff; transform: translateY(-2px); background: var(--pd-orange-2); }
.pd-button--ghost { background: transparent; border-color: rgba(255,255,255,.22); }
.pd-button--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.42); }

/* Header */
.pd-site-header {
  position: sticky; top: 0; z-index: 50; height: var(--pd-header);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(7,17,31,.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background .2s ease, box-shadow .2s ease;
}
.pd-site-header.is-scrolled { background: rgba(7,17,31,.94); box-shadow: 0 12px 36px rgba(0,0,0,.22); }
.pd-header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.pd-brand { display: flex; align-items: center; flex: 0 0 auto; min-width: 0; }
.pd-brand img { width: 118px; height: 58px; object-fit: contain; object-position: left center; }
.custom-logo { max-height: 58px; width: auto; }
.pd-nav { display: flex; align-items: center; justify-content: flex-end; gap: 18px; min-width: 0; }
.pd-nav-list { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.pd-nav-list > li > a,
.pd-nav-dropdown-toggle {
  display: inline-flex; align-items: center; gap: 6px; min-height: 42px; padding: 0 11px;
  border: 0; border-radius: 10px; background: transparent; color: #cbd7e5;
  font-size: .91rem; font-weight: 720; line-height: 1; cursor: pointer;
  transition: color .18s ease, background .18s ease;
}
.pd-nav-list > li > a:hover,
.pd-nav-dropdown-toggle:hover,
.pd-nav-dropdown.is-open .pd-nav-dropdown-toggle { color: #fff; background: rgba(255,255,255,.055); }
.pd-nav-dropdown { position: relative; }
.pd-nav-dropdown-toggle span { color: var(--pd-orange-2); font-size: .9rem; transition: transform .18s ease; }
.pd-nav-dropdown.is-open .pd-nav-dropdown-toggle span { transform: rotate(180deg); }
.pd-nav-dropdown-menu {
  position: absolute; top: calc(100% + 10px); right: 0; width: 220px; padding: 8px;
  border: 1px solid rgba(255,255,255,.1); border-radius: 16px;
  background: rgba(10,23,38,.98); box-shadow: 0 22px 60px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.pd-nav-dropdown:hover .pd-nav-dropdown-menu,
.pd-nav-dropdown:focus-within .pd-nav-dropdown-menu,
.pd-nav-dropdown.is-open .pd-nav-dropdown-menu { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.pd-nav-dropdown-menu a { display: block; padding: 11px 12px; border-radius: 10px; color: #d7e1ec; font-size: .9rem; font-weight: 680; }
.pd-nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,.06); }
.pd-header-cta {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 16px;
  border-radius: 999px; background: var(--pd-orange); color: #fff; font-size: .88rem; font-weight: 850;
  box-shadow: 0 8px 24px rgba(243,106,16,.18); white-space: nowrap;
}
.pd-header-cta:hover { color: #fff; background: var(--pd-orange-2); transform: translateY(-1px); }
.pd-menu-toggle { display: none; width: 44px; height: 44px; padding: 0; place-items: center; border-radius: 12px; border: 1px solid var(--pd-border); background: rgba(255,255,255,.04); cursor: pointer; }
.pd-menu-toggle span { display: block; width: 19px; height: 2px; margin: 2px auto; border-radius: 2px; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.pd-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pd-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pd-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.pd-hero { min-height: min(760px, calc(100svh - var(--pd-header))); display: grid; align-items: center; position: relative; overflow: clip; }
.pd-hero::before { content: ""; position: absolute; inset: 5% -6% auto auto; width: min(52vw, 660px); aspect-ratio: 1; background: url('assets/images/playing-ducks-mark.png') center/contain no-repeat; opacity: .09; filter: saturate(.8); pointer-events: none; }
.pd-hero-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.9fr); gap: clamp(40px,7vw,110px); align-items: center; }
.pd-hero-copy { position: relative; z-index: 2; }
.pd-hero-title { margin: 8px 0 22px; max-width: 780px; font-size: clamp(3.2rem, 8vw, 7.8rem); line-height: .82; letter-spacing: -.065em; text-transform: uppercase; }
.pd-hero-title span { display: block; color: var(--pd-orange); }
.pd-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pd-hero-visual { position: relative; display: grid; place-items: center; }
.pd-hero-logo { width: min(100%, 560px); filter: drop-shadow(0 25px 55px rgba(0,0,0,.35)); }
.pd-hero-location { margin-top: 14px; color: #f5f8fc; font-size: clamp(.72rem,1.1vw,.88rem); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; text-align: center; }
.pd-hero-location span { color: var(--pd-orange); padding: 0 .42em; }

/* Ticker */
.pd-ticker-wrap { position: relative; z-index: 8; }
.pd-ticker { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 64px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(16,33,55,.9); box-shadow: 0 16px 40px rgba(0,0,0,.22); overflow: hidden; }
.pd-ticker-label { align-self: stretch; display: flex; align-items: center; gap: 8px; padding: 0 18px; background: var(--pd-orange); color: #fff; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pd-ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.55); animation: pdPulse 2s infinite; }
@keyframes pdPulse { 60% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } }
.pd-ticker-items { position: relative; min-height: 64px; overflow: hidden; }
.pd-ticker-item { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 20px; opacity: 0; transform: translateY(14px); pointer-events: none; transition: opacity .35s ease, transform .35s ease; }
.pd-ticker-item.is-active { opacity: 1; transform: none; pointer-events: auto; }
.pd-ticker-item a { display: block; width: 100%; color: #f7f9fc; font-weight: 730; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pd-ticker-count { padding: 0 16px; color: var(--pd-muted); font-size: .8rem; font-variant-numeric: tabular-nums; }

/* About/stats */
.pd-about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 34px; align-items: start; }
.pd-about-copy { max-width: 820px; }
.pd-about-copy .pd-content { max-width: 760px; }
.pd-content { color: #d8e1eb; font-size: 1.02rem; }
.pd-content h1,.pd-content h2,.pd-content h3 { color: #fff; line-height: 1.1; }
.pd-content a { color: #ff9a55; text-decoration: underline; text-underline-offset: 3px; }
.pd-content img { border-radius: 18px; }
.pd-hall { position: relative; overflow: hidden; padding: 26px; border: 1px solid var(--pd-border); border-radius: 24px; background: linear-gradient(145deg, rgba(20,41,66,.94), rgba(10,24,40,.96)); box-shadow: var(--pd-shadow); }
.pd-hall--wide { margin-top: 38px; padding: 28px 30px 30px; }
.pd-hall-wide-grid { display: grid; grid-template-columns: minmax(250px,.68fr) minmax(0,1.55fr); gap: 34px; align-items: stretch; }
.pd-hall--wide .pd-hall-feature { height: 100%; min-height: 178px; padding: 24px 30px 24px 4px; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 0; align-items: center; }
.pd-hall--wide .pd-hall-feature > strong { font-size: clamp(4.4rem,8vw,7.4rem); }
.pd-hall--wide .pd-hall-list { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 28px; margin-top: 0; align-content: center; }
.pd-hall::after { content: ""; position: absolute; width: 220px; height: 220px; right: -90px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(243,106,16,.20), transparent 68%); pointer-events: none; }
.pd-hall-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.pd-hall-kicker { color: var(--pd-orange-2); font-size: .75rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.pd-hall-line { height: 1px; flex: 1; background: linear-gradient(90deg, rgba(243,106,16,.65), rgba(255,255,255,.08)); }
.pd-hall-feature { position: relative; z-index: 1; display: flex; align-items: end; gap: 18px; padding: 20px 0 24px; border-bottom: 1px solid rgba(255,255,255,.11); }
.pd-hall-feature > strong { color: #fff; font-size: clamp(3.8rem,7vw,6.2rem); line-height: .78; letter-spacing: -.07em; }
.pd-hall-feature div { display: flex; flex-direction: column; padding-bottom: 2px; }
.pd-hall-feature span { color: #fff; font-size: 1.15rem; font-weight: 850; }
.pd-hall-feature small { margin-top: 2px; color: var(--pd-muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.pd-hall-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 22px; margin-top: 8px; }
.pd-hall-item { display: grid; grid-template-columns: 64px 1fr; align-items: center; min-height: 66px; border-bottom: 1px solid rgba(255,255,255,.075); }
.pd-hall-item strong { color: #fff; font-size: 1.35rem; line-height: 1; letter-spacing: -.04em; }
.pd-hall-item span { color: var(--pd-muted); font-size: .82rem; line-height: 1.35; }

/* Teams */
.pd-team-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.pd-team-card { min-height: 220px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; position: relative; background: linear-gradient(160deg, rgba(19,43,70,.95), rgba(8,22,37,.96)); transition: transform .2s ease, border-color .2s ease; }
.pd-team-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -26px; top: -24px; border-radius: 50%; background: radial-gradient(circle, rgba(243,106,16,.18), transparent 68%); }
.pd-team-card:hover { transform: translateY(-5px); border-color: rgba(243,106,16,.5); }
.pd-team-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: rgba(243,106,16,.12); color: #ff9a55; font-weight: 900; }
.pd-team-card h3 { margin: 24px 0 0; font-size: 1.35rem; }
.pd-team-card small { color: var(--pd-muted); }
.pd-team-arrow { font-size: 1.4rem; color: var(--pd-orange); }

/* News */
.pd-news-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.pd-news-card { min-height: 100%; display: flex; flex-direction: column; }
.pd-news-media { aspect-ratio: 16/9; background: linear-gradient(135deg, #183b60, #0a1c30); overflow: hidden; }
.pd-news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.pd-news-card:hover .pd-news-media img { transform: scale(1.035); }
.pd-news-body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.pd-news-meta { color: var(--pd-orange-2); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.pd-news-body h3 { margin: 9px 0 12px; font-size: 1.35rem; line-height: 1.12; }
.pd-news-body p { margin: 0 0 18px; color: var(--pd-muted); }
.pd-news-more { margin-top: auto; font-weight: 800; color: #fff; }

/* Partners */
.pd-partners-shell { padding: clamp(28px,5vw,54px); position: relative; overflow: hidden; }
.pd-partners-shell::before { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(47,134,199,.08), transparent 40%, rgba(243,106,16,.08)); pointer-events:none; }
.pd-partner-grid { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; margin-top: 28px; }
.pd-partner { min-height: 150px; padding: 20px; display: grid; place-items: center; text-align: center; border: 1px solid var(--pd-border); border-radius: 18px; background: rgba(5,14,25,.55); }
.pd-partner img { max-height: 70px; width: auto; filter: grayscale(.12); }
.pd-partner-name { font-weight: 850; }
.pd-partner-type { color: var(--pd-muted); font-size: .8rem; }
.pd-partner:hover { border-color: rgba(47,134,199,.55); }

/* CTA / Footer */
.pd-cta { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 34px; border: 1px solid rgba(243,106,16,.35); border-radius: var(--pd-radius); background: linear-gradient(120deg, rgba(243,106,16,.11), rgba(47,134,199,.08)); }
.pd-cta h2 { margin: 0 0 6px; font-size: clamp(1.7rem,3vw,2.8rem); line-height: 1; }
.pd-cta p { margin: 0; color: var(--pd-muted); }
.pd-site-footer { margin-top: 70px; padding: 38px 0 22px; border-top: 1px solid var(--pd-border); background: rgba(4,11,20,.72); }
.pd-footer-top { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.pd-footer-brand { display: flex; align-items: center; gap: 18px; min-width: 0; }
.pd-footer-brand img { width: 112px; max-height: 62px; object-fit: contain; }
.pd-footer-copy { max-width: 460px; margin: 0; color: var(--pd-muted); font-size: .9rem; }
.pd-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }
.pd-footer-links a { color: #b8c6d5; font-size: .88rem; font-weight: 680; }
.pd-footer-links a:hover { color: #fff; }
.pd-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); color: #6f8297; font-size: .78rem; }

/* Generic pages */
.pd-page-hero { padding: 70px 0 28px; }
.pd-page-shell { max-width: 960px; }
.pd-entry { padding: clamp(24px,5vw,54px); }
.pd-entry-title { margin: 0 0 14px; font-size: clamp(2.4rem,5vw,5rem); line-height: .95; letter-spacing: -.045em; }
.pd-entry-meta { color: var(--pd-muted); margin-bottom: 28px; }
.pd-post-list { grid-template-columns: repeat(3,minmax(0,1fr)); }
.navigation.pagination { margin-top: 34px; }
.nav-links { display:flex; gap:8px; flex-wrap:wrap; }
.page-numbers { padding: 9px 12px; border:1px solid var(--pd-border); border-radius:10px; }
.page-numbers.current { background: var(--pd-orange); border-color: var(--pd-orange); }

/* WP alignment helpers */
.alignwide { width: min(1120px, 100%); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.wp-block-button__link { border-radius: 999px; }

@media (max-width: 1020px) {
  :root { --pd-header: 72px; }
  .pd-menu-toggle { display: grid; }
  .pd-nav { position: fixed; inset: var(--pd-header) 16px auto 16px; display: none; max-height: calc(100svh - var(--pd-header) - 24px); overflow: auto; padding: 14px; border: 1px solid var(--pd-border); border-radius: 18px; background: rgba(7,17,31,.98); box-shadow: var(--pd-shadow); }
  .pd-nav.is-open { display: block; }
  .pd-nav-list { display: grid; gap: 3px; }
  .pd-nav-list > li > a, .pd-nav-dropdown-toggle { width: 100%; justify-content: space-between; min-height: 44px; padding: 0 12px; border-radius: 10px; }
  .pd-nav-dropdown-menu { position: static; width: 100%; padding: 4px 0 4px 12px; border: 0; border-radius: 0; background: transparent; box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .pd-nav-dropdown.is-open .pd-nav-dropdown-menu { display: grid; }
  .pd-nav-dropdown:hover .pd-nav-dropdown-menu:not(:focus-within) { display: none; }
  .pd-nav-dropdown.is-open:hover .pd-nav-dropdown-menu { display: grid; }
  .pd-header-cta { width: 100%; margin-top: 10px; }
  .pd-hero-grid { grid-template-columns: 1fr; }
  .pd-hero-visual { max-width: 580px; margin: 0 auto; }
  .pd-about-grid { grid-template-columns: 1fr; }
  .pd-team-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pd-news-grid, .pd-post-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pd-partner-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .pd-container { width: min(100% - 26px, var(--pd-max)); }
  .pd-section { padding: 64px 0; }
  .pd-brand img, .custom-logo { max-width: 105px; max-height: 54px; }
  .pd-hero { padding: 44px 0 30px; min-height: auto; }
  .pd-hero-title { font-size: clamp(3rem,18vw,5rem); }
  .pd-hero-visual { margin-top: -12px; }
  .pd-ticker { grid-template-columns: auto 1fr; }
  .pd-ticker-label { padding: 0 12px; font-size: .7rem; }
  .pd-ticker-count { display: none; }
  .pd-ticker-item { padding: 0 12px; }
  .pd-hall { padding: 22px; }
  .pd-hall--wide { margin-top: 30px; }
  .pd-hall-wide-grid { grid-template-columns: 1fr; gap: 12px; }
  .pd-hall--wide .pd-hall-feature { min-height: auto; padding: 18px 0 24px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .pd-hall-list, .pd-hall--wide .pd-hall-list { grid-template-columns: 1fr; }
  .pd-hall-feature > strong, .pd-hall--wide .pd-hall-feature > strong { font-size: 4rem; }
  .pd-team-grid, .pd-news-grid, .pd-post-list, .pd-partner-grid { grid-template-columns: 1fr; }
  .pd-cta { grid-template-columns: 1fr; padding: 26px; }
  .pd-footer-top { align-items: flex-start; flex-direction: column; }
  .pd-footer-brand { align-items: flex-start; flex-direction: column; gap: 10px; }
  .pd-footer-links { justify-content: flex-start; }
  .pd-footer-bottom { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Cookie consent */
.pd-cookie-link { appearance:none; border:0; padding:0; background:none; color:#b8c6d5; font:inherit; font-size:.88rem; font-weight:680; cursor:pointer; }
.pd-cookie-link:hover { color:#fff; }
.pd-cookie[hidden], .pd-cookie-settings[hidden] { display:none !important; }
.pd-cookie { position:fixed; inset:0; z-index:99999; display:grid; align-items:end; padding:20px; }
.pd-cookie-backdrop { position:absolute; inset:0; background:rgba(2,8,15,.58); backdrop-filter:blur(4px); }
.pd-cookie-panel { position:relative; width:min(760px,100%); margin:0 auto; padding:26px 28px; border:1px solid rgba(255,255,255,.14); border-radius:22px; background:linear-gradient(145deg,#102137,#091726); box-shadow:0 26px 80px rgba(0,0,0,.48); }
.pd-cookie-main { padding-right:30px; }
.pd-cookie-panel h2 { margin:4px 0 10px; font-size:clamp(1.55rem,3vw,2.1rem); }
.pd-cookie-panel p { margin:0; color:var(--pd-muted); line-height:1.6; }
.pd-cookie-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.pd-cookie-settings-toggle { appearance:none; border:0; background:none; color:#fff; font:inherit; font-weight:800; padding:10px 4px; cursor:pointer; }
.pd-cookie-settings-toggle:hover { color:var(--pd-orange-2); }
.pd-cookie-settings { margin-top:20px; padding-top:16px; border-top:1px solid rgba(255,255,255,.1); }
.pd-cookie-option { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.075); cursor:pointer; }
.pd-cookie-option span { display:flex; flex-direction:column; gap:3px; }
.pd-cookie-option strong { color:#fff; }
.pd-cookie-option small { color:var(--pd-muted); line-height:1.4; }
.pd-cookie-option input { width:20px; height:20px; accent-color:var(--pd-orange); }
.pd-cookie-save { margin-top:18px; }
.pd-cookie-legal { margin-top:16px !important; font-size:.82rem; }
.pd-cookie-legal a { color:#fff; text-decoration:underline; text-underline-offset:3px; }
.pd-cookie-x { position:absolute; top:16px; right:18px; width:36px; height:36px; border:0; border-radius:50%; background:rgba(255,255,255,.07); color:#fff; font-size:1.45rem; line-height:1; cursor:pointer; }
.pd-cookie-x:hover { background:rgba(255,255,255,.13); }
body.pd-cookie-open { overflow:hidden; }
@media (max-width:680px) {
  .pd-cookie { padding:10px; }
  .pd-cookie-panel { padding:22px 18px; border-radius:18px; }
  .pd-cookie-main { padding-right:22px; }
  .pd-cookie-actions { display:grid; grid-template-columns:1fr; }
  .pd-cookie-actions .pd-button { width:100%; justify-content:center; }
}


/* Contact form */
.pd-contact-shell { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:clamp(34px,6vw,76px); padding:clamp(28px,5vw,58px); background:linear-gradient(135deg,rgba(19,44,70,.96),rgba(9,23,38,.96)); }
.pd-contact-intro { align-self:start; }
.pd-contact-intro .pd-title { margin-bottom:18px; }
.pd-contact-note { margin-top:30px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:grid; gap:5px; }
.pd-contact-note strong { color:#fff; }
.pd-contact-note span { color:var(--pd-muted); font-size:.9rem; line-height:1.55; }
.pd-contact-form-wrap { min-width:0; }
.pd-contact-form { display:grid; gap:18px; }
.pd-form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.pd-field { display:grid; gap:8px; }
.pd-field > span { color:#dbe6f2; font-size:.82rem; font-weight:780; letter-spacing:.02em; }
.pd-field input,.pd-field select,.pd-field textarea { width:100%; border:1px solid rgba(255,255,255,.14); border-radius:13px; background:rgba(4,13,23,.62); color:#fff; font:inherit; outline:none; transition:border-color .18s ease,box-shadow .18s ease,background .18s ease; }
.pd-field input,.pd-field select { min-height:50px; padding:0 14px; }
.pd-field textarea { min-height:160px; padding:13px 14px; resize:vertical; }
.pd-field select { color-scheme:dark; }
.pd-field input:focus,.pd-field select:focus,.pd-field textarea:focus { border-color:rgba(243,106,16,.85); box-shadow:0 0 0 3px rgba(243,106,16,.13); background:rgba(4,13,23,.82); }
.pd-consent-check { display:flex; align-items:flex-start; gap:11px; color:var(--pd-muted); font-size:.82rem; line-height:1.5; cursor:pointer; }
.pd-consent-check input { flex:0 0 auto; width:18px; height:18px; margin-top:2px; accent-color:var(--pd-orange); }
.pd-consent-check a { color:#fff; text-decoration:underline; text-underline-offset:3px; }
.pd-local-captcha { display:flex; align-items:center; justify-content:space-between; gap:22px; padding:16px 18px; border:1px solid rgba(255,255,255,.11); border-radius:15px; background:rgba(4,13,23,.36); }
.pd-local-captcha > div { display:grid; gap:4px; }
.pd-local-captcha strong { color:#fff; font-size:.9rem; }
.pd-local-captcha > div span { color:var(--pd-muted); font-size:.78rem; }
.pd-captcha-field { min-width:210px; }
.pd-captcha-field input { max-width:210px; }
.pd-contact-submit { justify-self:start; border:0; cursor:pointer; font:inherit; }
.pd-form-status { margin-bottom:18px; padding:13px 15px; border-radius:12px; font-size:.9rem; font-weight:700; }
.pd-form-status--success { border:1px solid rgba(82,201,132,.34); background:rgba(82,201,132,.09); color:#baf2cf; }
.pd-form-status--error { border:1px solid rgba(255,137,103,.35); background:rgba(243,106,16,.09); color:#ffd0bd; }
.pd-hp { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
@media (max-width:900px) { .pd-contact-shell { grid-template-columns:1fr; } }
@media (max-width:680px) { .pd-form-grid { grid-template-columns:1fr; } .pd-contact-shell { padding:24px 18px; } .pd-local-captcha { align-items:stretch; flex-direction:column; } .pd-captcha-field,.pd-captcha-field input { max-width:none; min-width:0; } .pd-contact-submit { width:100%; } }
