:root {
  --header-height: 88px;
  --ink: #090808;
  --coffee: #241512;
  --chocolate: #4a2921;
  --rose: #c79a86;
  --champagne: #e5c8b8;
  --gold: #b99578;
  --ivory: #f8f3ef;
  --muted: #b9aaa3;
  --line: rgba(229, 200, 184, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 12.75px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

html {
  scrollbar-color: var(--rose) var(--ink);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, var(--ink), var(--coffee));
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink);
  background: linear-gradient(
    180deg,
    var(--champagne),
    var(--rose) 52%,
    var(--gold)
  );
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #f0d8ca,
    var(--champagne) 48%,
    var(--rose)
  );
}

::-webkit-scrollbar-corner {
  background: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input,
summary {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  color: var(--ink);
  background: var(--champagne);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--ivory);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.section-shell {
  width: var(--shell);
  margin-inline: auto;
}
.section-dark {
  position: relative;
  background: var(--ink);
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--rose);
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}
h2 em {
  color: var(--champagne);
  font-weight: 400;
}
.section-copy {
  max-width: 700px;
  margin: 38px 0 0 auto;
  color: #c8bbb5;
  font-size: 0.81rem;
  line-height: 1.95;
}
.fine-rule {
  width: 72px;
  height: 1px;
  margin: 26px 0;
  background: linear-gradient(90deg, var(--rose), transparent);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    background 0.25s ease;
}
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.button:hover {
  transform: translateY(-2px);
}
.button:focus-visible,
.main-nav a:focus-visible,
summary:focus-visible,
.floating-whatsapp:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 4px;
}
.button-primary {
  color: #1e1210;
  background: linear-gradient(115deg, #ad7c69, var(--champagne) 48%, #b8806d);
  box-shadow: 0 12px 40px rgba(199, 154, 134, 0.18);
}
.button-primary:hover {
  box-shadow: 0 16px 50px rgba(199, 154, 134, 0.34);
}
.button-dark {
  color: var(--ivory);
  border-color: rgba(36, 21, 18, 0.35);
  background: var(--coffee);
}
.button-whatsapp {
  color: #16281d;
  background: #c9e3d2;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition:
    height 0.35s ease,
    border-color 0.35s ease;
}
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  border-bottom: 1px solid transparent;
  background: rgba(9, 8, 8, 0);
  pointer-events: none;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    backdrop-filter 0.35s ease;
}
.site-header.scrolled {
  height: 72px;
}
.site-header.scrolled::before {
  border-color: rgba(229, 200, 184, 0.12);
  background: rgba(9, 8, 8, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  display: block;
  width: 116px;
  height: 58px;
  overflow: hidden;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}
.main-nav a {
  position: relative;
  color: rgba(248, 243, 239, 0.78);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.main-nav a:hover {
  color: var(--ivory);
}
.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.main-nav .nav-cta {
  padding: 12px 17px;
  color: var(--ink);
  background: var(--champagne);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 8px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px auto;
  background: var(--ivory);
  transition: transform 0.25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 78% 46%,
      rgba(138, 73, 57, 0.36),
      transparent 22%
    ),
    linear-gradient(108deg, #090808 0%, #110c0a 48%, #2d1813 100%);
}
.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image: repeating-linear-gradient(
    112deg,
    transparent 0 27px,
    rgba(255, 255, 255, 0.018) 28px 29px
  );
  mix-blend-mode: overlay;
}
.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(9, 8, 8, 0.97) 0%,
      rgba(9, 8, 8, 0.8) 43%,
      rgba(9, 8, 8, 0.13) 77%,
      rgba(9, 8, 8, 0.45) 100%
    ),
    linear-gradient(0deg, var(--ink), transparent 24%);
}
.hero-portrait {
  display: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 0 78px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(58px, 7vw, 108px);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}
.instructor-kicker {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 13px;
  color: #d8c9c1;
  font-size: 0.89rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.instructor-kicker small {
  padding-left: 13px;
  border-left: 1px solid var(--rose);
  color: var(--rose);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
}
.hero-title {
  margin-bottom: 25px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.76;
  text-transform: uppercase;
}
.hero-title span {
  display: block;
}
.hero-title-small {
  margin-bottom: 9px;
  color: var(--ivory);
  font-size: clamp(3.8rem, 7.5vw, 7.8rem);
  letter-spacing: -0.06em;
}
.hero-title .metal-text {
  color: transparent;
  background: linear-gradient(
    108deg,
    #8e5f50 2%,
    #f1d8c9 37%,
    #aa7968 61%,
    #efd2c0 86%
  );
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(3.5rem, 7.1vw, 7.3rem);
  font-style: italic;
  letter-spacing: -0.055em;
  filter: drop-shadow(0 6px 30px rgba(199, 154, 134, 0.15));
}
.hero-lead {
  max-width: 610px;
  margin-bottom: 12px;
  color: #cfbfba;
  font-size: clamp(0.65rem, 0.96vw, 0.77rem);
  letter-spacing: 0.04em;
}
.hero-tech {
  margin-bottom: 29px;
  color: var(--champagne);
  font-size: clamp(0.65rem, 0.81vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-actions p {
  margin: 0;
  color: #91847e;
  font-size: 0.65rem;
  line-height: 1.7;
}
.hero-actions strong {
  color: var(--ivory);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.hero-mark {
  position: relative;
  width: min(31vw, 410px);
  justify-self: end;
  opacity: 0.86;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.48));
}
.hero-mark::before {
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 8%;
  width: 84%;
  aspect-ratio: 1;
  border: 1px solid rgba(229, 200, 184, 0.18);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 90px rgba(199, 154, 134, 0.08),
    inset 0 0 80px rgba(199, 154, 134, 0.06);
}
.hero-mark img {
  position: relative;
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
}
.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(229, 200, 184, 0.2);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit-a {
  top: -22vw;
  right: -24vw;
  width: 75vw;
  height: 75vw;
  transform: rotate(22deg);
}
.hero-orbit-b {
  right: -2vw;
  bottom: -48vw;
  width: 75vw;
  height: 75vw;
  border-color: rgba(199, 154, 134, 0.11);
}
.hero-glow {
  position: absolute;
  z-index: 0;
  top: 25%;
  right: 13%;
  width: 26vw;
  height: 26vw;
  border-radius: 50%;
  background: rgba(151, 85, 67, 0.17);
  filter: blur(70px);
}
.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 25px;
  left: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94847e;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--rose);
  stroke-width: 1.5;
}

.purpose {
  padding: 150px 0 130px;
  background: linear-gradient(140deg, #090808, #130c0a 65%, #1d100d);
}
.section-intro {
  max-width: 970px;
}
.pillars {
  display: grid;
  margin-top: 90px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}
.pillar {
  min-height: 270px;
  padding: 32px 30px 25px 0;
  border-right: 1px solid var(--line);
}
.pillar:not(:first-child) {
  padding-left: 30px;
}
.pillar:last-child {
  border-right: 0;
}
.pillar > span {
  display: block;
  margin-bottom: 42px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1rem;
}
.pillar h3 {
  margin-bottom: 18px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
}
.pillar p {
  margin: 0;
  color: #948781;
  font-size: 0.65rem;
  line-height: 1.9;
}

.learning {
  padding: 140px 0;
  color: var(--ink);
  background: var(--ivory);
}
.learning .eyebrow {
  color: var(--chocolate);
}
.learning h2 em {
  color: var(--chocolate);
}
.learning-grid {
  display: grid;
  margin-top: 90px;
  border-top: 1px solid rgba(36, 21, 18, 0.25);
  grid-template-columns: repeat(3, 1fr);
}
.learning-topic {
  min-height: 360px;
  padding: 34px 32px 30px 0;
  border-right: 1px solid rgba(36, 21, 18, 0.2);
}
.learning-topic:nth-child(2),
.learning-topic:nth-child(3) {
  padding-left: 32px;
}
.topic-number {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1rem;
}
.learning-topic h3,
.tech-highlight h3 {
  margin: 45px 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.26rem, 2.1vw, 1.96rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.learning-topic ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.learning-topic li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(36, 21, 18, 0.11);
  color: #564a46;
  font-size: 0.65rem;
}
.tech-highlight {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  padding: 38px 0;
  border-top: 1px solid rgba(36, 21, 18, 0.2);
}
.tech-highlight h3 {
  margin-bottom: 0;
}
.tech-words {
  display: grid;
  width: 66%;
  grid-template-columns: repeat(2, 1fr);
}
.tech-words strong {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(36, 21, 18, 0.12);
  color: var(--chocolate);
  font-family: var(--serif);
  font-size: clamp(0.84rem, 1.4vw, 1.26rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.techniques {
  overflow: hidden;
  padding: 145px 0 120px;
  background:
    radial-gradient(circle at 10% 70%, rgba(74, 41, 33, 0.45), transparent 24%),
    var(--ink);
}
.technique-heading {
  max-width: 860px;
}
.technique-line {
  height: 145px;
  margin: 40px 0 -35px;
  opacity: 0.6;
}
.technique-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.technique-line path {
  fill: none;
  stroke: url(#none);
  stroke: var(--rose);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  transition: stroke-dashoffset 2.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.technique-line.is-visible path {
  stroke-dashoffset: 0;
}
.technique-list {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}
.technique-item {
  min-height: 280px;
  padding: 32px 30px 35px 0;
  border-right: 1px solid var(--line);
}
.technique-item:not(:first-child) {
  padding-left: 30px;
}
.technique-item:last-child {
  border-right: 0;
}
.technique-item > span {
  color: var(--rose);
  font-family: var(--serif);
}
.technique-item h3 {
  margin: 52px 0 15px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 2.17rem);
  font-weight: 400;
  text-transform: uppercase;
}
.technique-item p {
  max-width: 260px;
  color: #91847e;
  font-size: 0.65rem;
}
.technique-quote {
  max-width: 820px;
  margin: 70px auto 0;
  padding: 0;
  border: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.15vw, 3.22rem);
  line-height: 1;
  text-align: center;
}
.technique-quote em {
  color: var(--rose);
  font-weight: 400;
}

.benefits {
  padding: 135px 0;
  color: var(--coffee);
  background: linear-gradient(135deg, var(--champagne), #f2e3d9 53%, #d9b8a5);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
}
.benefits .eyebrow {
  color: var(--chocolate);
}
.benefits h2 em {
  color: var(--chocolate);
}
.benefits-content {
  padding-top: 18px;
}
.check-list {
  padding: 0;
  margin: 0 0 42px;
  list-style: none;
  columns: 2;
  column-gap: 40px;
}
.check-list li {
  position: relative;
  break-inside: avoid;
  padding: 0 0 20px 27px;
  color: #4b3832;
  font-size: 0.65rem;
}
.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  border: 1px solid var(--chocolate);
  border-radius: 50%;
  background: radial-gradient(circle, var(--chocolate) 0 2px, transparent 3px);
}

.instructor {
  overflow: hidden;
  padding: 150px 0;
  background: linear-gradient(105deg, #0b0908, #1e110e);
}
.instructor-grid {
  display: grid;
  min-height: 630px;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 9%;
}
.instructor-monogram {
  position: absolute;
  right: -2vw;
  bottom: -11vw;
  color: rgba(199, 154, 134, 0.055);
  font-family: var(--serif);
  font-size: clamp(15rem, 36vw, 40rem);
  line-height: 0.7;
  pointer-events: none;
}
.instructor-visual {
  position: relative;
  height: 630px;
  border: 1px solid rgba(229, 200, 184, 0.24);
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(199, 154, 134, 0.2),
      transparent 30%
    ),
    linear-gradient(145deg, #3d211b, #100a09 70%);
}
.instructor-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.88) contrast(1.04);
}
.instructor-visual::before {
  position: absolute;
  z-index: 1;
  inset: 6%;
  content: "";
  border: 1px solid rgba(229, 200, 184, 0.1);
  pointer-events: none;
}
.instructor-visual::after {
  position: absolute;
  z-index: 1;
  right: -35px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  content: "";
  border-right: 1px solid var(--rose);
  border-bottom: 1px solid var(--rose);
  pointer-events: none;
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(155deg, transparent 40%, rgba(9, 8, 8, 0.8));
}
.photo-placeholder::before {
  width: 150px;
  height: 250px;
  margin-bottom: 30px;
  border: 1px solid rgba(229, 200, 184, 0.18);
  border-radius: 50% 50% 30% 30% / 35% 35% 20% 20%;
  content: "";
  background: linear-gradient(
    135deg,
    rgba(229, 200, 184, 0.12),
    rgba(9, 8, 8, 0.1)
  );
  filter: blur(0.2px);
}
.photo-placeholder span {
  color: var(--rose);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.photo-placeholder strong {
  color: rgba(248, 243, 239, 0.72);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}
.instructor-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}
.instructor-copy h2 {
  color: var(--champagne);
}
.instructor-copy .role {
  margin: 18px 0 0;
  color: var(--rose);
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.instructor-bio {
  color: #b5a6a0;
  font-size: 0.875rem;
  line-height: 1.85;
}
.instructor-bio p {
  margin: 0;
}
.instructor-bio p + p {
  margin-top: 1.25em;
}
.instructor-bio .instructor-bio-intro {
  color: var(--champagne);
  font-weight: 500;
}

.audience {
  padding: 140px 0;
  color: var(--ink);
  background: var(--ivory);
}
.audience .eyebrow {
  color: var(--chocolate);
}
.audience h2 em {
  color: var(--chocolate);
}
.audience-list {
  margin-top: 80px;
  border-top: 1px solid rgba(36, 21, 18, 0.25);
}
.audience-item {
  display: grid;
  min-height: 130px;
  align-items: center;
  border-bottom: 1px solid rgba(36, 21, 18, 0.18);
  grid-template-columns: 90px 1fr;
}
.audience-item > span {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1rem;
}
.audience-item p {
  display: grid;
  margin: 0;
  color: #62534e;
  font-size: 0.69rem;
  grid-template-columns: minmax(270px, 1fr) 1fr;
  align-items: center;
}
.audience-item strong {
  color: var(--coffee);
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.75vw, 1.64rem);
  font-weight: 500;
  text-transform: uppercase;
}

.experience {
  padding: 150px 0 125px;
  background: #0d0a09;
}
.experience-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.editorial-gallery {
  position: relative;
  display: grid;
  height: 640px;
  margin-top: -100px;
  grid-template-columns: 1.15fr 0.8fr 1fr;
  align-items: end;
  gap: 22px;
}
.editorial-gallery--single {
  grid-template-columns: minmax(0, 720px);
  justify-content: end;
}
.editorial-gallery--single .gallery-frame-one {
  width: 100%;
  height: 560px;
}
.gallery-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 200, 184, 0.18);
  background:
    radial-gradient(
      circle at 60% 20%,
      rgba(199, 154, 134, 0.25),
      transparent 28%
    ),
    linear-gradient(145deg, #4a2921, #120b0a 75%);
}
.gallery-frame--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-frame--photo::before {
  z-index: 1;
  opacity: 0.18;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 10, 9, 0.72));
}
.gallery-frame--photo::after {
  display: none;
}
.gallery-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.35;
  background: repeating-linear-gradient(
    125deg,
    transparent 0 22px,
    rgba(229, 200, 184, 0.04) 23px 24px
  );
}
.gallery-frame::after {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 45%;
  height: 60%;
  content: "";
  border: 1px solid rgba(229, 200, 184, 0.17);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-20deg);
  box-shadow: 0 0 60px rgba(199, 154, 134, 0.12);
}
.gallery-frame span {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 17px;
  color: rgba(248, 243, 239, 0.54);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.gallery-frame-one {
  height: 450px;
  margin-bottom: 0;
}
.gallery-frame-two {
  height: 360px;
  margin-bottom: 120px;
}
.gallery-frame-three {
  height: 520px;
  margin-bottom: 35px;
}
.experience-copy {
  max-width: 510px;
  margin: 40px 0 0 auto;
  color: #857974;
  font-size: 0.65rem;
  line-height: 1.8;
  text-align: right;
}

.location {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background:
    radial-gradient(circle at 10% 90%, #5d3126 0%, transparent 28%),
    linear-gradient(120deg, #110b09, #331b16 70%, #150c0a);
}
.location::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image: linear-gradient(
    165deg,
    transparent 48%,
    rgba(229, 200, 184, 0.14) 49%,
    transparent 50%
  );
  background-size: 100% 30px;
}
.location-wave {
  position: absolute;
  top: -30%;
  right: -11%;
  width: 58vw;
  height: 150%;
  border: 1px solid rgba(229, 200, 184, 0.12);
  border-radius: 50%;
  transform: rotate(21deg);
  box-shadow: inset 0 0 80px rgba(199, 154, 134, 0.06);
}
.location-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 9%;
}
.location-panel {
  padding: 48px;
  border: 1px solid rgba(229, 200, 184, 0.26);
  background: rgba(9, 8, 8, 0.64);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}
.location-panel dl {
  margin: 0 0 35px;
}
.location-panel dl > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 90px 1fr;
}
.location-panel dt {
  color: var(--rose);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.location-panel dd {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.location-map {
  overflow: hidden;
  margin: 30px 0;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--coffee);
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
[data-editable] {
  color: inherit;
}

.tickets {
  padding: 135px 0;
}
.tickets-heading {
  text-align: center;
}
.ticket {
  position: relative;
  display: grid;
  max-width: 1040px;
  min-height: 280px;
  margin: 75px auto 0;
  align-items: center;
  border: 1px solid rgba(229, 200, 184, 0.35);
  background:
    radial-gradient(
      circle at 45% 0,
      rgba(199, 154, 134, 0.15),
      transparent 35%
    ),
    #130d0b;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
}
.ticket::before,
.ticket::after {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 68px;
  content: "";
  border: 1px solid rgba(229, 200, 184, 0.35);
  background: var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket::before {
  left: -18px;
  border-left-color: transparent;
}
.ticket::after {
  right: -18px;
  border-right-color: transparent;
}
.ticket > div {
  display: flex;
  min-height: 170px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  text-align: center;
}
.ticket > div:not(:last-child) {
  border-right: 1px dashed rgba(229, 200, 184, 0.22);
}
.ticket-brand span,
.ticket-brand small {
  color: var(--rose);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ticket-brand strong {
  margin: 8px 0;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}
.ticket-details p {
  margin: 6px 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 0.88rem;
}
.ticket-details small {
  color: var(--rose);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ticket-details strong {
  margin-top: 7px;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.ticket-action small {
  margin-top: 16px;
  color: #8e807b;
  font-size: 0.71rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-cta {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  text-align: center;
  background: #070706;
}
.whatsapp-cta .section-shell {
  position: relative;
  z-index: 2;
}
.whatsapp-cta h2 {
  font-size: clamp(3.3rem, 6.5vw, 6.5rem);
}
.whatsapp-cta p:not(.eyebrow) {
  margin: 20px 0 35px;
  color: #9c8d87;
}
.button-whatsapp svg {
  width: 22px;
  height: 22px;
}
.whatsapp-number {
  display: block;
  margin-top: 18px;
  color: var(--champagne);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.whatsapp-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55vw;
  height: 25vw;
  border-radius: 50%;
  background: rgba(139, 78, 60, 0.18);
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.faq {
  padding: 140px 0;
  color: var(--ink);
  background: var(--ivory);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 9%;
}
.faq .eyebrow {
  color: var(--chocolate);
}
.faq h2 em {
  color: var(--chocolate);
}
.faq-list {
  border-top: 1px solid rgba(36, 21, 18, 0.3);
}
details {
  border-bottom: 1px solid rgba(36, 21, 18, 0.2);
}
summary {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--coffee);
  font-family: var(--serif);
  font-size: clamp(0.81rem, 1.12vw, 1.02rem);
  font-weight: 500;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  content: "";
  background: var(--chocolate);
  transition: transform 0.25s ease;
}
.faq-icon::after {
  transform: rotate(90deg);
}
details[open] .faq-icon::after {
  transform: rotate(0);
}
details p {
  max-width: 630px;
  padding: 0 45px 28px 0;
  margin: 0;
  color: #70625d;
  font-size: 0.65rem;
  line-height: 1.85;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 155px 0;
  text-align: center;
  background: radial-gradient(circle at 50% 50%, #321b16, #090808 58%);
}
.final-cta .section-shell {
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 7rem);
  line-height: 0.78;
}
.final-cta > div p:not(.eyebrow) {
  margin: 35px 0 28px;
  color: #a89993;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.final-cta .section-shell > span {
  display: block;
  margin-top: 24px;
  color: var(--rose);
  font-size: 0.71rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.final-curve {
  position: absolute;
  border: 1px solid rgba(229, 200, 184, 0.19);
  border-radius: 50%;
  pointer-events: none;
}
.final-curve-one {
  top: -100%;
  left: -20%;
  width: 140%;
  height: 180%;
  transform: rotate(-12deg);
}
.final-curve-two {
  right: -25%;
  bottom: -160%;
  width: 90%;
  height: 190%;
  border-width: 2px;
  box-shadow: 0 0 100px rgba(199, 154, 134, 0.08);
  transform: rotate(28deg);
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: #070706;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-brand img {
  width: 135px;
  height: 72px;
  object-fit: contain;
}
.footer-brand p {
  margin: 20px 0 0;
  color: #796f6b;
  font-size: 0.65rem;
  line-height: 1.9;
}
.footer-links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 35px;
}
.footer-links a {
  color: #a99a94;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links a:hover {
  color: var(--champagne);
}
.copyright {
  margin: 55px 0 0;
  color: #5e5753;
  font-size: 0.66rem;
  grid-column: 1 / -1;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 22px;
  display: flex;
  height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: #112117;
  background: #c9e3d2;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.32);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.floating-whatsapp:hover {
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
  transform: translateY(-3px);
}
.floating-whatsapp svg {
  width: 23px;
  height: 23px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-animate {
  opacity: 0;
  animation: heroIn 0.85s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}
.hero-animate:nth-child(1) {
  animation-delay: 0.15s;
}
.hero-animate:nth-child(2) {
  animation-delay: 0.28s;
}
.hero-animate:nth-child(3) {
  animation-delay: 0.38s;
}
.hero-animate:nth-child(4) {
  animation-delay: 0.5s;
}
.hero-animate:nth-child(5) {
  animation-delay: 0.58s;
}
.hero-animate:nth-child(6) {
  animation-delay: 0.68s;
}
.hero-mark.hero-animate {
  animation-delay: 0.35s;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  :root {
    --header-height: 74px;
  }
  .brand {
    width: 100px;
    height: 52px;
  }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }
  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 100px 28px 40px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: rgba(9, 8, 8, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }
  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .main-nav a {
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    text-transform: none;
  }
  .main-nav .nav-cta {
    margin-top: 15px;
    font-family: var(--sans);
    font-size: 0.81rem;
    text-transform: uppercase;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
    gap: clamp(32px, 5vw, 58px);
  }
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillar:nth-child(2) {
    border-right: 0;
  }
  .pillar:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .benefits-grid,
  .faq-grid {
    gap: 6%;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 36px, 640px);
  }
  html {
    scroll-padding-top: 72px;
  }
  h2 {
    font-size: clamp(2.75rem, 13vw, 4.7rem);
    line-height: 0.9;
  }
  .learning h2 {
    font-size: clamp(2rem, 10.5vw, 3.4rem);
  }
  .location h2 {
    font-size: clamp(2.2rem, 10.4vw, 3.76rem);
  }
  .eyebrow {
    margin-bottom: 16px;
    font-size: 0.71rem;
  }
  .button {
    width: 100%;
    max-width: 370px;
    min-height: 56px;
    padding-inline: 18px;
  }
  .hero {
    --hero-portrait-height: clamp(250px, 76vw, 360px);
    min-height: 100svh;
    background: linear-gradient(145deg, #090808 0%, #120c0a 58%, #24130f 100%);
  }
  .hero::after {
    background:
      linear-gradient(0deg, var(--ink), transparent 36%),
      linear-gradient(90deg, rgba(9, 8, 8, 0.96), rgba(9, 8, 8, 0.68));
  }
  .hero-portrait {
    position: absolute;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: var(--hero-portrait-height);
    border-top: 1px solid var(--champagne);
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 58%,
      rgba(0, 0, 0, 0.85) 68.5%,
      rgba(0, 0, 0, 0.5) 79%,
      rgba(0, 0, 0, 0.15) 89.5%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 58%,
      rgba(0, 0, 0, 0.85) 68.5%,
      rgba(0, 0, 0, 0.5) 79%,
      rgba(0, 0, 0, 0.15) 89.5%,
      transparent 100%
    );
  }
  .hero-portrait img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
  }
  .hero-inner {
    min-height: 100svh;
    padding: calc(var(--header-height) + var(--hero-portrait-height) - 4px) 0 34px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
  }
  .hero-copy {
    align-self: center;
  }
  .hero .eyebrow {
    margin-bottom: 10px;
  }
  .instructor-kicker {
    margin-bottom: 18px;
    font-size: 0.76rem;
    gap: 10px;
  }
  .instructor-kicker small {
    padding-left: 10px;
    font-size: 0.6rem;
  }
  .hero-title {
    margin-bottom: 18px;
  }
  .hero-title-small {
    margin-bottom: 6px;
    font-size: clamp(2.75rem, 14vw, 4.35rem);
  }
  .hero-title .metal-text {
    font-size: clamp(2.6rem, 13.2vw, 4.1rem);
    line-height: 0.82;
  }
  .hero-lead {
    max-width: 100%;
    margin-bottom: 9px;
    font-size: 0.65rem;
    line-height: 1.6;
  }
  .hero-tech {
    margin-bottom: 22px;
    font-size: 0.58rem;
    line-height: 1.5;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .hero-actions p {
    padding-left: 2px;
  }
  .hero-actions p {
    font-size: 0.65rem;
    line-height: 1.55;
  }
  .hero-actions strong {
    font-size: 0.65rem;
  }
  .hero-mark {
    display: none;
  }
  .hero-orbit-a {
    top: -32vw;
    right: -72vw;
    width: 142vw;
    height: 142vw;
    opacity: 0.5;
  }
  .hero-orbit-b {
    display: none;
  }
  .hero-glow {
    top: 18%;
    right: -20%;
    width: 65vw;
    height: 65vw;
    opacity: 0.55;
  }
  .scroll-cue {
    display: none;
  }
  .purpose,
  .learning,
  .techniques,
  .benefits,
  .instructor,
  .audience,
  .experience,
  .location,
  .tickets,
  .faq,
  .final-cta {
    padding: 95px 0;
  }
  .section-copy {
    margin-top: 28px;
    font-size: 0.68rem;
    line-height: 1.85;
  }
  .pillars {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }
  .pillar,
  .pillar:not(:first-child) {
    min-height: auto;
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pillar > span {
    margin-bottom: 20px;
  }
  .pillar h3 {
    margin-bottom: 10px;
  }
  .learning-grid {
    margin-top: 55px;
    grid-template-columns: 1fr;
  }
  .learning-topic,
  .learning-topic:nth-child(2),
  .learning-topic:nth-child(3) {
    min-height: auto;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 21, 18, 0.2);
  }
  .learning-topic h3 {
    margin-top: 28px;
  }
  .tech-highlight {
    align-items: flex-start;
    flex-direction: column;
  }
  .tech-words {
    width: 100%;
    margin-top: 25px;
    grid-template-columns: 1fr;
  }
  .tech-words strong {
    padding-inline: 0;
  }
  .technique-line {
    height: 80px;
    margin-top: 30px;
  }
  .technique-list {
    grid-template-columns: 1fr;
  }
  .technique-item,
  .technique-item:not(:first-child) {
    min-height: auto;
    padding: 24px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .technique-item h3 {
    margin: 24px 0 10px;
  }
  .technique-quote {
    margin-top: 55px;
    text-align: left;
  }
  .benefits-grid,
  .instructor-grid,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .check-list {
    columns: 1;
  }
  .instructor-grid {
    min-height: 0;
  }
  .instructor-visual {
    height: 510px;
  }
  .instructor-visual::after {
    right: -8px;
    bottom: -18px;
  }
  .instructor-copy {
    order: -1;
  }
  .audience-list {
    margin-top: 55px;
  }
  .audience-item {
    padding: 24px 0;
    grid-template-columns: 42px 1fr;
  }
  .audience-item p {
    gap: 8px;
    grid-template-columns: 1fr;
  }
  .audience-item strong {
    font-size: 1.1rem;
    line-height: 1;
  }
  .editorial-gallery {
    height: 500px;
    margin-top: 40px;
    gap: 9px;
  }
  .editorial-gallery--single {
    grid-template-columns: 1fr;
  }
  .editorial-gallery--single .gallery-frame-one {
    height: 500px;
  }
  .gallery-frame-one {
    height: 330px;
  }
  .gallery-frame-two {
    height: 280px;
    margin-bottom: 110px;
  }
  .gallery-frame-three {
    height: 390px;
    margin-bottom: 30px;
  }
  .gallery-frame span {
    right: 10px;
    bottom: 10px;
    font-size: 0.55rem;
  }
  .experience-copy {
    text-align: left;
  }
  .location-wave {
    width: 130vw;
  }
  .location-panel {
    padding: 28px 22px;
  }
  .location-panel dl > div {
    grid-template-columns: 74px 1fr;
  }
  .location-panel dd {
    font-size: 0.77rem;
  }
  .ticket {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .ticket > div {
    min-height: auto;
    padding: 34px 24px;
  }
  .ticket > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px dashed rgba(229, 200, 184, 0.22);
  }
  .ticket::before,
  .ticket::after {
    top: 66%;
  }
  .faq-list {
    margin-top: 5px;
  }
  summary {
    min-height: 72px;
    font-size: 0.92rem;
    line-height: 1.15;
  }
  .final-cta h2 {
    font-size: clamp(2rem, 14vw, 6rem);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    margin-top: 35px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .copyright {
    margin-top: 45px;
  }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .floating-whatsapp span {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }
}

@media (max-width: 390px) {
  :root {
    --shell: calc(100% - 28px);
  }
  .hero-title-small {
    font-size: 2.65rem;
  }
  .hero-title .metal-text {
    font-size: 2.5rem;
  }
  .editorial-gallery {
    height: 430px;
  }
  .editorial-gallery--single .gallery-frame-one {
    height: 430px;
  }
  .gallery-frame-one {
    height: 300px;
  }
  .gallery-frame-two {
    height: 245px;
  }
  .gallery-frame-three {
    height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .hero-animate {
    opacity: 1;
    transform: none;
  }
  .technique-line path {
    stroke-dashoffset: 0;
  }
}
