:root {
  --bg: #fff8f8;
  --surface: #ffffff;
  --surface-soft: #fff5f5;
  --surface-alt: #fffdf4;

  --text: #2a2020;
  --muted: #7a6161;
  --line: #f0d6d6;

  --primary: #ff1515;
  --primary-dark: #d90f0f;
  --primary-light: #ff3b3b;
  --primary-soft: #fff0f0;

  --yellow: #ffef00;
  --yellow-dark: #d8bf00;
  --yellow-soft: #fffde3;

  --red: #ff1515;
  --red-dark: #b90b0b;
  --red-soft: #fff1f1;

  --neutral: #f3f3f3;
  --neutral-dark: #dddddd;

  --shadow-sm: 0 4px 12px rgba(255, 21, 21, 0.08);
  --shadow-md: 0 10px 25px rgba(255, 21, 21, 0.10);
  --shadow-lg: 0 18px 45px rgba(255, 21, 21, 0.12);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --form-bg: #fff7f7;
  --form-input: #ffffff;
  --form-label: #d90f0f;

  --footer-bg: #ff1515;
  --footer-bg-dark: #d90f0f;
  --footer-accent: #ffef00;
  --footer-text: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.82);
  --footer-soft: rgba(255, 255, 255, 0.14);

  --success: #2aa84a;
  --warning: #ffef00;
  --error: #ff1515;
  --info: #ff7a00;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid transparent;
  background: var(--form-input);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: #9b7d7d;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 21, 21, 0.25);
  box-shadow: 0 0 0 4px rgba(255, 21, 21, 0.10);
}

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

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(240, 214, 214, 0.9);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-badge {
  width: 50px;
  height: 50px;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo strong {
  display: block;
  font-size: 1rem;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav > a,
.dropdown-toggle {
  color: var(--text);
  font-weight: 700;
  font-size: 0.98rem;
}

.nav > a:hover,
.dropdown-toggle:hover {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-arrow {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 210px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.dropdown-menu a:hover {
  background: var(--yellow-soft);
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--line);
}

.desktop-cta { white-space: nowrap; }
.menu-toggle,
.mobile-menu { display: none; }

.hero {
  padding: 56px 0 48px;
}

.hero-top {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.tag,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--yellow-soft);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 239, 0, 0.5);
}

.hero-top h1,
.section h2,
.contact-card-head h2,
.final-cta-box h2 {
  font-family: "Baloo 2", sans-serif;
}

.hero-top h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

.hero-top p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions.center {
  justify-content: center;
}

.hero-actions-top {
  margin-top: 26px;
}

.hero-gallery {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.05fr 0.9fr 0.9fr;
  gap: 14px;
  align-items: end;
}

.hero-col {
  display: grid;
  gap: 14px;
}

.hero-center-badge {
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--primary);
  font-size: 0.9rem;
}

.hero-photo {
  overflow: hidden;
  border-radius: 22px;
  background: #f6eeee;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255, 21, 21, 0.08);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.hero-photo:hover img {
  transform: scale(1.04);
}

.hero-photo-tall { height: 230px; }
.hero-photo-small { height: 96px; }
.hero-photo-large { height: 260px; }
.hero-photo-featured {
  height: 300px;
  border-radius: 24px;
}

.hero-logo-frame {
  background: #fff;
  border: 4px solid rgba(255, 239, 0, 0.75);
}

.hero-logo-frame img {
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.hero-center-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-center-cta:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--surface-alt);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section h2,
.contact-card-head h2,
.final-cta-box h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
}

.section-head p,
.text-block p {
  color: var(--muted);
}

.text-block p + p {
  margin-top: 14px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.level-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}

.feature-card h3,
.level-card h3 {
  margin: 16px 0 10px;
  font-size: 1.18rem;
}

.level-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: var(--yellow-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.placeholder-image {
  min-height: 340px;
  border-radius: 28px;
  border: 2px dashed #efcaca;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: #9c6e6e;
  font-weight: 800;
  background:
    radial-gradient(circle at top left, rgba(255, 21, 21, 0.06), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 239, 0, 0.14), transparent 36%),
    #fffafa;
}

.placeholder-image img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 20px;
}

.promo-section {
  padding-top: 10px;
}

.promo-only {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #fff;
}

.promo-only img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 120px;
  max-height: 220px;
}

.custom-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.custom-list.compact {
  gap: 8px;
  margin-top: 10px;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.custom-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--primary);
  font-size: 1.2rem;
}

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

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

.gallery-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 240px;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.cta-section {
  padding: 40px 0 60px;
}

.contact-wrap {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-photo,
.contact-card {
  border-radius: 28px;
  overflow: hidden;
}

.contact-photo {
  position: relative;
  min-height: 100%;
  background: #fde9e9;
  box-shadow: var(--shadow-lg);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.contact-photo-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, rgba(50, 0, 0, 0) 0%, rgba(120, 0, 0, 0.78) 100%);
  color: #fff;
}

.contact-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 239, 0, 0.18);
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-photo-overlay h3 {
  font-family: "Baloo 2", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 8px;
}

.contact-photo-overlay p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-card {
  background: var(--form-bg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.contact-card-head {
  margin-bottom: 22px;
}

.contact-card-head h2 {
  color: var(--form-label);
  margin-bottom: 8px;
}

.contact-card-head p {
  color: #7a6161;
  font-size: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 14px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field label {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--form-label);
}

.contact-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 22px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  font-size: 1.02rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.final-cta {
  padding: 0 0 90px;
}

.final-cta-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 55%, var(--yellow) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 40px 28px;
  box-shadow: var(--shadow-lg);
}

.final-cta-box p {
  font-size: 1.1rem;
  opacity: 0.96;
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 40px;
  padding: 78px 0 56px;
}

.footer-brand {
  max-width: 320px;
}

.footer-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 239, 0, 0.15);
  color: #fff;
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-family: "Baloo 2", sans-serif;
  border: 2px solid rgba(255, 239, 0, 0.35);
}

.footer-brand h3,
.footer-column h4 {
  font-family: "Baloo 2", sans-serif;
}

.footer-brand h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--footer-muted);
  font-size: 1.08rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--footer-soft);
  display: grid;
  place-items: center;
}

.footer-column h4 {
  color: var(--footer-accent);
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.footer-column ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--footer-text);
  font-size: 1.08rem;
}

.footer-bottom {
  background: var(--footer-bg-dark);
  text-align: center;
  padding: 18px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .desktop-cta { display: none; }
  .menu-toggle { display: block; font-size: 1.5rem; }

  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 0 16px 18px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-weight: 700;
  }

  .hero-gallery,
  .two-col,
  .footer-grid,
  .cards-grid,
  .cards-grid-3,
  .level-grid,
  .gallery-grid,
  .contact-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-tall,
  .hero-photo-small,
  .hero-photo-large,
  .hero-photo-featured {
    height: 240px;
  }

  .contact-photo img {
    min-height: 340px;
  }

  .contact-card {
    padding: 28px 22px;
  }
}

@media (max-width: 720px) {
  .hero-top h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 72px 0;
  }

  .contact-card-head h2 {
    font-size: 2rem;
  }

  .contact-photo-overlay h3 {
    font-size: 1.7rem;
  }

  .footer-brand h3 {
    font-size: 1.8rem;
  }

  .footer-column h4 {
    font-size: 1.5rem;
  }

  .final-cta-box {
    padding: 32px 20px;
  }

  .gallery-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .gallery-grid::-webkit-scrollbar {
    height: 8px;
  }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 21, 21, 0.2);
    border-radius: 999px;
  }

  .gallery-card {
    min-width: 82%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .gallery-card img {
    height: 260px;
  }
}