:root {
    --cream: #F2ECE3;
    --warm-white: #F8F5EE;
    --sand: #D8CBBF;
    --terracotta: #7DA6B8;
    --terracotta-light: #A4C4D2;
    --deep: #000000;
    --mid: #000000;
    --soft: #000000;
    --accent: #27637E;
    --bg:       #F4F8FB;
    --bg2:      #EAF0F6;
    --bg3:      #DDE6EE;
    --sage:     #B7C9D6;
    --sage-d:   #8AA2B6;
    --rose:     #A1B7C7;
    --rose-l:   #C0D2E0;
    --ink:      #000000;
    --ink2:     #000000;
    --ink3:     #000000;
    --line:     #D3DCE6;
    --white:    #FFFFFF;
    --r: 16px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Roboto', sans-serif;
    background: var(--warm-white);
    color: var(--deep);
    font-weight: 300;
    overflow-x: hidden;
  }

  h1, h2, .section-label, .nav-logo, .about-accent-box .big {
    font-family: 'Roboto', sans-serif;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.6rem 4rem;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180,160,130,0.2);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--accent);
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--mid);
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--terracotta); }
  .nav-cta {
    background: var(--terracotta);
    color: white !important;
    padding: 0.55rem 1.4rem;
    border-radius: 25px;
    letter-spacing: 0.1em;
  }
  .nav-cta:hover { background: var(--accent) !important; color: white !important; }

  .nav-mobile {
    display: none;
    align-items: center;
    gap: 1rem;
  }
  .nav-phone {
    color: var(--deep);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  .nav-phone:hover { color: var(--terracotta); }
  .nav-burger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--deep);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
  }
  .nav-burger:hover { color: var(--terracotta); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--sand);
    padding: 1.5rem 2rem;
    z-index: 99;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  .mobile-menu.active {
    display: block;
  }
  .mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .mobile-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .mobile-links a:hover {
    color: var(--terracotta);
  }
  .mobile-links .nav-cta {
    background: var(--terracotta);
    color: white !important;
    padding: 0.55rem 1.4rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 0.5rem;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
  }
  .hero-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 4rem 6rem 6rem;
    position: relative;
  }
  .hero-text::after {
    content: '';
    position: absolute; right: 0; top: 10%; bottom: 10%;
    width: 1px; background: var(--sand);
  }
  .hero-tag {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 1.8rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-tag::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--accent);
  }
  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--deep);
    margin-bottom: 0.3rem;
  }
  em {
    font-style: normal;
  }
  h1 em {
    color: var(--deep);
  }
  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--soft);
    margin-bottom: 2.4rem;
    font-weight: 300;
  }
  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--mid);
    max-width: 440px;
    margin-bottom: 3rem;
  }
  .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--terracotta); color: white;
    padding: 0.9rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    border: none; cursor: pointer; border-radius: 25px;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none; display: inline-block;
  }
  .btn-primary:hover { background: var(--accent); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: var(--mid); border: 1px solid var(--sand);
    padding: 0.9rem 2.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; border-radius: 25px;
    transition: border-color 0.3s, color 0.3s;
    text-decoration: none; display: inline-block;
  }
  .btn-outline:hover { border-color: var(--terracotta); color: var(--terracotta); }

  .hero-image {
    position: relative; overflow: hidden;
    background: var(--cream);
    min-height: 100vh;
  }
  .hero-image.hero-photo-fallback {
    background: linear-gradient(135deg, #A4C4D2, #7DA6B8);
  }
  .hero-image-inner {
    width: 100%; height: 100%;
    background:
      radial-gradient(ellipse at 60% 30%, rgba(181,114,74,0.12) 0%, transparent 60%),
      radial-gradient(ellipse at 30% 80%, rgba(212,196,168,0.3) 0%, transparent 50%),
      var(--cream);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-photo {
    width: 100%; max-width: 800px; height: auto; aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }

  /* ── INTRO STRIP ── */
  .strip {
    background: var(--terracotta);
    color: var(--white);
    padding: 3rem 6rem;
    display: flex; align-items: center; justify-content: space-between; gap: 3rem;
    flex-wrap: wrap;
  }
  .strip-stat { text-align: center; }
  .strip-stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--white);
    line-height: 1;
  }
  .strip-stat .label {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--white); margin-top: 0.4rem;
  }
  .strip-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.25); }
  .strip-quote {
    max-width: 500px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 300;
    color: var(--white); line-height: 1.6;
  }

  /* ── SERVICES ── */
  section { padding: 6rem 6rem; }
  .section-label {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--accent);
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; line-height: 1.2;
    color: var(--deep); margin-bottom: 3.5rem;
  }
  h2 em { color: var(--deep); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .service-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    position: relative; overflow: hidden;
    transition: background 0.4s;
    cursor: default;
  }
  .service-card:hover { background: var(--terracotta); }
  .service-card:hover .service-title,
  .service-card:hover .service-text,
  .service-card:hover .service-list li { color: var(--white); }
  .service-card:hover .service-num { color: rgba(255,255,255,0.3); }
  .service-card:hover .service-icon { border-color: rgba(255,255,255,0.4); color: var(--white); }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; font-weight: 300; line-height: 1;
    color: rgba(44,35,24,0.07);
    position: absolute; top: 1rem; right: 1.5rem;
    transition: color 0.4s;
  }
  .service-icon {
    width: 52px; height: 52px;
    border: 1px solid var(--sand);
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--terracotta); margin-bottom: 1.8rem;
    transition: all 0.4s;
    font-size: 1.4rem;
    line-height: 1;
  }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    color: var(--deep); margin-bottom: 1rem;
    transition: color 0.4s; line-height: 1.2;
  }
  .service-text {
    font-size: 0.88rem; line-height: 1.8;
    color: var(--mid); transition: color 0.4s;
    margin-bottom: 1.2rem;
  }
  .service-list { list-style: none; }
  .service-list li {
    font-size: 0.82rem; color: var(--soft);
    padding: 0.3rem 0; padding-left: 1rem;
    position: relative; transition: color 0.4s;
  }
  .service-list li::before {
    content: '—'; position: absolute; left: 0;
    color: var(--terracotta); font-size: 0.7rem;
  }

  /* ── ABOUT ── */
  #about { background: var(--cream); padding: 6rem 0; }
  .about-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr);
    justify-content: center;
    gap: 7rem; align-items: center;
    width: min(100%, 1000px);
    margin: 0 auto;
  }
  .about-visual {
    position: relative;
    max-width: 100%;
  }
  .about-content {
    max-width: none;
    width: 100%;
  }

  /* ── DIPLOMAS ── */
  #diplomas { background: var(--warm-white); }
  .diplomas-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 1.75rem;
    padding-left: 0;
  }
  .diplomas-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--deep);
    line-height: 1.55;
  }
  .diplomas-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
  }
  .diplomas-list .diploma-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--deep);
    margin-bottom: 0.2rem;
  }
  .diplomas-list .diploma-subtitle {
    display: block;
    font-size: 0.95rem;
    color: var(--mid);
    margin-bottom: 0.25rem;
  }
  .diplomas-list .diploma-year {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .certificates-slider {
    margin-top: 4rem;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
  }
  .certificates-slider h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: var(--deep);
    margin-bottom: 2rem;
  }
  .slider-container {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }
  .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  .slide {
    min-width: 42%;
    flex: 0 0 42%;
    position: relative;
    padding: 0.3rem;
  }
  .slide img {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 6px;
    object-fit: cover;
  }
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    color: var(--deep);
    font-size: 1.7rem;
    cursor: pointer;
    padding: 0.45rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
  }
  .slider-btn:hover {
    background: var(--white);
  }
  .prev { left: 0.75rem; }
  .next { right: 0.75rem; }
  .slider-dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    align-items: center;
  }
  .dot {
    display: inline-block;
    width: 48px;
    height: 6px;
    border-radius: 999px;
    background: var(--line);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .dot.active {
    background: var(--accent);
    transform: scale(1.1);
  }

  .cert-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    z-index: 1200;
  }

  .cert-lightbox.active {
    display: flex;
  }

  .cert-lightbox img {
    max-width: min(92vw, 1200px);
    max-height: 88vh;
    width: auto;
    height: 600px;
    border-radius: 10px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  }

  .cert-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111827;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .about-photo-frame {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(181,114,74,0.15), rgba(212,196,168,0.35));
    border-radius: 4px;
    position: relative; overflow: hidden;
  }
  .about-photo-frame::after {
    content: 'Фото';
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; color: var(--soft);
  }
  .about-accent-box {
    position: absolute; bottom: -2rem; right: -2rem;
    width: 140px; height: 140px;
    background: var(--terracotta);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: white; text-align: center;
    border-radius: 2px;
  }
  .about-accent-box .big { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; line-height: 1; }
  .about-accent-box .small { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

  .about-content p {
    font-size: 0.95rem; line-height: 1.9; color: var(--mid); margin-bottom: 1.4rem;
  }
  .about-content p:first-of-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; color: var(--deep); line-height: 1.6;
  }
  .credentials {
    margin-top: 2.5rem;
    display: flex; flex-direction: column; gap: 0.7rem;
  }
  .cred-item {
    display: flex; gap: 1rem; align-items: flex-start;
    font-size: 0.85rem; color: var(--mid);
  }
  .cred-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--terracotta); margin-top: 0.45rem; flex-shrink: 0;
  }

  /* ── APPROACH ── */
  .approach-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    margin-top: 0;
  }
  .approach-item {
    padding: 2rem 0; border-top: 2px solid var(--sand);
    transition: border-color 0.3s;
  }
  .approach-item:hover { border-color: var(--terracotta); }
  .approach-step {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem; color: var(--terracotta); margin-bottom: 0.8rem;
    letter-spacing: 0.08em;
  }
  .approach-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--deep); margin-bottom: 0.8rem; font-weight: 400;
  }
  .approach-text { font-size: 0.85rem; color: var(--soft); line-height: 1.75; }

  /* ── THEMES ── */
  #themes { background: var(--cream); }
  .themes-columns {
    columns: 3; gap: 4rem;
    column-rule: 1px solid var(--sand);
  }
  .theme-group { break-inside: avoid; margin-bottom: 2.5rem; }
  .theme-group-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; color: var(--deep); margin-bottom: 0.8rem; font-weight: 400;
  }
  .theme-list { list-style: none; }
  .theme-list li {
    font-size: 0.85rem; color: var(--mid); padding: 0.25rem 0;
    padding-left: 1rem; position: relative;
  }
  .theme-list li::before {
    content: '·'; position: absolute; left: 0; color: var(--terracotta);
  }

  /* ── FORMAT ── */
  .format-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  }
  .format-card {
    border: 1px solid var(--sand); padding: 2.5rem;
    border-radius: 4px; position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .format-card:hover {
    border-color: var(--terracotta);
    box-shadow: 0 8px 40px rgba(181,114,74,0.1);
  }
  .format-card.featured {
    background: var(--terracotta); border-color: var(--terracotta); color: var(--white);
  }
  .format-card.featured .format-title,
  .format-card.featured .format-price,
  .format-card.featured .format-desc { color: var(--white); }
  .format-card.featured .format-detail { color: var(--white); }
  .format-badge {
    position: absolute; top: -12px; left: 2rem;
    background: var(--terracotta); color: white;
    font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 0.3rem 0.9rem; border-radius: 25px;
  }
  .format-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: var(--deep); margin-bottom: 0.5rem; font-weight: 400;
  }
  .format-duration {
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 1.2rem;
  }
  .format-desc { font-size: 0.88rem; color: var(--mid); line-height: 1.75; margin-bottom: 1.5rem; }
  .format-details { list-style: none; }
  .format-detail {
    font-size: 0.8rem; color: var(--soft);
    padding: 0.3rem 0; padding-left: 1rem; position: relative;
  }
  .format-detail::before {
    content: '✓'; position: absolute; left: 0; color: var(--terracotta); font-size: 0.7rem;
  }
  .format-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; color: var(--deep); margin-top: 1.5rem;
    display: flex; align-items: baseline; gap: 0.3rem;
  }
  .format-price span { font-size: 0.75rem; color: var(--soft); font-family: 'Jost', sans-serif; }

  /* ── ARTICLES ── */
  .articles-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  }
  .article-card {
    border-radius: 4px; overflow: hidden;
    border: 1px solid var(--sand);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  }
  .article-image {
    width: 100%; height: 200px;
    background: var(--bg2);
  }
  .article-content {
    padding: 2rem;
  }
  .article-date {
    font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 0.5rem;
  }
  .article-title {
    font-size: 1.1rem; color: var(--deep); margin-bottom: 0.75rem;
    font-weight: 500; line-height: 1.4;
  }
  .article-excerpt {
    font-size: 0.88rem; color: var(--soft); line-height: 1.6;
    margin-bottom: 1rem;
  }
  .article-link {
    color: var(--terracotta); text-decoration: none; font-size: 0.85rem;
    font-weight: 500; transition: color 0.3s;
  }
  .article-link:hover {
    color: var(--sage-d);
  }

  /* ── FAQ ── */
  #faq { background: var(--warm-white); }
  #themes { display: none; }
.faq-wrap { max-width: none; width: 100%; margin: 0 auto; padding: 0 0.5rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left;
  gap: 16px;
}
.faq-q { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--ink); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg3); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .25s, transform .35s;
  font-size: 1.2rem; color: var(--ink2);
}
.faq-item.open .faq-toggle {
  background: var(--sage); color: white; transform: rotate(45deg);
}
.faq-a-wrap { 
  overflow: hidden; 
  max-height: 0; 
  transition: max-height .4s ease; 
}
.faq-item.open .faq-a-wrap { 
  max-height: 500px; 
}
.faq-a { 
  padding: 0 0 24px 0; 
  font-size: .9rem; 
  color: var(--ink2); 
  line-height: 1.8; 
}

/* ── CONTACT ── */
  #contact {
    background: var(--warm-white); color: var(--deep);
  }
  #contact .section-label { color: var(--accent); }
  #contact .section-label::before { background: var(--accent); }
  #contact h2 { color: var(--deep); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
  .contact-info p { font-size: 0.95rem; line-height: 1.85; color: var(--deep); margin-bottom: 2rem; }
  .contact-details { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
  .contact-detail {
    display: flex; gap: 1rem; align-items: center;
    font-size: 0.9rem; color: var(--deep);
  }
  .contact-detail a {
    color: var(--deep);
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-detail a:hover {
    color: var(--terracotta);
  }
  .contact-detail-icon {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(141, 157, 173, 0.4);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 0.95rem; line-height: 1;
    font-family: 'Roboto', sans-serif;
    flex-shrink: 0;
  }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-label {
    font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--deep); opacity: 0.8;
  }
  .form-input, .form-textarea {
    background: #FFFFFF;
    border: 1px solid rgba(141, 157, 173, 0.55);
    border-radius: 2px; padding: 0.85rem 1rem;
    color: var(--deep); font-family: 'Jost', sans-serif; font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
  }
  .form-input:focus, .form-textarea:focus { border-color: var(--accent); }
  .form-input::placeholder, .form-textarea::placeholder { color: rgba(92, 114, 135, 0.7); }
  .form-textarea { resize: vertical; min-height: 100px; }
  .form-note {
    font-size: 0.75rem; color: rgba(92, 114, 135, 0.8); line-height: 1.6;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    padding: 3rem 6rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--cream); font-weight: 400;
  }
  .footer-copy { font-size: 0.75rem; color: var(--sand); letter-spacing: 0.06em; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 0.72rem; color: var(--cream); text-decoration: none; letter-spacing: 0.08em; transition: color 0.3s; }
  .footer-links a:hover { color: var(--accent); }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 1.4rem 2rem; }
    .hero { grid-template-columns: 1fr; }
    .hero-text { padding: 4rem 2.5rem; }
    .hero-text::after { display: none; }
    .hero-image { min-height: 350px; }
    section { padding: 4rem 2.5rem; }
    .strip { padding: 2.5rem 2.5rem; }
    .services-grid { grid-template-columns: 1fr; gap: 2px; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { max-width: 380px; }
    .approach-grid { grid-template-columns: 1fr 1fr; }
    .themes-columns { columns: 2; }
    .format-cards { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    footer { flex-direction: column; text-align: center; padding: 2rem; }
    .diplomas-grid { grid-template-columns: 1fr; }
    .slider-container { max-width: 100%; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile { display: flex; }
    .nav-burger { display: block; }
    .slide { min-width: 100%; flex: 0 0 100%; }
  }
  @media (max-width: 640px) {
    nav { padding: 1.2rem 1.5rem; }
    .hero-text { padding: 3rem 1.5rem; }
    section { padding: 3rem 1.5rem; }
    .strip { padding: 2rem 1.5rem; flex-direction: column; gap: 1.5rem; }
    .strip-divider { width: 60px; height: 1px; }
    .about-content { padding: 0 1.5rem 0 1.5rem; }
    .approach-grid { grid-template-columns: 1fr; }
    .themes-columns { columns: 1; }
    .form-row { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; }
    .diplomas-grid { grid-template-columns: 1fr; }
    .slider-btn { width: 40px; height: 40px; font-size: 1.5rem; }
    .dot { width: 10px; height: 10px; }
  }