/* ===== ヴォイスアカデミア東京 | some-night-810.css ===== */

/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  background: #fff;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --espresso:    #3b2314;
  --carmine:     #76270c;
  --smalt-blue:  #588c8e;
  --rock:        #6b6560;
  --cream:       #f5f0e8;
  --white:       #ffffff;
  --black:       #1a1a1a;
  --overlay-dark: rgba(0,0,0,.65);
  --gold:        #c9a84c;
}

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
  line-height: 1.3;
}
.kicker {
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: .9rem;
  letter-spacing: .12em;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s;
  border-radius: 0;
}
.btn-carmine      { background: var(--carmine);   color: #fff; }
.btn-carmine:hover{ background: #5a1d08;           color: #fff; }
.btn-teal         { background: var(--smalt-blue); color: #fff; }
.btn-teal:hover   { background: #3d6a6c;           color: #fff; }
.btn-white        { background: #fff; color: var(--espresso); }
.btn-white:hover  { background: var(--cream); }
.btn-outline-white{
  border: 2px solid #fff; color: #fff; background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-outline-teal {
  border: 2px solid var(--smalt-blue); color: var(--smalt-blue); background: transparent;
}
.btn-outline-teal:hover { background: var(--smalt-blue); color: #fff; }

/* ── HEADER ────────────────────────────────────────────── */
.main-header {
  background: var(--espresso);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
}
.header-logo svg { width: 44px; height: 44px; }
.header-logo-text { font-family: 'Noto Serif JP', serif; font-size: 1.1rem; letter-spacing: .08em; color: #fff; }
.header-logo-text span { display: block; font-size: .65rem; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; font-family: 'Noto Sans JP', sans-serif; }

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  letter-spacing: .1em;
  padding: 0 14px;
  height: 70px;
  display: flex;
  align-items: center;
  transition: color .2s, background .2s;
  font-weight: 500;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.main-nav a.active { color: var(--gold); }

.header-cta { display: flex; gap: 8px; }
.header-cta .btn { padding: 8px 18px; font-size: .78rem; }

.hamburger-btn {
  display: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ── HERO CAROUSEL ─────────────────────────────────────── */
.hero-carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .6s cubic-bezier(.77,0,.175,1); }
.carousel-slide {
  min-width: 100%;
  height: 92vh;
  max-height: 780px;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.carousel-slide.is-active .slide-bg { transform: scale(1); }
.slide-overlay { position: absolute; inset: 0; background: var(--overlay-dark); }
.slide-content {
  position: relative; z-index: 2;
  max-width: 700px;
  padding: 0 60px;
  color: #fff;
}
.slide-content .kicker { color: var(--gold); margin-bottom: 12px; }
.slide-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.slide-content p {
  font-size: 1rem;
  margin-bottom: 28px;
  opacity: .9;
  max-width: 520px;
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  width: 48px; height: 48px;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background .2s;
  cursor: pointer;
}
.carousel-btn:hover { background: rgba(255,255,255,.25); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }
.carousel-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.6);
  cursor: pointer; transition: background .2s;
}
.carousel-dot.active { background: #fff; }

/* ── PROMO GRID (masonry-like) ───────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
}
.promo-block {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.promo-block.half   { grid-column: span 2; }
.promo-block.full   { grid-column: span 4; }
.promo-block.quarter{ grid-column: span 1; }
.promo-block.tall   { grid-row: span 2; }
.promo-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.promo-block:hover .promo-media { transform: scale(1.04); }
.promo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%);
}
.promo-block.bg-carmine .promo-overlay,
.promo-block.bg-carmine { background-color: var(--carmine); }
.promo-block.bg-teal    { background-color: var(--smalt-blue); }
.promo-block.bg-espresso{ background-color: var(--espresso); }
.promo-block.bg-rock    { background-color: var(--rock); }
.promo-block.pattern-kraft { background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.promo-content {
  position: relative; z-index: 2;
  padding: 28px 32px;
  color: #fff;
  width: 100%;
}
.promo-content .kicker { color: var(--gold); margin-bottom: 8px; }
.promo-content h2 { font-size: 1.5rem; margin-bottom: 14px; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.promo-content p  { font-size: .88rem; margin-bottom: 16px; opacity: .9; }

/* ── SECTION COMMONS ───────────────────────────────────── */
section { padding: 80px 24px; }
section.dark { background: var(--espresso); color: #fff; }
section.cream { background: var(--cream); }
section.teal  { background: var(--smalt-blue); color: #fff; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .kicker { color: var(--smalt-blue); margin-bottom: 10px; display: block; }
section.dark .section-header .kicker { color: var(--gold); }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-header p  { max-width: 640px; margin: 0 auto; line-height: 1.8; color: #555; }
section.dark .section-header p { color: rgba(255,255,255,.75); }

/* ── ABOUT SECTION ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.about-image img { width: 100%; height: 440px; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 3px solid var(--smalt-blue);
  z-index: -1;
}
.about-text .kicker { color: var(--smalt-blue); display: block; margin-bottom: 10px; }
.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text p  { margin-bottom: 16px; color: #444; line-height: 1.85; }
.about-text .btn { margin-top: 12px; }

/* ── COURSES ───────────────────────────────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  background: #fff;
  border: 1px solid #e8e2d8;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.course-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.course-card-img { height: 200px; overflow: hidden; }
.course-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.course-card:hover .course-card-img img { transform: scale(1.06); }
.course-card-body { padding: 24px; }
.course-card-body .kicker { color: var(--carmine); margin-bottom: 8px; display: block; }
.course-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.course-card-body p  { font-size: .9rem; color: #555; margin-bottom: 16px; line-height: 1.75; }
.course-price { font-size: 1.3rem; font-weight: 700; color: var(--carmine); font-family: 'Noto Serif JP', serif; }
.course-price small { font-size: .8rem; color: #777; font-family: 'Noto Sans JP', sans-serif; font-weight: 400; }

/* ── PRICING ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: transform .25s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  background: rgba(255,255,255,.14);
  border-color: var(--gold);
}
.pricing-card.featured::before {
  content: 'おすすめ';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1a1a1a;
  font-size: .72rem; font-weight: 700;
  padding: 3px 16px; letter-spacing: .1em;
}
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 8px; letter-spacing: .08em; }
.pricing-amount { font-size: 2.6rem; font-weight: 700; font-family: 'Noto Serif JP', serif; margin: 16px 0 4px; color: #fff; }
.pricing-amount sub { font-size: 1rem; font-weight: 400; }
.pricing-amount small { font-size: .85rem; color: rgba(255,255,255,.6); font-family: 'Noto Sans JP', sans-serif; font-weight: 400; }
.pricing-features { margin: 20px 0 28px; text-align: left; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .88rem; color: rgba(255,255,255,.85); }
.pricing-features li i { color: var(--gold); width: 20px; }

/* ── INSTRUCTORS ───────────────────────────────────────── */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.instructor-card { text-align: center; }
.instructor-photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--smalt-blue);
}
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.instructor-card .role { color: var(--smalt-blue); font-size: .85rem; margin-bottom: 12px; display: block; }
.instructor-card p { font-size: .88rem; color: #555; line-height: 1.75; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e0d5c8; }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  color: var(--espresso);
  background: none; border: none;
  font-family: 'Noto Serif JP', serif;
}
.faq-question i { font-size: .85rem; transition: transform .3s; color: var(--smalt-blue); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; color: #555; line-height: 1.85; font-size: .93rem; }
.faq-item.open .faq-answer { display: block; }

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  padding: 32px;
  border-left: 4px solid var(--smalt-blue);
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
}
.testimonial-stars { color: var(--gold); font-size: .9rem; margin-bottom: 12px; }
.testimonial-text { font-style: italic; margin-bottom: 18px; color: #444; line-height: 1.8; font-size: .93rem; }
.testimonial-author { font-weight: 700; font-size: .88rem; }
.testimonial-author span { color: #888; font-weight: 400; }

/* ── CTA STRIP ─────────────────────────────────────────── */
.cta-strip {
  background: var(--carmine);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-strip p  { margin-bottom: 28px; opacity: .9; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-strip .btn { margin: 0 8px; }

/* ── CONTACT SECTION ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 1.8rem; margin-bottom: 20px; }
.contact-info p  { color: #555; margin-bottom: 24px; line-height: 1.85; }
.contact-detail  { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-detail i { color: var(--smalt-blue); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.contact-detail div strong { display: block; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: #888; margin-bottom: 2px; }
.contact-detail div span  { font-size: .95rem; color: #333; }

/* ── FORM ──────────────────────────────────────────────── */
.contact-form { background: #fff; padding: 40px; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .83rem; font-weight: 600; letter-spacing: .08em; color: #555; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #d8d0c4;
  padding: 12px 14px;
  font-size: .93rem;
  font-family: inherit;
  transition: border-color .2s;
  width: 100%;
  background: #faf8f5;
  color: #333;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--smalt-blue); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-required { color: var(--carmine); }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }
.form-note { font-size: .8rem; color: #888; margin-top: 10px; text-align: center; }

/* ── FOOTER ────────────────────────────────────────────── */
.main-footer { background: var(--espresso); color: rgba(255,255,255,.8); padding: 64px 24px 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand svg { width: 36px; height: 36px; }
.footer-brand p { font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.65); }
.footer-col h4 {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--smalt-blue); color: #fff; border-color: var(--smalt-blue); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ── COOKIE BANNER ─────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--espresso);
  border-top: 3px solid var(--smalt-blue);
  color: rgba(255,255,255,.85);
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; z-index: 9999; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: .88rem; line-height: 1.7; flex: 1; min-width: 260px; }
#cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
#cookie-accept { background: var(--smalt-blue); color: #fff; padding: 9px 24px; font-size: .85rem; font-weight: 700; border-radius: 0; cursor: pointer; transition: background .2s; }
#cookie-accept:hover { background: #3d6a6c; }
#cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.7); padding: 9px 20px; font-size: .85rem; cursor: pointer; transition: all .2s; }
#cookie-decline:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* ── MOBILE MENU ───────────────────────────────────────── */
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: var(--espresso);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.mobile-menu-overlay.open { transform: translateX(0); }
.mobile-menu-overlay .close-btn {
  position: absolute; top: 18px; right: 18px;
  color: #fff; font-size: 1.4rem; background: none; border: none; cursor: pointer;
}
.mobile-menu-overlay nav a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85); font-size: 1.1rem;
}
.mobile-menu-overlay nav a:hover { color: #fff; }
.mobile-social { display: flex; gap: 16px; margin-top: 32px; }
.mobile-social a { color: rgba(255,255,255,.6); font-size: 1.3rem; }

/* ── PAGE HERO (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--espresso);
  padding: 80px 24px 60px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../content/hero-1.webp') center/cover no-repeat;
  opacity: .18;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero .kicker { color: var(--gold); margin-bottom: 12px; display: block; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.page-hero p   { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto; }

/* ── BREADCRUMB ────────────────────────────────────────── */
.breadcrumb { background: var(--cream); padding: 10px 24px; font-size: .82rem; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 6px; align-items: center; color: #888; }
.breadcrumb-inner a { color: var(--smalt-blue); }
.breadcrumb-inner i { font-size: .65rem; }

/* ── JOB LISTING ───────────────────────────────────────── */
.job-card {
  border: 1px solid #e0d5c8;
  padding: 28px 32px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transition: box-shadow .2s;
}
.job-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.job-card-info h3 { font-size: 1.1rem; margin-bottom: 6px; }
.job-card-info p  { font-size: .88rem; color: #666; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.job-tag { background: var(--cream); color: var(--espresso); font-size: .75rem; padding: 3px 12px; font-weight: 600; letter-spacing: .05em; }

/* ── TEXT PAGE (privacy, terms, cookies) ──────────────── */
.text-page-section { padding: 72px 24px; }
.text-page-inner { max-width: 860px; margin: 0 auto; }
.text-page-inner h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--espresso); padding-bottom: 8px; border-bottom: 2px solid var(--smalt-blue); }
.text-page-inner h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--espresso); }
.text-page-inner p  { margin-bottom: 14px; color: #444; line-height: 1.85; }
.text-page-inner ul { padding-left: 20px; margin-bottom: 14px; }
.text-page-inner ul li { margin-bottom: 8px; color: #444; list-style: disc; line-height: 1.7; }
.text-page-inner .last-updated { font-size: .83rem; color: #888; margin-bottom: 36px; }

/* ── SVG DIVIDER ───────────────────────────────────────── */
.svg-divider { text-align: center; margin: 8px 0; line-height: 0; }
.svg-divider svg { max-width: 400px; opacity: .5; }

/* ── UTILITIES ─────────────────────────────────────────── */
.text-center  { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.d-flex { display: flex; }
.gap-16 { gap: 16px; }
.flex-center { align-items: center; justify-content: center; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-block.full { grid-column: span 2; }
  .promo-block.quarter { grid-column: span 1; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger-btn { display: block; }
  .slide-content { padding: 0 24px; }
  .carousel-slide { height: 70vh; }
  .promo-grid { grid-template-columns: 1fr; }
  .promo-block.half, .promo-block.full, .promo-block.quarter { grid-column: span 1; }
  .courses-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .instructors-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 56px 18px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .carousel-btn { display: none; }
}
