﻿:root {
  --bg: #06080b;
  --bg-deep: #030405;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.065);
  --border: rgba(255, 255, 255, 0.105);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f3f0ea;
  --muted: #aaa49b;
  --muted-strong: #d6d0c7;
  --accent: #8a2434;
  --accent-hover: #a53043;
  --accent-dark: #5f1724;
  --accent-soft: rgba(138, 36, 52, 0.2);
  --warm: #c58b70;
  --max: 1180px;
  --header-h: 82px;
  --section-gap: clamp(5rem, 9vw, 8.5rem);
  /* Testweise System-Fonts — Manrope-ähnlich: Segoe UI / SF Pro / Roboto */
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-display: clamp(1.9rem, 4vw, 3.75rem);
  --heading-section: clamp(1.65rem, 2.8vw, 2.65rem);
  --heading-block: clamp(0.98rem, 1.3vw, 1.15rem);
  --heading-page: clamp(1.75rem, 3.5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text);
  background-color: var(--bg);
  background:
    radial-gradient(circle at 78% 9%, rgba(95, 23, 36, 0.32), transparent 28rem),
    radial-gradient(circle at 70% 20%, rgba(42, 54, 72, 0.36), transparent 36rem),
    linear-gradient(180deg, #07090c 0%, #090b0e 45%, #050607 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 0%, rgba(255, 244, 230, 0.05), transparent 54%);
  background-size: 96px 100%, auto;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: linear-gradient(180deg, rgba(6, 8, 11, 0.94), rgba(6, 8, 11, 0.72));
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  min-height: var(--header-h);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: grid;
  gap: 0.12rem;
  min-width: max-content;
}

.brand-name,
.footer-brand {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  padding: 0.55rem 0.8rem;
  font: inherit;
  font-size: 0.86rem;
  cursor: pointer;
}

.nav-backdrop {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.45vw, 1.55rem);
}

.nav-list a {
  color: rgba(243, 240, 234, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-list a:hover {
  color: var(--text);
}

.nav-cta {
  margin-left: 0.2rem;
}

.nav-list a.btn-primary {
  color: #fff;
}

.nav-list a.btn-primary:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.76rem 1.18rem;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  color: #fff7f2;
  background: linear-gradient(180deg, var(--accent-hover), var(--accent));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(95, 23, 36, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #b83a4e, var(--accent-hover));
}

.btn-secondary {
  color: rgba(243, 240, 234, 0.92);
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
}

main {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.25rem) clamp(5rem, 8vw, 7rem);
  flex: 1;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: 3rem;
  align-items: stretch;
  padding: 1rem 0 0;
}

.hero-copy {
  align-self: start;
  padding-top: 1.52rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.card-label {
  margin: 0 0 1rem;
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.page-header h1 {
  margin: 0;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: normal;
  text-wrap: balance;
}

.section-heading h2,
.group-section h2,
.booking-copy h2,
.prose h2 {
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: normal;
  text-wrap: balance;
}

.hero h1 {
  max-width: 17ch;
  font-size: 3.5rem;
  text-wrap: wrap;
}

.hero-kicker {
  max-width: 39ch;
  margin: 1.35rem 0 0;
  font-size: 1.15rem;
  line-height: 1.55;
  font-weight: 500;
}

.hero-kicker-offer {
  color: var(--warm);
}

.hero-kicker-tagline {
  color: var(--warm);
  font-weight: 600;
}

.hero-lead {
  max-width: 34rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.hero-formats {
  margin: 1.15rem 0 0;
  color: rgba(243, 240, 234, 0.54);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-formats-mobile {
  display: none;
}

.hero-portrait {
  position: relative;
  align-self: end;
  height: 680px;
}

.portrait-image {
  position: absolute;
  right: -6%;
  bottom: 9rem;
  height: 100%;
  width: auto;
  max-width: 138%;
  object-fit: contain;
  object-position: right bottom;
  transform: translateY(calc(-0.75rem - 3mm));
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 86%, transparent 100%);
}

.section {
  margin-top: var(--section-gap);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.hero + .section {
  margin-top: clamp(2.25rem, 4.5vw, 3.75rem);
}

.section-heading {
  max-width: 45rem;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.group-section h2,
.booking-copy h2 {
  font-size: var(--heading-section);
}

.section-heading p:not(.eyebrow),
.group-section p,
.booking-copy p,
.about-text p,
.work-text p,
.price-card p,
.subtle-offer p,
.faq-list p,
.process-grid p,
.topic-item p,
.prose p,
.prose li,
.page-header p {
  color: var(--muted);
}

.section-heading p:not(.eyebrow) {
  max-width: 62ch;
  margin: 1.15rem 0 0;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.topics-section {
  --topic-item-padding: clamp(1.6rem, 3vw, 2.35rem);
}

.topic-item {
  min-height: 250px;
  padding: var(--topic-item-padding);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.012));
}

.topic-item:nth-child(3n) {
  border-right: 0;
}

.topic-mark,
.process-grid span,
.principles span {
  display: block;
  color: var(--warm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.topic-item h3,
.process-grid h3,
.price-card h3,
.group-card h3,
.booking-card h3,
.subtle-offer h3 {
  margin: 0;
  font-size: var(--heading-block);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: normal;
}

.subtle-offer h3 a {
  color: var(--warm);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(197, 139, 112, 0.45);
  text-underline-offset: 0.16em;
}

.subtle-offer h3 a:hover {
  color: #fff7f2;
  text-decoration-color: rgba(197, 139, 112, 0.9);
}

.topic-item h3 {
  margin-top: 2.2rem;
}

.topic-item p {
  max-width: 35ch;
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.topics-closing {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: left;
}

.topics-closing > p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.topics-cta {
  display: grid;
  gap: 1.15rem;
  justify-items: start;
  margin-top: clamp(1.8rem, 3.5vw, 2.5rem);
}

.topics-cta p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.topics-cta .btn {
  justify-self: center;
}

.topics-cta strong {
  color: rgba(243, 240, 234, 0.88);
  font-weight: 600;
}

.topics-cta a:not(.btn) {
  color: #efd3c7;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(197, 139, 112, 0.45);
  text-underline-offset: 0.16em;
}

.topics-cta a:not(.btn):hover {
  color: #fff7f2;
  text-decoration-color: rgba(197, 139, 112, 0.9);
}

@media (min-width: 900px) {
  .topics-closing > p,
  .topics-cta > p {
    padding-left: var(--topic-item-padding);
  }
}

.work-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.45fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: start;
  padding-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}

.work-section .section-heading {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.work-section .section-heading h2 {
  font-size: clamp(1.42rem, 2.1vw, 2rem);
  max-width: 13.5em;
}

.work-panel,
.about-panel,
.group-section,
.booking-section {
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.014)),
    radial-gradient(circle at 100% 0%, rgba(138, 36, 52, 0.11), transparent 22rem);
}

.work-panel {
  padding: clamp(2rem, 4.5vw, 4rem);
}

.work-text {
  max-width: 66ch;
}

.work-text p:first-child {
  color: rgba(243, 240, 234, 0.88);
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  line-height: 1.62;
}

.work-text p {
  margin: 0 0 1.25rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.principles div {
  display: grid;
  gap: 0.45rem;
}

.principles strong {
  color: rgba(243, 240, 234, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  padding: clamp(2.2rem, 5vw, 4.7rem);
}

.about-panel .section-heading {
  margin-bottom: 0;
}

.about-aside {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-content: start;
}

.about-photo {
  margin: 0;
}

.about-photo figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.about-photo-image {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.03);
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
}

.about-text {
  max-width: 70ch;
}

.about-text p {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.about-background {
  margin-top: 0.35rem;
}

.about-background p {
  margin: 0.65rem 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 0.4rem;
  color: #efd3c7;
  font-weight: 600;
  font-size: 0.92rem;
}

.text-link::after {
  content: "\2192";
  margin-left: 0.45rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.process-grid article {
  min-height: 230px;
  padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1.25rem, 2.2vw, 1.85rem) clamp(1.5rem, 2vw, 2rem);
  border-right: 1px solid var(--border);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid h3 {
  margin-top: 2.3rem;
}

.process-grid p {
  max-width: 30ch;
  margin: 0.8rem 0 0;
}

.group-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.75fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
}

.group-section > div > p:not(.eyebrow) {
  max-width: 64ch;
  margin: 1.15rem 0 0;
}

.group-card,
.booking-card,
.subtle-offer {
  border: 1px solid var(--border);
  background: rgba(3, 4, 5, 0.34);
}

.group-card {
  padding: clamp(1.45rem, 3vw, 2rem);
  align-self: start;
}

.group-card p,
.booking-card p {
  margin: 0.8rem 0 1.4rem;
}

.group-card .subtle-offer-action {
  margin-top: 0;
}

.pricing-section .section-heading p a {
  color: #efd3c7;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(197, 139, 112, 0.45);
  text-underline-offset: 0.16em;
}

.pricing-section .section-heading p a:hover {
  color: #fff7f2;
  text-decoration-color: rgba(197, 139, 112, 0.9);
}

.pricing-section .section-heading {
  max-width: none;
  margin-bottom: clamp(1.1rem, 2.2vw, 1.85rem);
}

.pricing-section .section-heading p:not(.eyebrow) {
  max-width: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.price-card {
  min-height: 390px;
  padding: clamp(1.7rem, 3vw, 2.45rem);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.price-card:last-child {
  border-right: 0;
}

.price-card-featured {
  background:
    linear-gradient(180deg, rgba(138, 36, 52, 0.16), rgba(255, 255, 255, 0.025));
}

.duration {
  margin: 0.55rem 0 0;
  color: rgba(243, 240, 234, 0.72) !important;
  font-size: 0.88rem;
  font-weight: 700;
}

.price {
  margin: 0.2rem 0 0;
  color: var(--text) !important;
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-card > p {
  margin: 0;
  font-size: 0.96rem;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.pricing-additions {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.pricing-footnote {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

.subtle-offer {
  padding: clamp(1.3rem, 2.5vw, 1.7rem);
}

.subtle-offer p {
  margin: 0.55rem 0 0;
  font-size: 0.94rem;
}

.subtle-offer strong {
  color: rgba(243, 240, 234, 0.86);
}

.subtle-offer--with-action {
  align-self: start;
}

.pricing-additions .subtle-offer--with-action {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.subtle-offer-action {
  margin-top: 0.2rem;
  text-align: right;
}

.pricing-additions .subtle-offer-action {
  margin-top: auto;
}

.subtle-offer-action .btn {
  margin-right: 1.4rem;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.booking-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin: 1rem 0 0;
}

.booking-card {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.booking-card .btn {
  width: 100%;
}

.booking-card-note {
  margin: 1rem 0 0;
  font-size: 0.94rem;
  text-align: center;
}

.booking-card-note-break {
  display: none;
}

.booking-card-note a {
  color: #efd3c7;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(197, 139, 112, 0.45);
  text-underline-offset: 0.16em;
}

.booking-card-note a:hover {
  color: #fff7f2;
  text-decoration-color: rgba(197, 139, 112, 0.9);
}

.booking-embed-slot:not([hidden]) {
  display: block;
  margin-top: 1.25rem;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.booking-embed-slot iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.faq-list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.faq-list p {
  max-width: 78ch;
  margin: 0.8rem 0 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.25rem, 3vw, 2.25rem) 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-inner p {
  max-width: 38ch;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.5rem;
}

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

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

.copyright {
  max-width: var(--max);
  margin: 2rem auto 0;
  color: rgba(243, 240, 234, 0.42);
  font-size: 0.82rem;
}

.page-header {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.4rem;
}

.page-header h1 {
  font-size: var(--heading-page);
}

.page-header p {
  max-width: 62ch;
  margin: 1rem 0 0;
}

.prose {
  max-width: 68ch;
}

.prose h2 {
  margin: 2.4rem 0 0.8rem;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  letter-spacing: normal;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose strong {
  color: var(--text);
}

.prose a {
  color: #efd3c7;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 2rem;
}

.contact-box {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.6rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 1rem;
  color: var(--muted);
}

.contact-list strong,
.form-group label {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  font: inherit;
}

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

.form-note {
  color: var(--muted);
  font-size: 0.84rem;
}

@media (min-width: 900px) and (max-width: 1180px) {
  .hero {
    overflow: visible;
    align-items: end;
  }

  .hero-portrait {
    --portrait-scale: clamp(0.9, calc(100vw / 1180), 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: auto;
    align-self: end;
  }

  .portrait-image {
    position: static;
    inset: auto;
    right: auto;
    bottom: auto;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: clamp(520px, calc(50vw + 70px), 660px);
    transform: none;
    object-fit: contain;
    object-position: center bottom;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-kicker {
    font-size: 1.05rem;
  }

  .about-photo-image {
    max-width: 360px;
  }
}

@media (min-width: 900px) and (max-width: 1024px) {
  .hero {
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-kicker {
    font-size: 1rem;
  }
}

@media (min-width: 900px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) clamp(400px, calc(36vw + 76px), 500px);
  }
}

@media (max-width: 1024px) {
  .about-photo-image {
    max-width: 320px;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    position: relative;
    height: var(--header-h);
    min-height: var(--header-h);
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

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

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 1rem 1.25rem 1.3rem;
    border-top: 1px solid var(--border);
    background: rgba(6, 8, 11, 0.98);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  }

  .nav.is-open {
    display: block;
  }

  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    z-index: 15;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.35);
    cursor: default;
  }

  .nav-backdrop.is-visible {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-list a {
    font-size: 0.98rem;
    white-space: normal;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

@media (max-width: 899px) {
  :root {
    --header-h: 74px;
  }

  .site-header {
    min-height: var(--header-h);
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: auto;
    padding-top: 0.75rem;
    padding-bottom: 1.5rem;
  }

  .hero + .section {
    margin-top: calc(clamp(2.25rem, 4.5vw, 3.75rem) + 1rem);
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    order: 2;
    max-width: none;
    font-size: 2.35rem;
  }

  .hero-kicker {
    order: 3;
    margin: 0.6rem 0 0;
    font-size: 1rem;
  }

  .hero-portrait {
    order: 4;
    position: relative;
    align-self: center;
    width: min(94%, 28rem);
    height: auto;
    margin: -1.25rem auto 0;
    padding: 0;
    overflow: visible;
  }

  .portrait-image {
    position: relative;
    inset: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    max-width: none;
    transform: none;
    object-fit: contain;
    object-position: center bottom;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  }

  .hero-lead {
    order: 5;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0.75rem 0 0;
    font-size: 0.98rem;
    line-height: 1.62;
    text-wrap: pretty;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .hero-actions {
    order: 6;
    margin-top: 1.25rem;
  }

  .hero-formats {
    order: 7;
    margin-top: 1rem;
  }

  .hero-formats-full {
    display: none;
  }

  .hero-formats-mobile {
    display: inline;
  }

  .booking-card-note-break {
    display: block;
  }

  .about-photo-image {
    max-width: 280px;
  }

  .topics-grid,
  .pricing-grid,
  .process-grid,
  .work-section,
  .about-panel,
  .group-section,
  .booking-section,
  .pricing-additions,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .work-section {
    gap: 1.5rem;
  }

  .topic-item:nth-child(n),
  .price-card,
  .process-grid article {
    border-right: 0;
  }

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

  .principles-line-break {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    font-size: 0.67rem;
  }

  .hero h1 {
    max-width: none;
    font-size: 2rem;
  }

  .hero-lead {
    font-size: clamp(0.875rem, 0.82rem + 0.45vw, 0.96rem);
    line-height: 1.56;
  }

  .hero-actions .btn,
  .booking-card .btn {
    width: 100%;
  }

  .about-photo-image {
    max-width: 240px;
  }

  .topic-item,
  .price-card,
  .process-grid article {
    min-height: auto;
    padding: 1.5rem 0;
    background: transparent;
  }

  .work-panel,
  .about-panel,
  .group-section,
  .booking-section,
  .group-card,
  .booking-card,
  .subtle-offer {
    padding: 1.35rem;
  }
}

