:root {
  color-scheme: dark;
  --night: #03040a;
  --white: #f7f7ff;
  --muted: rgba(255, 255, 255, 0.66);
  --blue: #55d7ff;
  --violet: #8f7cff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--white);
  font-family: "Avenir Next", "Helvetica Neue", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

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

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

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--night);
}

.breath-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(82, 198, 255, 0.2), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(128, 80, 255, 0.24), transparent 32%),
    radial-gradient(circle at 52% 80%, rgba(57, 77, 184, 0.19), transparent 36%),
    var(--night);
  filter: saturate(126%);
  animation: gradient-breathe 16s ease-in-out infinite alternate;
}

.noise-layer {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(20px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 4, 10, 0.52);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.32em;
  white-space: nowrap;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav a,
.header-cta,
.button {
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.nav a:hover {
  color: white;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(96, 76, 60, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  border-radius: 999px;
  background: #3b3029;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 16px;
  right: 16px;
  z-index: 30;
  border: 1px solid rgba(96, 76, 60, 0.12);
  border-radius: 24px;
  background: rgba(251, 248, 243, 0.94);
  box-shadow: 0 24px 70px rgba(70, 50, 34, 0.14);
  backdrop-filter: blur(20px);
  padding: 12px;
}

.mobile-menu a {
  display: block;
  border-radius: 16px;
  padding: 15px 18px;
  color: rgba(59, 48, 41, 0.76);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.mobile-menu a:hover {
  background: rgba(248, 223, 202, 0.56);
  color: #3b3029;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(20px, 4vw, 48px) 72px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-aura {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62vmax;
  height: 62vmax;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(85, 215, 255, 0.22), transparent 36%),
    radial-gradient(circle, rgba(143, 124, 255, 0.22), transparent 58%);
  filter: blur(42px);
  animation: aura 9s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 38%, rgba(94, 76, 255, 0.23), transparent 42%),
    linear-gradient(180deg, rgba(3, 4, 10, 0.28), rgba(3, 4, 10, 0.92) 78%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: end;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(85, 215, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.hero-logo {
  width: min(520px, 88vw);
  margin: 0 0 28px;
  opacity: 0.96;
  filter: none;
  border-radius: 0;
  box-shadow: none;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 13vw, 8.4rem);
  font-weight: 200;
  line-height: 0.94;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 2;
}

.lesson-types {
  margin: 18px 0 0;
  color: #4b9a4f;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.button.primary {
  border: 1px solid rgba(85, 215, 255, 0.52);
  background: linear-gradient(135deg, rgba(85, 215, 255, 0.18), rgba(143, 124, 255, 0.2));
  box-shadow: 0 0 44px rgba(85, 215, 255, 0.14);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.72);
}

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

.hero-photo {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 70px rgba(111, 102, 255, 0.26);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  opacity: 0.72;
  filter: grayscale(18%);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--night), rgba(3, 4, 10, 0.24), transparent);
}

.hero-photo span {
  position: absolute;
  right: 20px;
  bottom: 38px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(3, 4, 10, 0.55);
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  animation: float 5.8s ease-in-out infinite;
}

.section {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 96px clamp(20px, 4vw, 48px);
}

.section-title {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-title h2,
.copy-panel h2,
.instagram-section h2,
.contact-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 200;
  line-height: 1.25;
}

.section-title p:not(.eyebrow),
.copy-panel p,
.instagram-section p,
.contact-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2.1;
}

.local-note {
  display: inline-block;
  margin-top: 8px;
  border: 1px solid rgba(75, 154, 79, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  padding: 10px 18px;
  color: rgba(59, 48, 41, 0.68);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.concept-grid div,
.lesson-grid article,
.lesson-detail > div,
.profile-text,
.logo-panel,
.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.concept-grid div {
  min-height: 180px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(85, 215, 255, 0.13), transparent 50%),
    rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.7rem, 8vw, 3.8rem);
  font-weight: 200;
}

.split-section,
.profile-layout,
.instagram-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.image-panel,
.profile-photo,
.logo-panel {
  overflow: hidden;
  border-radius: 28px;
}

.image-panel img,
.profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.78;
  filter: grayscale(12%) contrast(1.04);
}

.copy-panel p + p,
.profile-text p + p {
  margin-top: 22px;
}

.word-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.word-pills span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 16px 12px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.profile-photo {
  align-self: stretch;
}

.profile-text {
  border-radius: 28px;
  padding: clamp(28px, 6vw, 64px);
}

.profile-text p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 2.25;
}

.career-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.career-list div {
  border-left: 1px solid rgba(85, 215, 255, 0.38);
  padding: 10px 0 10px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

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

.lesson-grid article {
  min-height: 330px;
  border-radius: 26px;
  padding: 30px;
}

.lesson-grid span {
  color: rgba(85, 215, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.4em;
}

.lesson-grid h3,
.lesson-detail h3 {
  margin: 52px 0 0;
  color: white;
  font-size: 23px;
  font-weight: 300;
}

.lesson-grid p,
.lesson-detail p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 2;
}

.lesson-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.lesson-detail > div {
  border-radius: 26px;
  padding: 30px;
}

.lesson-detail h3 {
  margin-top: 0;
}

.price-list {
  max-width: 860px;
  margin: 0 auto;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  padding: 28px 0;
}

.price-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.price-row strong {
  display: block;
  color: white;
  font-size: 19px;
  font-weight: 300;
}

.price-row span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.price-row p {
  margin: 0;
  color: white;
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  font-weight: 200;
}

.gallery-section {
  width: 100%;
  max-width: none;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: gallery-flow 42s linear infinite;
}

.gallery-track figure {
  width: min(72vw, 430px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  filter: grayscale(10%) contrast(1.04);
}

.logo-panel {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 28% 18%, rgba(85, 215, 255, 0.16), transparent 42%),
    radial-gradient(circle at 74% 72%, rgba(143, 124, 255, 0.16), transparent 45%),
    rgba(255, 255, 255, 0.035);
}

.logo-panel img {
  width: min(88%, 620px);
  opacity: 0.96;
  filter: none;
  border-radius: 0;
  box-shadow: none;
}

.contact-section {
  text-align: center;
}

.contact-panel {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 34px;
  padding: clamp(34px, 8vw, 86px) clamp(20px, 6vw, 70px);
  background:
    radial-gradient(circle at 50% 0%, rgba(85, 215, 255, 0.14), transparent 46%),
    radial-gradient(circle at 75% 88%, rgba(143, 124, 255, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.contact-panel .mail {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.16em;
}

.contact-actions {
  justify-content: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  text-align: left;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label.full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form span {
  color: rgba(59, 48, 41, 0.72);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(96, 76, 60, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #3b3029;
  font: inherit;
  font-size: 16px;
  outline: none;
  padding: 15px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(75, 154, 79, 0.55);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 4px rgba(75, 154, 79, 0.1);
}

.contact-form .bot-check {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form button {
  width: min(100%, 320px);
  border: 0;
  cursor: pointer;
  justify-self: center;
  margin-top: 8px;
}

.message-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.message-page h1 {
  margin: 0;
  color: #3b3029;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 200;
  line-height: 1.25;
}

.message-page .button {
  margin-top: 24px;
}

.fade-in {
  animation: fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.float-in {
  animation: fade-scale 1.2s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes gradient-breathe {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(-1.8%, 1.2%, 0);
  }
}

/* Softer direction: closer to the existing VOICE STUDIO K site */
:root {
  color-scheme: light;
  --night: #fbf8f3;
  --white: #3b3029;
  --muted: rgba(59, 48, 41, 0.72);
  --blue: #6fa8b6;
  --violet: #c6b5da;
  --peach: #f8dfca;
  --sage: #4b9a4f;
  --paper: rgba(255, 255, 255, 0.78);
  --line: rgba(96, 76, 60, 0.14);
}

body {
  background: #fbf8f3;
  color: #3b3029;
}

.site-bg {
  background:
    radial-gradient(circle at 82% 8%, rgba(198, 181, 218, 0.3), transparent 34%),
    radial-gradient(circle at 12% 20%, rgba(248, 223, 202, 0.75), transparent 36%),
    #fbf8f3;
}

.breath-gradient {
  background:
    radial-gradient(circle at 18% 12%, rgba(248, 223, 202, 0.7), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(198, 181, 218, 0.28), transparent 36%),
    radial-gradient(circle at 62% 84%, rgba(111, 168, 182, 0.16), transparent 38%),
    #fbf8f3;
  filter: none;
}

.noise-layer {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(96, 76, 60, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 76, 60, 0.028) 1px, transparent 1px);
}

.site-header {
  border-bottom-color: rgba(96, 76, 60, 0.12);
  background: rgba(251, 248, 243, 0.82);
  box-shadow: 0 12px 40px rgba(70, 50, 34, 0.05);
}

.brand {
  color: #3b3029;
}

.nav {
  color: rgba(59, 48, 41, 0.56);
}

.nav a:hover {
  color: #4b9a4f;
}

.header-cta {
  border-color: rgba(75, 154, 79, 0.32);
  color: #3f7e42;
  background: rgba(255, 255, 255, 0.56);
}

.hero {
  align-items: center;
}

.hero-video {
  opacity: 0.12;
}

.hero-aura {
  background:
    radial-gradient(circle, rgba(248, 223, 202, 0.48), transparent 44%),
    radial-gradient(circle, rgba(198, 181, 218, 0.2), transparent 62%);
  filter: blur(32px);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 0.96), rgba(251, 248, 243, 0.72) 48%, rgba(251, 248, 243, 0.36)),
    radial-gradient(circle at 66% 38%, rgba(248, 223, 202, 0.54), transparent 46%);
}

.eyebrow {
  color: #4b9a4f;
}

.hero-logo {
  filter: none;
  opacity: 0.96;
}

.hero h1,
.section-title h2,
.copy-panel h2,
.instagram-section h2,
.contact-panel h2 {
  color: #3b3029;
}

.hero h1 {
  font-size: clamp(2.7rem, 8vw, 5.9rem);
  line-height: 1.15;
}

.hero-lead,
.section-title p:not(.eyebrow),
.copy-panel p,
.instagram-section p,
.contact-panel p,
.profile-text p,
.lesson-grid p,
.lesson-detail p {
  color: rgba(59, 48, 41, 0.72);
}

.button.primary {
  border-color: rgba(75, 154, 79, 0.34);
  background: linear-gradient(135deg, rgba(75, 154, 79, 0.92), rgba(111, 168, 182, 0.82));
  color: white;
  box-shadow: 0 18px 42px rgba(75, 154, 79, 0.15);
}

.button.secondary {
  border-color: rgba(96, 76, 60, 0.16);
  background: rgba(255, 255, 255, 0.65);
  color: rgba(59, 48, 41, 0.72);
}

.hero-photo {
  border-color: rgba(96, 76, 60, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 70px rgba(70, 50, 34, 0.12);
}

.hero-photo img {
  opacity: 1;
  filter: saturate(0.95) contrast(1.01);
}

.hero-photo::after {
  background: linear-gradient(to top, rgba(251, 248, 243, 0.72), transparent 46%);
}

.hero-photo span {
  border-color: rgba(96, 76, 60, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(59, 48, 41, 0.62);
}

.section {
  padding-block: 86px;
}

.concept-grid div,
.lesson-grid article,
.lesson-detail > div,
.profile-text,
.logo-panel,
.contact-panel {
  border-color: rgba(96, 76, 60, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(70, 50, 34, 0.08);
}

.concept-grid div {
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 223, 202, 0.76), transparent 62%),
    rgba(255, 255, 255, 0.7);
  color: rgba(59, 48, 41, 0.82);
}

.split-section {
  width: 100%;
  max-width: none;
  background: rgba(248, 223, 202, 0.55);
  border-block: 1px solid rgba(96, 76, 60, 0.1);
  padding-inline: max(20px, calc((100vw - 1280px) / 2 + 48px));
}

.image-panel,
.profile-photo,
.logo-panel {
  box-shadow: 0 24px 60px rgba(70, 50, 34, 0.11);
}

.image-panel img,
.profile-photo img,
.gallery-track img {
  opacity: 1;
  filter: saturate(0.95) contrast(1.01);
}

.word-pills span {
  border-color: rgba(75, 154, 79, 0.22);
  background: rgba(255, 255, 255, 0.46);
  color: rgba(59, 48, 41, 0.72);
}

.career-list div {
  border-left-color: rgba(75, 154, 79, 0.45);
  color: rgba(59, 48, 41, 0.72);
}

.lesson-section {
  background: linear-gradient(180deg, transparent, rgba(248, 223, 202, 0.36), transparent);
}

.lesson-grid span {
  color: #4b9a4f;
}

.lesson-grid h3,
.lesson-detail h3,
.price-row strong {
  color: #3b3029;
}

.price-row {
  border-top-color: rgba(96, 76, 60, 0.14);
}

.price-row:last-child {
  border-bottom-color: rgba(96, 76, 60, 0.14);
}

.price-note {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid rgba(96, 76, 60, 0.14);
  padding: 24px 0 0;
}

.price-note strong {
  color: #3b3029;
  font-size: 18px;
  font-weight: 300;
}

.price-note span {
  color: rgba(59, 48, 41, 0.62);
  font-size: 14px;
  line-height: 1.8;
}

.price-row span {
  color: rgba(59, 48, 41, 0.78);
  font-weight: 400;
}

.price-row p {
  color: #3f8243;
  font-weight: 400;
}

.gallery-section {
  background: rgba(248, 223, 202, 0.5);
  border-block-color: rgba(96, 76, 60, 0.1);
}

.gallery-track figure {
  border-color: rgba(96, 76, 60, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.logo-panel {
  background:
    radial-gradient(circle at 28% 18%, rgba(248, 223, 202, 0.72), transparent 42%),
    radial-gradient(circle at 74% 72%, rgba(198, 181, 218, 0.22), transparent 45%),
    rgba(255, 255, 255, 0.68);
}

.logo-panel img {
  opacity: 0.9;
  filter: none;
}

.contact-panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 223, 202, 0.76), transparent 50%),
    rgba(255, 255, 255, 0.72);
}

.contact-panel .mail {
  color: #4b9a4f;
}

@keyframes aura {
  0%,
  100% {
    opacity: 0.34;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.56;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes gallery-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-scale {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes menu-show {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .site-header {
    gap: 10px;
  }

  .header-cta {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-open .mobile-menu {
    display: block;
    animation: menu-show 0.22s ease both;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .hero-inner,
  .split-section,
  .profile-layout,
  .instagram-section,
  .lesson-grid,
  .lesson-detail,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 420px;
  }

  .section {
    padding-block: 78px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
    font-size: 12px;
  }

  .concept-grid div {
    min-height: 134px;
    border-radius: 22px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 64px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 11px;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-logo {
    width: min(300px, 88vw);
  }

  .hero-lead {
    font-size: 15px;
  }
}
