/* ===== ARTESCAPE — ГОЛОВНІ СТИЛІ ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ===== ЗМІННІ ===== */
:root {
  --night: #1A1A2E;
  --night-mid: #2D2D4E;
  --parchment: #E8D5B0;
  --gold: #C9A84C;
  --gold-light: #E0C068;
  --cream: #F5F0E8;
  --purple: #4A1942;
  --purple-light: #6B2D62;
  --white: #FFFFFF;
  --text-muted: #A89880;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --section-pad: 96px 0;
  --container: 1160px;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--parchment);
  background: var(--night);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--night);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }
.btn-outline {
  background: transparent;
  color: var(--parchment);
  border: 1.5px solid rgba(232,213,176,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.02em;
}
.nav-logo svg { flex-shrink: 0; }
.nav-logo span em {
  color: var(--gold);
  font-style: italic;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--parchment);
  opacity: 0.8;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; padding: 10px 24px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parchment);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--night);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 65% 50%, rgba(74,25,66,0.5) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(45,45,78,0.6) 0%, transparent 60%);
}
.hero-image-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--night) 0%, transparent 60%);
  z-index: 1;
}
/* Curtain SVG décor */
.hero-curtain {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding-top: 72px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 {
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(232,213,176,0.12);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== ABOUT ===== */
.about { padding: var(--section-pad); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.about-accent-box {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 180px;
  background: var(--purple);
  padding: 24px;
  border-radius: 2px;
}
.about-accent-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-accent-box span {
  font-size: 0.82rem;
  color: var(--parchment);
  opacity: 0.75;
  margin-top: 4px;
  display: block;
}
.about-text .section-subtitle { margin-bottom: 28px; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.about-feature h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--parchment); }
.about-feature p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad);
  background: var(--night-mid);
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--night);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: var(--transition);
}
.service-card:hover { background: rgba(74,25,66,0.3); }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  color: var(--gold);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ===== EVENTS ===== */
.events { padding: var(--section-pad); }
.events-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background: var(--night-mid);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.event-row:hover {
  border-left-color: var(--gold);
  background: rgba(45,45,78,0.9);
  transform: translateX(4px);
}
.event-date {
  text-align: center;
}
.event-date .day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.event-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 2px;
}
.event-info h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--parchment); }
.event-info p { font-size: 0.85rem; color: var(--text-muted); }
.event-meta {
  text-align: right;
}
.event-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.event-tag.theatre { background: rgba(74,25,66,0.5); color: #D4A0CC; }
.event-tag.gallery { background: rgba(201,168,76,0.15); color: var(--gold); }
.event-tag.education { background: rgba(26,26,46,0.8); color: var(--parchment); border: 1px solid rgba(232,213,176,0.2); }
.event-tag.festival { background: rgba(45,45,78,0.8); color: #9AB0D4; border: 1px solid rgba(154,176,212,0.3); }
.event-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--parchment);
}
.event-price.free { color: var(--gold-light); }

/* ===== GALLERY ===== */
.gallery { padding: var(--section-pad); background: var(--night-mid); }
.gallery-head { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 5; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,26,46,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay p { font-size: 0.85rem; color: var(--parchment); }

/* ===== EDUCATION ===== */
.education { padding: var(--section-pad); }
.education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.edu-card {
  background: var(--night-mid);
  padding: 40px 32px;
  border-radius: 2px;
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.edu-card:hover { border-top-color: var(--gold); transform: translateY(-4px); }
.edu-card-tag {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.edu-card h3 { margin-bottom: 12px; }
.edu-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.edu-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232,213,176,0.1);
}
.edu-card-meta span { font-size: 0.82rem; color: var(--text-muted); }
.edu-card-meta strong { font-size: 0.9rem; color: var(--parchment); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad);
  background: var(--purple);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 28rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonials-head { text-align: center; margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.testimonial-stars span { color: var(--gold); font-size: 1rem; }
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--parchment);
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--font-display);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: rgba(255,255,255,0.55); }

/* ===== TEAM ===== */
.team { padding: var(--section-pad); }
.team-head { text-align: center; margin-bottom: 60px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 20px;
  filter: grayscale(20%);
  transition: var(--transition);
}
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card p { font-size: 0.85rem; color: var(--gold); font-weight: 500; }

/* ===== CONTACT ===== */
.contact { padding: var(--section-pad); background: var(--night-mid); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info { }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-item-text label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--parchment);
}
.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232,213,176,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  transition: var(--transition);
  font-size: 0.85rem;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--night);
  padding: 48px 40px;
  border-radius: 2px;
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--parchment);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(232,213,176,0.15);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--parchment);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control::placeholder { color: rgba(168,152,128,0.5); }
.form-control:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-control.error {
  border-color: #E06060;
  box-shadow: 0 0 0 3px rgba(224,96,96,0.1);
}
.field-error {
  font-size: 0.78rem;
  color: #E06060;
  margin-top: 5px;
  display: none;
}
.field-error.visible { display: block; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; margin-top: 8px; }
.form-policy {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}
.form-policy a { color: var(--gold); text-decoration: underline; }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
}
.form-success h4 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0F0F1F;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(232,213,176,0.08);
}
.footer-brand {}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ===== MAP PLACEHOLDER ===== */
.map-section { padding: 0; }
.map-placeholder {
  height: 360px;
  background: var(--night-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid rgba(232,213,176,0.06);
}
.map-placeholder svg { color: var(--gold); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--night);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 99;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: linear-gradient(135deg, #1e1e38 0%, #2d2545 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(201,168,76,0.4);
  font-size: 0.78rem;
  font-family: var(--font-body);
  text-align: center;
  padding: 16px;
}
.img-placeholder svg { opacity: 0.4; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: none; }
  .education-grid { grid-template-columns: 1fr 1fr; }
  .education-grid .edu-card:last-child { grid-column: span 2; max-width: 50%; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26,26,46,0.98);
    padding: 24px;
    gap: 20px;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-image-wrap { display: none; }
  .hero-curtain { display: none; }
  .hero-bg { background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(74,25,66,0.4) 0%, transparent 70%); }
  .hero-content { max-width: 100%; }
  .hero-stats { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-accent-box { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .events .event-row { grid-template-columns: 80px 1fr; gap: 16px; padding: 20px 16px; }
  .event-meta { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .education-grid { grid-template-columns: 1fr; }
  .education-grid .edu-card:last-child { grid-column: span 1; max-width: 100%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: block; }
  .testimonials-grid .testimonial-card:last-child { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
