/* =========================================
   István Nagy — Design Mockup Stylesheet
   Style: Minimal & Clean
   ========================================= */

/* --- Self-hosted fonts --- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-v20-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Palette — accent darkened from #B08D57 to pass WCAG AA 4.5:1 on --bg */
  --bg:          #FAFAF8;
  --bg-alt:      #F0EFED;
  --text:        #2C2C2C;
  --text-muted:  #6B6B6B;
  --accent:      #85682C;
  --accent-hover:#75601D;
  --accent-light:#F5F0E6;
  --border:      #E0DFDD;
  --white:       #fff;
  --focus-ring:  #85682C;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container:   1080px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--text);
  color: var(--bg);
  font-size: 0.85rem;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
  color: var(--bg);
}

/* --- Focus-visible --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}
.nav-cta:focus-visible {
  outline-offset: 3px;
}

/* --- Screen-reader only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}


/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: 3.2rem; letter-spacing: -0.02em; }
h2 { font-size: 2.2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; font-weight: 500; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}


/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--text);
}
.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  font-size: 0.85rem;
  padding: 8px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 4px;
  transition: all 0.2s;
}

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


/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

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

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 14px 0;
}
.btn-ghost:hover { color: var(--accent-hover); }
.btn-ghost::after {
  content: ' →';
  transition: transform 0.2s;
}


/* --- Sections --- */
.section {
  padding: var(--section-pad);
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 56px;
}

.section-header .tagline {
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .lead {
  max-width: 640px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .lead {
  margin: 0 auto;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 24px 0;
}

.divider.centered {
  margin: 24px auto;
}


/* --- Hero --- */
.hero {
  padding: 160px 0 120px;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero .lead {
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero .tagline {
  margin-bottom: 32px;
}

/* Hero — layered hierarchy */
.hero-brand {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 34px;
}

.hero-supporting {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.hero-recognition {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 8px;
}

.hero-detail {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.8;
  color: #727270;
  max-width: 460px;
  margin: 0 auto 56px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
  line-height: 0;
}

.card-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.card h4 {
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}


/* --- Two-column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.narrow-left {
  grid-template-columns: 5fr 7fr;
}

.two-col.narrow-right {
  grid-template-columns: 7fr 5fr;
}


/* --- Image placeholder --- */
.img-placeholder {
  background: var(--bg-alt);
  border-radius: 8px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border: 1px dashed var(--border);
}


/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h4 {
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
}


/* --- Safety Note / Disclaimer --- */
.safety-note {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  border-radius: 0 8px 8px 0;
  margin-top: 48px;
}

.safety-note p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}


/* --- Session cards --- */
.session-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 40px;
  margin-bottom: 32px;
}

.session-card .tagline {
  margin-bottom: 8px;
}

.session-card h3 {
  margin-bottom: 16px;
}

.session-card .features {
  list-style: none;
  margin: 24px 0;
}

.session-card .features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.session-card .features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* --- Quiet list (em-dash markers) --- */
.list-quiet {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-quiet li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.list-quiet li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.session-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.badge-solo {
  background: var(--accent-light);
  color: var(--accent);
}

.badge-collab {
  background: #E8EDE6;
  color: #5A6B54;
}


/* --- Upcoming sessions table --- */
.upcoming-list {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.upcoming-list th {
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}

.upcoming-list td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}


/* --- Cal.com embed container --- */
.cal-embed-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 920px;
  overflow: hidden;
}

.cal-embed-frame {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
}

.cal-inline-booking {
  width: 100%;
  min-height: 920px;
}

.cal-embed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 40px;
}

.cal-embed-placeholder-inner {
  text-align: center;
  max-width: 400px;
}

.cal-consent-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 40px;
}

.cal-consent-placeholder[hidden] {
  display: none !important;
}

.cal-consent-placeholder-inner {
  text-align: center;
  max-width: 620px;
}

.cal-consent-placeholder-inner h3 {
  margin-bottom: 10px;
}

.cal-consent-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cal-fallback {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cal-fallback a {
  font-weight: 500;
}

/* --- Booking session selector --- */
.booking-session-grid {
  align-items: stretch;
}

.booking-session-option {
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.booking-session-option-selected {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}


/* --- Booking steps --- */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.booking-step {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}


/* --- Contact form --- */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group input:focus:not(:focus-visible),
.form-group textarea:focus:not(:focus-visible) {
  outline: none;
}

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

.honeypot-field {
  display: none;
}

.form-status {
  display: none;
  margin-top: 16px;
  margin-bottom: 8px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status-success {
  display: block;
  background: #f3f8f2;
  border-color: #cfe0c7;
  color: #2f5a2a;
}

.form-status-error {
  display: block;
  background: #fbf3f3;
  border-color: #e5caca;
  color: #7a2e2e;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}


/* --- CTA Banner --- */
.cta-banner {
  background: var(--text);
  color: var(--bg);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--bg);
  margin-bottom: 12px;
}

.cta-banner .lead {
  color: rgba(250,250,248,0.7);
  max-width: 480px;
  margin: 0 auto 32px;
}

.cta-banner .btn-primary {
  background: var(--accent);
}


/* --- Footer --- */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-cookie-settings {
  font: inherit;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.footer-links a:hover { color: var(--text); }
.footer-cookie-settings:hover { color: var(--text); }

/* --- Cookie consent banner --- */
.cookie-banner {
  position: fixed;
  left: auto;
  right: 14px;
  bottom: 14px;
  width: min(560px, calc(100vw - 28px));
  z-index: 300;
  pointer-events: none;
}

.cookie-banner-inner {
  max-width: none;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #fcfbf8 100%);
  border: 1px solid #d8d0bf;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  padding: 10px 12px;
  pointer-events: auto;
}

.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 5px;
}

.cookie-banner-copy {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  max-width: 50ch;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner-actions .btn {
  padding: 8px 14px;
  font-size: 0.76rem;
  min-width: 120px;
  text-align: center;
}

.cookie-banner-note {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* --- Mobile Menu Button --- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



/* --- Blog / Articles --- */

/* Article listing grid */
.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

/* Article card on listing page */
.article-card {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.article-card:first-child {
  padding-top: 0;
}

.article-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.article-card h3 a {
  color: var(--text);
  transition: color 0.2s;
}

.article-card h3 a:hover {
  color: var(--accent);
}

.article-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.article-read-more {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 4px;
}

.article-read-more:hover {
  color: var(--accent-hover);
}

.article-read-more::after {
  content: ' →';
}

/* Article coming-soon state */
.article-coming-soon {
  padding: 80px 0 40px;
}

/* Single article header meta */
.article-header-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.article-meta-sep {
  font-size: 1.1rem;
  line-height: 1;
}

/* Single article body */
.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding-bottom: 48px;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4em;
}

.article-body .article-lede {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 2em;
}

.article-body h2 {
  font-size: 1.6rem;
  margin-top: 2.4em;
  margin-bottom: 0.8em;
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 0 16px 28px;
  margin: 2em 0;
}

.article-body blockquote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* Article author CTA */
.article-author-cta {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 0 0;
  border-top: 1px solid var(--border);
}


/* --- Utility classes (Finding #8) --- */
.hero-sub {
  min-height: 40vh;
  padding: 160px 0 40px;
}

.hero-tall {
  min-height: 50vh;
  padding: 160px 0 60px;
}

.section-flush {
  padding-top: 0;
}

.section-compact {
  padding: 48px 0;
}

.container-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.container-narrower {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.container-tight {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-ghost-inverted {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 36px;
}

.btn-ghost-inverted:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

/* --- Testimonial carousel --- */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 16px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.testimonial-body {
  flex: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-text:last-of-type {
  margin-bottom: 0;
}

.testimonial-author {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text);
}

/* Expand/collapse */
.testimonial-full {
  margin-top: 12px;
}

.testimonial-toggle {
  display: inline-block;
  margin-top: 12px;
  padding: 0;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s;
}

.testimonial-toggle:hover {
  color: var(--accent-hover);
}

.testimonial-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Carousel arrows */
.carousel-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 60px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-arrow:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.carousel-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-arrow-left {
  margin-right: 16px;
}

.carousel-arrow-right {
  margin-left: 16px;
}

/* Dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: var(--accent);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero { padding: 120px 0 80px; min-height: 70vh; }
  .hero-sub { padding: 120px 0 30px; min-height: auto; }
  .hero-tall { padding: 120px 0 40px; min-height: auto; }
  .hero-headline { font-size: 2.4rem; }
  .hero-supporting { font-size: 1rem; }
  .hero-detail { margin-bottom: 36px; }
  .two-col, .two-col.narrow-left, .two-col.narrow-right {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .card-grid { grid-template-columns: 1fr; }
  .booking-steps { grid-template-columns: 1fr; }
  .testimonial-card {
    flex: 0 0 calc(100% - 8px);
  }
  .carousel-arrow {
    display: none;
  }
  .carousel-dots {
    margin-top: 16px;
  }
  .carousel-track::after {
    content: '';
    flex: 0 0 1px;
  }

  .nav-toggle { display: flex; }
  .nav-logo img { height: 26px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 32px;
    font-size: 1rem;
  }

  .nav-links .nav-cta {
    margin: 12px 32px 8px;
    text-align: center;
    padding: 12px 20px;
  }

  .article-body p { font-size: 1rem; }
  .article-body .article-lede { font-size: 1.05rem; }
  .article-body h2 { font-size: 1.4rem; }

  .cal-embed-container,
  .cal-embed-frame,
  .cal-inline-booking {
    min-height: 1120px;
  }

  .cal-consent-placeholder {
    min-height: 520px;
    padding: 28px 20px;
  }

  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }

  .cookie-banner-inner {
    padding: 10px 12px;
  }

  .cookie-banner-title {
    font-size: 1rem;
  }

  .cookie-banner-actions .btn {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  h1 { font-size: 1.9rem; }
  .hero { padding: 100px 0 60px; min-height: 60vh; }
  .hero-headline { font-size: 2rem; }
  .card { padding: 28px 24px; }
  .session-card { padding: 32px 24px; }
  .testimonial-card {
    padding: 28px 24px 22px;
  }

  .cal-embed-container,
  .cal-embed-frame,
  .cal-inline-booking {
    min-height: 1080px;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    width: 100%;
    font-size: 0.8rem;
  }

  .cookie-banner-copy {
    font-size: 0.82rem;
  }

  .cookie-banner-note {
    font-size: 0.7rem;
  }
}
