﻿: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);
  --font: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --heading-display: clamp(2.55rem, 5.5vw, 5.25rem);
  --heading-section: clamp(1.85rem, 3.2vw, 3.05rem);
  --heading-block: clamp(1.05rem, 1.45vw, 1.28rem);
  --heading-page: clamp(2rem, 4vw, 3.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--text);
  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-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;
  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;
}

.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: min(790px, calc(100vh - var(--header-h)));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: clamp(2rem, 4.5vw, 5rem);
  align-items: center;
  padding: clamp(4.2rem, 8vw, 7.6rem) 0 clamp(4.5rem, 7vw, 6.2rem);
}

.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: -0.055em;
  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: -0.045em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: var(--heading-display);
}

.hero-kicker {
  max-width: 39ch;
  margin: 1.35rem 0 0;
  color: var(--muted-strong);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  font-weight: 600;
}

.hero-lead {
  max-width: 56ch;
  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-portrait {
  position: relative;
  min-height: clamp(560px, 58vw, 720px);
  align-self: stretch;
  isolation: isolate;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 8% -8% 0 3%;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 8, 11, 0.05), rgba(6, 8, 11, 0.74) 85%),
    radial-gradient(ellipse at 58% 32%, rgba(151, 59, 72, 0.26), transparent 52%),
    radial-gradient(ellipse at 46% 18%, rgba(83, 96, 125, 0.34), transparent 58%);
  filter: blur(2px);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 32%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.7), transparent 68%);
  filter: blur(18px);
}

.portrait-aura {
  position: absolute;
  inset: 2% -10% 8% 0;
  z-index: -1;
  background:
    radial-gradient(circle at 56% 26%, rgba(165, 48, 67, 0.24), transparent 38%),
    radial-gradient(circle at 42% 22%, rgba(214, 208, 199, 0.11), transparent 34%),
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.045), transparent 76%);
  filter: blur(18px);
}

.portrait-image {
  position: absolute;
  right: -3%;
  bottom: 0;
  width: min(138%, 840px);
  max-height: 106%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.95) contrast(1.04) drop-shadow(-34px 36px 74px rgba(0, 0, 0, 0.72));
}

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

.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);
}

.topic-item {
  min-height: 250px;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  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: -0.03em;
}

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

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

.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-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;
  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-text {
  max-width: 70ch;
}

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

.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(1rem, 2vw, 1.7rem) 0 0;
  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;
}

.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;
}

.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);
}

.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-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.3rem, 1.8vw, 1.65rem);
  letter-spacing: -0.04em;
}

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

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

.prose strong {
  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 (max-width: 1060px) {
  .nav-list {
    gap: 0.8rem;
  }

  .nav-list a {
    font-size: 0.74rem;
  }
}

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

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

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

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

  .nav {
    display: none;
    flex-basis: 100%;
    width: calc(100% + 2.5rem);
    margin: 0 -1.25rem;
    padding: 1rem 1.25rem 1.3rem;
    border-top: 1px solid var(--border);
    background: rgba(6, 8, 11, 0.98);
  }

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

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

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

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

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-portrait {
    min-height: clamp(390px, 70vw, 560px);
  }

  .portrait-image {
    right: 50%;
    width: min(130%, 720px);
    transform: translateX(50%);
    object-position: center bottom;
  }

  .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;
  }

  .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: clamp(2.25rem, 12vw, 3.45rem);
    letter-spacing: -0.05em;
  }

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

  .hero-portrait {
    min-height: 360px;
  }

  .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;
  }
}

