/* Bank card */
.bank-card { max-width: 820px; background: linear-gradient(180deg, #ffffff, #fffaf4); border:1px solid #f4e7d9; border-radius:18px; padding:0; box-shadow: 0 14px 32px rgba(17,18,23,.10); position:relative; overflow:hidden; }
.bank-head { display:flex; align-items:center; gap:12px; padding:16px; background: linear-gradient(135deg, rgba(242,126,0,.10), rgba(242,126,0,.20)); border-bottom:1px solid #f3e6da; }
.bank-logo { width:44px; height:44px; border-radius:12px; background:#fff; display:grid; place-items:center; box-shadow: 0 8px 18px rgba(242,126,0,.25); font-size:20px; }
.bank-name { margin:0; font-size:16px; }
.bank-desc { margin:2px 0 0; color:#6a6f78; font-size:13px; }
.bank-body { padding:16px; }
.bank-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; margin-top:12px; }
.label { font-size:12px; font-weight:700; letter-spacing:.04em; color:#6a6f78; text-transform:uppercase; }
.value { font-size:15px; margin-top:6px; word-break: break-word; }
.field { margin-bottom: 10px; }
.value-line { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.copy { border:1px solid rgba(242,126,0,.35); background: rgba(242,126,0,.14); color: var(--primary); border-radius:10px; padding:6px 10px; cursor:pointer; box-shadow: 0 6px 14px rgba(242,126,0,.12); }
.copy:hover { background: rgba(242,126,0,.20); }
.copy-toast { position:absolute; right:16px; bottom:16px; background:#111; color:#fff; padding:6px 10px; border-radius:10px; opacity:0; transform: translateY(6px); transition: .25s ease; pointer-events:none; }
.bank-card.copied .copy-toast { opacity:1; transform:none; }
@media (max-width: 640px) { .bank-grid { grid-template-columns: 1fr; } }

/* Donation page title */
.page-title { text-align:center; font-size: clamp(24px, 4.2vw, 38px); margin: 0 0 6px; }
.page-subtitle { text-align:center; color: var(--muted); margin: 0 0 16px; }
.donation-head .page-title, .donation-head .page-subtitle { text-align:left; }
.donation-head .page-subtitle { font-weight: 700; }
.donation-head { margin-top: 48px; }

/* Donation hero band */
.donation-hero { display:none; }

/* Static page cover image (1920x400) */
.page-cover { width:100vw; margin-left: calc(50% - 50vw); aspect-ratio: 1920 / 400; min-height: 220px; background-size: cover; background-position: center; background-repeat: no-repeat; }
@media (max-width: 640px) {
  .page-cover { height: 28vw; min-height: 120px; max-height: 180px; }
}
/* Packages list */
.packages { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 12px; }
.package { background:#fff; border:1px solid #eceef3; border-radius:14px; padding:14px; box-shadow: var(--shadow); display:flex; align-items:center; gap:12px; }
.package .pi { width:36px; height:36px; border-radius:10px; background: rgba(242,126,0,.12); display:grid; place-items:center; }
.package .pi img { width:18px; height:18px; }
.package h4 { margin:0; font-size: 15px; }
@media (max-width: 980px) { .packages { grid-template-columns: repeat(2, minmax(0,1fr)); } }
/* Base */
:root {
  --container: 1200px;
  --radius: 14px;
  --gap: 24px;
  --bg: #ffffff;
  --ink: #111217;
  --muted: #60646c;
  --primary: #f27e00;
  --primary-ink: #ffffff;
  --surface: #f6f7fb;
  --shadow: 0 10px 30px rgba(17, 18, 23, 0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease;
  backdrop-filter: saturate(140%) blur(6px);
}
.site-header.transparent { background-color: transparent; box-shadow: none; border-bottom: 1px solid transparent; color:#fff; }
.site-header.solid { background-color: rgba(255,255,255,0.98); box-shadow: var(--shadow); border-bottom: 1px solid #eceef3; }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; font-weight: 600; }
.logo .logo-img { display:block; height: 40px; width: auto; }
.logo .logo-img--brand { display:none; }
.site-header.solid .logo .logo-img--brand { display:block; }
.site-header.solid .logo .logo-img--light { display:none; }
.site-header.transparent .logo .logo-img--light { display:block; }
.site-header.transparent .logo .logo-img--brand { display:none; }
.logo .logo-lines { display:flex; flex-direction:column; line-height:1.1; }
.logo .line-1 { font-size: 12px; font-weight:600; letter-spacing:.2px; }
.logo .line-2 { font-size: 12px; font-weight:500; opacity:.9; }
.site-header.transparent .logo .logo-lines { color:#fff; }

.primary-nav { display:flex; }
.menu { list-style:none; margin:0; padding:0; }
.menu.level-1 { display:flex; align-items:center; gap: 8px; }
.menu.level-1 > li > a,
.menu.level-1 > li > .dropdown-toggle { text-decoration:none; color: inherit; padding: 10px 14px; border-radius:10px; font-weight:500; display:inline-flex; align-items:center; gap:8px; }
.menu.level-1 > li > a:hover, .menu.level-1 > li > .dropdown-toggle:hover { background: var(--surface); }
.site-header.transparent .menu.level-1 > li > a,
.site-header.transparent .menu.level-1 > li > .dropdown-toggle { color:#fff; }
.site-header.transparent .menu.level-1 > li > a:hover,
.site-header.transparent .menu.level-1 > li > .dropdown-toggle:hover { background: rgba(255,255,255,.16); }
.site-header.solid .menu.level-1 > li > a,
.site-header.solid .menu.level-1 > li > .dropdown-toggle { color: var(--ink); }

.btn { display:inline-flex; align-items:center; gap:10px; border-radius: 12px; padding: 12px 18px; text-decoration:none; font-weight:600; transition: transform .1s ease, box-shadow .2s ease, background .2s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: var(--primary-ink); box-shadow: 0 10px 20px rgba(242,126,0,.25); }
.btn-primary:hover { filter: brightness(0.95); }
.attention { position:relative; }
@keyframes pulseGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(242,126,0,.45); } 50% { box-shadow: 0 0 0 10px rgba(242,126,0,0); } }
.attention { animation: pulseGlow 5s ease-in-out infinite; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.18); color:#fff; border:1px solid rgba(255,255,255,.3); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown .dropdown-toggle { background: transparent; border: 0; font: inherit; cursor: pointer; display:inline-flex; align-items:center; gap:8px; }
.has-dropdown .dropdown-toggle .dropdown-indicator { display:inline-block; margin-left:6px; font-size:11px; line-height:1; transform: translateY(1px); }
.dropdown-indicator { transition: transform .2s ease; font-size: 12px; opacity:.8; }
.site-header.transparent .dropdown-indicator { color:#fff; opacity:.9; }
.site-header.solid .dropdown-indicator { color: var(--ink); opacity:.6; }
.has-dropdown.open > .dropdown-toggle .dropdown-indicator { transform: rotate(180deg); }
.has-dropdown::after { content:""; position:absolute; top:100%; left:0; right:0; height:12px; }
.has-dropdown .menu.level-2 {
  position: absolute; top: calc(100% + 12px); left: 0; min-width: 260px; padding: 10px; display: block;
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(6px) rotateX(-8deg); transform-origin: top; pointer-events: none;
  transition: opacity .6s ease, transform .6s ease;
  will-change: transform, opacity;
}
.has-dropdown:hover .menu.level-2, .has-dropdown:focus-within .menu.level-2 { opacity:1; transform: translateY(0) rotateX(0); pointer-events:auto; }
.menu.level-2 > li > a { display:block; padding: 10px 12px; color: var(--ink); text-decoration:none; border-radius:10px; }
.menu.level-2 > li > a:hover { background: var(--surface); }

/* Mobile nav */
.nav-toggle { display:none; background:transparent; border:0; cursor:pointer; width:44px; height:44px; border-radius:10px; }
.nav-toggle .bar { display:block; width:24px; height:2px; background: currentColor; margin:5px auto; border-radius:2px; }
.site-header.transparent .nav-toggle { color:#fff; }
.site-header.solid .nav-toggle { color: var(--ink); }

/* Fullscreen mobile drawer */
.mobile-drawer { position: fixed; inset: 0; background: rgba(255,255,255,.92); backdrop-filter: blur(10px) saturate(140%); -webkit-backdrop-filter: blur(10px) saturate(140%); z-index: 1400; transform: translateY(100%); opacity:0; pointer-events:none; transition: transform .35s cubic-bezier(.25,.8,.25,1), opacity .35s ease; }
.mobile-drawer.open { transform: translateY(0); opacity:1; pointer-events:auto; }
.mobile-drawer .drawer-header { display:flex; align-items:center; justify-content:space-between; padding: 14px 16px; border-bottom:1px solid #eceef3; }
.mobile-drawer .drawer-header .logo-img { height:32px; }
.mobile-drawer .drawer-content { padding: 10px 16px 24px; height: calc(100vh - 64px); overflow-y:auto; -webkit-overflow-scrolling:touch; }
.drawer-list { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.drawer-list > li > a, .drawer-list .acc-toggle { display:flex; width:100%; justify-content:space-between; align-items:center; padding:12px 10px; text-decoration:none; color:var(--ink); background:#f8f9fb; border-radius:12px; font-weight:600; }
.drawer-acc ul { list-style:none; padding:0 10px 0 14px; margin:0; max-height:0; overflow:hidden; transition:max-height .6s ease; }
.drawer-acc.open ul { max-height: 520px; }
.acc-toggle { background:none; border:0; cursor:pointer; font: inherit; }
.acc-ind { font-size:12px; margin-left:8px; transition: transform .6s ease; }
.drawer-acc ul li a { display:block; padding:10px 12px; margin-top:6px; text-decoration:none; color:var(--ink); background:#ffffff; border:1px solid #eceef3; border-radius:10px; }
.drawer-acc ul li a:hover { background:#f7f8fb; }
.drawer-acc.open .acc-ind { transform: rotate(180deg); transition: transform .2s ease; }

@media (max-width: 980px) {
  .logo .logo-text { display:none; }
  .logo .logo-img { height: 30px; }
  .nav-toggle { display:inline-block; }
  .primary-nav { position: fixed; top:74px; left:0; right:0; bottom:0; z-index: 1200; background: #fff; padding: 20px; display:none; }
  .primary-nav.open { display:block; }
  .menu.level-1 { flex-direction: column; align-items: flex-start; gap: 6px; }
  .primary-nav { overflow-y:auto; -webkit-overflow-scrolling: touch; }
  .has-dropdown .menu.level-2 { position: static; display:none; box-shadow:none; padding: 0; background: transparent; }
  .has-dropdown.open .menu.level-2 { display:block; }
}

/* Hero */
.hero { position: relative; height: 100vh; }
.hero .hero-swiper, .hero .swiper-wrapper, .hero .swiper-slide { height: 100%; }
.hero .swiper-slide { position:relative; overflow:hidden; }
.hero .swiper-slide img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transform: scale(1); transition: transform 6s ease; }
.hero .swiper-slide-active img { transform: scale(1.08); }
.hero .hero-overlay { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; text-align: center; padding: 0 20px; color: #fff; background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,.3) 40%, rgba(0,0,0,.45)); z-index: 5; }
.hero .overlay-inner { align-self:center; justify-self:center; max-width: 880px; }
.headline { font-size: clamp(28px, 5.2vw, 62px); line-height:1.04; margin:0 0 14px; opacity:0; transform: translateY(8px); animation: textIn 1.6s ease .25s forwards; }
.subline { font-size: clamp(14px, 2.2vw, 18px); margin:0 0 24px; opacity:0; transform: translateY(8px); animation: textIn 1.6s ease .5s forwards; }
.brush { position:relative; display:inline-block; }
.brush::after { content:""; position:absolute; left:-6px; right:-6px; bottom:6px; height: .62em; background: linear-gradient(90deg, rgba(242,126,0,.45), rgba(242,126,0,.75)); z-index:-1; transform: skewX(-12deg); border-radius:8px; }
@keyframes textIn { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform:none; } }
.scroll-hint { align-self:end; padding-bottom: 18px; font-size: 14px; opacity: .9; }
.scroll-hint .arrow { display:inline-block; animation: hintBounce 1.2s infinite; }
@keyframes hintBounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(4px);} }
.hero h1 { font-size: clamp(28px, 5vw, 60px); line-height: 1.05; margin: 0 0 10px; }
.hero p { font-size: clamp(14px, 2.2vw, 18px); margin: 0 0 22px; opacity: .95; }
.hero-ctas { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.hero .swiper-button-prev, .hero .swiper-button-next { color: #fff; }
.hero .swiper-pagination-bullet { background: rgba(255,255,255,.7); }
.hero .swiper-pagination-bullet-active { background: #fff; }

/* Sections */
.section { padding: 80px 0; }
.section-head { text-align:center; max-width: 760px; margin: 0 auto 36px; }
.section.intro .section-head { margin-bottom: 20px; }
.section h2 { font-size: clamp(22px, 3.2vw, 36px); margin: 0 0 12px; }
.section p { color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
.feature { background: #fff; border-radius: 16px; padding: 22px; box-shadow: var(--shadow); text-align:center; border:1px solid #eceef3; transition: transform .18s ease, box-shadow .18s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(17,18,23,.12); }
.feature i { display:none; }
.feature .svg-icon { width:48px; height:48px; display:inline-grid; place-items:center; border-radius:12px; background: linear-gradient(135deg, rgba(242,126,0,.12), rgba(242,126,0,.22)); margin-bottom:12px; }
.feature .svg-icon svg { width:24px; height:24px; }
.feature h3 { margin:8px 0 6px; font-size: clamp(14px, 1.6vw, 18px); }
.feature p { font-size: clamp(12px, 1.4vw, 15px); }
.feature .soft-link { display:inline-block; margin-top:10px; color: var(--primary); text-decoration:none; font-weight:600; }
.feature .soft-link:hover { text-decoration: underline; }
@media (max-width: 980px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } .feature { padding:18px; } }

.cta-band { background: linear-gradient(135deg, #f3ecff, #e8f2ff); }
.cta-inner { text-align:center; }
.cta-inner .actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* About band */
.about-band { background: linear-gradient(135deg, #fff1e3, #ffe3cc); padding: 56px 0; margin-top: 28px; }
.about-band-inner { display:grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items:center; }
.about-media { justify-self:center; }
.about-media img { width: 100%; max-width: 420px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 18px; box-shadow: 0 14px 38px rgba(17,18,23,.12); }
.about-copy .eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: 12px; color: #a04800; margin: 0 0 8px; display:inline-block; }
.about-copy .about-title { font-size: clamp(20px, 3vw, 30px); margin: 0 0 10px; }
.about-copy p { font-size: clamp(14px, 1.8vw, 18px); margin: 0; color:#2f3239; line-height:1.7; }
@media (max-width: 980px) {
  .about-band-inner { grid-template-columns: 1fr; gap: 20px; }
  .about-media img { max-width: 320px; }
  .about-copy { text-align:center; }
}

/* Footer */
.site-footer { background: #0f1116; color: #cfd3dc; }
/* Tables */
.table-wrap { overflow-x:auto; }
.table { width:100%; border-collapse: collapse; background:#fff; border-radius:14px; overflow:hidden; box-shadow: var(--shadow); }
.table thead th { background: #f9a35a; color:#fff; text-align:left; padding:12px; font-weight:700; letter-spacing:.3px; }
.table tbody td { padding:12px; border-top:1px solid #f1f2f6; }
.burs-table tbody tr:nth-child(odd) td { background:#fff7ef; }
.burs-table tbody tr:nth-child(even) td { background:#ffecd8; }
.site-footer a { color: #e8ecf4; text-decoration:none; opacity:.9; }
.site-footer a:hover { opacity: 1; }
.footer-grid { display:grid; grid-template-columns: 1.2fr .9fr .9fr .8fr; gap: 24px; padding: 60px 0; min-height: 1px; }
.footer-logo .logo-mark { background:#fff; color:#0f1116; }
.footer-links { display:grid; gap:6px; }
.footer-links a { opacity:.9; }
.footer-links a:hover { opacity:1; }
.footer-contact { display:grid; gap:8px; }
.footer-contact .contact-row { display:flex; align-items:center; gap:10px; background: transparent; border:0; padding:0; border-radius:0; color:#fff; text-decoration:none; }
.footer-contact .contact-row .ico { width:auto; display:inline-flex; align-items:center; justify-content:center; }
.footer-contact .contact-row .ico img { width:18px; height:18px; display:block; filter: brightness(0) invert(1); }
.footer-contact .contact-row span { display:inline-block; }
.footer-address { margin: 6px 0 0; color:#e8ecf4; display:flex; align-items:center; gap:8px; }
.footer-address .ico img { filter: brightness(0) invert(1); width:16px; height:16px; }
.site-footer .socials { display:flex; gap:12px; align-items:center; margin-top:8px; }
.site-footer .socials img { width:20px; height:20px; filter: brightness(0) invert(1); opacity:.9; transition: opacity .2s ease; }
.site-footer .socials a:hover img { opacity:1; }
.site-footer h4 { color:#fff; margin:0 0 10px; }
.footnote { border-top: 1px solid rgba(255,255,255,.12); }
.footnote .container { padding: 16px 20px; display:flex; align-items:center; justify-content:center; }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile footer side padding */
@media (max-width: 640px) {
  .site-footer .footer-grid { padding-left: 16px; padding-right: 16px; }
}

/* Mobile drawer donate button color */
.mobile-drawer .btn-primary { background: var(--primary); color: var(--primary-ink); }

/* Utils */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Spacing to offset fixed header */
main { display:block; flex: 1; }

/* Sub pages */
.sub-hero { position: relative; min-height: 40vh; display:grid; align-items:end; background-size: cover; background-position: center; }
.sub-hero::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45)); }
.sub-hero .inner { position:relative; padding: 100px 0 40px; color:#fff; }
.breadcrumb { display:flex; gap:8px; align-items:center; color: rgba(255,255,255,.85); font-size:14px; }
.breadcrumb a { color: #fff; opacity:.9; text-decoration:none; }
.page { padding: 96px 0 110px; }
.page.compact { padding-bottom: 20px; }
.content { max-width: 860px; }
.content h2 { margin-top: 26px; }
.page .content > h1 { margin-top: 16px; }
.content p { color: var(--muted); margin: 0 0 16px; }
.content .lead { text-align:center; max-width: 800px; margin: 0 auto 12px; }
.content h2 { margin-top: 34px; }
.content h3 { margin-top: 28px; }

/* Wide scroller */
.wide-scroller { overflow:hidden; border-radius:16px; margin: 32px 0; }
.wide-track { display:flex; gap:14px; animation: marquee 28s linear infinite; }
.wide-item { flex: 0 0 calc((100% - 28px) / 3); border-radius:16px; overflow:hidden; box-shadow: var(--shadow); background:#fff; }
.wide-item img { width:100%; height:100%; object-fit:cover; aspect-ratio: 16 / 9; }
@keyframes marquee { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }
@media (max-width: 980px) { .wide-item { flex-basis: calc((100% - 14px) / 2); } }

/* Project banner */
.project-banner { position:relative; border-radius:18px; overflow:hidden; background-size:cover; background-position:center; margin-top: 32px; min-height: 204px; }
.project-overlay { position:relative; z-index: 2; background: linear-gradient(135deg, rgba(0,0,0,.35), rgba(0,0,0,.2)); padding: 38px 22px; min-height: 204px; display:flex; align-items:center; }
.project-content { color:#fff; max-width: 780px; }
.project-content h3 { margin:0 0 8px; font-size: clamp(18px, 2.6vw, 28px); }
.project-content p { margin:0 0 12px; opacity:1; color:#fff; }
.btn-white { background:#fff; color: var(--primary); border:1px solid rgba(242,126,0,.35); }
.btn-white:hover { background:#fff; filter: brightness(.98); }

/* Ghost section title */
.ghost-title { position:absolute; z-index:1; top:14px; left:20px; pointer-events:none; font-size: clamp(18px, 3.8vw, 28px); line-height: 1; margin: 0; color: #fff; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; background: var(--primary); padding: 8px 12px; border-radius: 12px; box-shadow: 0 6px 18px rgba(242,126,0,.35); }

@media (min-width: 980px) {
  .project-banner { min-height: 272px; }
  .project-overlay { padding: 44px 26px; min-height: 272px; }
  .project-content { max-width: 780px; }
}

/* People grid */
.people-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin: 12px 0 8px; }
.person-card { background:#fff; border:1px solid #eceef3; border-radius:14px; padding:16px; box-shadow: var(--shadow); }
.person-card h3 { margin:0 0 6px; font-size: clamp(15px, 2vw, 18px); }
.person-card .role { margin:0; color:#6a6f78; font-weight:500; }
@media (max-width: 980px) { .people-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
/* Contact cards */
.contact-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 14px; }
.content ul + .contact-grid { margin-top: 28px; }
.contact-card { background:#fff; border:1px solid #eceef3; border-radius:18px; padding:0; box-shadow: 0 12px 28px rgba(17,18,23,.08); overflow:hidden; }
.contact-card h3 { margin:0 0 6px; font-size: clamp(16px, 2vw, 20px); }
.contact-card p { margin:0 0 8px; }

/* Enhanced contact design */
.contact-pro .contact-head { display:flex; align-items:center; gap:12px; padding:16px; background: linear-gradient(135deg, rgba(242,126,0,.1), rgba(242,126,0,.2)); border-bottom:1px solid #f3e6da; }
.contact-pro .contact-icon { width:48px; height:48px; border-radius:14px; background: #fff; color: var(--primary); display:grid; place-items:center; font-size:0; box-shadow: 0 8px 18px rgba(242,126,0,.25); }
.contact-pro .contact-icon svg { width:24px; height:24px; }
.contact-pro .contact-sub { color:#6a6f78; margin:0; }
.contact-pro .contact-lines { display:grid; gap:10px; padding: 14px; }
.contact-row { display:flex; align-items:center; gap:12px; padding:14px; background:#fff; border:1px solid #eceef3; border-radius:12px; text-decoration:none; color:inherit; box-shadow: 0 4px 12px rgba(17,18,23,.05); transition: transform .12s ease, box-shadow .12s ease; }
.contact-row:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(17,18,23,.08); }
.contact-row .ico { width:36px; height:36px; border-radius:10px; display:grid; place-items:center; background: rgba(242,126,0,.12); color: var(--primary); font-size:0; }
.contact-row .ico img { width:18px; height:18px; }
.contact-row .col { display:flex; flex-direction:column; line-height:1.2; }
.contact-row .col strong { font-size: 13px; color:#3b3f47; }
.contact-row .col span { font-size: 14px; color:#111217; }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 14px; }
.gallery-grid a { display:block; position:relative; overflow:hidden; border-radius:14px; box-shadow: var(--shadow); background:#fff; }
.gallery-grid a::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.06)); opacity:0; transition: opacity .2s ease; }
.gallery-grid a:hover::after { opacity:1; }
.gallery-grid img { width:100%; height:100%; object-fit:cover; aspect-ratio: 1 / 1; transform: scale(1.02); transition: transform .35s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; z-index: 3000; padding: 20px; }
.lightbox img { max-width: 96vw; max-height: 88vh; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.lightbox-close { position:absolute; top:16px; right:16px; background: rgba(255,255,255,.9); color:#111; border:0; border-radius:10px; width:38px; height:38px; cursor:pointer; font-size:18px; box-shadow: 0 6px 14px rgba(0,0,0,.2); }

/* People grid variations */
.people-grid.single { grid-template-columns: minmax(0, 420px); justify-content: center; }
.people-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
@media (max-width: 980px) { .people-grid.single, .people-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.people-subtitle { margin: 18px 0 6px; font-size: clamp(14px, 1.8vw, 16px); color:#444; }

/* Page enter animation */
@keyframes pageFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
body.page-enter main, body.page-enter .sub-hero, body.page-enter .hero { animation: pageFadeUp .6s ease both; }
body.nav-open { overflow:hidden; }

/* Scroll reveal */
.reveal { opacity:0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

/* Quick page preloader */
.preloader { position: fixed; inset: 0; background:#fff; z-index: 2000; display:grid; place-items:center; overflow:hidden; opacity:1; transition: opacity .4s ease; }
.preloader .wipe { position:absolute; inset:0; background:#fff; display:none; }
.preloader .logo { position:relative; z-index:1; }
.preloader .logo img { height:46px; width:auto; display:block; filter: drop-shadow(0 4px 18px rgba(0,0,0,.12)); transform: translateY(10px); opacity:0; animation: logoPop .5s ease .2s forwards; }
@keyframes preIn { from { opacity:0; } to { opacity:1; } }
@keyframes preOut { to { opacity:0; } }
/* wipeOut removed for pure fade close */
@keyframes logoPop { to { transform:none; opacity:1; } }
/* helper class to trigger fade close */
.preloader.fade-out { opacity: 0; }


