:root {
  --yellow:       #F6EB8A;
  --yellow-dark:  #EDE07A;
  --yellow-deeper:#E5D96A;
  --yellow-light: #FBF5B0;
  --burgundy:     #822331;
  --burgundy-hov: #A32A40;
  --burgundy-dim: #5c1a24;
  --ink:          #1A1A1A;
  --ink2:         #2e2e2e;
  --ink-mid:      #4a4a4a;
  --ink-soft:     #6a6060;
  --white:        #FFFDF5;
  --font-display: 'Times New Roman', Times, Georgia, serif;
  --font-body:    'Raleway', sans-serif;
  --font-fa:      'Noto Sans Arabic', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.bg-dark { background: var(--yellow-dark); }

main { flex: 1; }

::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background: var(--yellow-dark); }
::-webkit-scrollbar-thumb { background: var(--burgundy); border-radius:2px; }

/* ── STRINGS DECORATION ── */
.strings-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
}

/* ── NAV ── */
nav {
  position: sticky;
  top:0;
  z-index: 1000;
  background: rgba(246,235,138,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--burgundy);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  flex-shrink: 0;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--burgundy);
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-logo span {
  display: block;
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 1px;
}

.nav-links { display:flex; gap:0; list-style:none; overflow-x:auto; }
.nav-links li a {
  display: block;
  padding: 0 0.6rem;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  line-height: 64px;
  font-weight: 500;
}
.nav-links li a:hover { color: var(--burgundy); }
.nav-links li a.active { color: var(--burgundy); font-weight: 700; border-bottom: 2px solid var(--burgundy); }

.nav-cta {
  background: var(--burgundy) !important;
  color: var(--yellow) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin: auto 0;
  transition: background 0.2s !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--burgundy-hov) !important; color: var(--yellow) !important; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--burgundy); transition:0.3s; }

/* ── PAGE HERO BAND ── */
.page-hero {
  background: var(--burgundy);
  padding: 3.5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0; width: 40%;
  background: repeating-linear-gradient(
    -45deg, rgba(246,235,138,0.04) 0, rgba(246,235,138,0.04) 1px,
    transparent 0, transparent 20px
  );
}
.page-hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(246,235,138,0.6);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.page-hero-label::before {
  content:''; display:inline-block;
  width:30px; height:2px;
  background: rgba(246,235,138,0.4);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1.08;
}
.page-hero-title em { color: rgba(246,235,138,0.65); font-style: italic; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--burgundy);
  color: var(--yellow);
  border: none;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--burgundy-hov); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
  padding: 0.88rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  border-radius: 2px;
}
.btn-secondary:hover { background: var(--burgundy); color: var(--yellow); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 0.88rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
  border-radius: 2px;
}
.btn-whatsapp:hover { opacity: 0.85; }

/* ── CONTAINER ── */
.container { max-width:1240px; margin:0 auto; padding:0 2rem; }

.page-content { padding: 4rem 0 5rem; }

/* ── SECTION COMMONS ── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}
.section-label::before {
  content:''; display:inline-block;
  width:36px; height:2px;
  background: var(--burgundy);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section-title em { font-style:italic; color: var(--burgundy); }

.section-subtitle {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.85;
  max-width: 600px;
  font-weight: 400;
}

.divider { width:56px; height:3px; background:var(--burgundy); margin:1.5rem 0; }

/* ── DOTS ── */
.dots-row { display:flex; gap:10px; margin:1.5rem 0; }
.dot { width:11px; height:11px; border-radius:50%; background:var(--burgundy); }

/* ── REVEAL ── */
.reveal {
  opacity:0; transform:translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity:1; transform:none; }

@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes fadeIn { to{opacity:1} }

/* ── HOME GRID ── */
.home-main { flex:1; display:flex; flex-direction:column; }
.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  padding: 1.5rem 2rem 2rem;
  flex: 1;
}
.home-tile {
  aspect-ratio: 1 / 1;
  background: var(--yellow-dark);
  border: 2px solid rgba(130,35,49,0.2);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  padding: 1rem;
  gap: 0.5rem;
  transition: border-color 0.2s, transform 0.2s, background 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.home-tile:hover {
  border-color: var(--burgundy);
  background: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(130,35,49,0.15);
}
.home-tile-icon { font-size: 2rem; line-height: 1; }
.home-tile-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.home-tile-fa {
  font-family: var(--font-fa);
  font-size: 0.7rem;
  color: var(--burgundy);
  direction: rtl;
  opacity: 0.75;
}
.home-tile-cta {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--yellow);
}
.home-tile-cta .home-tile-name { color: var(--yellow); }
.home-tile-cta .home-tile-fa { color: rgba(246,235,138,0.75); }
.home-tile-cta:hover { background: var(--burgundy-hov); border-color: var(--burgundy-hov); }

/* ── GRIDS ── */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.three-col { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1.5rem; }
.four-col { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1.25rem; }

/* ── CARDS ── */
.card {
  background: var(--yellow-dark);
  border: 2px solid transparent;
  border-radius: 4px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--burgundy); transform: translateY(-4px); }

.card-icon { font-size:1.8rem; margin-bottom:1rem; }
.card-title {
  font-family: var(--font-display);
  font-size:1.25rem; font-weight:700;
  color:var(--ink); margin-bottom:0.5rem;
}
.card-desc { font-size:0.83rem; color:var(--ink-soft); line-height:1.7; margin-bottom:1rem; }
.card-tag {
  display:inline-block; font-size:0.62rem;
  letter-spacing:0.15em; text-transform:uppercase;
  color:var(--yellow); background:var(--burgundy);
  padding:0.22rem 0.65rem; border-radius:1px; font-weight:600;
}

/* ── INSTRUMENT ITEM ── */
.instrument-item {
  display:grid; grid-template-columns:56px 1fr;
  gap:1rem; align-items:start;
  margin-bottom:1.5rem; padding-bottom:1.5rem;
  border-bottom:1px solid rgba(130,35,49,0.15);
}
.instrument-icon-box {
  width:56px; height:56px;
  background:var(--yellow);
  border:2px solid var(--burgundy); border-radius:4px;
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
}
.instrument-name { font-family:var(--font-display); font-size:1.05rem; font-weight:700; color:var(--ink); margin-bottom:0.2rem; }
.instrument-meta { font-size:0.78rem; color:var(--ink-soft); line-height:1.5; }
.instrument-levels { display:flex; gap:0.4rem; margin-top:0.4rem; flex-wrap:wrap; }
.level-badge { font-size:0.58rem; letter-spacing:0.1em; text-transform:uppercase; background:var(--burgundy); color:var(--yellow); padding:0.15rem 0.5rem; border-radius:1px; font-weight:600; }

.instrument-category-title {
  font-family:var(--font-display); font-size:1.4rem; font-style:italic; font-weight:700;
  color:var(--burgundy); margin-bottom:1.75rem; padding-bottom:0.75rem;
  border-bottom:2px solid var(--burgundy);
}

/* ── INSTRUCTOR ── */
.instructors-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:2rem; }
.instructor-card { transition:transform 0.3s; }
.instructor-card:hover { transform:translateY(-5px); }
.instructor-avatar {
  width:100%; aspect-ratio:3/4;
  background:var(--yellow-dark); border:2px solid var(--burgundy); border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.1rem; position:relative; overflow:hidden;
}
.instructor-avatar-initials { font-family:var(--font-display); font-size:3rem; color:var(--burgundy); font-weight:700; }
.instructor-avatar-pattern {
  position:absolute; inset:0; opacity:0.06;
  background:repeating-linear-gradient(45deg,var(--burgundy) 0,var(--burgundy) 1px,transparent 0,transparent 18px);
}
.instructor-name { font-family:var(--font-display); font-size:1.15rem; font-weight:700; color:var(--ink); margin-bottom:0.15rem; }
.instructor-role { font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--burgundy); font-weight:700; margin-bottom:0.4rem; }
.instructor-instruments { font-size:0.78rem; color:var(--ink-soft); }

/* ── TESTIMONIALS ── */
.testimonials { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:1.5rem; }
.testimonial-card {
  background:var(--yellow-dark); border-left:4px solid var(--burgundy);
  border-radius:0 4px 4px 0; padding:2rem; position:relative;
}
.testimonial-card::before {
  content:'"'; font-family:var(--font-display); font-size:4rem;
  color:var(--burgundy); opacity:0.22; position:absolute; top:0.25rem; left:1rem; line-height:1;
}
.testimonial-text { font-size:0.88rem; color:var(--ink-mid); line-height:1.8; margin-bottom:1.1rem; margin-top:1.5rem; }
.testimonial-author { font-size:0.75rem; color:var(--burgundy); font-weight:700; letter-spacing:0.08em; }
.testimonial-instrument { font-size:0.7rem; color:var(--ink-soft); }

/* ── WELLNESS ── */
.wellness-hero {
  background:var(--yellow); border:2px solid var(--burgundy); border-radius:4px;
  padding:3rem; margin-bottom:3rem; text-align:center;
}
.wellness-hero-title { font-family:var(--font-display); font-size:clamp(1.7rem,4vw,2.6rem); font-weight:700; color:var(--ink); margin-bottom:1rem; }
.wellness-hero-subtitle { font-size:1rem; color:var(--ink-mid); max-width:540px; margin:0 auto 2rem; line-height:1.8; }
.wellness-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.25rem; }
.wellness-card { background:var(--yellow); border:2px solid rgba(130,35,49,0.25); border-radius:4px; padding:1.5rem; aspect-ratio:1/1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; overflow:hidden; transition:border-color 0.3s,transform 0.3s; }
.wellness-card:hover { border-color:var(--burgundy); transform:translateY(-3px); }
.wellness-card-icon { font-size:1.6rem; margin-bottom:0.6rem; flex-shrink:0; }
.wellness-card-title { font-family:var(--font-display); font-size:0.95rem; font-weight:700; color:var(--burgundy); margin-bottom:0.4rem; }
.wellness-card-text { font-size:0.82rem; color:var(--ink-soft); line-height:1.65; }

/* ── EVENTS ── */
.events-list { display:grid; gap:2px; background:var(--burgundy); border:2px solid var(--burgundy); }
.event-item { background:var(--yellow); display:grid; grid-template-columns:80px 1fr auto; align-items:center; gap:2rem; padding:1.75rem 2rem; transition:background 0.2s; }
.event-item:hover { background:var(--yellow-dark); }
.event-date-box { text-align:center; background:var(--burgundy); border-radius:4px; padding:0.75rem 0.5rem; }
.event-month { font-size:0.6rem; letter-spacing:0.15em; text-transform:uppercase; color:rgba(246,235,138,0.8); font-weight:700; }
.event-day { font-family:var(--font-display); font-size:1.8rem; color:var(--yellow); line-height:1; font-weight:700; }
.event-title { font-family:var(--font-display); font-size:1.1rem; font-weight:700; color:var(--ink); margin-bottom:0.2rem; }
.event-meta { font-size:0.8rem; color:var(--ink-soft); }
.event-type { font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; border:2px solid var(--burgundy); color:var(--burgundy); padding:0.3rem 0.75rem; border-radius:1px; white-space:nowrap; font-weight:600; }

/* ── STUDIO ── */
.studio-visual { background:var(--yellow); border:2px solid var(--burgundy); border-radius:4px; padding:3rem; min-height:340px; display:flex; align-items:center; justify-content:center; }
.studio-eq { display:flex; align-items:flex-end; gap:4px; height:110px; }
.eq-bar { flex:1; background:linear-gradient(180deg,var(--burgundy-hov),var(--burgundy)); border-radius:2px 2px 0 0; animation:eqAnim 1.5s ease-in-out infinite alternate; }
@keyframes eqAnim { 0%{height:15%;opacity:0.5} 100%{height:100%;opacity:1} }
.eq-bar:nth-child(1){animation-delay:0s}.eq-bar:nth-child(2){animation-delay:.15s}.eq-bar:nth-child(3){animation-delay:.3s}.eq-bar:nth-child(4){animation-delay:.05s}.eq-bar:nth-child(5){animation-delay:.25s}.eq-bar:nth-child(6){animation-delay:.4s}.eq-bar:nth-child(7){animation-delay:.1s}.eq-bar:nth-child(8){animation-delay:.35s}.eq-bar:nth-child(9){animation-delay:.2s}.eq-bar:nth-child(10){animation-delay:.45s}.eq-bar:nth-child(11){animation-delay:.08s}.eq-bar:nth-child(12){animation-delay:.28s}
.studio-service { display:flex; align-items:flex-start; gap:1.25rem; padding:1.25rem; background:var(--yellow); border:2px solid rgba(130,35,49,0.2); border-radius:4px; transition:border-color 0.2s; margin-bottom:1rem; }
.studio-service:hover { border-color:var(--burgundy); }
.studio-service-icon { font-size:1.4rem; flex-shrink:0; }
.studio-service-name { font-family:var(--font-display); font-size:1rem; font-weight:700; color:var(--ink); margin-bottom:0.2rem; }
.studio-service-desc { font-size:0.8rem; color:var(--ink-soft); line-height:1.5; }

/* ── FORM ── */
.reg-form { background:var(--yellow-dark); border:2px solid var(--burgundy); border-radius:4px; padding:2.5rem; }
.form-title { font-family:var(--font-display); font-size:1.5rem; font-weight:700; color:var(--burgundy); margin-bottom:2rem; font-style:italic; }
.form-group { margin-bottom:1.2rem; }
.form-label { display:block; font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--ink2); font-weight:600; margin-bottom:0.45rem; }
.form-input,.form-select,.form-textarea { width:100%; background:var(--yellow); border:2px solid rgba(130,35,49,0.3); color:var(--ink); padding:0.7rem 1rem; font-family:var(--font-body); font-size:0.85rem; border-radius:2px; outline:none; transition:border-color 0.2s; }
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--burgundy); }
.form-select option { background:var(--yellow); color:var(--ink); }
.form-textarea { min-height:80px; resize:vertical; }
.form-success { display:none; margin-top:1rem; padding:1rem; background:rgba(130,35,49,0.1); border:2px solid var(--burgundy); border-radius:4px; color:var(--burgundy); font-size:0.85rem; text-align:center; font-weight:600; }

/* ── PORTAL ── */
.portal-tabs { display:flex; gap:2px; background:var(--burgundy); border-radius:2px; overflow:hidden; margin-bottom:2rem; width:fit-content; }
.portal-tab { padding:0.7rem 2rem; font-size:0.75rem; letter-spacing:0.15em; text-transform:uppercase; cursor:pointer; background:var(--yellow-dark); color:var(--ink2); border:none; transition:background 0.2s,color 0.2s; font-family:var(--font-body); font-weight:600; }
.portal-tab.active,.portal-tab:hover { background:var(--burgundy); color:var(--yellow); }
.portal-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:1rem; }
.portal-card { background:var(--yellow); border:2px solid rgba(130,35,49,0.2); border-radius:4px; padding:1.25rem; aspect-ratio:1/1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; overflow:hidden; transition:border-color 0.2s,transform 0.2s; }
.portal-card:hover { border-color:var(--burgundy); transform:translateY(-2px); }
.portal-card-icon { font-size:1.4rem; margin-bottom:0.5rem; flex-shrink:0; }
.portal-card-title { font-size:0.82rem; color:var(--ink); font-weight:700; margin-bottom:0.2rem; }
.portal-card-desc { font-size:0.7rem; color:var(--ink-soft); line-height:1.4; }
.portal-card-text { font-size:0.7rem; color:var(--ink-soft); line-height:1.4; }

/* ── POLICY ── */
.policy-card { border:2px solid var(--burgundy); border-radius:4px; padding:1.5rem; background:var(--yellow); aspect-ratio:1/1; display:flex; flex-direction:column; overflow:hidden; transition:transform 0.2s; }
.policy-card:hover { transform:translateY(-3px); }
.policy-title { font-family:var(--font-display); font-size:1.1rem; color:var(--burgundy); font-weight:700; font-style:italic; margin-bottom:1rem; }
.policy-list { list-style:none; }
.policy-list li { font-size:0.83rem; color:var(--ink-mid); line-height:1.6; padding:0.5rem 0; border-bottom:1px solid rgba(130,35,49,0.12); display:flex; align-items:flex-start; gap:0.75rem; }
.policy-list li::before { content:'—'; color:var(--burgundy); flex-shrink:0; font-weight:700; }

/* ── BENEFITS ── */
.benefit-item { background:var(--yellow-dark); padding:2.5rem 2rem; text-align:center; transition:background 0.2s; }
.benefit-item:hover { background:var(--yellow); }
.benefit-icon { font-size:2rem; margin-bottom:1rem; }
.benefit-title { font-family:var(--font-display); font-size:1.05rem; font-weight:700; color:var(--ink); margin-bottom:0.5rem; }
.benefit-desc { font-size:0.8rem; color:var(--ink-soft); line-height:1.6; }

/* ── BLOG ── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; }
.blog-card { border-radius:4px; overflow:hidden; background:var(--yellow-dark); border:2px solid rgba(130,35,49,0.2); aspect-ratio:1/1; display:flex; flex-direction:column; transition:transform 0.3s,border-color 0.3s; }
.blog-card:hover { transform:translateY(-4px); border-color:var(--burgundy); }
.blog-thumb { flex:1; display:flex; align-items:center; justify-content:center; font-size:2.5rem; position:relative; min-height:0; }
.blog-body { padding:1rem 1.25rem 1.25rem; flex-shrink:0; }
.blog-thumb-1{background:linear-gradient(135deg,#e8d860,#d4c550)}.blog-thumb-2{background:linear-gradient(135deg,#ddd060,#c9bc50)}.blog-thumb-3{background:linear-gradient(135deg,#e0da75,#ccc860)}.blog-thumb-4{background:linear-gradient(135deg,#d8d060,#c5bd4e)}.blog-thumb-5{background:linear-gradient(135deg,#e4de70,#d0cb58)}
.blog-category { position:absolute; top:1rem; left:1rem; font-size:0.62rem; letter-spacing:0.15em; text-transform:uppercase; background:var(--burgundy); color:var(--yellow); padding:0.22rem 0.65rem; border-radius:1px; font-weight:700; }
.blog-body { padding:1.5rem; }
.blog-title { font-family:var(--font-display); font-size:0.85rem; font-weight:700; color:var(--ink); line-height:1.25; margin-bottom:0.4rem; }
.blog-excerpt { font-size:0.72rem; color:var(--ink-soft); line-height:1.5; margin-bottom:0.6rem; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.blog-read-more { font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--burgundy); text-decoration:none; font-weight:700; }

/* ── CONTACT ── */
.map-placeholder { background:var(--yellow); border:2px solid var(--burgundy); border-radius:4px; height:240px; display:flex; flex-direction:column; align-items:center; justify-content:center; margin-bottom:2rem; position:relative; overflow:hidden; }
.map-placeholder::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(0deg,transparent,transparent 39px,rgba(130,35,49,0.07) 40px),repeating-linear-gradient(90deg,transparent,transparent 39px,rgba(130,35,49,0.07) 40px); }
.map-pin { font-size:2.5rem; margin-bottom:0.5rem; position:relative; }
.map-label { font-size:0.8rem; color:var(--burgundy); font-weight:700; position:relative; }
.contact-info-item { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.75rem; }
.contact-icon { width:44px; height:44px; background:var(--yellow); border:2px solid var(--burgundy); border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.contact-label { font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--burgundy); font-weight:700; margin-bottom:0.25rem; }
.contact-value { font-size:0.9rem; color:var(--ink); font-weight:600; }
.contact-sub { font-size:0.78rem; color:var(--ink-soft); margin-top:0.15rem; }
.social-links { display:flex; gap:1rem; flex-wrap:wrap; margin-top:1.5rem; }
.social-link { display:flex; align-items:center; gap:0.5rem; padding:0.6rem 1.2rem; border:2px solid var(--burgundy); border-radius:2px; font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; text-decoration:none; color:var(--burgundy); transition:background 0.2s,color 0.2s; font-weight:600; }
.social-link:hover { background:var(--burgundy); color:var(--yellow); }

/* ── TIMELINE ── */
.timeline { margin-top:2.5rem; position:relative; padding-left:2rem; }
.timeline::before { content:''; position:absolute; left:0; top:0; bottom:0; width:2px; background:var(--burgundy); }
.timeline-item { position:relative; margin-bottom:2.2rem; }
.timeline-item::before { content:''; position:absolute; left:-2.42rem; top:5px; width:10px; height:10px; border-radius:50%; background:var(--burgundy); box-shadow:0 0 0 3px rgba(130,35,49,0.2); }
.timeline-year { font-size:0.65rem; letter-spacing:0.2em; color:var(--burgundy); font-weight:700; margin-bottom:0.3rem; }
.timeline-text { font-size:0.88rem; color:var(--ink-mid); line-height:1.75; }

.about-philosophy { background:var(--yellow); border-left:4px solid var(--burgundy); padding:1.5rem 1.75rem; margin-top:2rem; border-radius:0 2px 2px 0; }
.philosophy-title { font-family:var(--font-display); font-size:1.05rem; color:var(--burgundy); font-weight:700; margin-bottom:0.75rem; }
.feature-list { list-style:none; margin-top:1.5rem; }
.feature-list li { display:flex; align-items:flex-start; gap:0.75rem; margin-bottom:0.9rem; font-size:0.88rem; color:var(--ink-mid); }
.feature-list li::before { content:'●'; color:var(--burgundy); font-size:0.45rem; margin-top:6px; flex-shrink:0; }

/* ── REG STEPS ── */
.reg-step { display:flex; gap:1.25rem; margin-bottom:2rem; }
.step-num { width:36px; height:36px; border:2px solid var(--burgundy); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:1rem; color:var(--burgundy); font-weight:700; flex-shrink:0; }
.step-title { font-size:0.9rem; color:var(--ink); font-weight:600; margin-bottom:0.2rem; }
.step-desc { font-size:0.8rem; color:var(--ink-soft); line-height:1.5; }

/* ── FOOTER ── */
footer { background:var(--burgundy); padding:3rem 2rem; text-align:center; flex-shrink:0; }
.footer-logo { font-family:var(--font-display); font-size:1.9rem; font-weight:700; color:var(--yellow); margin-bottom:0.4rem; }
.footer-tagline { font-family:var(--font-fa); font-size:0.88rem; color:rgba(246,235,138,0.6); margin-bottom:0.75rem; }
.footer-brand-line { font-family:var(--font-display); font-style:italic; font-size:0.95rem; color:rgba(246,235,138,0.8); margin-bottom:1.25rem; }
.footer-dots { display:flex; gap:8px; justify-content:center; margin-bottom:1.25rem; }
.footer-dot { width:9px; height:9px; border-radius:50%; background:var(--yellow); opacity:0.45; }
.footer-nav { display:flex; flex-wrap:wrap; justify-content:center; gap:0.2rem 1.2rem; margin-bottom:1.5rem; list-style:none; }
.footer-nav a { font-size:0.67rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(246,235,138,0.55); text-decoration:none; transition:color 0.2s; font-weight:500; }
.footer-nav a:hover { color:var(--yellow); }
.footer-copy { font-size:0.7rem; color:rgba(246,235,138,0.28); }

/* ── WHATSAPP FLOAT ── */
.wa-float { position:fixed; bottom:2rem; right:2rem; z-index:999; width:54px; height:54px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; text-decoration:none; box-shadow:0 4px 18px rgba(37,211,102,0.4); transition:transform 0.2s; }
.wa-float:hover { transform:scale(1.1); }
.wa-float::after { content:'WhatsApp Us'; position:absolute; right:100%; margin-right:10px; background:var(--burgundy); color:var(--yellow); font-size:0.68rem; letter-spacing:0.1em; white-space:nowrap; padding:0.35rem 0.7rem; border-radius:2px; opacity:0; transition:opacity 0.2s; pointer-events:none; font-family:var(--font-body); font-weight:600; }
.wa-float:hover::after { opacity:1; }

/* ── MOBILE ── */
@media (max-width:900px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .nav-links.open { display:flex; flex-direction:column; position:fixed; top:64px; left:0; right:0; background:var(--yellow); border-bottom:2px solid var(--burgundy); padding:1rem 0; z-index:999; max-height:calc(100vh - 64px); overflow-y:auto; }
  .nav-links.open li a { line-height:2.8; padding:0 1.5rem; }
  .two-col { grid-template-columns:1fr; gap:2.5rem; }
  .event-item { grid-template-columns:64px 1fr; }
  .event-type { display:none; }
}
@media (max-width:600px) {
  .container { padding:0 1.25rem; }
  .page-content { padding:2.5rem 0 3.5rem; }
  .hero-grid { padding:80px 1.25rem 50px; }
}

/* ── ADDITIONAL CLASSES ── */
.portal-card-text { font-size:0.75rem; color:var(--ink-soft); line-height:1.55; }
.portal-panel { }

.policies-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; }
.policy-num { font-family:var(--font-display); font-size:0.65rem; letter-spacing:0.3em; color:var(--burgundy); font-weight:700; margin-bottom:0.5rem; opacity:0.6; }
.policy-desc { font-size:0.85rem; color:var(--ink-mid); line-height:1.75; margin-bottom:1.25rem; }

.benefits-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:2rem; }
.benefit-tile { background:var(--yellow-dark); border:2px solid rgba(130,35,49,0.2); border-radius:4px; padding:1.5rem; aspect-ratio:1/1; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; overflow:hidden; transition:border-color 0.2s,transform 0.2s; }
.benefit-tile:hover { border-color:var(--burgundy); transform:translateY(-3px); }
.benefit-text { font-size:0.83rem; color:var(--ink-soft); line-height:1.7; }

.blog-meta { display:flex; align-items:center; gap:0.75rem; margin-bottom:0.75rem; }
.blog-tag { font-size:0.62rem; letter-spacing:0.12em; text-transform:uppercase; background:var(--burgundy); color:var(--yellow); padding:0.2rem 0.6rem; border-radius:1px; font-weight:700; }
.blog-date { font-size:0.72rem; color:var(--ink-soft); }
.blog-thumb-6 { background:linear-gradient(135deg,#dbd060,#c8bc48); }
.blog-read-more { font-size:0.7rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--burgundy); text-decoration:none; font-weight:700; display:inline-block; }
.blog-read-more:hover { text-decoration:underline; }

.contact-info { margin:1.75rem 0; }
.contact-item { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.75rem; }
.contact-icon { font-size:1.3rem; margin-top:0.1rem; flex-shrink:0; }
.contact-label { font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--burgundy); font-weight:700; margin-bottom:0.2rem; }
.contact-value { font-size:0.92rem; color:var(--ink); font-weight:500; line-height:1.6; }
.contact-value a { color:var(--burgundy); text-decoration:none; font-weight:700; }
.contact-value a:hover { text-decoration:underline; }
.contact-form-wrap { background:var(--yellow-dark); border:2px solid var(--burgundy); border-radius:4px; padding:2.5rem; }
