
/* ==============================================
   RESET + VARIABLES
   ============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nv:    #1A5476;
  --nv2:   #154060;
  --nv3:   #0F2D45;
  --gold:  #FFCD00;
  --gold2: #E6B800;
  --dark:  #231F20;
  --cream: #F4F2EE;
  --white: #FFFFFF;
  --gray:  #6B7A85;
  --bdr:   #D5DDE2;

  --font-h: 'Barlow Condensed', sans-serif;
  --font-b: 'Barlow', sans-serif;

  /* base sizes — larger for +40 */
  --text-xs:   13px;
  --text-sm:   15px;
  --text-base: 17px;
  --text-lg:   20px;
  --text-xl:   26px;
  --text-2xl:  36px;
  --text-3xl:  52px;
  --text-4xl:  72px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: var(--text-base);
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }

/* ==============================================
   NAV
   ============================================== */
nav {
  background: var(--nv3);
  height: 68px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}

.logo {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo .l-white { color: var(--white); }
.logo .l-gold  { color: var(--gold); }
.logo .tld     { color: rgba(255,255,255,0.35); font-size: 20px; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-b);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 11px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold2); }

/* ==============================================
   HERO
   ============================================== */
.hero {
  background: var(--nv3);
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

/* gold diagonal — Konior brand language */
.slash {
  position: absolute;
  right: 0; top: 0;
  width: 420px; height: 100%;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 6% 100%);
  z-index: 0;
}
.slash2 {
  position: absolute;
  right: 0; top: 0;
  width: 420px; height: 100%;
  background: var(--nv2);
  clip-path: polygon(62% 0, 100% 0, 100% 100%, 20% 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.tag-dot {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.tag-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: var(--text-4xl);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 .gold { color: var(--gold); }

.hero-lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-b);
  font-size: var(--text-lg);
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-b);
  font-size: var(--text-lg);
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-phone:hover { border-color: var(--gold); color: var(--gold); }

/* hero bottom bar */
.hero-bar {
  position: relative;
  z-index: 5;
  background: rgba(0,0,0,0.28);
  border-top: 3px solid var(--gold);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: auto;
}
.hb {
  padding: 18px 20px;
  border-right: 0.5px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hb:last-child { border-right: none; }
.hb-ico {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hb-ico svg { width: 20px; height: 20px; }
.hb-t {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.hb-s {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ==============================================
   USP STRIP
   ============================================== */
.usp {
  background: var(--white);
  border-bottom: 4px solid var(--gold);
}
.usp-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.usp-item {
  padding: 22px 20px;
  border-right: 0.5px solid var(--bdr);
  text-align: center;
}
.usp-item:last-child { border-right: none; }
.usp-chk {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
}
.usp-t {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}
.usp-s {
  font-size: var(--text-xs);
  color: var(--gray);
  margin-top: 4px;
}

/* ==============================================
   SECTION SHARED
   ============================================== */
.section { padding: 5rem 2.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nv);
  margin-bottom: 10px;
}

.sec-h {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--nv3);
  line-height: 1;
  margin-bottom: 10px;
}

.sec-sub {
  font-size: var(--text-lg);
  color: var(--gray);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ==============================================
   SERVICES — simplified, only 4 cards
   ============================================== */
.services { background: var(--cream); }

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

.svc {
  background: var(--white);
  border: 0.5px solid var(--bdr);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 2rem 2rem 1.75rem;
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26,84,118,0.1);
}

.svc-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 48px;
  color: rgba(26,84,118,0.08);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.svc h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--nv3);
  margin-bottom: 10px;
}

.svc p {
  font-size: var(--text-base);
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 18px;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-list li {
  font-size: var(--text-sm);
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-list li::before {
  content: '';
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==============================================
   STATS ROW
   ============================================== */
.stats-section {
  background: var(--nv3);
  padding: 4rem 2.5rem;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-block {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 0.5px solid rgba(255,255,255,0.08);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.5);
}

/* ==============================================
   PROCESS
   ============================================== */
.process { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.step {
  border-top: 4px solid var(--gold);
  padding: 1.75rem 1.5rem;
  background: var(--cream);
  border-radius: 0 0 4px 4px;
}
.step-n {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.step-t {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--nv3);
  margin-bottom: 8px;
  line-height: 1.2;
}
.step-d {
  font-size: var(--text-sm);
  color: var(--gray);
  line-height: 1.6;
}

/* ==============================================
   PRICE
   ============================================== */
.price-sec { background: var(--cream); }

.price-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: start;
}

.price-table {
  background: var(--white);
  border: 0.5px solid var(--bdr);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  overflow: hidden;
}

.pt-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 0.5px solid var(--bdr);
  gap: 16px;
  transition: background .15s;
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: #f0f7fb; }

.pt-name {
  font-size: var(--text-base);
  color: var(--dark);
  font-weight: 500;
}
.pt-price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--nv);
  white-space: nowrap;
  text-align: right;
}
.pt-note {
  font-size: var(--text-xs);
  color: var(--gray);
  text-align: right;
}
.free { color: #1A6B2E !important; }

/* price sidebar */
.price-side {
  background: var(--nv3);
  border-radius: 4px;
  padding: 2rem;
}
.price-side h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.ps-list {
  list-style: none;
  margin-bottom: 2rem;
}
.ps-list li {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.65);
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.4;
}
.ps-list li:last-child { border-bottom: none; }
.ps-chk {
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 900;
  color: var(--dark);
  margin-top: 1px;
}
.btn-side {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-b);
  font-size: var(--text-base);
  font-weight: 700;
  padding: 15px 0;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}
.btn-side:hover { background: var(--gold2); }

/* ==============================================
   REVIEWS
   ============================================== */
.reviews { background: var(--nv); }
.reviews .eyebrow { color: rgba(255,205,0,0.7); }
.reviews .sec-h { color: var(--white); }
.reviews .sec-sub { color: rgba(255,255,255,0.45); }

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rev {
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--gold);
  border-radius: 4px;
  padding: 1.75rem;
}
.rev-stars {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.rev-text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 18px;
}
.rev-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rev-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  flex-shrink: 0;
}
.rev-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}
.rev-city {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.38);
}

/* ==============================================
   AREAS
   ============================================== */
.areas { background: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.area {
  background: var(--cream);
  border: 1px solid var(--bdr);
  border-radius: 4px;
  padding: 16px 14px;
  text-align: center;
  transition: border-color .2s;
}
.area:hover { border-color: var(--nv); }
.area.main {
  background: var(--nv);
  border-color: var(--nv);
}
.area-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--dark);
}
.area.main .area-name { color: var(--gold); }
.area-note {
  font-size: var(--text-xs);
  color: var(--gray);
  margin-top: 2px;
}
.area.main .area-note { color: rgba(255,255,255,0.3); }

/* ==============================================
   CTA
   ============================================== */
.cta-sec {
  background: var(--gold);
  padding: 5rem 2.5rem;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: var(--text-4xl);
  color: var(--dark);
  line-height: 0.9;
  letter-spacing: -2px;
  margin-bottom: 14px;
}
.cta-inner p {
  font-size: var(--text-lg);
  color: rgba(35,31,32,0.65);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}
.cta-input {
  flex: 1;
  min-width: 220px;
  padding: 16px 18px;
  border-radius: 4px;
  border: none;
  font-size: var(--text-base);
  font-family: var(--font-b);
  outline: none;
  background: var(--white);
  color: var(--dark);
}
.cta-btn {
  background: var(--nv3);
  color: var(--white);
  font-family: var(--font-b);
  border: none;
  padding: 16px 28px;
  border-radius: 4px;
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.cta-btn:hover { background: var(--nv2); }
.cta-tel {
  font-size: var(--text-base);
  color: rgba(35,31,32,0.6);
}
.cta-tel a {
  font-weight: 700;
  color: var(--dark);
}

/* ==============================================
   FOOTER
   ============================================== */
footer {
  background: var(--nv3);
  padding: 4rem 2.5rem 2rem;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.f-logo {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 4px;
}
.f-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.f-contact {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 2;
}
.f-contact a { color: rgba(255,255,255,0.6); transition: color .2s; }
.f-contact a:hover { color: var(--gold); }
.f-col h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 14px;
}
.f-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
  transition: color .2s;
}
.f-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 8px;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 52px; }
  .hero-bar { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-wrap { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  :root { --text-4xl: 48px; --text-3xl: 38px; }
  nav { padding: 0 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 0; }
  .section { padding: 3.5rem 1.25rem; }
  .hero h1 { font-size: 42px; }
  .hero-bar { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .slash, .slash2 { opacity: 0.2; }
  .cta-inner h2 { font-size: 38px; }
}


.hero h1 .h1-line {
  display: block;
  line-height: 1.18;
  padding-bottom: 0.12em;
  letter-spacing: -0.5px;
}

.fl-white { color: var(--white); }
.fl-gold  { color: var(--gold); }
.fl-tld   { color: rgba(255,255,255,0.3); font-size: 18px; }


/* GDPR Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--nv3);
  border-top: 3px solid var(--gold);
  padding: 1.25rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
.cookie-text {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: var(--gold2); }
.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  white-space: nowrap;
}
.btn-cookie-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }

/* GDPR page */
.gdpr-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.gdpr-modal.open { display: flex; }
.gdpr-box {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem;
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-top: 4px solid var(--gold);
}
.gdpr-box h3 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 28px;
  color: var(--nv3);
  margin-bottom: 1rem;
}
.gdpr-box p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.gdpr-box .close-gdpr {
  margin-top: 1rem;
  background: var(--nv3);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}


/* ============================
   REALIZACE / GALLERY
   ============================ */
.gallery { background: var(--nv3); }
.gallery .eyebrow { color: rgba(255,205,0,0.7); }
.gallery .sec-h  { color: var(--white); }
.gallery .sec-sub{ color: rgba(255,255,255,0.45); }





.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--nv2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,45,69,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.g-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}


/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}
.lb-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,205,0,0.9);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-caption {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15,45,69,0.9);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 3px;
  font-size: var(--text-sm);
  white-space: nowrap;
  border-top: 2px solid var(--gold);
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .gallery-grid { grid-template-columns: 1fr; }
}


/* ============================
   MASCOT
   ============================ */

/* Hero mascot */
.hero-mascot-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 0 0 0;
  position: relative;
  z-index: 5;
}
.hero-mascot {
  width: 300px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
  /* slight lift so feet touch bottom bar */
  margin-bottom: -4px;
}

/* CTA layout with mascot */
.cta-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.cta-layout .cta-inner {
  flex: 1;
  max-width: 680px;
  text-align: center;
}
.cta-mascot-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}
.cta-mascot {
  width: 280px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

@media (max-width: 900px) {
  .hero-mascot { width: 220px; }
  .cta-layout { flex-direction: column; gap: 1rem; }
  .cta-mascot { width: 160px; }
}
@media (max-width: 600px) {
  .hero-mascot-wrap { display: none; }
  .cta-mascot-wrap  { display: none; }
}


.hero-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  flex: 1;
  padding: 3rem 2.5rem 0;
  gap: 2rem;
}
.hero-mascot-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}
.hero-mascot {
  width: 420px;
  max-width: 38vw;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.2));
  margin-bottom: -4px;
}
@media (max-width: 960px) {
  .hero-mascot { width: 220px; max-width: 28vw; }
}
@media (max-width: 650px) {
  .hero-mascot-wrap { display: none; }
  .hero-flex { padding: 2.5rem 1.25rem 0; }
}


/* Mascots section */
.mascots-sec{background:#fff;padding:80px 5%;}
.mascots-sec .section-head{max-width:1200px;margin:0 auto 40px;text-align:center;}
.mascots-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:32px;}
.mascot-card{background:linear-gradient(160deg,#0F2D45 0%,#153a58 100%);border-radius:24px;padding:24px;display:flex;flex-direction:column;align-items:center;gap:16px;box-shadow:0 12px 40px rgba(15,45,69,.15);transition:transform .3s ease,box-shadow .3s ease;}
.mascot-card:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(15,45,69,.25);}
.mascot-card img{width:100%;max-width:320px;height:auto;object-fit:contain;}
.mascot-card figcaption{color:#FFCD00;font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:1.25rem;letter-spacing:.02em;text-transform:uppercase;}
@media(max-width:900px){.mascots-grid{grid-template-columns:1fr;}}
