/* ══════════════════════════════════════════
   Robert Schöne — Shared Stylesheet
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --bg: #0e0e0e;
  --bg-elevated: #161616;
  --bg-card: #1a1a1a;
  --gold: #C9A96E;
  --gold-light: #d4ba85;
  --gold-dark: #b8954f;
  --text: #f0f0f0;
  --text-muted: #999;
  --text-dim: #666;
  --border: #2a2a2a;
  --font-headline: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  letter-spacing: -0.03em;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  transition: background 0.3s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.nav__logo:hover {
  color: var(--text);
}

.nav__logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
}

.nav__cta {
  background: var(--gold);
  color: var(--bg) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.nav__cta:hover {
  background: var(--gold-light);
  color: var(--bg) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero--short {
  min-height: auto;
  padding-top: 72px;
  padding-bottom: 0;
}

.hero--short .hero__content {
  padding: 100px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  width: 100%;
  max-width: 540px;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: grayscale(15%);
  transition: filter 0.5s ease;
}

.hero__image img:hover {
  filter: grayscale(0%);
}

.hero__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(201, 169, 110, 0.15);
  border-radius: 12px;
  z-index: -1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
}

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

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Stats ── */
.stats {
  position: relative;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat {
  padding: 20px;
}

.stat__number {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Section shared ── */
.section {
  padding: 120px 0;
}

.section--elevated {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__header {
  text-align: center;
  margin-bottom: 72px;
}

.section__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.section__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 36px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  transform: scaleX(1);
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 12px;
  margin-bottom: 28px;
  font-size: 1.5rem;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card__link:hover {
  gap: 10px;
}

.card__link::after {
  content: '\2192';
  transition: margin-left 0.3s ease;
}

/* ── About Teaser (Homepage) ── */
.about-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-teaser__image {
  position: relative;
}

.about-teaser__image img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter 0.5s ease;
}

.about-teaser__image img:hover {
  filter: grayscale(0%);
}

.about-teaser__image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  border-radius: 4px 0 0 0;
  z-index: -1;
  opacity: 0.4;
}

/* ── CTA Section ── */
.cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.cta__email a {
  color: var(--gold);
}

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

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer__brand {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.footer__nav a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer__legal a {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__legal a:hover {
  color: var(--gold);
}

/* ── EXTRA Framework (Advisory) ── */
.framework {
  max-width: 800px;
  margin: 0 auto;
}

.framework__layer {
  padding: 40px 48px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.framework__layer:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.framework__layer--strategy {
  background: linear-gradient(135deg, #1a2a4a, #1e3a5f);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px 12px 0 0;
}

.framework__layer--innovation {
  background: linear-gradient(135deg, #2a2210, #3a3018);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-top: none;
}

.framework__layer--change {
  background: linear-gradient(135deg, #1a2a1a, #1e3a20);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-top: none;
  border-radius: 0 0 12px 12px;
}

.framework__layer-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.framework__layer--strategy .framework__layer-tag { color: #60a5fa; }
.framework__layer--innovation .framework__layer-tag { color: var(--gold); }
.framework__layer--change .framework__layer-tag { color: #4ade80; }

.framework__layer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.framework__layer-keywords {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.framework__layer-quote {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-dim);
}

/* ── Waves (Advisory) ── */
.waves {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.wave {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
}

.wave__number {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.wave__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.wave__timeline {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.wave__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wave__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.wave__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Offers (Advisory) ── */
.offers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.offer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px 40px;
  transition: border-color 0.3s ease;
}

.offer:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.offer__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.offer__price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.offer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer__list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.offer__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Talks (Speaking) ── */
.talks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.talk {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
  transition: border-color 0.3s ease;
}

.talk:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.talk__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.talk__audience {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 12px;
}

.talk__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.talk__points li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.talk__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Topics pills ── */
.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.topics li,
.topics span {
  padding: 8px 20px;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
}

/* ── Speaking grid with image ── */
.speaking-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.speaking-hero__image {
  position: relative;
}

.speaking-hero__image img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.speaking-hero__image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 4px 0;
  z-index: -1;
  opacity: 0.4;
}

/* ── Ventures ── */
.venture {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 56px 48px;
  margin-bottom: 32px;
  transition: border-color 0.3s ease;
}

.venture:hover {
  border-color: rgba(201, 169, 110, 0.3);
}

.venture__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.venture__name {
  font-size: 1.6rem;
  font-weight: 700;
}

.venture__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 100px;
  white-space: nowrap;
}

.venture__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
}

.venture__traction {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.venture__traction-item {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.venture__traction-item strong {
  color: var(--gold);
  font-weight: 600;
}

.venture__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── About page ── */
.about-story {
  max-width: 720px;
}

.about-story p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-story p:first-child {
  font-size: 1.2rem;
  color: var(--text);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.quick-fact {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.quick-fact__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.quick-fact__value {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Why Robert (Advisory) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  gap: 16px;
  align-items: start;
}

.why-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.1);
  border-radius: 8px;
  color: var(--gold);
  font-size: 1.1rem;
}

.why-item__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-item__text strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

/* ── Formats (Speaking) ── */
.formats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.format {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.format__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.format__name {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.format__detail {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Portrait placeholder ── */
.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 40px;
  }

  .hero__subtitle,
  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__image img {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero__image::after {
    display: none;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-teaser__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .about-teaser__image {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-teaser__image::before {
    display: none;
  }

  .speaking-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .speaking-hero__image {
    max-width: 480px;
    margin: 0 auto;
  }

  .speaking-hero__image::after {
    display: none;
  }

  .talk {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

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

  .formats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 14, 14, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  .nav__links.active {
    display: flex;
  }

  .nav__links a {
    font-size: 1.2rem;
  }

  .nav__hamburger {
    display: flex;
  }

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

  .nav__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

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

  .section {
    padding: 80px 0;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .venture {
    padding: 36px 28px;
  }

  .framework__layer {
    padding: 28px 24px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .card {
    padding: 36px 24px;
  }

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

  .stat {
    padding: 16px;
    border-bottom: 1px solid var(--border);
  }

  .stat:last-child {
    border-bottom: none;
  }
}
