/* ============================================================
   PARTY ŠAMORÍN — section/component styles
   ============================================================ */

/* ---------- HERO ---------- */
.hero { position: relative; padding-top: clamp(36px, 6vw, 64px); padding-bottom: clamp(40px, 7vw, 80px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.hero h1 .hl { color: var(--primary-d); position: relative; white-space: nowrap; }
.hero h1 .hl::after { content:""; position: absolute; left: -2%; right: -2%; bottom: 8%; height: 38%; background: var(--accent-2); z-index: -1; border-radius: 6px; opacity: .55; transform: rotate(-1.2deg); }
.hero-lede { font-size: 1.18rem; color: var(--muted); margin-block: 22px 30px; max-width: 46ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 11px; }
.hero-trust .t b { font-family: var(--font-display); font-size: 1.5rem; display: block; line-height: 1; }
.hero-trust .t span { font-size: 0.86rem; color: var(--muted); }
.hero-trust .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: color-mix(in oklch, var(--primary) 14%, white); color: var(--primary-d); flex: none; }
.hero-trust .ic svg { width: 21px; height: 21px; }

/* hero collage */
.hero-art { position: relative; aspect-ratio: 1 / 1; }
.hero-art .tile { position: absolute; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 5px solid var(--surface); }
.hero-art .t1 { inset: 0 28% 34% 0; }
.hero-art .t2 { inset: 8% 0 44% auto; width: 42%; aspect-ratio: 1; }
.hero-art .t3 { inset: auto 34% 0 0; width: 40%; aspect-ratio: 4/3; }
.hero-art .t4 { inset: auto 0 4% auto; width: 50%; aspect-ratio: 3/4; }
.hero-art .ph { width: 100%; height: 100%; }
.hero-art .tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; z-index: 3; bottom: 30%; left: 50%; transform: translateX(-50%) rotate(-5deg);
  background: var(--accent); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 11px 18px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); border: 4px solid var(--surface);
  display: flex; align-items: center; gap: 8px;
}
.blob { position: absolute; z-index: -2; border-radius: 50%; filter: blur(8px); opacity: .5; }
.blob.b1 { width: 220px; height: 220px; background: var(--accent); top: -40px; right: -30px; }
.blob.b2 { width: 180px; height: 180px; background: var(--accent-2); bottom: -30px; left: -40px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; margin-inline: auto; width: 100%; }
}

/* ---------- MARQUEE STRIP ---------- */
.strip { background: var(--primary); color: var(--on-primary); padding-block: 15px; overflow: hidden; }
.strip-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 28s linear infinite; }
.strip-track span { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; padding-inline: 22px; display: inline-flex; align-items: center; gap: 22px; }
.strip-track span::after { content: "★"; opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .strip-track { animation: none; } }

/* ---------- PRODUCTS ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: clamp(18px, 2.4vw, 28px); }
@media (max-width: 600px){ .prod-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .media { aspect-ratio: 4 / 3; position: relative; }
.card .media .ph { width: 100%; height: 100%; }
.card .media .pmedia { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card .tag { position: absolute; top: 13px; left: 13px; z-index: 2; font-family: var(--font-display); font-weight: 700; font-size: 0.76rem; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--accent); color: var(--ink); box-shadow: var(--shadow-sm); }
.card .tag.hot { background: var(--accent-2); }
.card-body { padding: 20px 21px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.32rem; }
.card-body p { color: var(--muted); font-size: 0.97rem; margin-top: 7px; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.chip { font-size: 0.8rem; font-weight: 700; color: var(--primary-d); background: color-mix(in oklch, var(--primary) 11%, white); padding: 5px 11px; border-radius: var(--radius-pill); }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); }
.price { font-family: var(--font-display); line-height: 1; }
.price b { font-size: 1.6rem; color: var(--ink); }
.price span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.card .btn { padding: 11px 18px; font-size: 0.92rem; }

/* ---------- PACKAGES ---------- */
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 22px); }
@media (max-width: 1080px){ .pack-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; } }
@media (max-width: 560px){ .pack-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.pack {
  position: relative; background: var(--surface); border-radius: var(--radius);
  padding: 28px 26px 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .25s;
}
.pack:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pack.featured { background: var(--ink); color: #fff; border-color: transparent; }
.pack.featured .pack-sub, .pack.featured .pack-list li { color: color-mix(in oklch, #fff 78%, var(--ink)); }
.pack.featured .pack-list svg { color: var(--accent); }
.pack.featured .price b { color: #fff; }
.pack.featured .price span { color: color-mix(in oklch,#fff 65%, var(--ink)); }
.pack-flag { position: absolute; top: 20px; right: 20px; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem; padding: 5px 11px; border-radius: var(--radius-pill); background: var(--accent-2); color: var(--ink); }
.pack-emoji { font-size: 2.2rem; line-height: 1; }
.pack h3 { font-size: 1.5rem; margin-top: 14px; }
.pack-sub { color: var(--muted); font-size: 0.96rem; margin-top: 6px; }
.pack-list { margin-block: 20px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pack-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.97rem; }
.pack-list svg { width: 19px; height: 19px; flex: none; color: var(--primary); margin-top: 2px; }
.pack-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.pack-price .old { text-decoration: line-through; color: var(--muted); font-weight: 600; font-size: 1rem; }

/* ---------- STEPS / HOW IT WORKS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 26px); counter-reset: step; }
@media (max-width: 880px){ .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: var(--surface); border-radius: var(--radius); padding: 26px 22px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step-num { width: 50px; height: 50px; border-radius: 15px; background: color-mix(in oklch, var(--primary) 15%, white); color: var(--primary-d); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 16px; }
.step:nth-child(2) .step-num { background: color-mix(in oklch, var(--accent) 26%, white); color: oklch(0.42 0.1 145); }
.step:nth-child(3) .step-num { background: color-mix(in oklch, var(--accent-2) 34%, white); color: oklch(0.5 0.1 80); }
.step:nth-child(4) .step-num { background: var(--ink); color: #fff; }
.step h3 { font-size: 1.18rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- REFERRAL / PROMO BANNER ---------- */
.promo { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: #fff; padding: clamp(36px, 6vw, 64px); display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.promo::before { content:""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 18%, color-mix(in oklch, var(--primary) 60%, transparent), transparent 42%), radial-gradient(circle at 8% 92%, color-mix(in oklch, var(--accent) 45%, transparent), transparent 40%); opacity: .55; }
.promo > * { position: relative; }
.promo .eyebrow { background: color-mix(in oklch, #fff 16%, transparent); color: #fff; }
.promo h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-block: 16px 12px; }
.promo p { color: color-mix(in oklch, #fff 80%, var(--ink)); font-size: 1.06rem; max-width: 46ch; }
.promo-steps { display: flex; flex-direction: column; gap: 14px; }
.promo-steps .ps { display: flex; gap: 14px; align-items: center; background: color-mix(in oklch, #fff 9%, transparent); padding: 15px 18px; border-radius: var(--radius-sm); }
.promo-steps .ps .n { width: 34px; height: 34px; border-radius: 10px; flex: none; background: var(--accent); color: var(--ink); font-family: var(--font-display); font-weight: 700; display: grid; place-items: center; }
.promo-steps .ps b { display:block; }
.promo-steps .ps span { color: color-mix(in oklch, #fff 70%, var(--ink)); font-size: 0.9rem; }
@media (max-width: 820px){ .promo { grid-template-columns: 1fr; } }

/* ---------- REVIEWS ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 24px); }
@media (max-width: 880px){ .rev-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; } }
.review { background: var(--surface); border-radius: var(--radius); padding: 26px 25px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; color: var(--accent-2); margin-bottom: 13px; }
.stars svg { width: 19px; height: 19px; }
.review p { font-size: 1.04rem; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review .av { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--on-primary); font-size: 1.1rem; }
.review .who b { display: block; font-family: var(--font-display); }
.review .who span { font-size: 0.85rem; color: var(--muted); }

/* ---------- GALLERY ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 14px; }
.gallery .g { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: transform .2s; }
.gallery .g:hover { transform: scale(1.02); }
.gallery .g .ph { width: 100%; height: 100%; }
.gallery .g img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery .g.tall { grid-row: span 2; }
.gallery .g.wide { grid-column: span 2; }
@media (max-width: 720px){ .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; } .gallery .g.wide { grid-column: span 2; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: oklch(0.18 0.03 200 / 0.86); z-index: 80; display: grid; place-items: center; padding: 30px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox .frame { width: min(820px, 92vw); aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 70px -20px #000; border: 6px solid #fff; }
.lightbox .frame .ph { width: 100%; height: 100%; font-size: 1rem; }
.lightbox .lb-close { position: absolute; top: 22px; right: 26px; width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.16); color: #fff; font-size: 24px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--primary); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; gap: 16px; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.faq-q .ico { margin-left: auto; width: 30px; height: 30px; border-radius: 9px; flex: none; display: grid; place-items: center; background: color-mix(in oklch, var(--primary) 12%, white); color: var(--primary-d); transition: transform .25s, background .2s; font-size: 20px; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a .inner { padding: 0 22px 22px; color: var(--muted); }

/* ---------- RESERVATION FORM ---------- */
.book { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); overflow: hidden; display: grid; grid-template-columns: 1fr 0.85fr; }
@media (max-width: 900px){ .book { grid-template-columns: 1fr; } }
.book-form { padding: clamp(26px, 4vw, 44px); }
.book-aside { background: var(--ink); color: #fff; padding: clamp(26px, 4vw, 44px); display: flex; flex-direction: column; }
.field { margin-bottom: 18px; }
.days-info { margin: -8px 0 18px; font-size: 0.9rem; font-weight: 600; color: var(--primary-d); }
.days-info.warn { color: oklch(0.6 0.18 28); }

/* date field with calendar icon */
.input.date-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b8a8c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 19px;
  padding-right: 42px;
}

/* calendar popup */
.cal {
  position: absolute; z-index: 70; padding: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(-6px); pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.cal.open { opacity: 1; transform: none; pointer-events: auto; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-head b { font-family: var(--font-display); font-weight: 600; font-size: 1rem; white-space: nowrap; }
.cal-nav { width: 32px; height: 32px; border-radius: 9px; background: var(--surface-2); font-size: 18px; line-height: 1; color: var(--ink); display: grid; place-items: center; }
.cal-nav:hover { background: color-mix(in oklch, var(--primary) 14%, white); color: var(--primary-d); }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-bottom: 4px; }
.cal-dow span { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--muted); padding: 4px 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-cell { aspect-ratio: 1; min-height: 36px; border-radius: 9px; font-weight: 600; font-size: 0.92rem; color: var(--ink); display: grid; place-items: center; transition: background .12s; }
.cal-cell.empty { visibility: hidden; }
.cal-cell:not(.dis):not(.sel):hover { background: color-mix(in oklch, var(--primary) 14%, white); }
.cal-cell.today { box-shadow: inset 0 0 0 1.5px var(--primary); }
.cal-cell.sel { background: var(--primary); color: var(--on-primary); }
.cal-cell.dis { color: color-mix(in oklch, var(--muted) 45%, var(--surface)); cursor: not-allowed; }
.field > label { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; margin-bottom: 7px; }
.input, select.input { width: 100%; padding: 13px 15px; border-radius: var(--radius-sm); background: var(--surface-2); border: 1.5px solid var(--line); transition: border-color .15s, box-shadow .15s; }
.input:focus, select.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary) 20%, transparent); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* multi-select item picker */
.pick-list { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
@media (max-width: 560px){ .pick-list { grid-template-columns: 1fr; } }
.pick-group { grid-column: 1 / -1; display: contents; }
.pick-h { grid-column: 1 / -1; font-family: var(--font-display); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.pick {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 13px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); cursor: pointer;
  transition: border-color .15s, background .15s; user-select: none;
}
.pick:hover { border-color: var(--primary); }
.pick.on { border-color: var(--primary); background: color-mix(in oklch, var(--primary) 8%, var(--surface)); }
.pick > input { width: 18px; height: 18px; accent-color: var(--primary); flex: none; cursor: pointer; }
.pick .pn { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; line-height: 1.15; flex: 1; }
.pick .pp { font-family: var(--font-display); font-weight: 700; color: var(--primary-d); white-space: nowrap; font-size: 0.92rem; }
.pick .pp small { font-weight: 600; color: var(--muted); font-size: 0.74rem; }
.pick .qty { display: none; align-items: center; gap: 2px; flex: none; }
.pick.on .qty { display: flex; }
.pick.on .pp { display: none; }
.pick .qty button { width: 26px; height: 26px; border-radius: 8px; background: var(--surface-2); box-shadow: inset 0 0 0 1.5px var(--line); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1; color: var(--ink); display: grid; place-items: center; }
.pick .qty button:hover { box-shadow: inset 0 0 0 1.5px var(--primary); color: var(--primary-d); }
.pick .qty .qv { min-width: 20px; text-align: center; font-family: var(--font-display); font-weight: 700; }
.checks { display: flex; flex-direction: column; gap: 10px; }
.check { display: flex; align-items: flex-start; gap: 11px; padding: 13px 15px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); cursor: pointer; transition: border-color .15s, background .15s; }
.check:hover { border-color: var(--primary); }
.check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--primary); flex: none; }
.check .ct b { font-family: var(--font-display); }
.check .ct span { display: block; font-size: 0.85rem; color: var(--muted); }
.check .cp { margin-left: auto; font-family: var(--font-display); font-weight: 700; color: var(--primary-d); white-space: nowrap; }

.summary { margin-top: auto; }
.book-aside h3 { color: #fff; font-size: 1.4rem; }
.book-aside .lede { color: color-mix(in oklch, #fff 72%, var(--ink)); margin-top: 8px; margin-bottom: 22px; }
.sum-line { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed color-mix(in oklch, #fff 22%, var(--ink)); font-size: 0.96rem; color: color-mix(in oklch, #fff 82%, var(--ink)); }
.sum-line.empty { color: color-mix(in oklch, #fff 50%, var(--ink)); font-style: italic; border: none; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 16px; border-top: 2px solid color-mix(in oklch, #fff 22%, var(--ink)); }
.sum-total span { font-family: var(--font-display); font-weight: 600; }
.sum-total b { font-family: var(--font-display); font-size: 2rem; color: var(--accent); }
.book-aside .note { font-size: 0.82rem; color: color-mix(in oklch, #fff 55%, var(--ink)); margin-top: 14px; }

.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 140%); background: var(--ink); color: #fff; padding: 15px 24px; border-radius: var(--radius-pill); box-shadow: var(--shadow); z-index: 90; display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; transition: transform .4s cubic-bezier(.2,.8,.2,1); }
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: var(--accent); }

/* ---------- CONTACT band ---------- */
.contact-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px){ .contact-band { grid-template-columns: 1fr; } }
.cband { display: flex; gap: 15px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.cband .ic { width: 50px; height: 50px; border-radius: 14px; flex: none; display: grid; place-items: center; background: color-mix(in oklch, var(--primary) 14%, white); color: var(--primary-d); }
.cband .ic svg { width: 24px; height: 24px; }
.cband b { font-family: var(--font-display); display: block; }
.cband span { color: var(--muted); font-size: 0.92rem; }
