/* IGGY Renginiai — scoped styles (generated, scope: #iggy-app). */
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body.iggy-lock { overflow: hidden; }

:root {
  --bg: #0c0c0f;
  --bg-alt: #111116;
  --bg-card: #17171e;
  --text: #f3f1ea;
  --text-dim: #a7a5a0;
  --gold: #f5b301;
  --gold-2: #ffd34d;
  --gold-grad: linear-gradient(135deg, #ffd970 0%, #f5b301 45%, #d99100 100%);
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --maxw: 1180px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
#iggy-app * { margin: 0; padding: 0; box-sizing: border-box; }
#iggy-app { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
#iggy-app { overflow-x: hidden; }
#iggy-app {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
#iggy-app img { max-width: 100%; display: block; }
#iggy-app a { color: inherit; text-decoration: none; }
#iggy-app button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
#iggy-app ul { list-style: none; }
#iggy-app h1, #iggy-app h2, #iggy-app h3, #iggy-app h4 { font-family: "Montserrat", sans-serif; line-height: 1.1; font-weight: 800; }
#iggy-app .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
#iggy-app .container--narrow { max-width: 760px; }
#iggy-app .section { padding: 110px 0; position: relative; }
#iggy-app .section--dark { background: var(--bg-alt); }
#iggy-app .section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
}
#iggy-app .section__title {
  text-align: center;
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 56px;
  letter-spacing: -0.5px;
}
#iggy-app .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  text-transform: uppercase;
  white-space: nowrap;
}
#iggy-app .btn--gold {
  background: var(--gold-grad);
  color: #1a1300;
}
#iggy-app .btn--gold:hover { transform: translateY(-3px); }
#iggy-app .btn--outline { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
#iggy-app .btn--outline:hover { background: var(--gold); color: #1a1300; }
#iggy-app .btn--lg { padding: 18px 40px; font-size: 15px; }
#iggy-app .btn--sm { padding: 9px 20px; font-size: 12px; }
#iggy-app .logo { display: flex; flex-direction: column; line-height: 0.95; }
#iggy-app .logo__mark {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 1px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#iggy-app .logo__sub {
  font-size: 10px;
  letter-spacing: 5px;
  font-weight: 600;
  color: var(--text-dim);
}
#iggy-app .logo__img { height: 38px; width: auto; max-width: 170px; display: block; object-fit: contain; }
#iggy-app .footer .logo__img { height: 34px; }
#iggy-app .header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s, padding 0.35s;
  padding: 18px 0;
}
#iggy-app .header.scrolled {
  background: rgba(12, 12, 15, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 10px 0;
}
#iggy-app .header__inner { display: flex; align-items: center; justify-content: space-between; }
#iggy-app .nav { display: flex; align-items: center; gap: 30px; }
#iggy-app .nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text);
  position: relative;
  transition: color 0.25s;
}
#iggy-app .nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
#iggy-app .nav__link:hover { color: var(--gold); }
#iggy-app .nav__link:hover::after { width: 100%; }
#iggy-app .nav__cta { margin-left: 6px; }
#iggy-app .burger { display: none; flex-direction: column; gap: 5px; padding: 6px; z-index: 110; }
#iggy-app .burger span {
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#iggy-app .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#iggy-app .burger.active span:nth-child(2) { opacity: 0; }
#iggy-app .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#iggy-app .hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
#iggy-app .hero__bg { position: absolute; inset: 0; z-index: 0; }
#iggy-app .hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
#iggy-app .hero__animated {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(245, 179, 1, 0.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(123, 70, 255, 0.22), transparent 45%),
    radial-gradient(circle at 60% 20%, rgba(255, 0, 128, 0.16), transparent 40%),
    linear-gradient(125deg, #0c0c12, #15101f, #0c0c12);
  background-size: 200% 200%, 200% 200%, 200% 200%, 200% 200%;
  animation: iggy-bgmove 18s ease infinite;
}
@keyframes iggy-bgmove {
  0%   { background-position: 0% 50%, 100% 50%, 50% 0%, 0% 50%; }
  50%  { background-position: 100% 50%, 0% 50%, 50% 100%, 100% 50%; }
  100% { background-position: 0% 50%, 100% 50%, 50% 0%, 0% 50%; }
}
#iggy-app .hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,15,0.55) 0%, rgba(12,12,15,0.35) 40%, rgba(12,12,15,0.9) 100%);
}
#iggy-app .hero__content { position: relative; z-index: 2; }
#iggy-app .hero__eyebrow {
  letter-spacing: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  animation: iggy-fadeUp 0.8s var(--ease) 0.1s forwards;
}
#iggy-app .hero__title {
  font-size: clamp(34px, 7vw, 76px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 22px;
  overflow-wrap: break-word;
  max-width: 100%;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: iggy-fadeUp 0.8s var(--ease) 0.25s forwards;
}
#iggy-app .wink { display: inline-block; animation: iggy-wink 3s ease-in-out infinite; }
@keyframes iggy-wink { 0%, 90%, 100% { transform: rotate(0); } 95% { transform: rotate(15deg); } }
#iggy-app .hero__text {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 34px;
  opacity: 0;
  animation: iggy-fadeUp 0.8s var(--ease) 0.4s forwards;
}
#iggy-app .hero__btn { opacity: 0; animation: iggy-fadeUp 0.8s var(--ease) 0.55s forwards; }
@keyframes iggy-fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
#iggy-app .stats {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  margin-top: 64px;
  flex-wrap: wrap;
  opacity: 0;
  animation: iggy-fadeUp 0.8s var(--ease) 0.7s forwards;
}
#iggy-app .stat { min-width: 140px; }
#iggy-app .stat__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
#iggy-app .stat__label { color: var(--text-dim); font-size: 14px; margin-top: 8px; max-width: 180px; margin-inline: auto; }
#iggy-app .hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#iggy-app .hero__mouse {
  display: block;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  position: relative;
}
#iggy-app .hero__mouse::after {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: iggy-scrolldot 1.6s infinite;
}
@keyframes iggy-scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }
#iggy-app .services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
#iggy-app .service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
}
#iggy-app .service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 179, 1, 0.4);
  box-shadow: var(--shadow);
}
#iggy-app .service-card__icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: inline-flex;
  width: 72px; height: 72px;
  align-items: center; justify-content: center;
  background: rgba(245, 179, 1, 0.1);
  border-radius: 18px;
}
#iggy-app .service-card h3 { font-size: 22px; margin-bottom: 12px; }
#iggy-app .service-card p { color: var(--text-dim); font-size: 15px; }
#iggy-app .review-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
#iggy-app .review-slider__viewport { flex: 1 1 0; min-width: 0; overflow: hidden; }
#iggy-app .review-slider__track { display: flex; transition: transform 0.6s var(--ease); }
#iggy-app .review-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 14px 10px;
  text-align: center;
}
#iggy-app .review-card__stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; margin-bottom: 22px; }
#iggy-app .review-card__text {
  font-size: clamp(17px, 2.4vw, 24px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 26px;
}
#iggy-app .review-card__author { font-weight: 700; font-family: "Montserrat", sans-serif; font-size: 16px; }
#iggy-app .review-card__event { color: var(--text-dim); font-size: 14px; }
#iggy-app .review-slider__arrow {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 26px;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
#iggy-app .review-slider__arrow:hover { background: var(--gold); color: #1a1300; border-color: var(--gold); }
#iggy-app .review-slider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
#iggy-app .review-slider__dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.25s, width 0.25s;
}
#iggy-app .review-slider__dots button.active { background: var(--gold); width: 26px; border-radius: 5px; }
#iggy-app .marquee {
  margin-top: 70px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
#iggy-app .marquee__track { display: flex; gap: 18px; width: max-content; animation: iggy-marquee 40s linear infinite; }
#iggy-app .marquee:hover .marquee__track { animation-play-state: paused; }
#iggy-app .marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 12px 24px;
  white-space: nowrap;
}
#iggy-app .marquee-item .stars { color: var(--gold); letter-spacing: 2px; }
#iggy-app .marquee-item .name { font-size: 14px; color: var(--text-dim); }
@keyframes iggy-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
#iggy-app .team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 820px;
  margin: 0 auto;
}
#iggy-app .team-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
#iggy-app .team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
#iggy-app .team-card__photo { aspect-ratio: 4 / 4.4; overflow: hidden; }
#iggy-app .team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); filter: grayscale(15%); }
#iggy-app .team-card:hover .team-card__photo img { transform: scale(1.06); filter: grayscale(0); }
#iggy-app .team-card__info { padding: 24px; text-align: center; }
#iggy-app .team-card__info h3 { font-size: 22px; margin-bottom: 4px; }
#iggy-app .team-card__role { color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; margin-bottom: 16px; }
#iggy-app .gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
#iggy-app .gallery__item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
#iggy-app .gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
#iggy-app .gallery__item::after {
  content: "🔍";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  background: rgba(12,12,15,0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
#iggy-app .gallery__item:hover img { transform: scale(1.1); }
#iggy-app .gallery__item:hover::after { opacity: 1; }
#iggy-app .gallery__item--tall { grid-row: span 2; }
#iggy-app .gallery__item--wide { grid-column: span 2; }
#iggy-app .faq__list { display: flex; flex-direction: column; gap: 14px; }
#iggy-app .faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
#iggy-app .faq__item.open { border-color: rgba(245, 179, 1, 0.4); }
#iggy-app .faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
}
#iggy-app .faq__icon { font-size: 24px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
#iggy-app .faq__item.open .faq__icon { transform: rotate(45deg); }
#iggy-app .faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
#iggy-app .faq__a p { padding: 0 24px 24px; color: var(--text-dim); }
#iggy-app .faq__cta { text-align: center; margin-top: 32px; color: var(--text-dim); font-size: 16px; }
#iggy-app .faq__cta a { color: var(--gold); font-weight: 700; white-space: nowrap; }
#iggy-app .faq__cta a:hover { text-decoration: underline; }
#iggy-app .reserve__lead { text-align: center; color: var(--text-dim); margin: -34px auto 44px; max-width: 520px; }
#iggy-app .reserve-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  transition: opacity 0.5s, transform 0.5s;
}
#iggy-app .reserve-form.is-hidden { opacity: 0; visibility: hidden; transform: scale(0.96); pointer-events: none; position: absolute; top: 0; left: 0; right: 0; }
#iggy-app .field { display: flex; flex-direction: column; gap: 8px; }
#iggy-app .field--full { grid-column: 1 / -1; }
#iggy-app .field label, #iggy-app .field__label { font-size: 13px; font-weight: 600; color: var(--text-dim); letter-spacing: 0.5px; }
#iggy-app .field input {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
#iggy-app .field input::placeholder { color: #5e5c57; }
#iggy-app .field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.15);
}
#iggy-app .field input:invalid:not(:placeholder-shown) { border-color: #e04848; }
#iggy-app .field input[type="date"] { color-scheme: dark; }
#iggy-app .date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: #5e5c57;
  font-family: inherit;
  font-size: 15px;
  text-align: left;
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s;
}
#iggy-app .date-trigger:hover { border-color: rgba(245, 179, 1, 0.4); }
#iggy-app .date-trigger:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 179, 1, 0.15);
}
#iggy-app .date-trigger.has-value { color: var(--text); }
#iggy-app .date-trigger.error { border-color: #e04848; }
#iggy-app .date-trigger__icon { opacity: 0.7; }
#iggy-app .choice-group { display: flex; gap: 14px; flex-wrap: wrap; }
#iggy-app .choice { flex: 1; min-width: 160px; cursor: pointer; }
#iggy-app .choice input { position: absolute; opacity: 0; }
#iggy-app .choice__box {
  display: block;
  text-align: center;
  padding: 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.25s;
  background: var(--bg-card);
}
#iggy-app .choice input:checked + .choice__box {
  border-color: var(--gold);
  background: rgba(245, 179, 1, 0.12);
  color: var(--gold-2);
  box-shadow: 0 8px 24px rgba(245, 179, 1, 0.18);
}
#iggy-app .reserve-form__submit { grid-column: 1 / -1; position: relative; overflow: hidden; }
#iggy-app .reserve-form__spinner {
  position: absolute;
  width: 22px; height: 22px;
  border: 3px solid rgba(26,19,0,0.3);
  border-top-color: #1a1300;
  border-radius: 50%;
  opacity: 0;
  animation: iggy-spin 0.8s linear infinite;
}
@keyframes iggy-spin { to { transform: rotate(360deg); } }
#iggy-app .reserve-form.is-sending .reserve-form__submit-text { opacity: 0; }
#iggy-app .reserve-form.is-sending .reserve-form__spinner { opacity: 1; }
#iggy-app .reserve-form.is-sending .reserve-form__submit { pointer-events: none; }
#iggy-app .reserve-success {
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  transition: opacity 0.6s var(--ease) 0.1s, transform 0.6s var(--ease) 0.1s;
  position: absolute;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
#iggy-app .reserve-success.show { opacity: 1; transform: scale(1); pointer-events: auto; position: relative; }
#iggy-app .reserve-success__logo { margin-bottom: 6px; align-items: center; }
#iggy-app .reserve-success__logo .logo__mark { font-size: 40px; }
#iggy-app .reserve-success__logo .logo__sub { font-size: 13px; letter-spacing: 8px; }
#iggy-app .reserve-success__logo .logo__img { height: 50px; max-width: 220px; margin: 0 auto; }
#iggy-app .reserve-success__check {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: #1a1300;
  font-size: 40px;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 16px 0;
  animation: iggy-pop 0.5s var(--ease);
  box-shadow: 0 12px 36px rgba(245, 179, 1, 0.45);
}
@keyframes iggy-pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
#iggy-app .reserve-success h3 { font-size: 28px; }
#iggy-app .reserve-success p { color: var(--text-dim); }
#iggy-app .footer { background: #08080b; border-top: 1px solid var(--line); padding-top: 70px; }
#iggy-app .footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
#iggy-app .footer__col h4 { font-size: 15px; margin-bottom: 18px; letter-spacing: 1px; }
#iggy-app .footer__col a, #iggy-app .footer__col p { display: block; color: var(--text-dim); font-size: 14px; margin-bottom: 10px; transition: color 0.25s; }
#iggy-app .footer__col a:hover { color: var(--gold); }
#iggy-app .footer__col--brand .logo { margin-bottom: 16px; }
#iggy-app .footer__col--brand p { max-width: 280px; }
#iggy-app .footer__socials a { display: inline-block; margin-right: 14px; }
#iggy-app .footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
#iggy-app .footer__bottom p { color: #5e5c57; font-size: 13px; text-align: center; }
#iggy-app .footer__cta { margin-top: 16px; font-size: 14px; }
#iggy-app .footer__cta a { color: var(--gold); font-weight: 700; white-space: nowrap; }
#iggy-app .footer__cta a:hover { text-decoration: underline; }
#iggy-app .modal, #iggy-app .lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  padding: 24px;
}
#iggy-app .modal.show, #iggy-app .lightbox.show { opacity: 1; visibility: visible; }
#iggy-app .modal__backdrop { position: absolute; inset: 0; background: rgba(5,5,8,0.8); backdrop-filter: blur(6px); }
#iggy-app .modal__dialog {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.4s var(--ease);
}
#iggy-app .modal.show .modal__dialog { transform: translateY(0) scale(1); }
#iggy-app .modal__close, #iggy-app .lightbox__close {
  position: absolute;
  top: 14px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 26px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background 0.25s;
}
#iggy-app .modal__close:hover, #iggy-app .lightbox__close:hover { background: var(--gold); color: #1a1300; }
#iggy-app .modal__body { padding: 0; }
#iggy-app .modal-member__photo { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 20px 20px 0 0; }
#iggy-app .modal-member__content { padding: 28px 30px 34px; }
#iggy-app .modal-member__content h3 { font-size: 28px; margin-bottom: 4px; }
#iggy-app .modal-member__role { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; margin-bottom: 18px; }
#iggy-app .modal-member__content p { color: var(--text-dim); margin-bottom: 14px; }
#iggy-app .modal-member__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
#iggy-app .modal-member__tags span { background: rgba(245,179,1,0.1); color: var(--gold-2); padding: 6px 14px; border-radius: 100px; font-size: 13px; }
#iggy-app .lightbox { background: rgba(5,5,8,0.94); }
#iggy-app .lightbox__img { max-width: 90vw; max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow); }
#iggy-app .lightbox__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
#iggy-app .lightbox__arrow:hover { background: var(--gold); color: #1a1300; }
#iggy-app .lightbox__arrow--prev { left: 24px; }
#iggy-app .lightbox__arrow--next { right: 24px; }
#iggy-app .datepicker {
  position: fixed; inset: 0;
  z-index: 210;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 24px;
}
#iggy-app .datepicker.show { opacity: 1; visibility: visible; }
#iggy-app .datepicker__backdrop { position: absolute; inset: 0; background: rgba(5,5,8,0.8); backdrop-filter: blur(6px); }
#iggy-app .datepicker__panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 26px 26px 22px;
  box-shadow: var(--shadow);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease);
}
#iggy-app .datepicker.show .datepicker__panel { transform: translateY(0) scale(1); }
#iggy-app .datepicker__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 24px; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s;
}
#iggy-app .datepicker__close:hover { background: var(--gold); color: #1a1300; }
#iggy-app .datepicker__head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-right: 32px; }
#iggy-app .datepicker__back {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
#iggy-app .datepicker__back:hover { background: var(--gold); color: #1a1300; border-color: var(--gold); }
#iggy-app .datepicker__title { font-size: 19px; }
#iggy-app .datepicker__steps { display: flex; gap: 8px; margin-bottom: 20px; }
#iggy-app .datepicker__step {
  flex: 1; text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-dim);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
  transition: color 0.25s, border-color 0.25s;
}
#iggy-app .datepicker__step.is-active { color: var(--gold); border-color: var(--gold); }
#iggy-app .datepicker__step.is-done { color: var(--text); }
#iggy-app .datepicker__body { min-height: 180px; }
#iggy-app .dp-grid { display: grid; gap: 10px; }
#iggy-app .dp-grid--years { grid-template-columns: 1fr 1fr; }
#iggy-app .dp-grid--months { grid-template-columns: repeat(3, 1fr); }
#iggy-app .dp-grid--days { grid-template-columns: repeat(7, 1fr); gap: 6px; }
#iggy-app .dp-cell {
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 16px 8px;
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
#iggy-app .dp-cell:hover:not(:disabled) { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
#iggy-app .dp-cell:disabled { opacity: 0.28; cursor: not-allowed; }
#iggy-app .dp-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 8px; }
#iggy-app .dp-weekday { text-align: center; font-size: 11px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; }
#iggy-app .dp-day {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  background: var(--bg-alt);
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}
#iggy-app .dp-day:hover:not(:disabled) { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
#iggy-app .dp-day.empty { border: none; background: none; pointer-events: none; }
#iggy-app .dp-day.past { opacity: 0.22; cursor: not-allowed; }
#iggy-app .dp-day.booked {
  background: rgba(224, 72, 72, 0.12);
  border-color: rgba(224, 72, 72, 0.45);
  color: #e98585;
  cursor: not-allowed;
  text-decoration: line-through;
}
#iggy-app .dp-day.free { border-color: rgba(245, 179, 1, 0.35); }
#iggy-app .dp-day.free::after {
  content: ""; position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
#iggy-app .datepicker__legend { display: flex; justify-content: center; gap: 22px; margin-top: 18px; font-size: 13px; color: var(--text-dim); }
#iggy-app .datepicker__legend span { display: inline-flex; align-items: center; gap: 7px; }
#iggy-app .datepicker__legend .dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
#iggy-app .dot--free { background: var(--gold); }
#iggy-app .dot--booked { background: #e04848; }
#iggy-app .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
#iggy-app .reveal.in { opacity: 1; transform: translateY(0); }
@media (max-width: 980px) {
#iggy-app .services__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
#iggy-app .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
#iggy-app .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
#iggy-app.menu-open { overflow: hidden; }
#iggy-app .burger { display: flex; }
#iggy-app .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(12,12,15,0.97);
    backdrop-filter: blur(18px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
#iggy-app .nav.open { transform: translateX(0); }
#iggy-app .nav__link { font-size: 20px; }
#iggy-app .nav__cta { margin-top: 10px; }
#iggy-app.menu-open .header, #iggy-app.menu-open .header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    box-shadow: none;
  }
#iggy-app .hero { padding: 96px 0 64px; justify-content: center; }
#iggy-app .hero__title { font-size: clamp(26px, 8vw, 40px); line-height: 1.14; }
#iggy-app .hero__title br { display: none; }
#iggy-app .section { padding: 80px 0; }
#iggy-app .section__title { margin-bottom: 40px; }
#iggy-app .stats { gap: 26px 36px; margin-top: 40px; }
#iggy-app .stat { min-width: 110px; }
#iggy-app .review-slider { gap: 6px; }
#iggy-app .review-slider__arrow { width: 40px; height: 40px; font-size: 22px; }
#iggy-app .team__grid { grid-template-columns: 1fr; max-width: 360px; }
#iggy-app .footer__inner { grid-template-columns: 1fr; text-align: center; }
#iggy-app .footer__col--brand p { margin-inline: auto; }
#iggy-app .footer__col--brand .logo { align-items: center; }
#iggy-app .footer__socials a { margin: 0 8px; }
#iggy-app .reserve-form { grid-template-columns: 1fr; }
#iggy-app .choice { flex: 1 1 100%; min-width: 0; }
#iggy-app .lightbox__arrow { width: 44px; height: 44px; font-size: 26px; }
#iggy-app .lightbox__arrow--prev { left: 10px; }
#iggy-app .lightbox__arrow--next { right: 10px; }
}
@media (max-width: 440px) {
#iggy-app .container { padding: 0 18px; }
#iggy-app .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; }
#iggy-app .hero__title { font-size: 27px; }
}
@media (prefers-reduced-motion: reduce) {
#iggy-app *, #iggy-app *::before, #iggy-app *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
#iggy-app .reveal { opacity: 1; transform: none; }
}

/* Full-width breakout so the page fills the viewport inside any theme container. */
#iggy-app {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
