/* Neuropsykiatrisk Foredrag – nordisk, marin landingsside */

:root {
  --navy: #1a2332;
  --navy-deep: #121821;
  --slate: #2c3e50;
  --slate-soft: #34495e;
  --sand: #f5f0eb;
  --sand-dark: #e8ddd3;
  --cream: #faf7f3;
  --white: #ffffff;
  --text: #333333;
  --muted: #5c6570;
  --line: #ddd4c8;
  --accent: #1a6b4a;
  --accent-hover: #27ae60;
  --warm: #c0956c;
  --warm-light: #d4a574;
  --teal-soft: rgba(26, 107, 74, 0.1);
  --error: #9b1c1c;
  --overlay: rgba(18, 24, 33, 0.72);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(26, 35, 50, 0.1);
  --shadow-lg: 0 18px 50px rgba(26, 35, 50, 0.16);
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --narrow: 760px;
  --topbar-h: 42px;
  --nav-h: 76px;
  --transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
picture img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

picture {
  display: block;
}

figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.22;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-hover);
}

:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -140px;
  z-index: 200;
  background: var(--white);
  color: var(--navy);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 0.75rem;
}

.container,
.container-narrow {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.container-narrow {
  max-width: var(--narrow);
}

.framed {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.framed picture,
.framed img {
  width: 100%;
  height: 100%;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 50px;
  padding: 0.8rem 1.55rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-warm {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--white);
}

.btn-warm:hover {
  background: var(--warm-light);
  border-color: var(--warm-light);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.btn-block {
  width: 100%;
}

/* Chrome: top-bar + sticky nav */

.top-bar {
  background: var(--navy-deep);
  color: rgba(245, 240, 235, 0.82);
  min-height: var(--topbar-h);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--topbar-h);
  text-align: center;
}

.top-bar-link {
  color: inherit;
  text-decoration: none;
  padding: 0.45rem 0;
  line-height: 1.45;
  max-width: 100%;
}

.top-bar-link:hover {
  color: var(--warm-light);
}

.top-bar-arrow {
  margin-left: 0.25rem;
  font-size: 0.85em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 247, 243, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 212, 200, 0.7);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  text-decoration: none;
  min-width: 0;
}

.nav-brand:hover {
  color: var(--navy);
}

.nav-mark {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
  gap: 0.12rem;
}

.nav-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-menu a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--accent);
  background: var(--teal-soft);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  margin-left: 0.35rem;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: var(--white) !important;
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  min-height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem 0 0;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  background: linear-gradient(105deg, rgba(26, 35, 50, 0.42) 0%, rgba(26, 35, 50, 0.16) 48%, rgba(26, 35, 50, 0.06) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin: 0 auto 3.5rem 0;
  padding: 2.1rem 2.15rem 2.35rem;
  background: rgba(18, 24, 33, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(18, 24, 33, 0.18);
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.4rem;
  padding: 0.42rem 0.95rem;
  border: 1px solid rgba(192, 149, 108, 0.55);
  border-radius: 999px;
  color: var(--warm-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.35rem, 6vw, 4.1rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(245, 240, 235, 0.96);
  max-width: 38rem;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-benefits {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.1rem;
  max-width: 40rem;
}

.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(245, 240, 235, 0.96);
  font-size: 0.98rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-benefits strong {
  color: var(--white);
  font-weight: 600;
}

.benefit-icon {
  flex-shrink: 0;
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.12rem;
  border-radius: 50%;
  background: rgba(26, 107, 74, 0.35);
  color: #b7e4c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-ctas .btn {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-trust {
  margin: 0;
  padding: 1.15rem 1.35rem;
  background: rgba(18, 24, 33, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.88rem;
  color: rgba(245, 240, 235, 0.92);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Sections */

.section {
  padding: 6rem 0;
}

.section h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  margin-bottom: 1.15rem;
}

.section h3 {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label--light {
  color: var(--warm-light);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-lead,
.lecture-copy p,
.voice-copy p,
.privacy p {
  color: var(--muted);
}

.section-lead {
  font-size: 1.08rem;
}

.lecture-layout,
.voice-row,
.booking-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
  min-width: 0;
}

.lecture-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.lecture-copy p + p {
  margin-top: 1.05rem;
}

.lecture-photo {
  aspect-ratio: 4 / 3;
}

.lecture-photo img {
  object-position: center 45%;
}

.lecture-arc {
  margin-top: 4.25rem;
  padding-top: 3.15rem;
  border-top: 1px solid var(--line);
}

.lecture-arc-intro {
  max-width: 38rem;
  margin-bottom: 2.15rem;
}

.lecture-arc-intro h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-bottom: 0;
}

.lecture-arc-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  counter-reset: none;
}

.lecture-arc-step {
  background: var(--white);
  border: 1px solid rgba(221, 212, 200, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.7rem 1.5rem 1.8rem;
  border-top: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.lecture-arc-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.lecture-arc-index {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--warm);
  margin-bottom: 0.55rem;
  line-height: 1;
}

.lecture-arc-phase {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.lecture-arc-step h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.28;
  margin-bottom: 0.7rem;
}

.lecture-arc-step p:last-child {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Audience cards */

.audiences {
  background: var(--sand);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.audience-card,
.practical-card,
.booking-aside,
.booking-form,
.quote-card,
.included-panel {
  background: var(--white);
  border: 1px solid rgba(221, 212, 200, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.audience-card {
  padding: 1.8rem 1.6rem 1.9rem;
  border-top: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-index {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--warm);
  margin-bottom: 0.7rem;
}

.card-meta {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.05rem;
}

.audience-card ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.audience-card li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.audience-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
}

/* Voices */

.voices {
  background: var(--cream);
}

.voice-row {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  margin-bottom: 3.5rem;
}

.voice-row:last-child {
  margin-bottom: 0;
}

.voice-row--reverse {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
}

.voice-row--reverse .voice-photo {
  order: 2;
}

.voice-photo {
  aspect-ratio: 4 / 5;
}

.voice-photo--axel {
  object-position: center 18%;
}

.voice-photo--martin {
  object-position: 22% 12%;
}

.voice-role {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.voice-copy h3 {
  margin-bottom: 0.85rem;
}

.voice-titles {
  font-size: 0.98rem;
  color: var(--slate) !important;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.voice-quote {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--sand);
  border-left: 3px solid var(--warm);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.voice-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--navy) !important;
  line-height: 1.55;
}

/* Testimonials */

.testimonial {
  background: var(--sand);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  padding: 1.8rem 1.6rem 1.75rem;
  border-top: 3px solid var(--warm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.quote-kicker {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.quote-card blockquote {
  flex: 1;
}

.quote-card blockquote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.55;
}

.quote-card figcaption {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(221, 212, 200, 0.85);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Practical */

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.15rem;
  align-items: start;
}

.practical-card {
  padding: 1.55rem 1.35rem 1.65rem;
}

.practical-card h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.practical-card p {
  color: var(--muted);
}

.practical-card--price {
  background: var(--navy);
  border-color: var(--navy);
}

.practical-card--price h3,
.practical-card--price p {
  color: rgba(245, 240, 235, 0.78);
}

.price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white) !important;
  line-height: 1.1;
  margin-bottom: 0.15rem;
}

.ean-note {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(245, 240, 235, 0.18);
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(245, 240, 235, 0.92) !important;
}

.included-panel {
  padding: 1.7rem 1.6rem 1.8rem;
  margin-bottom: 2.25rem;
}

.included-panel h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.15rem;
}

.included-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.included-icon {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.included-icon svg {
  width: 1rem;
  height: 1rem;
}

.practical-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.practical-visual {
  aspect-ratio: 16 / 9;
}

.practical-visual img {
  object-position: center 42%;
}

/* Bridge / Vaganama */

.bridge {
  background:
    radial-gradient(ellipse at 80% 120%, rgba(192, 149, 108, 0.18), transparent 46%),
    linear-gradient(165deg, var(--navy) 0%, #243044 55%, var(--navy-deep) 100%);
  color: rgba(245, 240, 235, 0.88);
  padding: 6.5rem 0;
}

.bridge-inner {
  max-width: 780px;
}

.bridge h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.bridge p {
  font-size: 1.08rem;
  margin-bottom: 2rem;
  max-width: 46rem;
}

/* FAQ accordion */

.faq {
  background: var(--cream);
  padding-bottom: 5.25rem;
}

.faq-list {
  max-width: 820px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(221, 212, 200, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-heading {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  color: inherit;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.35rem;
  min-height: 56px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--cream);
  transition: border-color var(--transition), background var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  border-radius: 1px;
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.faq-trigger:hover .faq-icon {
  border-color: var(--accent);
}

.faq-item.is-open {
  border-color: rgba(26, 107, 74, 0.22);
}

.faq-item.is-open .faq-icon {
  border-color: var(--accent);
  background: var(--teal-soft);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-panel-inner p {
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Booking */

.booking {
  background: var(--sand);
}

.booking-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.booking-aside,
.booking-form {
  padding: 1.7rem;
}

.booking-aside {
  background: var(--cream);
}

.booking-photo {
  margin-bottom: 1.25rem;
  aspect-ratio: 4 / 3;
}

.booking-photo img {
  object-position: center 40%;
}

.booking-aside h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.booking-aside p {
  color: var(--muted);
  margin-top: 0.55rem;
}

.booking-aside a {
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.booking-aside a:hover {
  color: var(--accent);
}

.booking-note {
  margin-top: 1.1rem !important;
  font-size: 0.92rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.4rem;
}

.form-group label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  min-height: 48px;
}

.form-group select:required:invalid {
  color: #8a8178;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%231a2332' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 12px 8px;
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8a8178;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 3px solid rgba(26, 107, 74, 0.22);
  border-color: var(--accent);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
  border-color: var(--error);
}

.form-privacy {
  font-size: 0.88rem;
  color: var(--muted);
}

.form-privacy a {
  color: var(--navy);
  font-weight: 600;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  min-height: 1.4em;
  font-weight: 600;
}

.form-status.success {
  color: var(--accent);
}

.form-status.error {
  color: var(--error);
}

/* Privacy */

.privacy {
  padding: 3.5rem 0 5rem;
  background: var(--cream);
}

.privacy h2 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.privacy p + p {
  margin-top: 0.9rem;
}

/* Footer */

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.68);
  padding: 4rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.footer a:hover {
  color: var(--warm-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.4rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
}

/* Responsive */

@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-brand {
    flex: 1;
    min-width: 0;
  }

  .nav-brand-sub {
    display: none;
  }

  .nav-brand-name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.7rem 1.35rem 1.15rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    box-shadow: var(--shadow);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: 0.95rem;
    white-space: normal;
  }

  .nav-cta {
    justify-content: center;
    margin-left: 0;
    margin-top: 0.35rem;
  }

  .practical-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .lecture-layout,
  .voice-row,
  .voice-row--reverse,
  .audience-grid,
  .lecture-arc-steps,
  .testimonial-grid,
  .included-list,
  .booking-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .voice-row--reverse .voice-photo {
    order: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 6.25rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.22) 0%, rgba(26, 35, 50, 0.12) 40%, rgba(26, 35, 50, 0.38) 100%);
  }

  .hero-media img {
    object-position: center 28%;
  }

  .hero-content {
    max-width: 38rem;
    margin-bottom: 2.5rem;
    padding: 1.6rem 1.5rem 1.8rem;
    background: rgba(18, 24, 33, 0.5);
  }

  .lecture-photo,
  .booking-photo,
  .practical-visual {
    aspect-ratio: 16 / 10;
  }

  .lecture-arc {
    margin-top: 3rem;
    padding-top: 2.25rem;
  }

  .voice-photo {
    aspect-ratio: 4 / 5;
    max-width: 420px;
  }

  .section {
    padding: 4rem 0;
  }

  .bridge {
    padding: 4.5rem 0;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .top-bar {
    min-height: 0;
  }

  .nav-brand {
    flex: 1;
    min-width: 0;
  }

  .nav-brand-sub {
    display: none;
  }

  .nav-brand-name {
    display: block;
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body {
    font-size: 1rem;
  }

  .hero {
    padding-top: 5.75rem;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.24) 0%, rgba(26, 35, 50, 0.42) 100%);
  }

  .hero-media img {
    object-position: center 30%;
  }

  .hero-content {
    padding: 1.4rem 1.2rem 1.55rem;
    background: rgba(18, 24, 33, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    white-space: normal;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .hero-ctas,
  .practical-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-ctas .btn,
  .bridge .btn,
  .btn {
    width: 100%;
  }

  .practical-grid {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .booking-aside,
  .booking-form,
  .included-panel {
    padding: 1.3rem;
  }

  .faq-trigger {
    padding: 1rem 1.15rem;
    font-size: 0.98rem;
  }

  .footer a,
  .booking-aside a {
    overflow-wrap: anywhere;
  }

  a[href^="mailto:indrestyrke@robusthed-mlc.dk"] {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .nav-mark {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .btn:hover,
  .audience-card:hover,
  .lecture-arc-step:hover,
  .quote-card:hover {
    transform: none;
  }
}
