:root {
  --content-width: 1380px;
  --page-gap: 40px;
  --panel: rgba(12, 12, 12, .76);
  --card: rgba(23, 23, 23, .94);
  --border: rgba(255,255,255,.11);
  --text: #fff;
  --muted: #d2d2d2;
  --accent: #c71f2d;
  --accent-light: #ff4655;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background: #101010;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
body.no-scroll { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(15,15,15,.18), rgba(5,5,5,.50)),
    url("../img/hero-bg-fast.jpg") center/cover no-repeat;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.015), rgba(0,0,0,.36));
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 3px; }
section { scroll-margin-top: 34px; }

header {
  width: var(--content-width);
  max-width: calc(100% - var(--page-gap));
  margin: 20px auto 30px;
  display: grid;
  grid-template-columns: 420px minmax(0,1fr);
  gap: 80px;
  align-items: start;
}
.logo h1 {
  margin-bottom: 10px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.04;
  text-shadow: 0 3px 18px rgba(0,0,0,.9);
}
.logo p {
  color: var(--muted);
  font-size: 21px;
  text-shadow: 0 2px 12px rgba(0,0,0,.92);
}
nav {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
  padding-top: 32px;
}
nav > a, .nav-dropdown-toggle, .language-toggle {
  border: 0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease, text-shadow .2s ease;
}
nav > a:hover, .nav-dropdown-toggle:hover, .language-toggle:hover {
  color: var(--accent-light);
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(255,70,85,.55);
}
.language-toggle { margin-left: 8px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(10,10,10,.82);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 7px; }
.dropdown-arrow { font-size: 10px; transition: transform .25s ease; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 1000;
  min-width: 270px;
  padding: 10px;
  border: 1px solid #333;
  border-radius: 10px;
  background: rgba(18,18,18,.98);
  box-shadow: 0 16px 34px rgba(0,0,0,.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.nav-dropdown-menu a:hover { color: var(--accent-light); background: #272727; }
@media (min-width: 701px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-dropdown:hover .dropdown-arrow,
  .nav-dropdown:focus-within .dropdown-arrow { transform: rotate(180deg); }
}

.section, .about {
  width: var(--content-width);
  max-width: calc(100% - var(--page-gap));
  margin: 34px auto;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(0,0,0,.32), inset 0 1px rgba(255,255,255,.025);
}
.section { padding: 34px; }
.section h2 { margin-bottom: 18px; font-size: clamp(30px, 3vw, 42px); }
.section > p, .section-intro { max-width: 900px; color: var(--muted); font-size: 17px; line-height: 1.65; }

.about {
  min-height: 500px;
  padding: 50px;
  display: grid;
  grid-template-columns: 360px minmax(0,1fr);
  gap: 60px;
  align-items: stretch;
  background: linear-gradient(90deg, rgba(8,8,8,.26), rgba(8,8,8,.54) 48%, rgba(8,8,8,.88));
}
.goddess-portrait {
  min-height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.goddess-portrait img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center top;
}
.aboutText { max-width: 760px; }
.aboutText h2 { margin-bottom: 24px; font-size: clamp(36px, 3.3vw, 48px); }
.aboutText p { margin-bottom: 18px; color: #f0f0f0; font-size: 19px; line-height: 1.72; }
.goddess-quote { margin-bottom: 22px; line-height: 1.55; }
.goddess-quote cite { display: block; margin-top: 8px; color: #c7c7c7; font-style: normal; }
.cta-wrap { margin-top: 24px; }
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid rgba(199,31,45,.75);
  border-radius: 9px;
  background: rgba(50,10,14,.55);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cta-button:hover { transform: translateY(-2px); background: rgba(199,31,45,.7); box-shadow: 0 8px 22px rgba(0,0,0,.35); }

.gallery-mini {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
}
.gallery-mini img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .25s ease, filter .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.gallery-mini img:hover, .gallery-mini img:focus-visible {
  transform: translateY(-5px);
  filter: brightness(1.07);
  border-color: rgba(255,70,85,.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.5);
}

.academy-grid, .sessions-grid { display: block; margin-top: 20px; }
details {
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  background: var(--card);
  scroll-margin-top: 80px;
  transition: border-color .18s ease, background .18s ease;
}
details:hover { border-color: rgba(199,31,45,.55); background: rgba(30,30,30,.97); }
summary {
  position: relative;
  padding: 18px 52px 18px 20px;
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #ddd;
  font-size: 24px;
  font-weight: 400;
}
details[open] summary::after { content: "−"; }
.details-content { padding: 0 20px 20px; }
.details-content p { margin: 0 0 14px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.details-content p:last-child { margin-bottom: 0; }
.details-content ul { padding-left: 22px; }
.details-content li { margin: 7px 0; color: var(--muted); line-height: 1.55; }
.sessions-details { margin-top: 30px; }
.sessions-details h2 { font-size: clamp(26px,2.5vw,36px); }

.contact-content {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 620px);
  gap: 44px;
  align-items: start;
  margin-top: 28px;
}
.contact-direct { display: flex; flex-direction: column; gap: 20px; }
.contact-email { color: #fff; text-decoration: none; font-size: 18px; font-weight: 700; overflow-wrap: anywhere; }
.contact-email:hover { color: var(--accent-light); }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-links a {
  padding: 10px 18px;
  border: 1px solid #4a4a4a;
  border-radius: 9px;
  background: rgba(10,10,10,.68);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-links a:hover { color: var(--accent-light); border-color: rgba(255,70,85,.45); transform: translateY(-2px); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label { color: #bfbfbf; font-size: 14px; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 9px;
  background: rgba(15,15,15,.9);
  color: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row textarea { min-height: 145px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: rgba(255,70,85,.8); box-shadow: 0 0 0 3px rgba(199,31,45,.14); }
.contact-submit {
  align-self: flex-start;
  padding: 10px 24px;
  border: 1px solid rgba(199,31,45,.72);
  border-radius: 9px;
  background: rgba(93,15,24,.72);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.contact-submit:hover { background: var(--accent); transform: translateY(-2px); }
.hidden-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 80px;
  background: rgba(0,0,0,.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
#lightbox.active { opacity: 1; visibility: visible; pointer-events: auto; }
#lightbox-img { max-width: 88vw; max-height: 90vh; width: auto; height: auto; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.7); }
#lightbox button {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 64px;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  background: rgba(25,25,25,.72);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
}
#lightbox button:hover { background: rgba(255,255,255,.16); }
#prev { left: 22px; }
#next { right: 22px; }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-up.show { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .fade-up { opacity: 1; transform: none; }
}
footer { margin-top: 28px; padding: 34px 20px; border-top: 1px solid var(--border); background: rgba(10,10,10,.68); color: #aaa; text-align: center; }

@media (max-width: 1180px) {
  :root { --page-gap: 50px; }
  header { display: flex; flex-direction: column; gap: 16px; }
  nav { width: 100%; padding-top: 4px; flex-wrap: wrap; }
  .about { grid-template-columns: 340px minmax(0,1fr); gap: 44px; padding: 42px; }
  .goddess-portrait img { min-height: 680px; }
  .aboutText p { font-size: 18px; }
  .gallery-mini img { height: 160px; }
}

@media (max-width: 800px) {
  .about { grid-template-columns: 1fr; gap: 28px; }
  .goddess-portrait { max-height: 760px; }
  .goddess-portrait img { min-height: 0; height: auto; max-height: 760px; width: 100%; object-position: center top; }
  .contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --page-gap: 24px; }
  header {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 20px;
    gap: 14px;
    background: rgba(10,10,10,.68);
  }
  .logo h1 { font-size: 36px; }
  .logo p { padding-right: 56px; font-size: 15px; }
  .menu-toggle { display: block; position: absolute; top: 20px; right: 20px; z-index: 1001; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  nav { display: none; width: 100%; padding-top: 10px; flex-direction: column; align-items: stretch; gap: 0; }
  nav.open { display: flex; }
  nav > a, .language-toggle, .nav-dropdown-toggle {
    width: 100%;
    margin: 0;
    padding: 13px 0;
    border-bottom: 1px solid #303030;
    text-align: left;
    font-size: 17px;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 5px 0 10px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown.open .dropdown-arrow { transform: rotate(180deg); }
  .nav-dropdown-menu a { padding: 9px 10px; font-size: 14px; }
  .section, .about { max-width: calc(100% - 24px); margin: 18px auto; border-radius: 14px; }
  .section { padding: 22px 18px; }
  .about { padding: 20px; }
  .aboutText h2 { margin-bottom: 18px; font-size: 34px; }
  .aboutText p { font-size: 17px; line-height: 1.62; }
  .gallery-mini { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
  .gallery-mini img { height: 165px; }
  summary { padding: 16px 46px 16px 16px; font-size: 18px; }
  summary::after { right: 16px; }
  .details-content { padding: 0 16px 16px; }
  .contact-links { gap: 9px; }
  #lightbox { padding: 18px 52px; }
  #lightbox button { width: 38px; height: 54px; font-size: 27px; }
  #prev { left: 7px; }
  #next { right: 7px; }
}

@media (max-width: 420px) {
  .logo h1 { font-size: 31px; }
  .gallery-mini img { height: 135px; }
  .contact-email { font-size: 16px; }
}
