*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #faf7f0; color: #1c1916; }
::selection { background: #c9a23f; color: #fff; }

/* ── Typography defaults ── */
body { font-family: 'Jost', sans-serif; }

/* ── Keyframes ── */
@keyframes af-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
@keyframes af-scrolldot {
  0%   { transform: translateY(0);    opacity: 0; }
  30%  {                              opacity: 1; }
  100% { transform: translateY(26px); opacity: 0; }
}
@keyframes af-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Links / reset ── */
a { text-decoration: none; }

/* ── Image placeholder ── */
.img-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #e8e0cf;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-slot svg {
  opacity: 0.28;
  width: 40px;
  height: 40px;
}
.img-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(250, 247, 240, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28, 25, 22, 0.08);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: #1c1916;
}
.nav-links {
  display: flex;
  gap: 34px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #6b645c;
  transition: color 0.2s;
}
.nav-links a:hover { color: #c9a23f; }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1c1916;
  border: 1px solid #c9a23f;
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: #c9a23f; color: #fff; }

/* ── Hero ── */
.hero {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 48px 96px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
}
.hero-ghost {
  position: absolute;
  left: 30px;
  bottom: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 200px;
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 63, 0.22);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow-line {
  width: 34px;
  height: 1px;
  background: #c9a23f;
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #a8842f;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 118px;
  line-height: 0.86;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1c1916;
}
.hero-byline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 34px;
  color: #c9a23f;
  margin-top: 16px;
}
.hero p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #54504a;
  max-width: 430px;
  margin: 30px 0 0;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.btn-dark {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #1c1916;
  padding: 16px 30px;
  transition: background 0.2s;
}
.btn-dark:hover { background: #c9a23f; }
.btn-outline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1c1916;
  padding: 16px 30px;
  border: 1px solid rgba(28, 25, 22, 0.25);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: #c9a23f; color: #c9a23f; }

.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-image-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  animation: af-float 7s ease-in-out infinite;
}
.hero-caption {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #faf7f0;
  padding: 16px 22px;
  border: 1px solid rgba(201, 162, 63, 0.4);
  max-width: 210px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: #1c1916;
  line-height: 1.3;
}
.scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a8842f;
  writing-mode: vertical-rl;
}
.scroll-track {
  width: 1px;
  height: 40px;
  background: rgba(28, 25, 22, 0.18);
  position: relative;
  overflow: hidden;
}
.scroll-track::after {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  height: 8px;
  background: #c9a23f;
  animation: af-scrolldot 1.8s ease-in-out infinite;
}

/* ── Formula strip ── */
.formula-strip {
  background: #1c1916;
  color: #faf7f0;
  padding: 30px 48px;
}
.formula-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
}
.formula-strip-arrow {
  color: #c9a23f;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
}
.formula-strip-last { color: #c9a23f; }

/* ── What is ── */
.what-is {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #a8842f;
  margin-bottom: 22px;
}
.what-is h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 54px;
  line-height: 1.04;
  margin: 0;
  color: #1c1916;
}
.what-is .lead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 27px;
  line-height: 1.5;
  color: #1c1916;
  margin: 0 0 32px;
}
.what-is p {
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.85;
  color: #54504a;
  margin: 0 0 22px;
}
.what-is p:last-child { margin-bottom: 0; }

/* ── Philosophy ── */
.philosophy {
  background: #1c1916;
  color: #faf7f0;
  padding: 120px 48px;
}
.philosophy-inner { max-width: 1320px; margin: 0 auto; }
.philosophy-header {
  text-align: center;
  margin-bottom: 80px;
}
.philosophy-header .section-label { color: #c9a23f; }
.philosophy-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 58px;
  line-height: 1.05;
  margin: 0;
}
.philosophy-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: #c9a23f;
  margin: 20px 0 0;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.motif-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}
.stage-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /*border: 1px solid rgba(201, 162, 63, 0.3);*/
}
.stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.stage-img.is-visible { opacity: 1; }

/* Principles list */
.principles-list { display: flex; flex-direction: column; }
.principle-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(250, 247, 240, 0.12);
}
.principle-num-col { position: relative; padding-left: 14px; }
.principle-bar {
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: #c9a23f;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: #5c554c;
  transition: color 0.5s ease;
}
.principle-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: #8a8276;
  transition: color 0.5s ease;
  line-height: 1;
  margin-bottom: 8px;
}
.principle-desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: #a59c8f;
  margin: 0;
}
.principles-border { border-top: 1px solid rgba(250, 247, 240, 0.12); }

.principle-item.is-active .principle-bar  { opacity: 1; }
.principle-item.is-active .principle-num  { color: #c9a23f; }
.principle-item.is-active .principle-name { color: #faf7f0; }

/* ── Six Steps ── */
.steps-section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 48px;
}
.steps-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 72px;
}
.steps-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 58px;
  line-height: 1.02;
  margin: 0;
  color: #1c1916;
}
.steps-header p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: #54504a;
  max-width: 360px;
  margin: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(28, 25, 22, 0.1);
  border: 1px solid rgba(28, 25, 22, 0.1);
}
.step-card {
  background: #faf7f0;
  padding: 42px 34px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.step-card:hover { background: #fdfcf9; }
.step-number-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 300;
  color: #c9a23f;
  line-height: 1;
}
.step-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a8842f;
}
.step-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 25px;
  margin: 0 0 14px;
  color: #1c1916;
  line-height: 1.1;
}
.step-card p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: #54504a;
  margin: 0;
}

/* ── Applications ── */
.applications {
  background: #f1ead9;
  padding: 120px 48px;
}
.applications-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.applications h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 52px;
  line-height: 1.06;
  margin: 0 0 22px;
  color: #1c1916;
}
.applications > .applications-inner > div:first-child p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: #54504a;
  margin: 0;
  max-width: 320px;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.app-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 8px;
  border-top: 1px solid rgba(28, 25, 22, 0.14);
}
.app-no {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: #c9a23f;
  min-width: 30px;
}
.app-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 25px;
  color: #1c1916;
  line-height: 1.2;
}

/* ── Gallery ── */
.gallery {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 48px;
}
.gallery-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.gallery-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 54px;
  line-height: 1.05;
  margin: 0 0 26px;
  color: #1c1916;
}
.gallery-lead {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #54504a;
  margin: 0 0 16px;
}
.gallery-body {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: #7d756a;
  margin: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8e0cf;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 22, 0);
  transition: background 0.3s ease;
}
.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #faf7f0;
  color: #faf7f0;
  font-size: 20px;
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { background: rgba(28, 25, 22, 0.38); }
.gallery-item:hover .gallery-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Lightbox2 theme overrides */
.lb-outerContainer,
.lb-dataContainer { background: #1c1916; }
.lb-data .lb-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #faf7f0;
}
.lb-data .lb-number {
  font-family: 'Jost', sans-serif;
  color: #c9a23f;
}
.lb-data .lb-close { filter: invert(1) brightness(1.6); }
.lb-nav a.lb-prev,
.lb-nav a.lb-next { filter: invert(1) brightness(1.6); }
#lightboxOverlay { background-color: #000; }

/* ── Training ── */
.training {
  background: #1c1916;
  color: #faf7f0;
  padding: 120px 48px;
}
.training-inner { max-width: 1320px; margin: 0 auto; }
.training-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.training h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 56px;
  line-height: 1.04;
  margin: 0;
}
.training .lead {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  margin: 0 0 28px;
}
.training .body {
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.85;
  color: #a59c8f;
  margin: 0;
}
.training-includes {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(250, 247, 240, 0.14);
}
.training-includes-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a59c8f;
  margin-bottom: 32px;
}
.training-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250, 247, 240, 0.12);
}
.training-item {
  padding: 28px 18px 28px 18px;
  border-right: 1px solid rgba(250, 247, 240, 0.1);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.training-item:last-child { border-right: none; }
.training-no {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #c9a23f;
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.training-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
}
/* ── Programs (Choose your program) ── */
.programs {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(250, 247, 240, 0.14);
}
.programs-header { margin-bottom: 40px; }
.programs-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
  color: #faf7f0;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(250, 247, 240, 0.12);
  border: 1px solid rgba(250, 247, 240, 0.12);
}
.program-card {
  position: relative;
  background: #1c1916;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s;
}
.program-card:hover { background: #221e1a; }
.program-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: #c9a23f;
  line-height: 1;
  margin-bottom: 18px;
}
.program-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  color: #faf7f0;
  margin-bottom: 8px;
}
.program-subtitle {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a8842f;
  margin-bottom: 20px;
}
.program-desc {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: #a59c8f;
  margin: 0 0 28px;
  flex-grow: 1;
}
.btn-program {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a23f;
  border: 1px solid #c9a23f;
  padding: 13px 26px;
  transition: background 0.2s, color 0.2s;
}
.btn-program:hover { background: #c9a23f; color: #1c1916; }
.program-card-wide { grid-column: span 2; }
.program-card-wide .program-desc { max-width: 560px; }
.program-card-signature {
  background: #241f19;
  grid-column: span 3;
  padding-top: 52px;
}
.program-card-signature:hover { background: #29231c; }
.program-card-signature .program-desc { max-width: 780px; }
.program-badge {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1c1916;
  background: #c9a23f;
  padding: 7px 14px;
}

.training-footer {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}
.btn-gold {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1c1916;
  background: #c9a23f;
  padding: 18px 38px;
  transition: background 0.2s;
}
.btn-gold:hover { background: #faf7f0; }
.training-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.5;
  color: #a59c8f;
  margin: 0;
  max-width: 420px;
}

/* ── About ── */
.about {
  max-width: 1320px;
  margin: 0 auto;
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-inner {
  aspect-ratio: 4 / 5;
  position: relative;
}
.about-badge {
  position: absolute;
  top: 24px;
  right: -24px;
  background: #c9a23f;
  color: #fff;
  padding: 16px 20px;
  text-align: center;
  z-index: 2;
}
.about-badge-star {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1;
}
.about-badge-text {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
  font-family: 'Jost', sans-serif;
  line-height: 1.4;
}
.about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 0.98;
  margin: 0;
  color: #1c1916;
}
.credentials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}
.credential {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #54504a;
  border: 1px solid rgba(201, 162, 63, 0.5);
  padding: 8px 14px;
  font-family: 'Jost', sans-serif;
}
.about p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: #54504a;
  margin: 0;
  max-width: 480px;
}
.btn-dark-large {
  display: inline-block;
  margin-top: 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: #1c1916;
  padding: 16px 32px;
  transition: background 0.2s;
}
.btn-dark-large:hover { background: #c9a23f; }

/* ── Footer ── */
.footer {
  background: #1c1916;
  color: #faf7f0;
  padding: 80px 48px 48px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.14);
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 42px;
  letter-spacing: 0.04em;
}
.footer-brand-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: #c9a23f;
  margin-top: 6px;
}
.footer-formula {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: #a59c8f;
  align-items: center;
}
.footer-formula .dot { color: #c9a23f; }
.footer-formula .last { color: #faf7f0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d756a;
}

/* ── Responsive: tablet (853–1100px) ── */
@media (max-width: 1100px) {
  .hero h1 { font-size: 80px; }
  .hero-ghost { font-size: 130px; }
  .hero { padding: 60px 32px 80px; gap: 36px; }
  .nav { padding: 18px 32px; }
  .what-is, .about { padding: 90px 32px; gap: 48px; }
  .philosophy { padding: 90px 32px; }
  .philosophy-grid { gap: 48px; }
  .steps-section { padding: 90px 32px; }
  .applications { padding: 90px 32px; }
  .applications-inner { gap: 48px; }
  .gallery { padding: 90px 32px; }
  .training { padding: 90px 32px; }
  .training-top { gap: 48px; }
  .about h2 { font-size: 52px; }
  .philosophy-header h2 { font-size: 46px; }
  .steps-header h2 { font-size: 46px; }
  .gallery-header h2 { font-size: 46px; }
  .training h2 { font-size: 44px; }
  .training-grid { grid-template-columns: repeat(3, 1fr); }
  .footer { padding: 70px 32px 40px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card-signature { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Responsive: mobile (<768px) ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 40px;
  }
  .hero h1 { font-size: 72px; }
  .hero-ghost { font-size: 100px; }
  .what-is,
  .philosophy-grid,
  .training-top,
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }
  .steps-grid { grid-template-columns: 1fr; }
  .training-grid { grid-template-columns: 1fr 1fr; }
  .applications-inner { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .formula-strip { padding: 24px; }
  .philosophy { padding: 80px 24px; }
  .training { padding: 80px 24px; }
  .applications { padding: 80px 24px; }
  .steps-section { padding: 80px 24px; }
  .gallery { padding: 80px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-header { margin-bottom: 40px; }
  .footer { padding: 60px 24px 40px; }
  .about-badge { right: 8px; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card-wide { grid-column: span 1; }
  .program-card-signature { grid-column: span 1; padding-top: 56px; }
  .program-badge { top: 20px; right: 20px; }
}
