/* ストーリークラフト仙台 — Main Stylesheet */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #000000;
  --primary: #EFEFE2;
  --accent: #5cbb3d;
  --text: #EFEFE2;
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

img {
  max-width: 100%;
  display: block;
}

[split] {
  font-kerning: none;
}

.section-header_title {
  font-kerning: none;
}

/* === HELPERS === */
.only-desktop { display: block; }
.only-mobile  { display: none; }

@media screen and (max-width: 991px) {
  .only-desktop { display: none !important; }
  .only-mobile  { display: block !important; }
}

.text-highlight { color: var(--accent); }

.line {
  overflow: hidden;
  padding-bottom: 0.25rem;
  margin-bottom: -0.25rem;
}

/* === PAGE WRAPPER === */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-wrapper {
  flex: 1;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  border-bottom: 1px solid rgba(239,239,226,0.08);
  height: 83px;
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
}

.container.is--navbar {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar_logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar_logo svg {
  height: 42px;
  width: auto;
}

.navbar__mobile-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar_links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar_link {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  color: var(--primary);
  opacity: 0.8;
  transition: opacity 0.2s;
  cursor: pointer;
  position: relative;
}

.navbar_link:hover,
.navbar_link.active { opacity: 1; }

.navbar_link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.navbar_link:hover::after,
.navbar_link.active::after { transform: scaleX(1); }

/* === BUTTONS === */
.button {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.button:hover {
  background: var(--primary);
  color: var(--bg);
}

.button.is--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.button.is--accent:hover {
  background: transparent;
  color: var(--accent);
}

.button.is--nav-cta {
  padding: 9px 22px;
  font-size: 0.8rem;
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.button.is--nav-cta:hover {
  background: transparent;
  color: var(--accent);
}

/* === HAMBURGER === */
.navbar_mobile-button {
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
}

.navbar_mobile-button_line {
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

body.nav-open .navbar_mobile-button_line:first-child {
  transform: rotate(-45deg) translate(-5px, 5px);
}
body.nav-open .navbar_mobile-button_line.is--second {
  transform: rotate(45deg) translate(-5px, -5px);
}

/* === MOBILE NAV === */
@media screen and (max-width: 991px) {
  .navbar_links {
    display: none;
    position: fixed;
    top: 83px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 999;
  }

  .navbar_links.is--open { display: flex; }

  .navbar_link {
    font-size: 1.4rem;
    padding: 12px 20px;
  }

  .button.is--nav-cta { display: none; }
}

/* === HERO === */
.section_hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 83px;
}

.home-hero_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.home-hero_bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.container.is--home-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 30px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.home-hero_texts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-hero_subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
}

.home-hero_title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
  opacity: 0;
}

.home-hero_title strong { color: var(--accent); }

.home-hero_desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(239,239,226,0.75);
  max-width: 520px;
  opacity: 0;
}

.home-hero_actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  opacity: 0;
}

.home-hero_image {
  opacity: 0;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.home-hero_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .container.is--home-hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }
  .home-hero_image { aspect-ratio: 16/9; }
}

/* === CONTAINERS === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  .container { padding: 0 20px; }
}

/* === SECTION BASE === */
section, .section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-header.is--centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header_title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--primary);
}

.section-title_subtitle {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,239,226,0.55);
  max-width: 400px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .section-title_subtitle { text-align: left; }
  section, .section { padding: 70px 0; }
}

/* === ABOUT === */
.section_quote { background: var(--bg-dark); }

.container.is--home-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about_block { display: flex; flex-direction: column; gap: 24px; }

.about_block h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

.about_paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(239,239,226,0.75);
}

.about_spacer {
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.about_block.is--image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}

.about_block.is--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .container.is--home-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about_block.is--image { aspect-ratio: 16/9; }
}

/* === COURSES === */
.section_courses { background: var(--bg); }

.courses_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.course_block {
  background: var(--bg-card);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.course_block::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.course_block:hover { background: var(--bg-card2); }
.course_block:hover::before { transform: scaleX(1); }

.course_icon {
  font-size: 2rem;
  color: var(--accent);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
}

.course_tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.course_title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
}

.course_desc {
  font-size: 0.9rem;
  color: rgba(239,239,226,0.65);
  line-height: 1.7;
  flex: 1;
}

.course_price {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  margin-top: 8px;
}

.course_price span {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(239,239,226,0.5);
  margin-left: 4px;
}

@media screen and (max-width: 991px) {
  .courses_layout { grid-template-columns: 1fr 1fr; }
}
@media screen and (max-width: 600px) {
  .courses_layout { grid-template-columns: 1fr; }
}

/* === FEATURES === */
.section_features { background: var(--bg-dark); }

.features_layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.feature_block {
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-card);
  text-align: center;
  align-items: center;
}

.feature_icon {
  font-size: 2.2rem;
  color: var(--accent);
}

.feature_block_title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.feature_block_text {
  font-size: 0.88rem;
  color: rgba(239,239,226,0.6);
  line-height: 1.65;
}

@media screen and (max-width: 991px) {
  .features_layout { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 500px) {
  .features_layout { grid-template-columns: 1fr; }
}

/* === TESTIMONIALS === */
.section_testimonials { background: var(--bg); }

.testimonials_layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial_block {
  background: var(--bg-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial_stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 0.9rem;
}

.testimonial_text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(239,239,226,0.8);
  font-style: italic;
  flex: 1;
}

.testimonial_author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(239,239,226,0.1);
}

.testimonial_avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card2);
}

.testimonial_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial_name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
}

.testimonial_role {
  font-size: 0.78rem;
  color: rgba(239,239,226,0.45);
  margin-top: 2px;
}

@media screen and (max-width: 991px) {
  .testimonials_layout { grid-template-columns: 1fr; }
}

/* === FAQ === */
.section_faq { background: var(--bg-dark); }

.container.is--faq {
  max-width: 860px;
}

.faq_list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 60px;
}

.faq_item {
  background: var(--bg-card);
  border-left: 3px solid transparent;
  transition: border-color 0.2s;
}

.faq_item.is--open {
  border-left-color: var(--accent);
}

.faq_question {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
}

.faq_icon {
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq_item.is--open .faq_icon { transform: rotate(45deg); }

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq_answer_inner {
  padding: 0 28px 24px;
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(239,239,226,0.7);
}

/* === CONTACT CTA === */
.section_cta {
  background: var(--accent);
  padding: 80px 0;
}

.section_cta .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.section_cta h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #000;
  line-height: 1.1;
}

.section_cta p {
  font-size: 1.05rem;
  color: rgba(0,0,0,0.7);
  max-width: 560px;
}

.button.is--dark {
  background: #000;
  border-color: #000;
  color: var(--primary);
}

.button.is--dark:hover {
  background: transparent;
  color: #000;
  border-color: #000;
}

/* === NEWSLETTER === */
.section_newsletter {
  background: var(--bg-dark);
  padding: 80px 0;
}

.container.is--newsletter {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
}

.newsletter_paragraph {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(239,239,226,0.65);
}

.newsletter_form {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 500px;
}

.newsletter_form_input {
  flex: 1;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(239,239,226,0.15);
  border-right: none;
  color: var(--primary);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

.newsletter_form_input::placeholder { color: rgba(239,239,226,0.35); }
.newsletter_form_input:focus { border-color: var(--accent); }

.newsletter_form_submit-button {
  padding: 14px 24px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.newsletter_form_submit-button:hover {
  background: #000;
  color: var(--accent);
  border-color: var(--accent);
}

/* === CONTACT FORM === */
.section_contact { background: var(--bg); }

.contact_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact_info { display: flex; flex-direction: column; gap: 30px; }

.contact_info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 400;
}

.contact_detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact_detail_icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact_detail_text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(239,239,226,0.7);
}

.contact_detail_text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.form_block { display: flex; flex-direction: column; gap: 16px; }

.form_group { display: flex; flex-direction: column; gap: 6px; }

.form_label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(239,239,226,0.55);
}

.form_input, .form_textarea, .form_select {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid rgba(239,239,226,0.12);
  color: var(--primary);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form_input:focus,
.form_textarea:focus,
.form_select:focus { border-color: var(--accent); }

.form_textarea {
  min-height: 130px;
  resize: vertical;
}

.form_select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23EFEFE2' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--bg-card);
  padding-right: 40px;
  cursor: pointer;
}

.form_select option { background: var(--bg-card); }

.form_submit {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  border: none;
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
}

.form_submit:hover {
  background: var(--primary);
  color: #000;
}

.form_notice {
  font-size: 0.78rem;
  color: rgba(239,239,226,0.35);
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .contact_layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* === FOOTER === */
.footer {
  background: #000;
  border-top: 1px solid rgba(239,239,226,0.08);
  padding: 70px 0 30px;
}

.footer_layout {
  display: flex;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(239,239,226,0.06);
  margin-bottom: 50px;
}

.footer_layout.is--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
  align-items: center;
  justify-content: space-between;
}

.footer_logo-block { flex: 0 0 auto; }
.footer_logo-block svg { height: 38px; width: auto; }

.footer_nav-block {
  flex: 1;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer_nav-col { display: flex; flex-direction: column; gap: 10px; }

.footer_nav-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 6px;
}

.footer_nav-link {
  font-size: 0.88rem;
  color: rgba(239,239,226,0.55);
  transition: color 0.2s;
}

.footer_nav-link:hover { color: var(--primary); }

.footer_contact-block {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(239,239,226,0.55);
}

.footer_contact-item i {
  color: var(--accent);
  margin-top: 2px;
  width: 14px;
  flex-shrink: 0;
}

.footer_socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer_social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(239,239,226,0.55);
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.footer_social-link:hover {
  background: var(--accent);
  color: #000;
}

.footer_copyright {
  font-size: 0.8rem;
  color: rgba(239,239,226,0.3);
}

@media screen and (max-width: 991px) {
  .footer_layout {
    flex-direction: column;
    gap: 30px;
  }
  .footer_nav-block { gap: 30px; }
  .footer_layout.is--last { flex-direction: column; gap: 15px; text-align: center; }
}

/* === INNER PAGE HERO === */
.section_inner-hero {
  padding: 160px 0 80px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(239,239,226,0.06);
}

.inner-hero_label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.inner-hero_title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--primary);
  margin-bottom: 20px;
}

.inner-hero_desc {
  font-size: 1rem;
  color: rgba(239,239,226,0.6);
  max-width: 640px;
  line-height: 1.75;
}

/* === POLICY CONTENT === */
.section_policy { padding: 80px 0; }

.policy_content {
  max-width: 860px;
}

.policy_content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 40px 0 14px;
  color: var(--primary);
}

.policy_content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 28px 0 10px;
  color: rgba(239,239,226,0.85);
}

.policy_content p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: rgba(239,239,226,0.65);
  margin-bottom: 14px;
}

.policy_content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy_content ul li {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(239,239,226,0.65);
  margin-bottom: 8px;
}

.policy_content a {
  color: var(--accent);
  text-decoration: underline;
}

.policy_content .last-updated {
  font-size: 0.82rem;
  color: rgba(239,239,226,0.3);
  font-style: italic;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(239,239,226,0.08);
}

/* === COOKIES BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  border-top: 2px solid var(--accent);
  padding: 20px 30px;
  z-index: 9998;
  display: none;
}

#cookie-banner.is--visible { display: block; }

.cookie-banner_inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner_text {
  flex: 1;
  font-size: 0.85rem;
  color: rgba(239,239,226,0.7);
  line-height: 1.6;
  min-width: 260px;
}

.cookie-banner_text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner_actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  padding: 10px 24px;
  background: var(--accent);
  border: none;
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover { background: #4da834; }

.btn-cookie-decline {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(239,239,226,0.25);
  color: rgba(239,239,226,0.55);
  font-family: 'Oswald', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-cookie-decline:hover {
  border-color: rgba(239,239,226,0.5);
  color: var(--primary);
}

@media screen and (max-width: 600px) {
  #cookie-banner { padding: 16px 20px; }
  .cookie-banner_actions { width: 100%; }
  .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
}

/* === PETAL CANVAS === */
#petal-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.petal {
  position: absolute;
  top: -80px;
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes fall-a {
  0%   { transform: translateX(0) translateY(-80px) rotate(0deg) scale(1); opacity: 0; }
  5%   { opacity: 1; }
  85%  { opacity: 0.9; }
  100% { transform: translateX(120px) translateY(110vh) rotate(540deg) scale(0.7); opacity: 0; }
}
@keyframes fall-b {
  0%   { transform: translateX(0) translateY(-80px) rotate(0deg) scale(1); opacity: 0; }
  5%   { opacity: 1; }
  85%  { opacity: 0.9; }
  100% { transform: translateX(-90px) translateY(110vh) rotate(-420deg) scale(0.6); opacity: 0; }
}
@keyframes fall-c {
  0%   { transform: translateX(0) translateY(-80px) rotate(45deg) scale(1); opacity: 0; }
  5%   { opacity: 1; }
  40%  { transform: translateX(60px) translateY(50vh) rotate(200deg) scale(0.9); }
  85%  { opacity: 0.9; }
  100% { transform: translateX(-50px) translateY(110vh) rotate(600deg) scale(0.65); opacity: 0; }
}

/* === HERO IMAGE ANIMATIONS === */
.home-hero_image { opacity: 0; }
.home-hero_title  { opacity: 0; }
.home-hero_subtitle { opacity: 0; }

/* === UTILITY === */
.mt-0  { margin-top: 0; }
.mb-40 { margin-bottom: 40px; }
.text-accent { color: var(--accent); }
.text-muted  { color: rgba(239,239,226,0.45); }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 0; }

/* === SELECTION === */
::selection { background: var(--accent); color: #000; }
