*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #1A1A1A;
  --orange: #E8690A;
  --orange-light: #F07A20;
  --cream: #F5F0E8;
  --gray: #8A8A8A;
  --light: #F9F9F9;
  --white: #FFFFFF;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--black); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 72px; background: rgba(26,26,26,0.96); backdrop-filter: blur(12px); }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-h { width: 40px; height: 40px; background: var(--orange); display: flex; align-items: center; justify-content: center; border-radius: 4px; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--white); letter-spacing: -1px; flex-shrink: 0; }
.logo-text { font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--white); letter-spacing: 0.04em; }
.logo-text span { color: var(--orange); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { background: var(--orange); color: var(--white); border: none; padding: 10px 24px; border-radius: 2px; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--orange-light); }

#hero { min-height: 100vh; background: var(--black); display: grid; place-items: center; position: relative; overflow: hidden; padding: 120px 48px 80px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(232,105,10,0.12) 0%, transparent 70%); pointer-events: none; }
.hero-line { position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: linear-gradient(to bottom, var(--orange) 0%, transparent 100%); opacity: 0.6; }
.hero-inner { max-width: 1100px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.hero-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 28px; font-weight: 500; }
.hero-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--orange); }
.hero-h1 { font-family: var(--serif); font-size: clamp(38px, 5vw, 64px); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 28px; letter-spacing: -0.01em; }
.hero-h1 em { color: var(--orange); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; max-width: 440px; margin-bottom: 44px; }
.hero-btns { display: flex; flex-direction: column; gap: 14px; }
.btn-primary { background: var(--orange); color: var(--white); padding: 18px 32px; border-radius: 2px; font-size: 14px; font-weight: 500; letter-spacing: 0.03em; text-decoration: none; text-align: center; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); padding: 18px 32px; border-radius: 2px; font-size: 14px; letter-spacing: 0.03em; text-decoration: none; text-align: center; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.hero-note { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.35); font-style: italic; line-height: 1.5; }
.hero-right { display: flex; flex-direction: column; gap: 24px; }
.hero-stat { border-left: 2px solid var(--orange); padding: 20px 24px; background: rgba(255,255,255,0.03); }
.hero-stat-num { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; }

section { padding: 100px 48px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; font-weight: 500; }
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--orange); display: block; }
h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; margin-bottom: 20px; }
.section-sub { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 560px; margin-bottom: 60px; }

#club, #school, #faq { background: var(--cream); }
.benefits-grid, .approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.benefits-grid { margin-bottom: 60px; }
.benefit { background: var(--white); padding: 36px 32px; border-top: 3px solid transparent; transition: border-color 0.2s; }
.benefit:hover { border-top-color: var(--orange); }
.benefit-icon { width: 40px; height: 40px; background: var(--orange); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--white); border-radius: 2px; }
.benefit h3, .approach-item h3, .team-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 12px; line-height: 1.2; }
.benefit p, .service-card p, .team-card p, .review-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.referral-box { background: var(--black); padding: 60px 56px; }
.referral-box h3 { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 44px; letter-spacing: -0.01em; }
.steps-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-flow::before { content: ''; position: absolute; top: 24px; left: 12%; right: 12%; height: 1px; background: rgba(232,105,10,0.3); }
.step { text-align: center; padding: 0 16px; }
.step-num { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--orange); color: var(--orange); font-family: var(--serif); font-size: 20px; font-weight: 400; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; background: var(--black); position: relative; z-index: 1; }
.step p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.referral-cta { text-align: center; margin-top: 48px; }

#services, #numbers, #reviews, #social-contacts { background: var(--white); }
.services-grid, .team-grid, .numbers-grid { display: grid; gap: 2px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { padding: 44px 36px; background: var(--light); border-bottom: 3px solid transparent; transition: border-color 0.2s, background 0.2s; position: relative; overflow: hidden; }
.service-card:hover { background: var(--cream); }
.service-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; font-weight: 600; }
.service-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 18px; line-height: 1.2; }

#properties { background: var(--cream); }
.properties-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 8px; }
.property-card { position: relative; display: flex; flex-direction: column; text-align: left; width: 100%; min-height: 320px; padding: 0; border: 1px solid rgba(26,26,26,0.08); background: var(--white); color: inherit; font: inherit; cursor: pointer; overflow: hidden; appearance: none; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.property-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(26,26,26,0.1); border-color: rgba(232,105,10,0.35); }
.property-card.is-active { border-color: var(--orange); box-shadow: 0 18px 48px rgba(26,26,26,0.12); }
.property-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.property-card--bg { background-image: linear-gradient(180deg, rgba(26,26,26,0.15) 0%, rgba(26,26,26,0.72) 100%), var(--property-bg); background-size: cover; background-position: center; color: var(--white); }
.property-card--bg .property-card-body { margin-top: auto; }
.property-card--bg h3 { color: var(--white); }
.property-card--bg p { color: rgba(255,255,255,0.78); }
.property-card--bg .property-card-hint { color: var(--orange); }
.property-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--black); }
.property-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.property-card:hover .property-card-media img { transform: scale(1.04); }
.property-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.property-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.2; margin: 0; }
.property-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0; }
.property-card-hint { margin-top: auto; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); font-weight: 600; }
.property-galleries { margin-top: 8px; }
.property-gallery { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 0.45s ease, opacity 0.35s ease, margin 0.45s ease; margin-top: 0; }
.property-gallery.is-open { grid-template-rows: 1fr; opacity: 1; margin-top: 28px; }
.property-gallery[hidden] { display: grid; }
.property-gallery-inner { overflow: hidden; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; min-height: 0; }
.property-photo { position: relative; display: block; width: 100%; aspect-ratio: 4 / 3; padding: 0; border: none; background: var(--black); cursor: zoom-in; overflow: hidden; appearance: none; }
.property-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease, filter 0.35s ease; }
.property-photo-caption { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 24px; text-align: center; font-family: var(--serif); font-size: clamp(16px, 2vw, 22px); font-weight: 400; line-height: 1.45; color: var(--white); opacity: 0; transform: translateY(8px); transition: opacity 0.35s ease, transform 0.35s ease; pointer-events: none; text-shadow: 0 2px 16px rgba(0,0,0,0.45); }
.property-photo--has-caption:hover img { transform: scale(1.03); filter: blur(2px) brightness(0.55); }
.property-photo--has-caption:hover .property-photo-caption { opacity: 1; transform: none; }
.property-photo:not(.property-photo--has-caption):hover img { transform: scale(1.03); }
.property-gallery-empty { grid-column: 1 / -1; padding: 40px 24px; text-align: center; color: var(--gray); font-size: 14px; background: rgba(255,255,255,0.7); border: 1px dashed rgba(26,26,26,0.12); }

.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 32px; background: rgba(10,10,10,0.88); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox[hidden] { display: flex; }
.lightbox-image { max-width: min(1100px, 92vw); max-height: 88vh; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,0.45); transform: scale(0.96); transition: transform 0.3s ease; }
.lightbox.is-open .lightbox-image { transform: none; }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border: none; background: transparent; color: var(--white); font-size: 36px; line-height: 1; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }

#approach { background: var(--black); color: var(--white); }
#approach h2 { color: var(--white); }
#approach .section-sub { color: rgba(255,255,255,0.5); }
.approach-item { padding: 40px 36px; background: rgba(255,255,255,0.04); border-left: 2px solid rgba(232,105,10,0); transition: border-color 0.2s, background 0.2s; }
.approach-item:hover { border-left-color: var(--orange); background: rgba(255,255,255,0.07); }
.approach-item h3 { color: var(--white); font-weight: 400; }
.approach-item p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

#team { background: var(--cream); }
.team-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.team-card { background: var(--white); padding: 40px 32px; border: 3px solid transparent; border-top: 3px solid transparent; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; text-align: left; width: 100%; cursor: pointer; font: inherit; color: inherit; appearance: none; }
.team-card:hover { border-top-color: var(--orange); }
.team-card.is-active { border-color: var(--orange); box-shadow: 0 12px 40px rgba(26,26,26,0.08); transform: translateY(-2px); }
.team-card.is-active .team-avatar { outline: 3px solid var(--orange); outline-offset: 3px; }
.team-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--black); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 24px; color: var(--orange); overflow: hidden; flex-shrink: 0; transition: outline 0.2s; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-avatar span { line-height: 1; }
.team-card .role { font-size: 12px; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.team-reviews { margin-bottom: 60px; }
.team-reviews-head { margin-bottom: 24px; }
.team-reviews-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-reviews-title { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 400; line-height: 1.2; }
.team-reviews-title span { color: var(--orange); }
.team-reviews-set[hidden] { display: none; }
.team-reviews-intro { margin-bottom: 24px; font-size: 14px; color: var(--gray); line-height: 1.8; max-width: 720px; }
.team-reviews-track { display: flex; gap: 20px; overflow-x: auto; padding: 4px 4px 20px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--orange) transparent; }
.team-reviews-track[hidden] { display: none; }
.team-review-card { flex: 0 0 min(360px, 82vw); scroll-snap-align: start; background: var(--white); border: 1px solid rgba(26,26,26,0.08); padding: 28px 24px; display: flex; flex-direction: column; gap: 16px; min-height: 220px; }
.team-review-card::before { content: ''; width: 40px; height: 3px; background: var(--orange); }
.team-review-card--image-only { padding: 0; overflow: hidden; gap: 0; min-height: auto; }
.team-review-card--image-only::before { display: none; }
.team-review-text { font-size: 14px; color: var(--gray); line-height: 1.7; flex: 1; }
.team-review-image { width: 100%; border-radius: 2px; object-fit: cover; max-height: 220px; }
.team-review-image--full { max-height: none; min-height: 240px; height: 100%; flex: 1; border-radius: 0; }
.team-review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.2; }
.team-review-card--image-only .team-review-author { padding: 20px 24px; background: var(--white); }
.team-review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.team-reviews-empty { flex: 0 0 100%; padding: 48px 24px; text-align: center; color: var(--gray); font-size: 14px; background: rgba(255,255,255,0.7); border: 1px dashed rgba(26,26,26,0.12); }
.team-quote-box { background: var(--black); padding: 48px 56px; position: relative; }
.team-quote-box::before { content: '\201C'; font-family: var(--serif); font-size: 120px; font-weight: 300; color: var(--orange); opacity: 0.25; position: absolute; top: 10px; left: 40px; line-height: 1; }
.team-quote-box blockquote { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 30px); font-weight: 300; color: var(--white); line-height: 1.5; position: relative; z-index: 1; }

.numbers-grid { grid-template-columns: repeat(4, 1fr); }
.number-card { background: var(--light); padding: 48px 32px; border-top: 3px solid transparent; transition: border-color 0.2s; }
.number-card:hover { border-top-color: var(--orange); }
.number-val { font-family: var(--serif); font-size: 52px; font-weight: 300; color: var(--orange); line-height: 1; margin-bottom: 12px; }
.number-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.number-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

#partners { background: var(--white); }
.partners-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner-card { background: var(--light); border: 1px solid rgba(26,26,26,0.06); padding: 28px 24px; min-height: 96px; display: flex; flex-direction: column; justify-content: center; gap: 8px; transition: border-color 0.2s, background 0.2s; }
.partner-card--link { text-decoration: none; color: inherit; }
.partner-card:hover, .partner-card--link:hover { border-color: var(--orange); background: var(--cream); }
.partner-name { font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.25; color: var(--black); }
.partner-card--link .partner-name { color: var(--black); }
.partner-card--link:hover .partner-name { color: var(--orange); }
.partner-note { font-size: 12px; color: var(--gray); line-height: 1.5; }

.school-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.school-list { list-style: none; }
.school-list li { padding: 24px 0; border-bottom: 1px solid rgba(26,26,26,0.1); display: flex; gap: 20px; align-items: flex-start; }
.school-list li:last-child { border-bottom: none; }
.school-list .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 6px; }
.school-list h4 { font-weight: 500; font-size: 15px; margin-bottom: 6px; }
.school-list p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.vacancies-box { background: var(--black); padding: 48px 40px; height: fit-content; }
.vacancies-box h3 { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--white); margin-bottom: 20px; }
.vacancies-box p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 28px; }
.vac-list { list-style: none; margin-bottom: 36px; }
.vac-list li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 14px; color: rgba(255,255,255,0.7); display: flex; gap: 12px; align-items: center; }
.vac-list li::before { content: ''; width: 16px; height: 1px; background: var(--orange); flex-shrink: 0; }
.btn-link { display: block; text-align: center; text-decoration: none; }

.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review-card { padding: 40px 36px; border: 1px solid rgba(26,26,26,0.08); position: relative; }
.review-card::before { content: ''; position: absolute; top: 0; left: 0; width: 48px; height: 3px; background: var(--orange); }
.review-card h4 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 16px; line-height: 1.3; }
.review-tag { display: inline-block; margin-top: 20px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); font-weight: 500; }

.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid rgba(26,26,26,0.12); padding: 28px 0; }
.faq-item:first-child { border-top: 1px solid rgba(26,26,26,0.12); }
.faq-q { font-family: var(--serif); font-size: 20px; font-weight: 400; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; user-select: none; }
.faq-q .toggle { width: 28px; height: 28px; flex-shrink: 0; border: 1px solid rgba(26,26,26,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--orange); transition: background 0.2s; }
.faq-item.open .faq-q .toggle { background: var(--orange); color: var(--white); }
.faq-a { font-size: 14px; color: var(--gray); line-height: 1.75; padding-top: 16px; display: none; }
.faq-item.open .faq-a { display: block; }

#contact { background: var(--black); }
#contact h2 { color: var(--white); }
#contact .section-sub { color: rgba(255,255,255,0.45); }
.forms-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.form-card { background: rgba(255,255,255,0.04); padding: 40px 32px; }
.form-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.form-card .form-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 28px; line-height: 1.6; }
.form-card input, .form-card select, .form-card textarea { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 14px 16px; margin-bottom: 12px; color: var(--white); font-family: var(--sans); font-size: 14px; border-radius: 0; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-card input[type='checkbox'] { width: auto; min-width: 16px; height: 16px; margin: 3px 10px 0 0; accent-color: var(--orange); -webkit-appearance: auto; }
.form-card select option { background: #2a2a2a; color: var(--white); }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--orange); }
.form-card textarea { resize: vertical; min-height: 80px; }
.form-card input::placeholder, .form-card textarea::placeholder { color: rgba(255,255,255,0.25); }
.btn-form { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 16px; margin-top: 8px; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.05em; cursor: pointer; transition: background 0.2s; }
.btn-form:hover { background: var(--orange-light); }
.consent { display: flex; align-items: flex-start; margin: 12px 0; color: rgba(255,255,255,0.58); font-size: 12px; line-height: 1.45; }
.consent a { color: var(--orange); }
.errorlist { list-style: none; color: #ffb199; font-size: 12px; margin: -6px 0 10px; }
.form-errors { color: #ffb199; font-size: 13px; margin-bottom: 12px; }
.messages { max-width: 620px; margin: -32px 0 32px; }
.message { padding: 14px 16px; border-left: 3px solid var(--orange); background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82); font-size: 14px; }

#social-contacts { padding: 80px 48px; }
.social-contacts-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.social-block h3, .contacts-block h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin-bottom: 10px; }
.block-sub { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 32px; }
.social-list { list-style: none; }
.social-list li { padding: 18px 0; border-bottom: 1px solid rgba(26,26,26,0.08); display: flex; align-items: center; gap: 16px; font-size: 14px; color: var(--black); }
.social-icon { width: 36px; height: 36px; background: var(--black); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--orange); flex-shrink: 0; border-radius: 2px; }
.social-list a { color: var(--black); text-decoration: none; }
.social-list a:hover { color: var(--orange); }
.social-list span { font-size: 12px; color: var(--gray); }
.contact-item { padding: 20px 0; border-bottom: 1px solid rgba(26,26,26,0.08); font-size: 14px; }
.contact-item:last-child { border-bottom: none; }
.contact-item .label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; font-weight: 500; }
.contact-item p { color: var(--gray); line-height: 1.6; }
.contact-trust { margin-top: 24px; padding: 18px 20px; background: var(--light); border-left: 3px solid var(--orange); font-size: 13px; color: var(--gray); line-height: 1.6; font-style: italic; }

footer { background: var(--black); padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer .f-logo { color: rgba(255,255,255,0.4); font-size: 13px; }
footer .f-logo span { color: var(--orange); }
footer .f-legal { font-size: 12px; color: rgba(255,255,255,0.25); }
footer .f-email { font-size: 13px; color: rgba(255,255,255,0.5); }
footer .f-email a, .f-links a { color: var(--orange); text-decoration: none; }
.f-links { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; }

.legal-body { background: var(--cream); }
.legal-page { padding: 130px 48px 80px; min-height: 70vh; }
.legal-page h1 { font-family: var(--serif); font-size: clamp(34px, 4vw, 52px); font-weight: 300; margin: 20px 0 32px; }
.legal-content { background: var(--white); padding: 40px; color: #333; }
.legal-content p { margin-bottom: 16px; }
.back-link { color: var(--orange); text-decoration: none; font-size: 14px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 64px 20px; }
  #hero { padding: 100px 20px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero-stat { flex: 1 1 140px; }
  .benefits-grid, .approach-grid, .school-inner { grid-template-columns: 1fr; }
  .services-grid, .team-grid, .reviews-grid, .numbers-grid, .partners-grid, .forms-grid, .properties-grid { grid-template-columns: 1fr; }
  .property-gallery-inner { grid-template-columns: 1fr; }
  .steps-flow { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-flow::before { display: none; }
  .social-contacts-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { flex-direction: column; text-align: center; }
  #social-contacts { padding: 64px 20px; }
  .legal-page { padding: 110px 20px 56px; }
  .legal-content { padding: 28px 20px; }
}
