/* =========================================================
   Dirk Hansen — Keynote Speaker · 2026 landing page
   ========================================================= */

:root {
  --navy-900: #050b1c;
  --navy-800: #071232;
  --navy-700: #0b1c4a;
  --navy-600: #12296b;
  --navy-500: #1c3f96;
  --navy-400: #2f6fd0;
  --blue-400: #2f6fd0;
  --blue-300: #4f97e8;
  --ice: #d7e5f7;
  --white: #ffffff;
  --sand: #f3f2f1;
  --ink: #0a1226;
  --muted: #5a6684;

  --shell: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a[href], a[href] *, button:not(:disabled), button:not(:disabled) *, input[type='submit']:not(:disabled), input[type='button']:not(:disabled), input[type='reset']:not(:disabled), [role='button']:not([aria-disabled='true']), [role='button']:not([aria-disabled='true']) *, summary, summary * { cursor: pointer !important; }
:disabled, :disabled *, [aria-disabled='true'], [aria-disabled='true'] * { cursor: not-allowed !important; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
}

.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy-800); color: #fff; padding: .75rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--blue-300);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------------- Buttons ---------------- */
.btn {
  --btn-bg: var(--navy-700);
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.6rem;
  border: 0; border-radius: 999px;
  font: 600 .95rem/1 var(--font-sans);
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn-sm { padding: .7rem 1.2rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-solid {
  background: linear-gradient(135deg, var(--blue-400), var(--navy-600));
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(18, 41, 107, .8);
}
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(18, 41, 107, .9); }

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .16); transform: translateY(-2px); }

.play {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: grid; place-items: center;
}
.play::after {
  content: ''; width: 0; height: 0;
  border-left: 7px solid var(--navy-800);
  border-block: 4.5px solid transparent;
  margin-left: 2px;
}

/* ---------------- Header ---------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  /* fixed to the viewport top; the skip-link before it steals :first-child from the block-gap rule */
  margin-block-start: 0 !important;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding-block: 1.1rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; font-weight: 600; letter-spacing: -.01em; color: #fff; }
.brand-logo {
  width: 45px; height: 45px; display: block; object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.nav { margin-left: auto; display: flex; gap: 2rem; font-size: .93rem; }
.nav a { color: rgba(255, 255, 255, .82); position: relative; padding-block: .25rem; }
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.site-header.scrolled {
  background: rgba(5, 11, 28, .82);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22);
  cursor: pointer; padding: 0;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.5px; background: #fff; margin: 4px auto;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle[aria-expanded='true'] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: .25rem;
  padding: .5rem 1.25rem 1.5rem;
  background: rgba(5, 11, 28, .95);
  backdrop-filter: blur(14px);
}
.mobile-nav a { color: rgba(255, 255, 255, .85); padding: .7rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.mobile-nav.open { display: flex; }

/* Flush the hero to the top and remove the gap above the footer — WP adds
   margin-block-start:24px to .wp-site-blocks children, and the fixed header
   makes <main> the first in-flow child. */
.wp-site-blocks > main,
.wp-site-blocks > footer { margin-block-start: 0; }

/* Pin the footer to the bottom of the viewport on short pages (e.g. Impressum,
   Datenschutz) instead of leaving it floating right under the content. */
.wp-site-blocks { display: flex; flex-direction: column; min-height: 100vh; }
.wp-site-blocks > main { flex: 1 0 auto; }

/* Keep the landing sections flush so the transition waves bridge them; WP's
   block-gap otherwise inserts a 24px page-coloured strip between sections that
   clips the bottom of each wave. */
.wp-site-blocks > main > * { margin-block-start: 0; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex; align-items: center;
  padding: 10rem 0 5rem;
  background: linear-gradient(to top, #12296b, #2d68c3);
  isolation: isolate;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 70% 30%;
  filter: grayscale(.35) contrast(1.05);
  opacity: .1;
  transform: scale(1.06);
  animation: slowZoom 24s var(--ease) forwards;
}
@keyframes slowZoom { to { transform: scale(1); } }

/* ----- organic mesh gradient ----- */
.mesh { position: absolute; inset: -20%; z-index: -2; filter: blur(70px) saturate(170%); opacity: .1; }
.blob {
  position: absolute; display: block;
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 1;
  will-change: transform;
}
.blob-1 {
  width: 58vw; height: 58vw; left: -12%; top: -8%;
  background: radial-gradient(circle at 35% 35%, #1c3f96, rgba(28, 63, 150, 0) 68%);
  animation: drift1 26s ease-in-out infinite alternate;
}
.blob-2 {
  width: 46vw; height: 46vw; right: -6%; top: 4%;
  background: radial-gradient(circle at 50% 50%, #0f7fb866, rgba(15, 127, 184, 0) 66%);
  animation: drift2 32s ease-in-out infinite alternate;
}
.blob-3 {
  width: 52vw; height: 52vw; left: 22%; bottom: -22%;
  background: radial-gradient(circle at 50% 50%, #4f97e8, rgba(79, 151, 232, 0) 64%);
  animation: drift3 29s ease-in-out infinite alternate;
}
.blob-4 {
  width: 34vw; height: 34vw; right: 16%; bottom: -8%;
  background: radial-gradient(circle at 50% 50%, #6a4fd6, rgba(106, 79, 214, 0) 65%);
  opacity: .6;
  animation: drift2 36s ease-in-out infinite alternate-reverse;
}
.blob-5 {
  width: 30vw; height: 30vw; left: 8%; top: 34%;
  background: radial-gradient(circle at 50% 50%, #07123f, rgba(7, 18, 63, 0) 70%);
  mix-blend-mode: multiply; opacity: .9;
  animation: drift1 22s ease-in-out infinite alternate-reverse;
}
@keyframes drift1 { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(8%, 6%, 0) scale(1.18); } }
@keyframes drift2 { from { transform: translate3d(0,0,0) scale(1.1); } to { transform: translate3d(-10%, 8%, 0) scale(.92); } }
@keyframes drift3 { from { transform: translate3d(0,0,0) scale(.95); } to { transform: translate3d(6%, -10%, 0) scale(1.2); } }

/* legibility layer + film grain */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(5, 11, 28, .88) 0%, rgba(5, 11, 28, .6) 42%, rgba(5, 11, 28, .12) 80%),
    linear-gradient(to top, rgba(5, 11, 28, .8), transparent 48%);
  opacity: .1;
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1; opacity: .07; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* cursor-tracked spotlight revealing the hero photo through the dark overlay */
.hero-spot {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--img);
  background-size: cover;
  background-position: 70% 30%;
  opacity: calc(var(--spot, 0) * .2);
  --flashlight: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
    #000 0%,
    rgba(0, 0, 0, .85) 22%,
    rgba(0, 0, 0, .6) 40%,
    rgba(0, 0, 0, .35) 58%,
    rgba(0, 0, 0, .16) 74%,
    rgba(0, 0, 0, .05) 88%,
    transparent 100%);
  mask-image: var(--flashlight);
  -webkit-mask-image: var(--flashlight);
  transition: opacity .5s var(--ease);
}
.hero-curve {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: clamp(11px, 1.4vw, 22px);
  display: block;
}

/* Decorative curved wave drawn as a masked ::before on the section itself, so
   it needs no DOM node and can't inherit WP's block-gap margin. The colour
   modifier class (wave-sand/white/navy) sets --wave-fill. */
.wave-sand,
.wave-white,
.wave-navy,
.wave-navy-400 { position: relative; }

.wave-sand::before,
.wave-white::before,
.wave-navy::before,
.wave-navy-400::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(30px, 2.6vw, 72px);
  transform: translateY(-100%);
  background: var(--wave-fill);
  --wave-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q720,175 1440,0 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  -webkit-mask: var(--wave-mask) center / 100% 100% no-repeat;
          mask: var(--wave-mask) center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 1;
}
.wave-sand { --wave-fill: var(--sand); }
.wave-white { --wave-fill: var(--white); }
.wave-navy { --wave-fill: var(--navy-900); }
.wave-navy-400 { --wave-fill: var(--navy-400); }

/* scroll cue */
.hero-scroll {
  position: absolute; left: 50%; bottom: .9rem; z-index: 2;
  translate: -50% 0;
  display: block;
  color: #fff; opacity: .05;
  transition: opacity .3s var(--ease), translate .3s var(--ease);
}
.hero-scroll:hover { opacity: .18; translate: -50% 4px; }
.hero-scroll-chevron {
  display: block;
  animation: scrollBob 2.4s var(--ease) infinite;
}
.hero-scroll-chevron svg { width: clamp(64px, 7vw, 104px); height: auto; display: block; }
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-inner { position: relative; color: #fff; max-width: 900px; }
.eyebrow {
  margin: 0 0 1.4rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-300);
  display: inline-flex; align-items: center; gap: .8rem;
}
.eyebrow::before {
  content: ''; width: 42px; height: 1px; background: currentColor; opacity: .6;
}
.hero-title {
  font-size: clamp(2.3rem, 5.6vw, 4.4rem);
  margin-bottom: 1.6rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic; font-weight: 500;
  background: linear-gradient(100deg, var(--blue-300), var(--ice) 60%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .02em;
}
.hero-sub {
  max-width: 58ch; margin: 0 0 2.4rem;
  font-size: clamp(1.02rem, 1.5vw, 1.17rem);
  color: rgba(226, 235, 250, .86);
}
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------------- Sections ---------------- */
.section {
  position: relative;
  overflow: visible;
  margin-top: 0;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
#topics { background: var(--white); }
.section-head { max-width: 46ch; margin-bottom: 3.5rem; }
.section-head-row {
  max-width: none;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
}
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); text-wrap: balance; }
.link-arrow {
  font-size: .9rem; font-weight: 600; color: var(--navy-600);
  display: inline-flex; align-items: center; gap: .5rem; padding-bottom: .35rem;
  border-bottom: 1px solid rgba(18, 41, 107, .25);
  transition: gap .3s var(--ease), border-color .3s;
}
.link-arrow:hover { gap: .85rem; border-color: var(--blue-400); }
.kicker {
  display:inline-block;
  margin: 0 0 .9rem;
  font-size: .76rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue-300);
}

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.cards .card {
  position: relative; overflow: hidden;
  padding: 2.4rem 2rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(to top, #12296b, #2d68c3);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  transition:
    opacity .8s var(--ease) var(--d, 0s),
    translate .8s var(--ease) var(--d, 0s),
    transform .4s var(--ease),
    box-shadow .4s var(--ease),
    border-color .4s var(--ease);
}
/* cursor-tracked spotlight: photo + glow revealed around the pointer */
.card::before,
.card::after {
  content: ''; position: absolute; inset: 0;
  pointer-events: none;
  opacity: var(--spot, 0);
  transition: opacity .45s var(--ease);
}
.card::before {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: grayscale(.35) brightness(.5);
  mask-image: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), #000 12%, rgba(0, 0, 0, .45) 48%, transparent 74%);
  -webkit-mask-image: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), #000 12%, rgba(0, 0, 0, .45) 48%, transparent 74%);
}
.card::after {
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(47, 111, 208, .28), transparent 70%);
  mix-blend-mode: screen;
}
.cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -28px rgba(7, 18, 50, .8);
  border-color: rgba(79, 151, 232, .45);
}
.card > * { position: relative; z-index: 1; }

.card-icon {
  margin-bottom: 1.6rem;
  display: flex; align-items: center; justify-content: flex-start;
  color: #fff;
}

.card-icon svg {
  width: 64px; height: 64px;
  stroke-width: 1.2;
}
.card h3 { font-size: 1.5rem; margin: .6rem 0 .8rem; }
.card p { margin: 0 0 1.4rem; color: rgba(215, 229, 247, .8); font-size: .97rem; }
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.tags li {
  font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
  color: var(--ice);
  background: rgba(255, 255, 255, .12);
  padding: .35rem .7rem; border-radius: 999px;
}

/* About */
.about { background: var(--sand); }
.about-grid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.about-media {
  margin: 0; position: relative;
  filter: drop-shadow(0 40px 70px rgba(5, 11, 28, .35));
}
.blob-def { position: absolute; width: 0; height: 0; }
.about-image {
  display: block; width: 100%; height: auto;
  aspect-ratio: 3 / 4; object-fit: cover;
  clip-path: url(#about-blob);
}
.about-image-reveal {
  position: absolute; inset: 0;
  opacity: var(--spot, 0);
  --about-spotlight: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), #fff 0%, rgba(255, 255, 255, .9) 30%, rgba(255, 255, 255, .45) 62%, transparent 100%);
  mask-image: var(--about-spotlight);
  -webkit-mask-image: var(--about-spotlight);
  transition: opacity .45s var(--ease);
}
.about-media figcaption {
  margin-top: .9rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.about-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin-bottom: 1.4rem; }
.about-copy > p { color: var(--muted); margin: 0 0 1.1rem; }
.checks { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: .75rem; }
.checks li { position: relative; padding-left: 2rem; font-size: .96rem; }
.checks li::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 14px; height: 8px; border-left: 2px solid var(--blue-400); border-bottom: 2px solid var(--blue-400);
  transform: rotate(-45deg);
}

/* Blog */
.blog { background: var(--sand); }
.posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.posts .post {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 28, 74, .1);
  transition:
    opacity .8s var(--ease) var(--d, 0s),
    translate .8s var(--ease) var(--d, 0s),
    transform .4s var(--ease),
    box-shadow .4s var(--ease),
    border-color .4s var(--ease);
}
.posts .post:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 36px 60px -28px rgba(7, 18, 50, .45);
}
.post-link { display: flex; flex-direction: column; height: 100%; }
.post-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-800); }
.post-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.35);
  transition: filter .5s var(--ease);
}
.post:hover .post-media img { filter: grayscale(0); }
.post-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  margin: 0 0 .9rem; font-size: .76rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .5rem;
}
.post-tag {
  font-weight: 600; color: var(--navy-600);
  background: rgba(47, 111, 208, .1);
  padding: .3rem .65rem; border-radius: 999px;
}
.post h3 { font-size: 1.32rem; margin-bottom: .7rem; text-wrap: balance; }
.post-excerpt { margin: 0 0 1.4rem; color: var(--muted); font-size: .95rem; }
.post-date { margin: auto 0 0; font-size: .82rem; color: var(--muted); opacity: .8; }

/* Testimonials */
.testimonials { background: var(--white); }
.testimonials .section-head { margin-bottom: 3rem; }
.quotes {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.25rem;
}
.quote {
  grid-column: span 6;
  min-height: 25rem;
  margin: 0;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 28, 74, .12);
  background: var(--sand);
  box-shadow: 0 12px 26px -28px rgba(5, 11, 28, .5);
  display: flex;
  flex-direction: column;
  will-change: transform, box-shadow;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.quote.reveal {
  transition:
    opacity .8s var(--ease) var(--d, 0s),
    translate .8s var(--ease) var(--d, 0s),
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
}
.quote-featured { grid-column: span 7; }
.quote-featured + .quote { grid-column: span 5; }
.quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 45px -34px rgba(5, 11, 28, .7);
}
.quote-featured {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform, box-shadow;
  min-height: 31rem;
  color: #fff;
  border-color: transparent;
  border-top-color: var(--ice);
  background:
    linear-gradient(125deg, rgba(79, 151, 232, .2), transparent 52%),
    var(--navy-800);
}
.quote-featured::before,
.quote-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--spot, 0);
  transition: opacity .45s var(--ease);
}
.quote-featured::before {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: grayscale(.35) brightness(.5);
  mask-image: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), #000 12%, rgba(0, 0, 0, .45) 48%, transparent 74%);
  -webkit-mask-image: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), #000 12%, rgba(0, 0, 0, .45) 48%, transparent 74%);
}
.quote-featured::after {
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(47, 111, 208, .28), transparent 70%);
  mix-blend-mode: screen;
}
.quote-featured > * { position: relative; z-index: 1; }
.quote-featured:hover { background: linear-gradient(125deg, rgba(79, 151, 232, .28), transparent 52%), var(--navy-800); }
.quote-source {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 4.25rem;
  margin-bottom: auto;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 700;
  line-height: .8;
  color: var(--blue-400);
}
.quote-featured .quote-mark { color: var(--blue-300); }
.quote-company {
  max-width: 9ch;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .12em;
  text-align: right;
  color: var(--navy-700);
}
.quote-featured .quote-company { color: var(--ice); }
.quote p {
  max-width: 26ch;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.38;
  font-weight: 500;
}
.quote-featured p { max-width: 31ch; font-size: clamp(1.45rem, 2.35vw, 2rem); }
.quote footer {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 28, 74, .16);
  font-size: .88rem;
}
.quote-featured footer { border-color: rgba(215, 229, 247, .25); }
.quote strong { color: var(--navy-700); }
.quote span { color: var(--muted); }
.quote-featured strong { color: #fff; }
.quote-featured span { color: rgba(215, 229, 247, .72); }

/* Awards */
.awards {
  position: relative;
  background: var(--sand); color: var(--ink);
}
.awards .section-head h2 { color: var(--ink); }
.award-list { list-style: none; margin: 0; padding: 0; }
.award {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center; gap: 1.5rem;
  padding: 1.6rem;
  border-top: 1px solid rgba(190, 196, 213, 0.28);
  border-radius: var(--radius-lg);
  transition: background .5s var(--ease);
}
.award:hover { background: rgba(255, 255, 255, .8); }
.award:last-child { border-bottom: 1px solid rgba(190, 196, 213, 0.28) }
.award-year {
  font-family: var(--font-display); font-weight: 700; font-size: 2rem;
  color: var(--blue-300); min-width: 4.5rem;
}
.award-body h3 { font-size: 1.22rem; margin-bottom: .3rem; }
.award-icon { width: 28 px; height: 28px; color: var(--blue-300); flex-shrink: 0; }
.award-body p { margin: 0; font-size: .92rem; color: var(--muted); }
.award-badge {
  display: none;
}

/* ---------------- Booking ---------------- */
.booking {
  position: relative;
  background: linear-gradient(to bottom, var(--navy-400), var(--navy-600)); color: #fff;
}
.booking .section-head h2,
.booking-copy h2 { color: #fff; }
.booking-inner { max-width: 640px; margin-inline: auto; text-align: center; }
.booking-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .9rem; }
.booking-copy p { color: rgba(215, 229, 247, .7); margin: 0 auto; max-width: 44ch; }

.booking-form { margin-top: 3rem; display: grid; gap: 1.1rem; text-align: left; }

/* honeypot: hidden from real users, still reachable by simple bots */
.field-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* floating-label fields */
.field { position: relative; }
.field input,
.field textarea {
  width: 100%;
  font: 400 1rem/1.5 var(--font-sans);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(11, 28, 74, .18);
  border-radius: 14px;
  padding: 1.5rem 1rem .65rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; padding-top: 1.7rem; }
.field label {
  position: absolute; left: 1rem; top: 1rem;
  font-size: 1rem; line-height: 1.5; color: rgba(90, 102, 132, .8);
  pointer-events: none;
  transform-origin: left top;
  transition: transform .22s var(--ease), color .22s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(47, 111, 208, .15);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-.62rem) scale(.72);
}
.field input:focus-visible, .field textarea:focus-visible { outline: none; }

.form-actions {
  margin-top: .8rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 1.25rem;
}
.form-note { margin: 0; font-size: .85rem; color: var(--navy-600); }
.form-note.error { color: #b4232f; }

.booking-dialog {
  border: 0; border-radius: var(--radius-lg); padding: 0;
  max-width: 26rem; width: calc(100% - 2.5rem);
  max-height: calc(100% - 2.5rem); overflow-y: auto;
  box-shadow: 0 36px 60px -28px rgba(7, 18, 50, .45);
}
.booking-dialog::backdrop { background: rgba(5, 11, 28, .55); backdrop-filter: blur(2px); }
.booking-dialog-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  padding: 2.5rem 2rem 2rem; text-align: center;
}
.booking-dialog-close {
  position: absolute; top: .75rem; right: .75rem;
  width: 2.75rem; height: 2.75rem; border: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--navy-600); font-size: 1.5rem; line-height: 1;
  cursor: pointer;
}
.booking-dialog-close:hover { background: var(--sand); }
.booking-dialog-message { margin: 0; font-size: 1.05rem; color: var(--ink); }
.booking-dialog-message.error { color: #b4232f; }

@media (max-width: 640px) {
  .booking-dialog {
    width: calc(100% - 1.5rem);
    max-height: calc(100% - 1.5rem);
  }
  .booking-dialog-inner {
    padding: 2.75rem 1.25rem 1.5rem;
    gap: 1rem;
  }
  .booking-dialog-inner .btn { width: 100%; justify-content: center; }
  .booking-dialog-message { font-size: 1rem; }
}

.booking-meta {
  margin: 3rem 0 0; font-size: .92rem; color: rgba(255, 255, 255, .88);
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
}
.booking-meta a { color: rgba(255, 255, 255, .8); border-bottom: 1px solid rgba(255, 255, 255, .55); padding-bottom: 1px; transition: color .25s, border-color .25s; }
.booking-meta a:hover { color: #fff; border-color: #fff; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-900); color: rgba(215, 229, 247, .7); padding: 2.5rem 0 3rem; border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-left: auto; font-size: .88rem; }
.footer-nav a:hover { color: #fff; }

/* ---------------- Reveal animation ---------------- */
/* uses `translate` so hover `transform` on the same element never collides */
.reveal {
  opacity: 0; translate: 0 26px;
  transition:
    opacity .8s var(--ease) var(--d, 0s),
    translate .8s var(--ease) var(--d, 0s),
    transform .35s var(--ease);
}
.reveal.in { opacity: 1; translate: 0 0; }
.award.reveal {
  transition:
    opacity .8s var(--ease) var(--d, 0s),
    translate .8s var(--ease) var(--d, 0s),
    transform .35s var(--ease),
    background .5s var(--ease);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 940px) {
  .nav { display: none; }
  .header-inner > .btn { display: none; }
  .nav-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; }
  .hero { padding-top: 8rem; }
  .hero-scroll { display: none; }
  .award { grid-template-columns: auto 1fr; gap: 1rem 1.2rem; }
  .award-badge { display: none; }
  .quote, .quote:first-child { grid-column: span 6; }
  .quote-featured { grid-column: span 12 !important; min-height: 25rem; }
}

@media (max-width: 520px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .blob { filter: none; }
  .quotes { grid-template-columns: 1fr; }
  .quote, .quote:first-child, .quote-featured { grid-column: auto !important; min-height: 0; }
  .quote-featured { min-height: 24rem; }
  .quote p { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; translate: none; }
}

/* ---------------- Sub-pages (blog archive + single post) ---------------- */

/* The fixed header is designed for the dark hero. On every page except the
   landing front page there is no hero behind it, so give it a solid background
   from the start (the same look landing.js applies once scrolled). */
body:not(.home) .site-header {
  background: rgba(5, 11, 28, .92);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

/* Blog archive – reuses the .posts / .post card grid. */
.blog-archive { padding-top: clamp(7rem, 12vw, 10rem); }
.blog-archive .section-head { max-width: none; }
.blog-archive .section-head h1 { font-size: clamp(1.9rem, 3.6vw, 3rem); text-wrap: balance; }
.posts-empty { color: var(--muted); }

/* Plain content pages (Impressum, Datenschutz, …) — any Page that isn't the
   front page, rendered via templates/page.html with a wp:post-title + bare
   wp:post-content. The front page has its own hero title, so hide this one. */
body.home .wp-block-post-title { display: none; }
body.page:not(.home) #main .wp-block-post-title {
  width: min(100% - 2.5rem, 760px);
  margin-inline: auto;
  padding: clamp(7rem, 12vw, 10rem) 0 0;
  font-family: var(--font-display, "Fraunces", serif);
  color: var(--ink);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1; text-wrap: balance;
}
body.page:not(.home) #main .entry-content {
  width: min(100% - 2.5rem, 760px);
  margin-inline: auto;
  padding: 1.75rem 0 clamp(4.5rem, 9vw, 8rem);
  color: #26314f; font-size: 1.075rem; line-height: 1.75;
}
body.page:not(.home) #main .entry-content > * + * { margin-top: 1.3rem; }
body.page:not(.home) #main .entry-content h2 {
  font-family: var(--font-display, "Fraunces", serif);
  color: var(--ink);
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2;
  margin-top: 2.6rem; text-wrap: balance;
}
body.page:not(.home) #main .entry-content h2:first-child { margin-top: 0; }
body.page:not(.home) #main .entry-content a { text-decoration: underline; text-underline-offset: 2px; }

/* Single post */
.single { background: var(--sand); padding-top: clamp(3.75rem, 5vw, 4.75rem); }
.single-media { margin-block: clamp(1.75rem, 3.5vw, 2.75rem); }
.single-media .shell { max-width: 940px; }
.single-media img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-lg);
}
.single-head { max-width: 760px; margin-inline: auto; }
.single-head .post-meta { margin-bottom: 1rem; }
.single-intro { max-width: 760px; margin-inline: auto; padding-top: clamp(.75rem, 1.4vw, 1.1rem); }
.single-title {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1; text-wrap: balance; margin: 0;
  color: var(--ink);
}
.single-body { max-width: 760px; margin-inline: auto; padding: clamp(2rem, 4vw, 3rem) 0 clamp(4.5rem, 9vw, 8rem); }
.prose { color: var(--ink); font-size: 1.075rem; line-height: 1.75; }
.prose > * + * { margin-top: 1.3rem; }
.prose p { color: #26314f; }
.prose h2 {
  font-family: var(--font-display, "Fraunces", serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2;
  margin-top: 2.6rem; text-wrap: balance;
}
.prose ul { padding-left: 1.3rem; display: grid; gap: .55rem; }
.prose li { color: #26314f; }
.prose blockquote {
  margin: 2.2rem 0; padding: 1.4rem 1.7rem;
  border-left: 3px solid var(--blue-400);
  background: var(--white); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-family: var(--font-display, "Fraunces", serif);
  font-size: 1.2rem; line-height: 1.45; color: var(--navy-700);
}
.prose blockquote p { margin: 0; color: inherit; }
.single-foot { max-width: 940px; margin-inline: auto; margin-top: 3rem; padding-top: 2rem; padding-bottom: clamp(4rem, 8vw, 7rem); border-top: 1px solid rgba(11, 28, 74, .12); }
.single-featured-title { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0 0 1.5rem; }
