:root {
  --bg: #0f0f0e;
  --surface: #151513;
  --surface-strong: #1d1c19;
  --surface-soft: #24211d;
  --text: #f0ede8;
  --text-muted: #b5aea4;
  --accent: #d78a68;
  --accent-strong: #b9613f;
  --line: rgba(255, 255, 255, 0.06);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
  --heading: "Instrument Sans", sans-serif;
  --body: "Manrope", sans-serif;
  --radius: 6px;
  --container: 1180px;
  --header-height: 5.5rem;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background:
    linear-gradient(180deg, rgba(215, 138, 104, 0.06), transparent 28%),
    linear-gradient(180deg, #11110f 0%, var(--bg) 36%, #10100f 100%);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.015) 0 1px,
      transparent 1px 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 0 1px,
      transparent 1px 3px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 88%);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
}

.eyebrow,
.section-index,
.detail-label,
.panel-label,
.rate-label {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 15, 14, 0.72);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem 2rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--heading);
}

.brand-mark {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.site-nav a,
.header-cta,
.menu-toggle {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--text);
}

.header-cta,
.menu-toggle {
  border-radius: var(--radius);
}

.header-cta {
  justify-self: end;
  padding: 0.82rem 1rem;
  background: rgba(215, 138, 104, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.82rem 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero {
  padding-top: 3rem;
  padding-bottom: 4.25rem;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.8fr);
  gap: 2.5rem;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.hero h1,
.section-heading h2,
.section-intro h2,
.method-heading h2,
.engagement-copy h2,
.closing h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 1rem;
  max-width: 12ch;
  font-size: 5.25rem;
  color: #e6dfd6;
  text-transform: none;
}

.hero-text,
.section-heading p,
.prose p,
.intro-copy,
.method-heading p,
.method-step p,
.panel-copy,
.engagement-list,
.panel-note,
.site-footer p {
  color: var(--text-muted);
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 38rem;
  font-size: 1.12rem;
  color: #cac1b7;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}
.rate-block,
.engagement-panel {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 34rem;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after,
.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(14, 14, 13, 0.2) 50%, rgba(14, 14, 13, 0.75) 100%),
    linear-gradient(90deg, rgba(215, 138, 104, 0.16), transparent 42%);
}

.hero-media img,
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img,
.feature-image img {
  filter: grayscale(1) saturate(0.72) contrast(1.04);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.hero-media:hover img,
.hero-media:focus-within img,
.feature-image:hover img,
.feature-image:focus-within img {
  filter: grayscale(0) saturate(1) contrast(1);
  transform: scale(1.01);
}

.hero-anchor {
  position: absolute;
  right: -0.2rem;
  bottom: -2.1rem;
  z-index: 0;
  font-family: var(--heading);
  font-size: 14rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.split-layout,
.section-intro,
.engagement-grid {
  display: grid;
  gap: 2rem;
}

.split-layout {
  grid-template-columns: minmax(15rem, 0.35fr) minmax(0, 1fr);
  align-items: start;
}

.story-layout {
  grid-template-columns: minmax(16rem, 0.45fr) minmax(0, 0.55fr);
  gap: 2rem;
}

.story-aside {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  align-self: start;
}

.story-aside h2 {
  margin: 0.9rem 0 0;
  font-family: var(--heading);
  font-size: 3.5rem;
  line-height: 0.96;
  text-transform: uppercase;
}

.story-lead {
  margin: 1rem 0 0;
  max-width: 30rem;
  color: var(--text-muted);
}

.section-heading {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
}

.section-heading h2,
.section-intro h2,
.method-heading h2,
.engagement-copy h2,
.closing h2 {
  margin-top: 0.9rem;
  font-size: 3.5rem;
}

.section-heading p,
.method-heading p,
.intro-copy {
  margin-top: 1rem;
  max-width: 32rem;
}

.prose {
  max-width: 42rem;
  font-size: 1.03rem;
}

.prose p {
  margin: 0 0 1rem;
}

.feature-image {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.82rem 1rem;
  border-radius: 6px;
  background: rgba(215, 138, 104, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.inline-cta:hover,
.inline-cta:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.section-intro {
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 26rem);
  align-items: end;
  margin-bottom: 2.4rem;
}

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

.testimonial-grid {
  column-count: 2;
  column-gap: 0.95rem;
}

.insight-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  min-height: 17rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.card-index {
  display: inline-block;
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.14);
}

.insight-card h3,
.method-step h3,
.method-panel h3,
.engagement-panel h3 {
  margin: 2.8rem 0 0.6rem;
  font-family: var(--heading);
  font-size: 1.35rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.insight-card p {
  max-width: 18rem;
  color: var(--text-muted);
}

.method-heading {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.method-list {
  display: grid;
  gap: 1rem;
}

.method-step {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.3rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.method-step span {
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.method-step h3 {
  margin-top: 0.12rem;
}

.method-step p,
.engagement-list li,
.panel-note {
  margin: 0;
}

.method-panel,
.engagement-panel {
  padding: 1.7rem;
  border-radius: 8px;
  min-height: 100%;
}

.method-panel h3,
.engagement-panel h3 {
  margin-top: 1rem;
  font-size: 2rem;
}

.panel-bars {
  display: flex;
  gap: 0.55rem;
  margin: 2rem 0 1.5rem;
}

.panel-bars span,
.schedule-grid span {
  display: block;
  background: rgba(255, 255, 255, 0.07);
}

.panel-bars span {
  width: 100%;
  height: 0.65rem;
  border-radius: 999px;
}

.panel-bars .is-active {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.engagement-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1fr);
  align-items: start;
}

.rate-block {
  margin: 1.5rem 0 1.8rem;
  padding: 1.4rem;
  border-radius: 8px;
}

.rate-value {
  margin: 0.8rem 0 0;
  font-family: var(--heading);
  font-size: 3.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.engagement-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.engagement-list li {
  position: relative;
  padding-left: 1.2rem;
}

.engagement-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.38rem;
  height: 0.38rem;
  background: var(--accent);
  border-radius: 999px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 2rem 0 1.4rem;
}

.schedule-grid span {
  aspect-ratio: 1;
  border-radius: 4px;
}

.schedule-grid .is-accent {
  background: rgba(215, 138, 104, 0.32);
  border: 1px solid rgba(215, 138, 104, 0.42);
}

.schedule-grid .is-filled {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.booking-steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
}

.booking-steps li::marker {
  color: var(--accent);
  font-weight: 700;
}

.contact-line {
  margin: 1rem 0 0;
  color: #cfc5ba;
  font-weight: 600;
}

.contact-line span {
  color: var(--accent);
}

.testimonial-photo {
  display: inline-block;
  width: 100%;
  margin: 0 0 0.95rem;
  overflow: hidden;
  break-inside: avoid;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.testimonial-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.closing {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.closing-inner {
  display: grid;
  justify-items: start;
  gap: 1rem;
  max-width: 50rem;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero h1 {
    font-size: 4.4rem;
  }

  .hero-grid,
  .method-grid,
  .engagement-grid,
  .split-layout,
  .story-layout,
  .section-intro,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 28rem;
    max-width: 36rem;
  }

  .section-heading,
  .story-aside {
    position: static;
  }

  .section-heading h2,
  .section-intro h2,
  .method-heading h2,
  .engagement-copy h2,
  .closing h2 {
    font-size: 3rem;
  }
}

@media (max-width: 800px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.6rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 0.78rem;
    font-size: 0.72rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1.25rem;
    right: 1.25rem;
    display: grid;
    gap: 0.3rem;
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(21, 21, 19, 0.94);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.9rem 0.7rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 0.78rem;
    font-size: 0.72rem;
    white-space: nowrap;
    letter-spacing: 0.08em;
  }

  .hero {
    padding-top: 1.8rem;
  }

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

  .hero-anchor {
    font-size: 6rem;
    right: 0.25rem;
    bottom: -0.5rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .hero-media,
  .feature-image {
    min-height: 22rem;
  }

  .testimonial-grid {
    column-count: 1;
  }

  .rate-value {
    font-size: 2.5rem;
  }

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

@media (max-width: 540px) {
  .container {
    width: min(calc(100% - 1.35rem), var(--container));
  }

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

  .section-heading h2,
  .section-intro h2,
  .method-heading h2,
  .engagement-copy h2,
  .closing h2 {
    font-size: 2.25rem;
  }

  .brand-mark {
    font-size: 0.78rem;
    letter-spacing: 0.01em;
  }
}
