/* =========================================================
   ADD Beauty Academy — Premium NiSV Landing Template
   Structure: responsive HTML template with SEO-growth section
   Fonts: Cormorant Garamond + Manrope
========================================================= */

:root {
  --bg: #FBF7F0;
  --bg-soft: #F4E9DD;
  --bg-light: #FFFDF8;
  --text: #231D19;
  --text-soft: #6D5F55;
  --muted: #9C8876;
  --line: rgba(35, 29, 25, 0.12);
  --gold: #C6A46A;
  --gold-dark: #9A7441;
  --taupe: #D9C4AA;
  --dark: #2B2521;
  --dark-2: #171310;
  --white: #FFFDF8;
  --shadow: 0 24px 70px rgba(43, 37, 33, 0.10);
  --shadow-soft: 0 18px 45px rgba(43, 37, 33, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1220px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(198, 164, 106, 0.18), transparent 35%),
    radial-gradient(circle at 90% 12%, rgba(217, 196, 170, 0.22), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 108px 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--dark);
  color: var(--white);
  padding: 12px 16px;
  z-index: 1000;
}

.skip-link:focus {
  top: 20px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 240, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(35, 29, 25, 0.08);
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(251, 247, 240, 0.94);
  box-shadow: 0 10px 40px rgba(43, 37, 33, 0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(43, 37, 33, 0.12);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  transition: 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-soft);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-light);
  cursor: pointer;
  place-items: center;
  padding: 10px;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 2px 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

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

.btn-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(43, 37, 33, 0.16);
}

.btn-dark:hover {
  background: var(--dark-2);
  box-shadow: 0 24px 46px rgba(43, 37, 33, 0.20);
}

.btn-outline {
  background: rgba(255, 253, 248, 0.55);
  color: var(--text);
  border-color: rgba(43, 37, 33, 0.18);
}

.btn-outline:hover {
  background: var(--bg-light);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.35);
}

.full {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  padding-top: 96px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 64px;
  align-items: center;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.55;
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  background: rgba(198, 164, 106, 0.14);
  top: 120px;
  left: -120px;
}

.orb-two {
  width: 420px;
  height: 420px;
  background: rgba(217, 196, 170, 0.20);
  bottom: -160px;
  right: -140px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: var(--gold-dark);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-head);
  letter-spacing: -0.045em;
  color: var(--text);
}

h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 19px;
  line-height: 1.75;
  color: var(--text);
  margin: 28px 0 14px;
  max-width: 720px;
}

.hero-sub {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 650px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.mini-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.mini-trust div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.56);
}

.mini-trust strong,
.mini-trust span {
  display: block;
}

.mini-trust strong {
  font-size: 14px;
}

.mini-trust span {
  color: var(--text-soft);
  font-size: 12px;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 42px;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.74), rgba(217,196,170,0.28)),
    var(--bg-light);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: min(610px, 60vw);
  object-fit: cover;
  border-radius: 32px;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 26px;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(255, 253, 248, 0.65);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  color: var(--text-soft);
  font-size: 12px;
  margin-top: 2px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(198, 164, 106, 0.18);
}

.card-top {
  top: 34px;
  left: -32px;
}

.card-bottom {
  right: -20px;
  bottom: 38px;
  display: block;
  max-width: 260px;
}

/* Trust bar */

.trust-bar {
  padding: 26px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.trust-item {
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin-top: 8px;
}

.trust-item p {
  margin: 4px 0 0;
  color: var(--text-soft);
  font-size: 14px;
}

/* Common sections */

.section-head {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head p {
  margin: 18px auto 0;
  color: var(--text-soft);
  max-width: 720px;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.soft-card {
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 18px 42px rgba(43, 37, 33, 0.05);
  transition: .25s ease;
}

.soft-card:hover,
.course-card:hover,
.blog-card:hover,
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--gold-dark);
  border-radius: 50%;
  margin-bottom: 20px;
}

.soft-card p,
.course-card p,
.package-card p,
.seo-benefit p,
.blog-card p,
.review-card p,
.timeline-item p {
  color: var(--text-soft);
}

/* Why */

.why {
  background: linear-gradient(180deg, rgba(255,253,248,0.55), rgba(244,233,221,0.5));
}

.why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 56px;
  align-items: start;
}

.why-copy p {
  color: var(--text-soft);
  margin-top: 22px;
}

.signature-block {
  margin-top: 34px;
  padding: 24px;
  border-radius: 26px;
  background: var(--dark);
  color: var(--white);
  max-width: 440px;
}

.signature-block img {
  max-width: 260px;
  margin-bottom: 14px;
}

.signature-block span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 14px;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
}

.why-row > strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--gold-dark);
}

/* Courses */

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.course-card {
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 30px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  transition: .25s ease;
}

.course-card.featured {
  background:
    linear-gradient(160deg, rgba(198, 164, 106, 0.16), rgba(255, 253, 248, 0.88)),
    var(--bg-light);
  border-color: rgba(198, 164, 106, 0.34);
}

.course-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198, 164, 106, 0.14);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.badge.gold {
  background: var(--gold);
  color: var(--dark);
}

.badge.light {
  background: rgba(255,253,248,0.18);
  color: var(--white);
}

.price {
  font-weight: 900;
  color: var(--dark);
}

.course-card ul {
  margin: 18px 0 24px;
  padding-left: 18px;
  color: var(--text-soft);
}

.course-link {
  margin-top: auto;
  font-weight: 900;
  color: var(--gold-dark);
}

.course-cta {
  background: var(--dark);
  color: var(--white);
}

.course-cta h3,
.course-cta p {
  color: var(--white);
}

.course-cta p {
  opacity: .76;
}

/* Packages */

.packages {
  background: rgba(255, 253, 248, 0.46);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.package-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.dark-package {
  background:
    radial-gradient(circle at 100% 0%, rgba(198,164,106,0.22), transparent 35%),
    var(--dark);
  color: var(--white);
}

.dark-package h3,
.dark-package p {
  color: var(--white);
}

.package-price span {
  color: var(--text-soft);
  display: block;
}

.dark-package .package-price span {
  color: rgba(255,253,248,0.58);
}

.package-price strong {
  font-family: var(--font-head);
  font-size: 52px;
  line-height: 1;
}

/* Consultation */

.consultation {
  background:
    radial-gradient(circle at 15% 15%, rgba(198,164,106,0.16), transparent 30%),
    var(--bg-soft);
}

.consult-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 54px;
  align-items: center;
}

.consult-copy p {
  color: var(--text-soft);
  margin: 22px 0;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list span {
  padding: 14px 18px;
  background: rgba(255,253,248,0.68);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 700;
}

.lead-form {
  background: rgba(255,253,248,0.86);
  border: 1px solid rgba(255,253,248,0.7);
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.lead-form p {
  color: var(--text-soft);
}

.lead-form label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(43, 37, 33, 0.14);
  border-radius: 18px;
  background: var(--white);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(198,164,106,0.15);
}

.form-consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  color: var(--text-soft);
  font-size: 13px !important;
}

.form-consent input {
  width: 18px;
  height: 18px;
}

/* Timeline */

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.timeline-item {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,253,248,0.76);
  min-height: 230px;
}

.timeline-item span {
  display: inline-flex;
  font-family: var(--font-head);
  font-size: 38px;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

/* Schedule */

.schedule {
  background: rgba(255,253,248,0.48);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: center;
}

.schedule-copy p {
  color: var(--text-soft);
}

.schedule-cards {
  display: grid;
  gap: 16px;
}

.date-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(43,37,33,0.04);
}

.date-card span {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

/* SEO System */

.seo-system {
  background:
    radial-gradient(circle at 80% 10%, rgba(198,164,106,0.16), transparent 28%),
    var(--dark);
  color: var(--white);
}

.seo-system h2,
.seo-system .section-head p {
  color: var(--white);
}

.seo-system .section-head p {
  opacity: .72;
}

.seo-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.seo-panel {
  border-radius: 36px;
  background: rgba(255,253,248,0.08);
  border: 1px solid rgba(255,253,248,0.12);
  padding: 22px;
  box-shadow: 0 34px 80px rgba(0,0,0,0.24);
}

.panel-header {
  height: 38px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.panel-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,253,248,0.32);
}

.seo-dashboard {
  min-height: 380px;
  border-radius: 28px;
  padding: 34px;
  background:
    linear-gradient(160deg, rgba(255,253,248,0.16), rgba(255,253,248,0.06));
}

.seo-dashboard p {
  color: rgba(255,253,248,0.68);
}

.seo-bars {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.seo-bars span {
  display: block;
  width: var(--w);
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(255,253,248,0.65));
}

.seo-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.seo-benefit {
  background: rgba(255,253,248,0.08);
  border: 1px solid rgba(255,253,248,0.12);
  border-radius: 28px;
  padding: 26px;
}

.seo-benefit strong {
  color: var(--gold);
}

.seo-benefit p {
  color: rgba(255,253,248,0.68);
}

/* Blog */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  min-height: 320px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  transition: .25s ease;
}

.blog-card span {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.blog-card a {
  color: var(--gold-dark);
  font-weight: 900;
}

/* Team */

.team {
  background: rgba(255,253,248,0.46);
}

.team-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 54px;
  align-items: center;
}

.team-image {
  border-radius: 38px;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.team-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
}

.team-copy p {
  color: var(--text-soft);
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.team-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text-soft);
  font-weight: 800;
  font-size: 13px;
}

/* Reviews */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  transition: .25s ease;
}

.stars {
  color: var(--gold-dark);
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 54px;
}

.faq-copy p {
  color: var(--text-soft);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px;
  text-align: left;
  font-weight: 900;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 20px;
  color: var(--gold-dark);
  font-size: 22px;
}

.faq-item.open button::after {
  content: "–";
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-item.open .faq-content {
  max-height: 220px;
}

.faq-content p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--text-soft);
}

/* Final CTA */

.final-cta {
  padding-top: 40px;
}

.final-box {
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 20%, rgba(198,164,106,0.26), transparent 30%),
    var(--dark);
  color: var(--white);
  text-align: center;
  padding: 76px 34px;
  box-shadow: 0 36px 90px rgba(43,37,33,0.22);
}

.final-box h2 {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.final-box p {
  color: rgba(255,253,248,0.72);
  max-width: 720px;
  margin: 22px auto 0;
}

/* Contacts */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 28px;
}

.contact-info,
.map-placeholder {
  border-radius: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.contact-lines {
  margin: 28px 0;
}

.contact-lines p {
  margin: 12px 0;
  color: var(--text-soft);
}

.contact-lines strong {
  color: var(--text);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-placeholder {
  min-height: 420px;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(255,253,248,.78), rgba(255,253,248,.78)),
    radial-gradient(circle at 20% 30%, rgba(198,164,106,.38), transparent 24%),
    radial-gradient(circle at 70% 60%, rgba(217,196,170,.48), transparent 26%),
    var(--bg-soft);
}

.map-placeholder span {
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
}

.map-placeholder strong {
  font-family: var(--font-head);
  font-size: 44px;
  line-height: 1;
  margin: 12px 0;
}

/* Footer */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.footer .brand-mark {
  background: var(--white);
  color: var(--dark);
}

.footer p,
.footer a,
.footer-bottom {
  color: rgba(255,253,248,0.62);
}

.footer h3 {
  margin-bottom: 18px;
}

.footer a {
  display: block;
  margin: 9px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,253,248,0.12);
  margin-top: 46px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

/* Floating elements */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  background: var(--dark);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(43,37,33,0.2);
}

.mobile-sticky-cta {
  display: none;
}

/* Reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

/* Responsive */

@media (max-width: 1100px) {
  .nav,
  .header-phone {
    display: none;
  }

  .burger {
    display: grid;
  }

  .nav.open {
    display: grid;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    padding: 22px;
    background: rgba(255,253,248,0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
  }

  .hero-grid,
  .why-grid,
  .consult-grid,
  .schedule-grid,
  .seo-showcase,
  .team-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .course-grid,
  .cards-grid.three,
  .timeline,
  .blog-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero {
    padding-top: 70px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .btn-small {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .mini-trust,
  .course-grid,
  .cards-grid.three,
  .timeline,
  .blog-grid,
  .review-grid,
  .package-grid,
  .seo-benefits,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .image-frame img {
    height: 430px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .date-card {
    grid-template-columns: 1fr;
  }

  .section-head {
    text-align: left;
  }

  .lead-form,
  .contact-info,
  .map-placeholder {
    padding: 24px;
    border-radius: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255,253,248,0.92);
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 46px rgba(43,37,33,0.16);
  }

  .mobile-sticky-cta a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
  }

  .mobile-sticky-cta a:first-child {
    background: var(--dark);
    color: var(--white);
  }

  .mobile-sticky-cta a:last-child {
    background: var(--bg-soft);
    color: var(--dark);
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 40px;
  }

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

  .image-frame {
    border-radius: 28px;
  }

  .image-frame img {
    border-radius: 22px;
    height: 360px;
  }
}
