:root {
  --night: #160d1e;
  --night-2: #24142f;
  --cream: #f8f3e9;
  --paper: #fffdf8;
  --sage: #78966f;
  --sage-dark: #5f7d5b;
  --gold: #c9a960;
  --ink: #15101a;
  --muted: #6f6873;
  --line: rgba(36, 20, 47, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 45px rgba(31, 20, 39, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.45;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 72px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 max(56px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: rgba(19, 10, 27, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1;
}

.brand-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 0.7;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 0.88rem;
  font-weight: 750;
}

.main-nav a {
  opacity: 0.92;
}

.main-nav a:hover {
  color: var(--gold);
}

.header-actions,
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button.small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.84rem;
}

.button.primary {
  color: #fff;
  background: var(--sage-dark);
  box-shadow: 0 12px 24px rgba(72, 103, 69, 0.24);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.35);
}

.full {
  width: 100%;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 610px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 8, 22, 0.98) 0%, rgba(17, 9, 24, 0.78) 43%, rgba(17, 9, 24, 0.22) 70%, rgba(17, 9, 24, 0.68) 100%),
    url("../images/hero-altar.png") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  align-items: center;
  width: min(1160px, calc(100% - 72px));
  min-height: 610px;
  margin: 0 auto;
  padding-top: 78px;
}

.hero-copy {
  max-width: 480px;
}

.hero h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.26rem;
  line-height: 1.42;
}

.hero-actions {
  margin-top: 34px;
}

.sigil {
  justify-self: end;
  display: grid;
  place-items: center;
  width: min(360px, 38vw);
  aspect-ratio: 1;
  margin-right: 34px;
  border: 1px solid rgba(201, 169, 96, 0.52);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle, rgba(20, 10, 28, 0.72) 0 20%, transparent 20.5%),
    repeating-radial-gradient(circle, transparent 0 56px, rgba(201, 169, 96, 0.36) 57px, transparent 58px);
  box-shadow: 0 0 90px rgba(0, 0, 0, 0.34);
}

.sigil span {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(201, 169, 96, 0.42);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 4rem;
}

.training-section {
  padding: 56px 0 24px;
  background: var(--paper);
}

.training-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 68px;
  align-items: start;
}

.section-label {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.45vw, 3.65rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.training-copy h3 {
  margin: 4px 0 18px;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
}

.training-copy > p:not(.section-label),
.credits-panel > p:not(.section-label),
.social-layout > div > p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 64px;
  text-align: center;
}

.benefits span,
.process-card span,
.trust-row span,
.steps span {
  display: block;
  color: var(--sage-dark);
  font-size: 2.4rem;
  line-height: 1;
}

.benefits strong,
.process-card strong,
.trust-row strong,
.steps strong {
  display: block;
  margin: 12px 0 6px;
  font-size: 0.9rem;
}

small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.booking-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.toggle {
  min-height: 58px;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  font-weight: 800;
}

.toggle.active {
  color: var(--sage-dark);
  border-bottom-color: var(--sage-dark);
}

.booking-main {
  display: grid;
  grid-template-columns: 144px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 24px 16px;
}

.training-thumb,
.how-image,
.post.photo {
  background:
    linear-gradient(rgba(20, 10, 28, 0.08), rgba(20, 10, 28, 0.08)),
    url("../images/hero-altar.png") center / cover no-repeat;
}

.training-thumb {
  width: 144px;
  height: 112px;
  border-radius: 6px;
}

.booking-main select {
  width: 100%;
  margin-bottom: 8px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 1.18rem;
  font-weight: 850;
}

.booking-main p {
  margin: 4px 0;
  color: #332b38;
}

.booking-main strong {
  align-self: center;
  font-size: 1.08rem;
}

label {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 24px 14px;
  color: #2d2632;
  font-size: 0.84rem;
  font-weight: 800;
}

input {
  min-height: 44px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(36, 20, 47, 0.2);
  border-radius: 6px;
  background: #fff;
}

.booking-card > .button {
  width: calc(100% - 48px);
  margin: 0 24px 22px;
}

.form-note {
  min-height: 20px;
  margin: -10px 24px 18px;
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.process-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 20px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-card article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 13px;
  align-items: center;
}

.process-card article small {
  grid-column: 2;
}

.process-card span {
  grid-row: span 2;
  font-size: 2rem;
}

.process-card i {
  color: var(--muted);
  font-style: normal;
  font-size: 1.4rem;
}

.medium-section {
  padding: 54px 0 44px;
  color: #fff;
  background:
    radial-gradient(circle at 68% 20%, rgba(121, 81, 132, 0.26), transparent 28%),
    linear-gradient(135deg, #1b0f25, #2b1539 55%, #170c21);
}

.medium-layout {
  display: grid;
  grid-template-columns: 365px 1fr;
  gap: 42px;
}

.medium-section .section-label {
  color: rgba(201, 169, 96, 0.78);
}

.medium-section h2 {
  margin-bottom: 16px;
  font-size: 3.2rem;
}

.credits-panel > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
}

.credit-card,
.medium-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.credit-card {
  margin-top: 36px;
  padding: 25px;
}

.credit-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  font-weight: 800;
}

.credit-card > strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
}

.credit-card > strong small {
  display: inline;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--sans);
  font-size: 0.95rem;
}

dl {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

dl div {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr 0.9fr;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

dt,
dd {
  margin: 0;
}

.credit-card p {
  margin: 0;
  color: rgba(201, 169, 96, 0.85);
  font-size: 0.86rem;
}

.mediums h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.medium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.medium-card {
  display: grid;
  justify-items: center;
  min-height: 350px;
  padding: 22px;
  text-align: center;
}

.portrait {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  margin-bottom: 8px;
  color: #fff;
  border: 3px solid rgba(201, 169, 96, 0.72);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2.4rem;
  background: linear-gradient(135deg, #b9856a, #56314f);
}

.portrait-two {
  background: linear-gradient(135deg, #d3c7b2, #7a9a86);
}

.portrait-three {
  background: linear-gradient(135deg, #bf8d62, #2f1b38);
}

.medium-card h4 {
  margin: 0;
  font-size: 1.08rem;
}

.online,
.soon {
  color: #85b875;
  font-size: 0.78rem;
}

.soon {
  color: rgba(255, 255, 255, 0.72);
}

.medium-card p {
  margin: 10px 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.medium-card strong {
  margin-top: auto;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 34px;
}

.trust-row article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: center;
}

.trust-row span {
  grid-row: span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.5rem;
}

.trust-row small {
  color: rgba(255, 255, 255, 0.72);
}

.how-section {
  padding: 50px 0 54px;
  background: var(--paper);
}

.how-layout {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 58px;
  align-items: center;
}

.how-copy {
  text-align: center;
}

.how-copy h2 {
  margin-bottom: 54px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}

.steps article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.steps b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: var(--sage-dark);
  border-radius: 50%;
  font-size: 0.78rem;
}

.steps strong {
  margin: 0;
}

.how-image {
  min-height: 300px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.social-section {
  padding: 58px 0 50px;
  color: #fff;
  background: linear-gradient(135deg, #1b0f25, #2a1538);
}

.social-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: center;
}

.social-section .section-label {
  color: rgba(201, 169, 96, 0.8);
}

.social-layout h2 {
  margin-bottom: 18px;
}

.social-layout > div > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.post {
  display: grid;
  min-height: 210px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 6px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.46rem;
  line-height: 1.22;
  text-align: center;
  overflow: hidden;
}

.post.scenic {
  background: linear-gradient(rgba(86, 57, 41, 0.2), rgba(86, 57, 41, 0.2)), linear-gradient(160deg, #d8b77a, #6f6f83);
}

.post.dark {
  background: linear-gradient(rgba(9, 8, 14, 0.25), rgba(9, 8, 14, 0.25)), url("../images/hero-altar.png") center / cover no-repeat;
  font-size: 1rem;
}

.post.light {
  color: var(--ink);
  background: #efe7db;
}

.post.sage {
  background: #829c82;
}

.site-footer {
  padding: 42px 0 24px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
  gap: 58px;
}

.footer-brand {
  color: #807047;
}

.site-footer p,
.site-footer a {
  color: #57505b;
  font-size: 0.9rem;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.social-icons span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #5f584f;
  font-size: 0.8rem;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #756d78;
  font-size: 0.82rem;
}

.wp-content {
  padding: 150px 0 70px;
  background: var(--paper);
}

.content-container {
  max-width: 860px;
}

.content-article {
  color: var(--ink);
}

.content-article h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.entry-content {
  color: var(--muted);
  font-size: 1.05rem;
}

.elementor-page-shell {
  overflow: hidden;
}

.elementor-page-shell .elementor-widget-shortcode,
.elementor-page-shell .elementor-widget-shortcode .elementor-widget-container {
  margin: 0;
}

.elementor-page-shell .elementor-section-wrap > .elementor-section {
  margin: 0;
}

.elementor-page-shell .ic-elementor-section > .elementor-container {
  max-width: none;
}

.ic-native-section .elementor-container {
  width: min(1160px, calc(100% - 72px));
  max-width: 1160px;
}

.ic-native-section .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.ic-native-header {
  position: relative;
  z-index: 50;
  min-height: 48px;
  color: #fff;
  background: rgba(17, 9, 24, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.elementor-location-header {
  min-height: 48px;
  color: #fff;
  background: rgba(17, 9, 24, 0.96) !important;
}

.elementor-location-header > .elementor,
.elementor-location-header .elementor-section,
.elementor-location-header .elementor-container {
  min-height: 48px;
}

.elementor-location-header .elementor-section {
  background: rgba(17, 9, 24, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ic-native-header > .elementor-container {
  width: min(1160px, calc(100% - 56px));
  max-width: 1160px;
  min-height: 48px;
  align-items: center;
}

.ic-native-header .elementor-column,
.ic-native-header .elementor-widget-wrap,
.ic-native-header .elementor-widget,
.ic-native-header .elementor-widget-container {
  min-height: 0;
}

.ic-native-header .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.ic-native-header-brand-col,
.ic-native-header-nav-col,
.ic-native-header-actions-col {
  display: flex;
  align-items: center;
}

.ic-native-header-brand .elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff !important;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.ic-native-header-logo {
  display: inline-flex;
  align-items: center;
  width: 150px;
  max-width: 100%;
  min-height: 48px;
}

.ic-native-header-logo img {
  display: block;
  width: 150px;
  height: auto;
  max-height: 28px;
}

.elementor-location-header .ic-native-header-brand .elementor-heading-title,
.elementor-location-header .ic-native-header-brand,
.elementor-location-header .ic-native-header-brand * {
  color: #fff !important;
}

.ic-native-header-brand span {
  color: var(--gold);
  font-size: 18px;
  line-height: 0;
}

.elementor-location-header .ic-native-header-brand span {
  color: var(--gold) !important;
}

.ic-native-header-nav-col .elementor-widget-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}

.ic-native-header-menu,
.ic-native-header-menu .elementor-widget-container,
.ic-native-header-menu nav,
.ic-native-header-menu .elementor-nav-menu {
  width: 100%;
}

.ic-native-header-menu .elementor-nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

.ic-native-header-menu .elementor-nav-menu > li {
  margin: 0 !important;
}

.ic-native-header-menu .elementor-nav-menu a,
.ic-native-header-menu .elementor-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0 !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.elementor-location-header .ic-native-header-menu a,
.elementor-location-header .ic-native-header-menu .elementor-item {
  color: rgba(255, 255, 255, 0.92) !important;
  background: transparent !important;
}

.ic-native-header-menu a:hover,
.ic-native-header-menu .elementor-item:hover,
.ic-native-header-menu .elementor-item-active {
  color: var(--gold) !important;
}

.ic-native-header-actions-col .elementor-widget-wrap {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  flex-wrap: nowrap;
}

.ic-native-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}

.ic-native-header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.ic-native-header-login {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.ic-native-header-account {
  color: #fff !important;
  background: var(--sage-dark) !important;
  border: 1px solid var(--sage-dark) !important;
}

.ic-native-hero {
  min-height: 610px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(15, 8, 22, 0.98) 0%, rgba(17, 9, 24, 0.78) 43%, rgba(17, 9, 24, 0.22) 70%, rgba(17, 9, 24, 0.68) 100%),
    url("../images/hero-altar.png") center / cover no-repeat;
}

.ic-native-hero .elementor-container {
  min-height: 610px;
  align-items: center;
  padding-top: 78px;
}

.ic-native-hero-title .elementor-heading-title {
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 6.6rem);
  font-weight: 500;
  line-height: 0.94;
}

.ic-native-hero-text {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.26rem;
  line-height: 1.42;
}

.ic-native-button {
  display: inline-flex;
  width: auto;
  margin-top: 28px;
  margin-right: 12px;
}

.ic-native-button .elementor-button {
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 800;
}

.ic-native-button-primary .elementor-button {
  color: #fff;
  background: var(--sage-dark);
  box-shadow: 0 12px 24px rgba(72, 103, 69, 0.24);
}

.ic-native-button-ghost .elementor-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ic-native-sigil {
  display: grid;
  width: min(360px, 38vw);
  aspect-ratio: 1;
  margin-left: auto;
  place-items: center;
  border: 1px solid rgba(201, 169, 96, 0.52);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(20, 10, 28, 0.72) 0 20%, transparent 20.5%),
    repeating-radial-gradient(circle, transparent 0 56px, rgba(201, 169, 96, 0.36) 57px, transparent 58px);
}

.ic-native-sigil .elementor-heading-title {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 96, 0.42);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.ic-native-training-section,
.ic-native-how-section {
  padding: 56px 0 54px;
  background: var(--paper);
}

.ic-native-training-section .elementor-container {
  gap: 68px;
}

.ic-native-label .elementor-heading-title {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ic-native-label-gold .elementor-heading-title {
  color: rgba(201, 169, 96, 0.8);
}

.ic-native-title .elementor-heading-title {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.45vw, 3.65rem);
  font-weight: 500;
  line-height: 0.98;
}

.ic-native-title-light .elementor-heading-title {
  color: #fff;
}

.ic-native-subtitle .elementor-heading-title {
  margin: 4px 0 18px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
}

.ic-native-muted {
  color: var(--muted);
  font-size: 1.02rem;
}

.ic-native-benefit {
  display: inline-block;
  width: 31%;
  margin-top: 64px;
  padding-right: 18px;
  text-align: center;
}

.ic-native-benefit .elementor-icon {
  color: var(--sage-dark);
  font-size: 2rem;
}

.ic-native-benefit .elementor-icon-box-title {
  margin: 12px 0 6px;
  font-size: 0.9rem;
}

.ic-native-benefit .elementor-icon-box-description {
  color: var(--muted);
  font-size: 0.8rem;
}

.ic-native-booking-card {
  overflow: hidden;
  padding-bottom: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ic-native-booking-tabs {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-bottom: 2px solid var(--sage-dark);
  color: var(--sage-dark);
  font-weight: 900;
  text-align: center;
}

.ic-native-training-thumb {
  width: 144px;
  height: 112px;
  margin: 24px 22px 16px;
  float: left;
  border-radius: 6px;
  background:
    linear-gradient(rgba(20, 10, 28, 0.08), rgba(20, 10, 28, 0.08)),
    url("../images/hero-altar.png") center / cover no-repeat;
}

.ic-native-booking-title .elementor-heading-title {
  padding-top: 32px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 850;
}

.ic-native-booking-details {
  color: #332b38;
  line-height: 1.65;
}

.ic-native-booking-form {
  clear: both;
  padding: 0 24px;
}

.ic-native-booking-form .elementor-field-group {
  margin-bottom: 14px;
}

.ic-native-booking-form .elementor-field-label {
  color: #2d2632;
  font-size: 0.84rem;
  font-weight: 800;
}

.ic-native-booking-form input,
.ic-native-booking-form select {
  min-height: 44px;
  border: 1px solid rgba(36, 20, 47, 0.2);
  border-radius: 6px;
}

.ic-native-process-card {
  width: 100%;
  margin-top: 24px;
  padding: 20px 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ic-native-process {
  display: inline-block;
  width: 24%;
  vertical-align: top;
}

.ic-native-process .elementor-icon {
  color: var(--sage-dark);
}

.ic-native-medium-section {
  padding: 54px 0 44px;
  color: #fff;
  background:
    radial-gradient(circle at 68% 20%, rgba(121, 81, 132, 0.26), transparent 28%),
    linear-gradient(135deg, #1b0f25, #2b1539 55%, #170c21);
}

.ic-native-medium-section .elementor-container {
  gap: 42px;
}

.ic-native-light-text {
  color: rgba(255, 255, 255, 0.78);
}

.ic-native-credit-card {
  padding: 0;
}

.ic-native-credit-label {
  margin-top: 36px;
  padding: 25px 25px 0;
  border: 1px solid var(--line-dark);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 800;
}

.ic-native-credit-count {
  padding: 10px 25px;
  border-left: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.055);
}

.ic-native-credit-count .elementor-heading-title {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 500;
}

.ic-native-credit-count small {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.ic-native-credit-history {
  padding: 10px 25px 25px;
  border: 1px solid var(--line-dark);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.ic-native-credit-history span {
  color: rgba(201, 169, 96, 0.85);
}

.ic-native-medium-cards .elementor-widget-heading,
.ic-native-medium-cards .elementor-widget-text-editor,
.ic-native-medium-cards .elementor-widget-button {
  text-align: center;
}

.ic-native-portrait {
  display: inline-grid;
  width: 100px;
  height: 100px;
  place-items: center;
  margin: 18px 0 8px;
  border: 3px solid rgba(201, 169, 96, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, #b9856a, #56314f);
}

.ic-native-portrait .elementor-heading-title {
  color: #fff;
  font-family: var(--serif);
  font-size: 2.4rem;
}

.ic-native-portrait-two {
  background: linear-gradient(135deg, #d3c7b2, #7a9a86);
}

.ic-native-portrait-three {
  background: linear-gradient(135deg, #bf8d62, #2f1b38);
}

.ic-native-card-title .elementor-heading-title {
  color: #fff;
  font-size: 1.08rem;
}

.ic-native-card-text {
  max-width: 210px;
  margin: 0 auto 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.ic-native-medium-cards {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.ic-native-how-section .elementor-container {
  align-items: center;
}

.ic-native-center {
  text-align: center;
}

.ic-native-step {
  display: inline-block;
  width: 24%;
  text-align: center;
}

.ic-native-step .elementor-icon {
  color: var(--sage-dark);
}

.ic-native-how-image,
.ic-native-post-photo {
  min-height: 300px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(20, 10, 28, 0.08), rgba(20, 10, 28, 0.08)),
    url("../images/hero-altar.png") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.ic-native-social-section {
  padding: 58px 0 50px;
  color: #fff;
  background: linear-gradient(135deg, #1b0f25, #2a1538);
}

.ic-native-social-section .elementor-container {
  gap: 72px;
  align-items: center;
}

.ic-native-social-cards .elementor-widget {
  display: inline-grid;
  width: 19%;
  min-height: 210px;
  margin-right: 1%;
  vertical-align: top;
}

.ic-native-post {
  min-height: 210px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
}

.ic-native-post .elementor-heading-title {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.46rem;
  line-height: 1.22;
}

.ic-native-post-scenic {
  background: linear-gradient(rgba(86, 57, 41, 0.2), rgba(86, 57, 41, 0.2)), linear-gradient(160deg, #d8b77a, #6f6f83);
}

.ic-native-post-dark {
  background: linear-gradient(rgba(9, 8, 14, 0.25), rgba(9, 8, 14, 0.25)), url("../images/hero-altar.png") center / cover no-repeat;
}

.ic-native-post-dark .elementor-heading-title {
  font-size: 1rem;
}

.ic-native-post-light {
  background: #efe7db;
}

.ic-native-post-light .elementor-heading-title {
  color: var(--ink);
}

.ic-native-post-sage {
  background: #829c82;
}

.ic-native-footer,
.elementor-location-footer .ic-native-footer,
.elementor-location-footer .ic-native-footer-bottom {
  background: var(--paper);
}

.ic-native-footer {
  padding: 36px 0 0;
  color: var(--ink);
}

.ic-native-footer > .elementor-container,
.ic-native-footer-bottom > .elementor-container {
  width: min(1160px, calc(100% - 72px));
  max-width: 1160px;
}

.ic-native-footer .elementor-widget:not(:last-child),
.ic-native-footer-bottom .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.ic-native-footer-logo {
  width: 176px;
  max-width: 100%;
  margin-bottom: 8px;
}

.ic-native-footer-logo img {
  display: block;
  width: 176px;
  height: auto;
}

.ic-native-footer-text {
  max-width: 310px;
  color: #57505b;
  font-size: 11px;
  line-height: 1.45;
}

.ic-native-footer-socials {
  margin-top: 15px;
}

.ic-native-footer-socials .elementor-social-icon {
  width: 28px;
  height: 28px;
  margin-right: 7px;
  color: #5f7d5b;
  background: transparent !important;
  border: 1px solid rgba(36, 20, 47, 0.16);
}

.ic-native-footer-heading .elementor-heading-title {
  margin: 0 0 9px;
  color: #15101a;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.ic-native-footer-menu .elementor-nav-menu {
  display: grid;
  gap: 4px;
}

.ic-native-footer-menu .elementor-nav-menu a,
.ic-native-footer-menu .elementor-item {
  display: inline-flex;
  padding: 0 !important;
  color: #57505b !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.ic-native-footer-menu .elementor-nav-menu a:hover,
.ic-native-footer-menu .elementor-item:hover {
  color: var(--sage-dark) !important;
}

.ic-native-footer-contact .elementor-icon-list-items {
  display: grid;
  gap: 6px;
}

.ic-native-footer-contact .elementor-icon-list-item {
  align-items: center;
  color: #57505b;
  font-size: 11px;
  line-height: 1.35;
}

.ic-native-footer-contact .elementor-icon-list-icon {
  width: 16px;
  color: var(--sage-dark);
  font-size: 11px;
}

.ic-native-footer-bottom {
  padding: 8px 0 22px;
  background: var(--paper);
}

.ic-native-footer-divider .elementor-divider {
  padding-block: 4px;
}

.ic-native-footer-copy {
  color: #756d78;
  font-size: 10px;
  line-height: 1.4;
}

.elementor-location-footer {
  background: var(--paper);
}

.elementor-location-footer .ic-native-footer {
  padding-top: 28px;
}

.elementor-location-footer .ic-native-footer > .elementor-container {
  align-items: flex-start;
}

.elementor-location-footer .ic-native-footer-brand-col {
  max-width: 360px;
}

.ic-native-footer-logo .elementor-heading-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 9px;
  color: #807047 !important;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.ic-native-footer-logo .elementor-heading-title::first-letter {
  color: var(--gold);
}

.elementor-location-footer .ic-native-footer-text,
.elementor-location-footer .ic-native-footer-text p {
  margin: 0;
  color: #57505b !important;
  font-size: 11px;
  line-height: 1.45;
}

.elementor-location-footer .ic-native-footer-heading .elementor-heading-title {
  color: #15101a !important;
}

.elementor-location-footer .ic-native-footer-menu .elementor-icon-list-items,
.elementor-location-footer .ic-native-footer-menu .elementor-nav-menu {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.elementor-location-footer .ic-native-footer-menu .elementor-icon-list-item,
.elementor-location-footer .ic-native-footer-menu .elementor-icon-list-text,
.elementor-location-footer .ic-native-footer-menu .elementor-nav-menu a,
.elementor-location-footer .ic-native-footer-menu .elementor-item {
  color: #2e2634 !important;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.elementor-location-footer .ic-native-footer-menu .elementor-icon-list-icon {
  display: none;
}

.elementor-location-footer .ic-native-footer-contact .elementor-icon-list-item,
.elementor-location-footer .ic-native-footer-contact .elementor-icon-list-text {
  color: #2e2634 !important;
  font-size: 16px;
  font-weight: 400;
}

.elementor-location-footer .ic-native-footer-contact .elementor-icon-list-icon i,
.elementor-location-footer .ic-native-footer-contact .elementor-icon-list-icon svg {
  color: #71bfde !important;
  fill: #71bfde !important;
}

.elementor-location-footer .ic-native-footer-divider .elementor-divider-separator {
  border-color: rgba(36, 20, 47, 0.14) !important;
}

.elementor-location-footer .ic-native-footer-copy,
.elementor-location-footer .ic-native-footer-copy p,
.elementor-location-footer .ic-native-footer-copy .elementor-widget-container {
  margin: 0;
  color: #756d78 !important;
  font-size: 10px;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    position: fixed;
    top: 18px;
    right: auto;
    left: min(calc(100vw - 60px), 330px);
    z-index: 30;
    display: grid;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .mobile-nav.open {
    position: fixed;
    top: 78px;
    right: 24px;
    z-index: 21;
    display: grid;
    gap: 14px;
    width: min(300px, calc(100vw - 48px));
    padding: 20px;
    color: #fff;
    background: rgba(22, 13, 30, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
  }

  .training-grid,
  .medium-layout,
  .how-layout,
  .social-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sigil {
    opacity: 0.56;
  }

  .medium-grid,
  .steps,
  .social-cards,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .container,
  .hero-inner {
    width: min(100% - 36px, 1160px);
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    font-size: 1.16rem;
  }

  .brand-mark {
    font-size: 1.75rem;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(15, 8, 22, 0.98) 0%, rgba(15, 8, 22, 0.76) 56%, rgba(15, 8, 22, 0.32) 100%),
      url("../images/hero-altar.png") center / cover no-repeat;
  }

  .hero-inner {
    display: block;
    padding-top: 130px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 16vw, 4.7rem);
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sigil {
    position: absolute;
    right: -80px;
    bottom: 42px;
    width: 270px;
  }

  .training-section,
  .medium-section,
  .how-section,
  .social-section {
    padding-block: 44px;
  }

  .benefits,
  .medium-grid,
  .steps,
  .social-cards,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .booking-main {
    grid-template-columns: 1fr;
  }

  .training-thumb {
    width: 100%;
    height: 150px;
  }

  label {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .process-card {
    grid-template-columns: 1fr;
  }

  .process-card i {
    display: none;
  }

  .post {
    min-height: 170px;
  }
}
