:root {
  --yellow: #FFD54A;
  --orange: #FF8C42;
  --red: #E53935;
  --green: #43A047;
  --blue: #29B6F6;
  --black: #111111;
  --paper: #ffffff;
  --cream: #fff8ea;
  --ink: #2a2017;
  --muted: #6b5b4a;
  --shadow: 0 10px 0 rgba(17, 17, 17, 0.12);
  --soft-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Arial Rounded MT Bold", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf6 0%, #ffffff 45%, #fff8ea 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 213, 74, 0.45) 0, transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(41, 182, 246, 0.28) 0, transparent 16%),
    radial-gradient(circle at 80% 82%, rgba(229, 57, 53, 0.22) 0, transparent 18%),
    radial-gradient(#000 0.7px, transparent 0.7px);
  background-size: auto, auto, auto, 26px 26px;
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

main {
  position: relative;
  z-index: 1;
}

.container,
.section-inner,
.header-inner,
.hero-grid,
.cta-grid {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 920px;
}

.outline {
  border: 4px solid var(--black);
  box-shadow: var(--shadow);
}

.grain {
  position: relative;
  overflow: hidden;
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(17, 17, 17, 0.12) 0.7px, transparent 0.7px);
  background-size: 14px 14px;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;

  background: linear-gradient(180deg, #ffffff, #fff8ea);
  border-bottom: 4px solid var(--black);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.logo {
  height: 70px; /* control size here */
  width: auto;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  text-shadow: 2px 2px 0 #fff;
}

.brand-slogan {
  margin: 6px 0 0;
  font-weight: 900;
  font-style: italic;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 900;
}

.main-nav a:hover {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 4px solid var(--black);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 0 rgba(17, 17, 17, 0.12);
}

.btn-primary {
  background: linear-gradient(180deg, var(--yellow), var(--orange));
}

.btn-secondary {
  background: #fff;
}

.hero {
  padding: 76px 0 54px;
}

.premium-hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  z-index: -1;
}

.hero-orb-one {
  background: var(--yellow);
  top: -140px;
  left: -120px;
}

.hero-orb-two {
  background: var(--blue);
  right: -120px;
  bottom: -140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  font-weight: 900;
  color: var(--red);
}

.eyebrow {
  transform: rotate(-2deg);
  margin-bottom: 18px;
}

.hero-title {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 1px;
  text-shadow: 3px 3px 0 #fff, 6px 6px 0 var(--black);
}

.hero-title span {
  color: var(--red);
}

.hero-lead,
.section-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 800;
  color: var(--muted);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.25rem;
  color: var(--blue);
}

.stat-card span {
  font-weight: 900;
  font-size: 0.9rem;
}

.hero-card,
.info-card,
.gallery-card,
.form-card,
.cta-card,
.benefit-card,
.club-card,
.why-list {
  background: #fff;
  border-radius: var(--radius-xl);
}

.premium-hero-card {
  padding: 20px;
  background: linear-gradient(180deg, #fff, #fff8ea);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 16px;
}

.hero-card-top h3 {
  margin: 8px 0 0;
  font-size: 1.6rem;
  color: var(--orange);
  text-transform: uppercase;
}

.hero-badge {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 4px solid var(--black);
  border-radius: 20px;
  background: var(--yellow);
  font-size: 1.8rem;
  box-shadow: var(--shadow);
}

.premium-visual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.visual-tile {
  background: var(--cream);
  border-radius: 24px;
  padding: 12px;
}

.hero-image,
.gallery-image {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f6f6f6;
  border-radius: 18px;
  border: 4px solid var(--black);
}

.figure-caption {
  margin-top: 10px;
  font-weight: 900;
  font-size: 0.95rem;
}

.photo-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: #fff;
  border-radius: 22px;
  padding: 10px;
}

.photo-strip img {
  height: 86px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid var(--black);
}

.section {
  padding: 72px 0;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 0.6px;
  text-shadow: 2px 2px 0 #fff, 5px 5px 0 rgba(17, 17, 17, 0.12);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.benefit-card {
  padding: 24px;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 4px solid var(--black);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--yellow), var(--orange));
  box-shadow: var(--shadow);
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  font-weight: 800;
  line-height: 1.55;
}

.gallery-grid,
.premium-gallery-grid {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.premium-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 0 rgba(17, 17, 17, 0.12);
}

.card-media {
  padding: 14px 14px 0;
}

.card-body {
  padding: 18px;
}

.card-meta {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  border: 3px solid var(--black);
  font-weight: 900;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.gallery-card h3,
.card-body h3 {
  font-size: 1.28rem;
  color: var(--blue);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.gallery-card p,
.card-body p {
  line-height: 1.55;
  margin: 0 0 12px;
  font-weight: 800;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.featured-card {
  background: linear-gradient(180deg, #fff, #fff6df);
}

.card-ribbon {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  border: 3px solid var(--black);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.photo-slider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 20px;
  background: #f6f6f6;
  border: 4px solid var(--black);
}

.slide-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: photoFade 18s infinite;
}

.slide-photo:nth-child(1) { animation-delay: 0s; }
.slide-photo:nth-child(2) { animation-delay: 3s; }
.slide-photo:nth-child(3) { animation-delay: 6s; }
.slide-photo:nth-child(4) { animation-delay: 9s; }
.slide-photo:nth-child(5) { animation-delay: 12s; }
.slide-photo:nth-child(6) { animation-delay: 15s; }

.slide-photo-next {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slide-photo-next.active {
  opacity: 1;
}

.next-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 4px solid var(--black);
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  box-shadow: var(--shadow);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-bottom: 3px;
}

.dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 2px solid var(--black);
  cursor: pointer;
}

.dot.active {
  background: var(--yellow);
}

.club-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  padding: 28px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #fff8ea);
}

.club-content {
  padding: 10px;
}

.club-points {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.club-point {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 3px solid var(--black);
  border-radius: 20px;
  background: #fff;
}

.club-point span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 3px solid var(--black);
  border-radius: 16px;
  background: var(--yellow);
  font-size: 1.35rem;
}

.club-point strong {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  text-transform: uppercase;
}

.club-point p {
  margin: 0;
  font-weight: 800;
}

.club-image-wrap {
  position: relative;
}

.club-image {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  border: 4px solid var(--black);
  box-shadow: var(--soft-shadow);
}

.floating-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 14px 16px;
  display: grid;
  gap: 2px;
  font-weight: 900;
}

.why-grid,
.premium-cta-grid {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.why-list {
  padding: 22px;
  display: grid;
  gap: 14px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: var(--cream);
  border: 3px solid var(--black);
  border-radius: 18px;
  font-weight: 900;
}

.why-item span {
  font-size: 1.7rem;
}

.premium-cta-card,
.premium-form-card {
  padding: 26px;
}

.contact-highlights {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-highlights div {
  padding: 14px;
  border: 3px solid var(--black);
  border-radius: 18px;
  background: #fff;
  font-weight: 900;
}

form,
.premium-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.premium-form label span {
  display: block;
  margin-bottom: 7px;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid var(--black);
  border-radius: 16px;
  font: inherit;
  font-weight: 700;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 4px solid rgba(41, 182, 246, 0.22);
  outline-offset: 2px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  font-size: 1.0rem;
}

.flash {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff7d8;
  font-weight: 900;
}

.flash-error {
  background: #ffe0e0;
}

.flash-success {
  background: #dff7df;
}

.turnstile-wrap {
  min-height: 65px;
}

.footer {
  width: min(var(--container), calc(100% - 28px));
  margin: 0 auto;
  padding: 34px 0 44px;
  text-align: center;
  font-weight: 900;
  color: #6b4d22;
}

.premium-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-brand {
  display: grid;
  gap: 4px;
  text-align: left;
}

@keyframes photoFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  28% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .benefit-grid,
  .gallery-grid,
  .premium-gallery-grid,
  .club-card,
  .why-grid,
  .premium-cta-grid,
  .form-row,
  .premium-visual-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .premium-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container,
  .header-inner,
  .hero-grid,
  .section-inner,
  .gallery-grid,
  .premium-gallery-grid,
  .cta-grid,
  .why-grid,
  .premium-cta-grid {
    width: min(calc(100% - 18px), var(--container));
  }

  .header-inner {
    padding: 10px 0;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-slogan {
    font-size: 0.85rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .photo-slider {
    height: 260px;
  }

  .club-image {
    min-height: 280px;
  }
}

.real-gallery img {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.86);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 24px;
  border: 4px solid var(--black);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 4px solid var(--black);
  border-radius: 50%;
  background: #fff;
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 768px) {
  .real-gallery {
    grid-template-columns: 1fr;
  }
}

/* BŪRELIO NUOTRAUKŲ SLANKIKLIS */

.burelis-gallery-card {
    max-width: 760px;
    margin: 28px auto 42px;
}

.burelis-gallery-card .card-media {
    padding: 12px;
}

.burelis-photo-slider {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
}

.burelis-photo-slider .slide-photo-next {
    object-fit: cover;
    object-position: center;
}

/* Mobiliesiems */

@media (max-width: 768px) {
    .burelis-photo-slider {
        aspect-ratio: 1 / 1;
    }
}
