/* teatro-home.css — teatro's hand-crafted homepage styles (hybrid React port).
 * Shared by the React host (index-new.php → index.php). Preserves teatro's exact
 * look for hero/gallery/about/faq/contact/footer. New sections (header/reviews/
 * nearby) are built with Tailwind teatro tokens in the React app.
 * NOTE: the gallery entrance was reworked from a fixed nth-child stagger into a
 * class-driven reveal (.gallery-item.revealed) so the show-more cascade is smooth
 * and React can control per-item timing. */

:root {
  --navy: #0d1f2d;
  --navy-light: #162536;
  --beige: #f5ede0;
  --beige-dark: #e8d9c4;
  --gold: #b8975a;
  --gold-light: #d4b07a;
  --teal: #2a7070;
  --red: #c0392b;
  --white: #fdfaf6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: 'Jost', sans-serif; background-color: var(--white); color: var(--navy); overflow-x: hidden; max-width: 100%; }

/* HERO */
#hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
#hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1.8s ease-in-out, transform 9s ease; transform: scale(1.06); }
.hero-slide.active { opacity: 1; transform: scale(1); }
#hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,31,45,0.5) 0%, rgba(13,31,45,0.3) 40%, rgba(13,31,45,0.78) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 1.5rem; max-width: 900px; }
.hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s 0.3s forwards; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 1.5rem; opacity: 0; transform: translateY(25px); animation: fadeUp 0.9s 0.5s forwards; }
.hero-subtitle { font-weight: 300; font-size: clamp(1rem, 2vw, 1.15rem); letter-spacing: 0.04em; color: rgba(255,255,255,0.82); max-width: 580px; margin: 0 auto 2.5rem; opacity: 0; transform: translateY(25px); animation: fadeUp 0.9s 0.7s forwards; }
.hero-cta { opacity: 0; transform: translateY(25px); animation: fadeUp 0.9s 0.9s forwards; }
.hero-cta-buttons { display:flex; align-items:center; justify-content:center; gap:1.25rem; flex-wrap:wrap; }
.hero-arba { font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.45); }
@media (max-width:480px) { .hero-cta-buttons { flex-direction:column; gap:0.85rem; } .hero-arba { display:none; } }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--gold); color: #fff; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; padding: 1.1rem 2.8rem; border: none; cursor: pointer; transition: background 0.3s, transform 0.2s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(184,151,90,0.35); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,151,90,0.45); }
.btn-outline { display: inline-block; border: 1.5px solid var(--gold); color: var(--gold); font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; padding: 1rem 2.5rem; cursor: pointer; background: transparent; transition: all 0.3s; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-green { display: inline-block; background: #4caf7d; color: #fff; font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; padding: 1.1rem 2.8rem; border: none; cursor: pointer; transition: background 0.3s, transform 0.2s, box-shadow 0.3s; box-shadow: 0 4px 20px rgba(76,175,125,0.35); border-radius: 50px; }
.btn-green:hover { background: #6fcf97; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(76,175,125,0.45); }

/* SECTIONS */
section { padding: 7rem 0; }
.section-eyebrow { font-size: 0.67rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.15; color: var(--navy); margin-bottom: 1.5rem; }
.section-divider { width: 56px; height: 1px; background: var(--gold); margin: 0 auto 2rem; }
.section-divider.left { margin-left: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* GALLERY */
#gallery { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; overflow: hidden; }
.gallery-item { overflow: hidden; position: relative; cursor: pointer; height: 260px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease; filter: brightness(0.95); }
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.05); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(13,31,45,0); transition: background 0.4s ease; pointer-events: none; }
.gallery-item:hover::after { background: rgba(13,31,45,0.15); }
.gallery-zoom-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.7); opacity: 0; transition: all 0.35s ease; z-index: 2; background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(13,31,45,0.75)); color: #fff; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 1.5rem 1rem 0.75rem; opacity: 0; transition: opacity 0.35s; z-index: 2; }
.gallery-item:hover .gallery-caption { opacity: 1; }
/* Class-driven reveal (React controls per-item transition-delay for the cascade) */
.gallery-item { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22,0.61,0.36,1); }
.gallery-item.revealed { opacity: 1; transform: none; }
/* The grid animates its height during show-more so the button glides, not jumps */
.gallery-grid.animating { transition: height 0.6s cubic-bezier(0.4,0,0.2,1); }
.gallery-more-wrap { text-align: center; margin-top: 2.25rem; }
.gallery-more-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: transparent; border: 1.5px solid var(--gold); color: var(--gold); font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.95rem 2.3rem; cursor: pointer; transition: background 0.3s, color 0.3s, transform 0.2s; }
.gallery-more-btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.gallery-more-btn svg { transition: transform 0.3s; }

/* LIGHTBOX */
#lightbox { position: fixed; inset: 0; background: rgba(5,12,20,0.95); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s; }
#lightbox.active { opacity: 1; pointer-events: all; }
#lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; display: block; transform: scale(0.93); transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
#lightbox.active img { transform: scale(1); }
#lightbox-caption { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; white-space: nowrap; }
.lightbox-btn { position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; transition: background 0.2s; }
#lightbox-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; border-radius: 50%; }
#lightbox-prev, #lightbox-next { top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 2px; }
#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }
.lightbox-btn:hover { background: rgba(255,255,255,0.2); }
@media (max-width: 768px) { #lightbox-prev { left: 0.5rem; } #lightbox-next { right: 0.5rem; } #lightbox img { max-width: 94vw; } }

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item { height: 180px; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item { height: 150px; } }

/* STATS BAR */
.stats-bar { background: var(--navy); padding: 2.5rem 0; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold-light); line-height: 1; display: block; }
.stat-label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.5rem; display: block; }
.rating-num { font-family: 'Playfair Display', serif; }
.stat-number.rating-num { font-family:'Georgia','Times New Roman',serif; font-variant-numeric:lining-nums; }

/* HERO → roziunamas cross-promo (roziunamas's own premium look) */
.hero-rn-link { position:absolute; bottom:2.25rem; left:50%; transform:translateX(-50%); z-index:3;
  display:inline-flex; align-items:center; gap:0.7rem; white-space:nowrap; text-decoration:none;
  background:rgba(253,250,246,0.12); backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.28); border-radius:50px; padding:0.7rem 1.5rem 0.7rem 0.75rem;
  color:#fff; font-family:'Jost',sans-serif; font-size:0.78rem; font-weight:500; letter-spacing:0.03em;
  box-shadow:0 10px 30px -12px rgba(0,0,0,0.55);
  transition:background 0.35s, border-color 0.35s, transform 0.35s, box-shadow 0.35s; }
.hero-rn-link img { width:30px; height:30px; object-fit:contain; flex-shrink:0;
  background:rgba(255,255,255,0.92); border-radius:50%; padding:3px; }
.hero-rn-link:hover { background:rgba(253,250,246,0.22); border-color:rgba(255,255,255,0.5);
  transform:translateX(-50%) translateY(-3px); box-shadow:0 16px 38px -12px rgba(0,0,0,0.65); }
.hero-rn-link svg { transition:transform 0.3s; opacity:0.8; }
.hero-rn-link:hover svg { transform:translateX(4px); }
@media (max-width:560px){
  .hero-rn-link { font-size:0.68rem; padding:0.55rem 1.1rem 0.55rem 0.6rem; gap:0.5rem; max-width:92vw; }
  .hero-rn-link span { white-space:normal; text-align:left; }
  .hero-rn-link img { width:26px; height:26px; }
}

/* SCROLL INDICATOR */
.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.55); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-mouse { width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 11px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot { width: 3px; height: 7px; background: var(--gold-light); border-radius: 2px; animation: scrollDot 1.8s infinite; }

/* ANIMATIONS */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(11px); opacity: 0; } }
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ABOUT / YOUR STAY */
.stay-top-row { display:grid; grid-template-columns:1.4fr 1fr; gap:2.5rem; max-width:960px; margin:0 auto 1.5rem; align-items:start; }
.stay-amenities-grid { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.stay-amenity-item { display:flex; align-items:center; gap:0.75rem; padding:0.85rem 0.25rem; border-bottom:1px solid var(--beige-dark); }
.stay-amenity-item span { font-size:0.82rem; color:var(--navy); font-weight:400; }
.stay-bottom-row { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; max-width:960px; margin:0 auto; }
@media (max-width:700px) { .stay-top-row { grid-template-columns:1fr; } .stay-bottom-row { grid-template-columns:1fr; } }

/* NEARBY (slideshow background + category tiles + gold guide CTA) */
/* Pure opacity cross-fade — deliberately NO transform/zoom: animating a scale on a
   hi-def background is what produces GPU texture-seam lines on large photos. */
.nb-slide { position:absolute; inset:0; background-size:cover; background-position:center; transition:opacity 2s ease-in-out; }
.nb-cat { position:relative; overflow:hidden; display:flex; align-items:center; justify-content:space-between; gap:0.75rem;
  background:rgba(253,250,246,0.42); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,0.5);
  border-radius:12px; padding:0.85rem 1.25rem; transition:background 0.3s, border-color 0.3s, transform 0.3s; }
.nb-cat::before { content:''; position:absolute; inset:0; opacity:0; transition:opacity 0.35s; pointer-events:none;
  background:radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(184,151,90,0.28), transparent 65%); }
.nb-cat:hover { background:rgba(253,250,246,0.6); border-color:rgba(184,151,90,0.55); transform:translateY(-2px); }
.nb-cat:hover::before { opacity:1; }
.nb-cat-icon { width:40px; height:40px; flex-shrink:0; border-radius:10px; background:rgba(255,255,255,0.65); border:1px solid rgba(255,255,255,0.6); display:flex; align-items:center; justify-content:center; }
.nb-cat-name { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--navy); font-weight:500; }
.nb-cat-count { font-family:'Playfair Display',serif; font-size:0.72rem; font-weight:700; color:var(--gold);
  background:rgba(255,255,255,0.7); border:1px solid rgba(255,255,255,0.6); border-radius:50px; padding:0.15rem 0.65rem; flex-shrink:0; }

/* Gold guide CTA — living gradient that quickens on hover (shadow-only hover so the
   button never shifts under the cursor and flickers). */
@keyframes goldShift { 0% { background-position:0% 50%; } 100% { background-position:300% 50%; } }
.gold-cta { position:relative; overflow:hidden; display:inline-flex; align-items:center; gap:0.75rem; color:#fff; border:none; cursor:pointer;
  font-family:'Jost',sans-serif; font-size:0.78rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; text-decoration:none;
  padding:1.15rem 2.6rem; border-radius:14px;
  background-image:linear-gradient(110deg,#8a6d33,#b8975a,#ecd196,#b8975a,#8a6d33); background-size:300% 100%;
  box-shadow:0 12px 30px -10px rgba(184,151,90,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
  animation:goldShift 7s linear infinite; transition:box-shadow 0.35s ease; text-shadow:0 1px 2px rgba(80,58,20,0.35); }
.gold-cta:hover { animation-duration:4.5s; box-shadow:0 20px 46px -8px rgba(184,151,90,0.9), inset 0 1px 0 rgba(255,255,255,0.35); }
@media (prefers-reduced-motion: reduce) { .nb-slide { transition:none; } .gold-cta, .gold-cta:hover { animation:none; } }

/* REVIEW source badges */
.rv-badge { display:inline-flex; align-items:center; gap:0.4rem; font-size:0.63rem; font-weight:600; letter-spacing:0.06em;
  padding:0.28rem 0.62rem; border-radius:6px; }
.rv-badge img { height:13px; width:auto; opacity:0.55; filter:grayscale(15%); }
.rv-badge-booking { background:rgba(0,53,128,0.1); color:#003580; border:1px solid rgba(0,53,128,0.25); }
.rv-badge-airbnb  { background:rgba(255,90,95,0.1); color:#d6373c; border:1px solid rgba(255,90,95,0.3); }
.rv-badge-direct  { background:rgba(184,151,90,0.12); color:#8a6d33; border:1px solid rgba(184,151,90,0.35); }
.rv-link { display:inline-flex; align-items:center; justify-content:center; gap:0.55rem; text-decoration:none;
  font-family:'Jost',sans-serif; font-size:0.66rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase;
  padding:0.8rem 1.4rem; border-radius:10px; color:#fff; transition:filter 0.2s, transform 0.2s; }
.rv-link:hover { filter:brightness(1.12); transform:translateY(-2px); }
.rv-link img { height:15px; width:auto; opacity:0.55; }
.rv-link-booking { background:#003580; }
.rv-link-airbnb  { background:#FF5A5F; }
.rv-link-site    { background:var(--gold); }

/* OWNER ACTIVITY ping */
@keyframes ownerPing { 75%, 100% { transform: scale(2.2); opacity: 0; } }
.owner-ping { animation: ownerPing 1.6s cubic-bezier(0,0,0.2,1) infinite; }

/* FEATURED ARTICLE */
.feat-card { display:grid; grid-template-columns:1fr 1fr; gap:0; background:var(--white); border:1px solid var(--beige-dark);
  border-radius:18px; overflow:hidden; text-decoration:none; transition:box-shadow 0.4s, border-color 0.4s, transform 0.4s; }
.feat-card:hover { box-shadow:0 22px 55px rgba(13,31,45,0.12); border-color:rgba(184,151,90,0.4); transform:translateY(-4px); }
.feat-card img { width:100%; height:100%; min-height:280px; object-fit:cover; display:block; transition:transform 0.7s ease; }
.feat-card:hover img { transform:scale(1.05); }
@media (max-width:760px){ .feat-card { grid-template-columns:1fr; } .feat-card img { min-height:210px; } }

/* REVIEW filter tabs (reviews.php) */
.rv-tabs { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:1.25rem; }
.rv-tab { display:inline-flex; align-items:center; gap:0.5rem; background:var(--beige); border:1px solid var(--beige-dark);
  color:var(--navy); font-family:'Jost',sans-serif; font-size:0.74rem; font-weight:500; padding:0.5rem 1rem;
  border-radius:50px; cursor:pointer; transition:all 0.25s; }
.rv-tab:hover { border-color:var(--gold); color:var(--gold); }
.rv-tab.active { background:var(--navy); border-color:var(--navy); color:#fff; }
.rv-tab-count { font-family:'Playfair Display',serif; font-size:0.68rem; font-weight:700; background:rgba(184,151,90,0.18);
  color:var(--gold); border-radius:50px; min-width:19px; height:19px; display:inline-flex; align-items:center; justify-content:center; padding:0 0.35rem; }
.rv-tab.active .rv-tab-count { background:rgba(255,255,255,0.15); color:var(--gold-light); }

/* GUEST REVIEW FORM (review.php) — 1..10 star rows */
.rf-card { background:var(--white); border:1px solid var(--beige-dark); border-radius:16px; padding:2.25rem 2rem; }
.rf-row { padding:1.1rem 0; border-bottom:1px solid var(--beige-dark); }
.rf-row:last-of-type { border-bottom:none; }
.rf-label { display:flex; align-items:center; justify-content:space-between; margin-bottom:0.6rem; }
.rf-label span:first-child { font-size:0.86rem; color:var(--navy); font-weight:500; }
.rf-score { font-family:'Playfair Display',serif; font-size:0.9rem; font-weight:700; color:var(--gold); }
.rf-stars { display:flex; gap:0.25rem; flex-wrap:wrap; }
.rf-star { width:30px; height:30px; border:none; background:none; cursor:pointer; padding:0; color:var(--beige-dark);
  transition:transform 0.15s, color 0.15s; display:flex; align-items:center; justify-content:center; }
.rf-star:hover { transform:scale(1.15); }
.rf-star.on { color:var(--gold); }
.rf-input { width:100%; border:1px solid var(--beige-dark); background:var(--white); padding:0.9rem 1.1rem;
  font-family:'Jost',sans-serif; font-size:0.92rem; color:var(--navy); outline:none; border-radius:8px; transition:border-color 0.25s; }
.rf-input:focus { border-color:var(--gold); }
.rf-note { font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:#999; margin-bottom:0.5rem; display:block; }

/* BOOKING WIZARD (booking-new.php) */
.bk-steps { display:flex; align-items:center; gap:0.5rem; max-width:320px; margin:0 auto 2rem; }
.bk-dot { width:30px; height:30px; border-radius:50%; border:1px solid var(--beige-dark); background:var(--white);
  display:flex; align-items:center; justify-content:center; font-family:'Jost',sans-serif; font-size:0.78rem;
  font-weight:600; color:#bbb; flex-shrink:0; transition:all 0.3s; }
.bk-dot.active { background:var(--navy); border-color:var(--navy); color:#fff; }
.bk-dot.done { background:var(--gold); border-color:var(--gold); color:#fff; }
.bk-line { flex:1; height:1px; background:var(--beige-dark); transition:background 0.3s; }
.bk-line.done { background:var(--gold); }
.bk-h2 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--navy); margin-bottom:1.5rem; }
.bk-day { aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-family:'Jost',sans-serif;
  font-size:0.85rem; font-weight:500; border:none; background:var(--white); color:var(--navy); border-radius:6px;
  cursor:pointer; transition:background 0.18s, color 0.18s; }
.bk-day:hover:not(:disabled) { background:rgba(184,151,90,0.14); }
.bk-day.past { background:#f0f0f0; color:#c8c8c8; cursor:default; }
.bk-day.blocked { background:#f3ded9; color:#c99e94; cursor:not-allowed; text-decoration:line-through; }
.bk-day.inrange { background:rgba(184,151,90,0.16); border-radius:0; }
.bk-day.sel { background:var(--gold); color:#fff; font-weight:700; }
.bk-day.today { outline:2px solid var(--navy); outline-offset:-2px; }
.bk-dates-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-top:1.5rem; padding-top:1.25rem; border-top:1px solid var(--beige-dark); }
.bk-dates-row strong { font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:500; color:var(--navy); }
.bk-dates-row small { color:var(--gold); font-size:0.72rem; }
.bk-step-btn { width:34px; height:34px; border-radius:50%; border:1px solid var(--beige-dark); background:var(--white);
  color:var(--navy); font-size:1.1rem; cursor:pointer; transition:all 0.2s; }
.bk-step-btn:hover { border-color:var(--gold); color:var(--gold); }
.bk-summary { margin-top:1.5rem; padding-top:1.25rem; border-top:1px solid var(--beige-dark); }
.bk-sum-row { display:flex; justify-content:space-between; align-items:center; font-size:0.85rem; color:#666; padding:0.35rem 0; }
.bk-sum-total { display:flex; justify-content:space-between; align-items:baseline; margin-top:0.75rem; padding-top:0.9rem;
  border-top:1px solid var(--beige-dark); font-size:0.95rem; color:var(--navy); font-weight:500; }
.bk-sum-total .rating-num { font-family:'Playfair Display',serif; font-size:1.7rem; font-weight:700; color:var(--gold); }
.bk-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:520px){ .bk-form-grid { grid-template-columns:1fr; } .bk-dates-row { grid-template-columns:1fr; } }
.bk-nav { display:flex; gap:0.75rem; margin-top:1.75rem; }
.bk-card-el { border:1px solid var(--beige-dark); border-radius:8px; padding:1rem 1.1rem; background:var(--white); }
.bk-card-el.StripeElement--focus { border-color:var(--gold); }

/* BOOKING CONFIRMATION (booking-confirm.php) */
.cf-check { width:72px; height:72px; margin:0 auto 1.5rem; border-radius:50%; background:#4caf7d;
  display:flex; align-items:center; justify-content:center; box-shadow:0 12px 34px -10px rgba(76,175,125,0.8); }
.cf-ref { background:var(--navy); border-radius:14px; padding:1.4rem 1.5rem; text-align:center; }
.cf-row { display:flex; justify-content:space-between; align-items:baseline; gap:1rem; padding:0.85rem 0; border-bottom:1px solid var(--beige-dark); }
.cf-row:last-of-type { border-bottom:none; }
.cf-label { font-size:0.62rem; letter-spacing:0.2em; text-transform:uppercase; color:#999; flex-shrink:0; }
.cf-value { font-size:0.9rem; color:var(--navy); text-align:right; }
.cf-total { display:flex; justify-content:space-between; align-items:baseline; margin-top:0.9rem; padding-top:1rem;
  border-top:1px solid var(--beige-dark); font-size:0.9rem; color:var(--navy); font-weight:500; }
.cf-total .rating-num { font-family:'Playfair Display',serif; font-size:1.7rem; font-weight:700; color:var(--gold); }
.cf-contacts { display:grid; grid-template-columns:1fr 1fr; gap:0.6rem; }
@media (max-width:480px){ .cf-contacts { grid-template-columns:1fr; } }
.cf-contact { display:flex; align-items:center; gap:0.6rem; padding:0.8rem 1rem; border:1px solid var(--beige-dark);
  border-radius:10px; text-decoration:none; color:var(--navy); font-size:0.82rem; transition:border-color 0.25s, background 0.25s; }
.cf-contact:hover { border-color:var(--gold); background:rgba(184,151,90,0.05); }
.cf-processing { display:flex; align-items:center; gap:0.7rem; margin-top:1rem; padding:0.85rem 1.1rem;
  background:rgba(184,151,90,0.09); border:1px solid rgba(184,151,90,0.3); border-radius:10px;
  font-size:0.82rem; color:#8a6d33; }
.cf-spin { width:15px; height:15px; border:2px solid rgba(184,151,90,0.3); border-top-color:var(--gold);
  border-radius:50%; animation:cfSpin 0.8s linear infinite; flex-shrink:0; }
@keyframes cfSpin { to { transform:rotate(360deg); } }

/* BLOG list (blog.php) */
.bl-filters { display:flex; align-items:center; gap:0.75rem; flex-wrap:wrap; margin-bottom:2rem;
  padding-bottom:1.25rem; border-bottom:1px solid var(--beige-dark); }
.bl-select, .bl-sort { font-family:'Jost',sans-serif; font-size:0.8rem; color:var(--navy);
  background:var(--white); border:1px solid var(--beige-dark); border-radius:50px; padding:0.55rem 1.1rem;
  cursor:pointer; outline:none; transition:border-color 0.25s, color 0.25s; }
.bl-select:focus, .bl-select:hover, .bl-sort:hover { border-color:var(--gold); color:var(--gold); }
.bl-sort { display:inline-flex; align-items:center; gap:0.5rem; }
.bl-pager { display:flex; justify-content:center; align-items:center; gap:0.4rem; margin-top:3rem; flex-wrap:wrap; }
.bl-page-btn { min-width:38px; height:38px; padding:0 0.6rem; border-radius:50px; border:1px solid var(--beige-dark);
  background:var(--white); color:var(--navy); font-family:'Jost',sans-serif; font-size:0.8rem; cursor:pointer;
  transition:all 0.25s; }
.bl-page-btn:hover:not(:disabled) { border-color:var(--gold); color:var(--gold); }
.bl-page-btn.active { background:var(--navy); border-color:var(--navy); color:#fff; font-weight:600; }
.bl-page-btn:disabled { opacity:0.35; cursor:default; }

/* BLOG article (blog-article.php) */
.ba-hero { position:relative; height:clamp(220px,42vh,420px); overflow:hidden; }
.ba-hero img { width:100%; height:100%; object-fit:cover; display:block; }
.ba-hero-overlay { position:absolute; inset:0; background:linear-gradient(to bottom, rgba(13,31,45,0.15), rgba(253,250,246,0.9)); }
.ba-body { color:#555; font-size:1rem; line-height:1.9; font-weight:300; }
.ba-body h2, .ba-body h3, .ba-body h4 { font-family:'Cormorant Garamond',serif; color:var(--navy); font-weight:400;
  line-height:1.3; margin:2rem 0 0.75rem; }
.ba-body h2 { font-size:1.7rem; } .ba-body h3 { font-size:1.4rem; } .ba-body h4 { font-size:1.15rem; }
.ba-body p { margin-bottom:1.1rem; }
.ba-body ul, .ba-body ol { margin:0 0 1.1rem 1.25rem; }
.ba-body li { margin-bottom:0.5rem; }
.ba-body a { color:var(--gold); text-decoration:underline; text-underline-offset:3px; }
.ba-body img { max-width:100%; height:auto; border-radius:10px; margin:1.5rem 0; }
.ba-body blockquote { border-left:3px solid var(--gold); padding:0.5rem 0 0.5rem 1.25rem; margin:1.5rem 0;
  color:#777; font-style:italic; background:rgba(184,151,90,0.04); }
.ba-body strong { color:var(--navy); font-weight:600; }
.ba-share { margin-top:2.5rem; padding-top:1.75rem; border-top:1px solid var(--beige-dark); }
.ba-nav { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:560px){ .ba-nav { grid-template-columns:1fr; } }
.ba-nav-card { display:flex; flex-direction:column; gap:0.4rem; padding:1.1rem 1.35rem; border:1px solid var(--beige-dark);
  border-radius:12px; text-decoration:none; transition:border-color 0.25s, transform 0.25s, box-shadow 0.25s; background:var(--white); }
.ba-nav-card:hover { border-color:var(--gold); transform:translateY(-2px); box-shadow:0 10px 26px rgba(13,31,45,0.07); }
.ba-nav-label { font-size:0.6rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); }
.ba-nav-title { font-family:'Cormorant Garamond',serif; font-size:1.05rem; color:var(--navy); line-height:1.3; }

/* KLAIPĖDOS GIDAS (gidas.php) */
.gd-layout { display:grid; grid-template-columns:1.6fr 1fr; gap:1.5rem; align-items:start; }
@media (max-width:900px){ .gd-layout { grid-template-columns:1fr; } }
.gd-map-wrap { border:1px solid var(--beige-dark); border-radius:14px; overflow:hidden; box-shadow:0 14px 40px -18px rgba(13,31,45,0.35); }
.gd-map { height:clamp(360px, 58vh, 560px); width:100%; z-index:1; background:var(--beige); }
/* Warm the base map into teatro's palette so it reads as part of the site
   rather than a generic embed. Applied to tiles only — pins keep true colour. */
.gd-map .leaflet-tile-pane { filter:sepia(0.16) saturate(0.85) hue-rotate(-8deg) brightness(1.02) contrast(0.96); }
.gd-map .leaflet-control-zoom { border:none; box-shadow:0 4px 14px rgba(13,31,45,0.16); }
.gd-map .leaflet-control-zoom a { color:var(--navy); background:var(--white); border-color:var(--beige-dark); font-weight:600; }
.gd-map .leaflet-control-zoom a:hover { background:var(--beige); color:var(--gold); }
.gd-map .leaflet-control-attribution { background:rgba(253,250,246,0.85); font-family:'Jost',sans-serif; font-size:0.62rem; color:#999; }
.gd-map .leaflet-control-attribution a { color:var(--gold); }
.gd-map .leaflet-popup-content-wrapper { border-radius:10px; font-family:'Jost',sans-serif; }
.gd-pin { background:none; border:none; transition:filter 0.2s; }
.gd-pin:hover { filter:drop-shadow(0 4px 10px rgba(13,31,45,0.35)); cursor:pointer; }
.gd-pin-active { z-index:800 !important; }
.gd-map-hint { font-size:0.72rem; color:#aaa; text-align:center; margin-top:0.5rem; }
.nb-tabs-gd { display:flex; flex-wrap:wrap; justify-content:center; gap:0.5rem; }
.gd-tab { display:inline-flex; align-items:center; gap:0.5rem; background:var(--beige); border:1px solid var(--beige-dark);
  color:var(--navy); font-family:'Jost',sans-serif; font-size:0.76rem; font-weight:500; padding:0.55rem 1rem;
  border-radius:50px; cursor:pointer; transition:all 0.25s; }
.gd-tab:hover { border-color:var(--gold); color:var(--gold); }
.gd-tab.active { background:var(--navy); border-color:var(--navy); color:#fff; }
.gd-tab-count { font-family:'Playfair Display',serif; font-size:0.66rem; font-weight:700; background:rgba(184,151,90,0.2);
  color:var(--gold); border-radius:50px; min-width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center; padding:0 0.32rem; }
.gd-tab.active .gd-tab-count { background:rgba(255,255,255,0.16); color:var(--gold-light); }
.gd-dot { width:9px; height:9px; border-radius:50%; display:inline-block; flex-shrink:0; }
.gd-list { max-height:clamp(360px, 58vh, 560px); overflow-y:auto; border:1px solid var(--beige-dark); border-radius:14px; background:var(--white); }
.gd-item { display:flex; align-items:center; gap:0.7rem; width:100%; text-align:left; background:none; border:none;
  border-bottom:1px solid var(--beige-dark); padding:0.85rem 1.1rem; cursor:pointer; font-family:'Jost',sans-serif;
  transition:background 0.2s; }
.gd-item:last-child { border-bottom:none; }
.gd-item:hover { background:rgba(184,151,90,0.06); }
.gd-item.active { background:rgba(184,151,90,0.13); }
.gd-item-name { flex:1; font-size:0.85rem; color:var(--navy); }
.gd-item-dist { font-family:'Playfair Display',serif; font-size:0.64rem; font-weight:700; color:var(--gold); white-space:nowrap; }
.gd-item-nopin { color:#d5cec2; font-size:0.7rem; }
.gd-detail { margin-top:1rem; border:1px solid var(--beige-dark); border-radius:14px; padding:1.4rem 1.5rem; background:var(--white); }
.gd-times { display:flex; flex-wrap:wrap; gap:0.5rem; margin-top:0.9rem; }
.gd-time { font-size:0.74rem; color:var(--navy); background:var(--beige); border-radius:50px; padding:0.28rem 0.75rem; }
.gd-time b { font-family:'Playfair Display',serif; color:var(--gold); }

/* FOOTER (roziunamas layout, teatro skin) */
.ft-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:3.5rem; }
@media (max-width:820px){ .ft-grid { grid-template-columns:1fr; gap:2.5rem; } }
.ft-h4 { color:rgba(255,255,255,0.3); font-size:0.65rem; text-transform:uppercase; letter-spacing:0.25em; margin-bottom:1.5rem; font-weight:600; }
.ft-link { display:block; background:none; border:none; padding:0; text-align:left; cursor:pointer;
  color:rgba(255,255,255,0.5); font-family:'Jost',sans-serif; font-size:0.85rem; text-decoration:none; transition:color 0.25s; margin-bottom:0.75rem; }
.ft-link:hover { color:#fff; }
.ft-bottom { border-top:1px solid rgba(255,255,255,0.1); margin-top:3.5rem; padding-top:2rem;
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1rem; }
.ft-admin-dot { color:rgba(255,255,255,0.18); font-size:0.75rem; text-decoration:none; transition:color 0.25s; padding:0 0.35rem; }
.ft-admin-dot:hover { color:rgba(255,255,255,0.5); }

/* REVIEWS (revamped 2-column) */
.reviews-2col { display:grid; grid-template-columns:2fr 3fr; gap:2.5rem; align-items:start; }
@media(max-width:900px){ .reviews-2col{ grid-template-columns:1fr; } }
.review-card { transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(13,31,45,0.08); }

/* FAQ */
.faq-item { border-bottom:1px solid var(--beige-dark); }
.faq-item:first-child { border-top:1px solid var(--beige-dark); }
.faq-question { list-style:none; padding:1.25rem 0; cursor:pointer; font-size:0.95rem; font-weight:500; color:var(--navy); display:flex; justify-content:space-between; align-items:center; gap:1rem; user-select:none; }
.faq-question::-webkit-details-marker { display:none; }
.faq-question::after { content:'+'; font-size:1.4rem; font-weight:300; color:var(--gold); flex-shrink:0; transition:transform 0.3s; line-height:1; }
details[open] .faq-question::after { transform:rotate(45deg); }
.faq-answer { padding:0 0 1.25rem; font-size:0.9rem; color:#777; font-weight:300; line-height:1.8; }

/* CONTACT */
.contact-input { width:100%; border:1px solid rgba(255,255,255,0.15); padding:0.9rem 1.2rem; font-family:'Jost',sans-serif; font-size:0.9rem; color:#fff; background:rgba(255,255,255,0.06); outline:none; transition:border-color 0.3s; }
.contact-input:focus { border-color:var(--gold); }
.contact-input::placeholder { color:rgba(255,255,255,0.3); }
.social-contact-btn { display:flex; align-items:center; gap:0.9rem; padding:0.9rem 1.25rem; border:1px solid rgba(255,255,255,0.1); text-decoration:none; transition:all 0.3s; color:rgba(255,255,255,0.75); font-size:0.82rem; }
.social-contact-btn:hover { border-color:var(--gold); color:#fff; background:rgba(255,255,255,0.04); }

/* BOOKING CHOICE MODAL */
#book-modal-overlay { position:fixed; inset:0; background:rgba(5,12,20,0.88); z-index:2000; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.3s; padding:1.5rem; }
#book-modal-overlay.active { opacity:1; pointer-events:all; }
#book-modal-box { background:var(--navy); max-width:440px; width:92vw; position:relative; padding:2.5rem 2rem 2rem; border-top:3px solid var(--gold); }
#book-modal-box h3 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:300; color:#fff; margin:0 0 0.3rem; }
.book-modal-sub { font-size:0.7rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-bottom:2rem; }
.book-modal-close { position:absolute; top:1rem; right:1rem; background:none; border:none; cursor:pointer; color:rgba(255,255,255,0.5); }
.book-option-btn { display:flex; align-items:center; gap:0.9rem; width:100%; padding:1rem 1.2rem; border:none; cursor:pointer; margin-bottom:0.75rem; font-family:'Jost',sans-serif; font-size:0.72rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; text-decoration:none; transition:filter 0.2s, transform 0.15s; }
.book-option-btn:hover { filter:brightness(1.12); transform:translateY(-1px); }
.book-option-btn .btn-label { flex:1; text-align:left; }
.book-option-btn small { font-size:0.6rem; letter-spacing:0.1em; opacity:0.75; font-weight:400; display:block; margin-top:2px; text-transform:none; }
.btn-direct { background:#B8975A; color:#fff; border:2px solid #D4B07A; box-shadow:0 0 15px rgba(184,151,90,0.3); }
.btn-direct:hover { background:#D4B07A; filter:none; }
.btn-booking { background:#003580; color:#fff; }
.btn-airbnb { background:#FF5A5F; color:#fff; }
.btn-contact-modal { background:rgba(255,255,255,0.08); color:rgba(255,255,255,0.85); border:1px solid rgba(255,255,255,0.2); }
.btn-contact-modal:hover { background:rgba(255,255,255,0.16); filter:none; }
.book-divider { border:none; border-top:1px solid rgba(255,255,255,0.1); margin:0.5rem 0 1rem; }

/* AVAILABILITY MODAL */
#avail-modal-overlay { position:fixed; inset:0; background:rgba(5,12,20,0.88); z-index:2000; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.3s; padding:1.5rem; }
#avail-modal-overlay.active { opacity:1; pointer-events:all; }
#avail-modal-box { background:var(--white); max-width:520px; width:92vw; max-height:90vh; overflow-y:auto; position:relative; padding:2.5rem 2rem 2rem; }
#avail-modal-box h3 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:300; color:var(--navy); margin:0 0 0.25rem; }
.avail-close { position:absolute; top:1rem; right:1rem; background:none; border:none; cursor:pointer; color:var(--navy); opacity:0.5; }
.cal-nav { display:flex; align-items:center; justify-content:space-between; margin-bottom:1rem; }
.cal-nav button { background:none; border:1px solid var(--beige-dark); padding:0.3rem 0.7rem; cursor:pointer; font-size:0.8rem; color:var(--navy); }
.cal-month-label { font-family:'Cormorant Garamond',serif; font-size:1.15rem; font-weight:400; color:var(--navy); letter-spacing:0.04em; }
.cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:3px; }
.cal-dow { font-size:0.58rem; letter-spacing:0.08em; text-transform:uppercase; color:#999; text-align:center; padding:0.4rem 0; font-weight:600; }
.cal-day { aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:0.85rem; font-weight:600; border-radius:3px; position:relative; }
.cal-day.free { background:#1a6b3c; color:#fff; }
.cal-day.booked { background:#c0392b; color:#fff; font-weight:400; }
.cal-day.booked::after { content:'✕'; position:absolute; font-size:0.55rem; bottom:3px; right:4px; opacity:0.7; }
.cal-day.today { outline:2px solid var(--gold); outline-offset:-2px; z-index:1; }
.cal-day.past { background:#f0f0f0; color:#bbb; font-weight:400; }
.cal-day.empty { background:transparent; }
.cal-legend { display:flex; gap:1.5rem; margin-top:1rem; font-size:0.72rem; color:#666; justify-content:center; }
.cal-legend span { display:flex; align-items:center; gap:0.5rem; }
.cal-legend i { width:16px; height:16px; border-radius:3px; display:inline-block; flex-shrink:0; }
.cal-loading { text-align:center; padding:2rem; color:#aaa; font-size:0.85rem; }
.cal-error { text-align:center; padding:1.5rem; color:#b91c1c; font-size:0.82rem; line-height:1.6; }

/* SCROLL TO TOP */
#scroll-top-btn { position:fixed; bottom:2rem; right:2rem; z-index:500; width:48px; height:48px; border-radius:50%; background:#4caf7d; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 20px rgba(76,175,125,0.45); opacity:0; transform:translateY(12px); transition:opacity 0.35s ease, transform 0.35s ease; pointer-events:none; }
#scroll-top-btn.visible { opacity:1; transform:translateY(0); pointer-events:all; }

/* COOKIE BANNER */
#cookie-banner { position:fixed; bottom:0; left:0; right:0; background:rgba(13,31,45,0.97); border-top:2px solid var(--gold); padding:1.25rem 2rem; z-index:3000; display:flex; align-items:center; flex-wrap:wrap; gap:1rem; transform:translateY(100%); transition:transform 0.4s ease; }
#cookie-banner.visible { transform:translateY(0); }
#cookie-banner p { color:rgba(255,255,255,0.75); font-size:0.8rem; line-height:1.6; flex:1; min-width:260px; margin:0; }
#cookie-banner a { color:var(--gold-light); text-decoration:underline; cursor:pointer; }
.cookie-btns { display:flex; gap:0.75rem; flex-shrink:0; }
.cookie-accept { background:var(--gold); color:var(--navy); border:none; padding:0.6rem 1.4rem; font-family:'Jost',sans-serif; font-size:0.72rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; cursor:pointer; }
.cookie-decline { background:transparent; color:rgba(255,255,255,0.5); border:1px solid rgba(255,255,255,0.2); padding:0.6rem 1.2rem; font-family:'Jost',sans-serif; font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase; cursor:pointer; }

/* PRIVACY MODAL */
#privacy-modal-overlay { position:fixed; inset:0; background:rgba(5,12,20,0.92); z-index:4000; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:opacity 0.3s; }
#privacy-modal-overlay.active { opacity:1; pointer-events:all; }
#privacy-modal-box { background:var(--white); max-width:700px; width:94vw; max-height:88vh; overflow-y:auto; position:relative; padding:3rem 2.5rem 2.5rem; }
#privacy-modal-box h2 { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; color:var(--navy); margin:0 0 0.5rem; }
#privacy-modal-box h3 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:400; color:var(--navy); margin:1.5rem 0 0.5rem; }
#privacy-modal-box p, #privacy-modal-box li { font-size:0.88rem; color:#555; line-height:1.8; margin-bottom:0.5rem; }
#privacy-modal-box ul { padding-left:1.25rem; }
.privacy-close { position:absolute; top:1.2rem; right:1.2rem; background:none; border:none; cursor:pointer; color:var(--navy); opacity:0.5; font-size:1.2rem; }
.privacy-updated { font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:2rem; }

/* BLOG PREVIEW cards */
.blog-card { transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,31,45,0.1); }
.blog-card img { transition: transform 0.5s ease; }
.blog-card:hover img { transform: scale(1.05); }

/* CROSS-LINK (sister property — styled in roziunamas's identity, not teatro's) */
.crosslink-inner { display:grid; grid-template-columns:1.25fr 1fr; gap:3rem; align-items:center; }
@media (max-width:820px){ .crosslink-inner { grid-template-columns:1fr; } }
.rn-btn { display:inline-flex; align-items:center; gap:0.65rem; background:#243b53; color:#fff; text-decoration:none;
  font-family:'Jost',sans-serif; font-size:0.72rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  padding:1rem 1.9rem; border-radius:14px; transition:background 0.3s, transform 0.25s, box-shadow 0.3s;
  box-shadow:0 10px 26px -10px rgba(36,59,83,0.6); }
.rn-btn:hover { background:#102a43; transform:translateY(-2px); box-shadow:0 16px 34px -10px rgba(36,59,83,0.75); }
/* Browser-chrome style preview of roziunamas.lt */
.crosslink-badge { display:block; text-decoration:none; border-radius:14px; overflow:hidden; background:#fff;
  border:1px solid #e2d9c8; box-shadow:0 18px 45px -18px rgba(36,59,83,0.35); transition:transform 0.35s, box-shadow 0.35s; }
.crosslink-badge:hover { transform:translateY(-4px); box-shadow:0 26px 58px -18px rgba(36,59,83,0.5); }
.rn-preview-bar { display:flex; align-items:center; gap:0.35rem; padding:0.6rem 0.85rem; background:#eee7db; border-bottom:1px solid #e2d9c8; }
.rn-dot { width:9px; height:9px; border-radius:50%; display:inline-block; }
.rn-url { margin-left:0.6rem; font-family:'Jost',sans-serif; font-size:0.68rem; color:#8a7a5e; letter-spacing:0.04em; }
.rn-preview-shot { position:relative; }
.rn-preview-shot img { width:100%; height:230px; object-fit:cover; display:block; transition:transform 0.7s ease; }
.crosslink-badge:hover .rn-preview-shot img { transform:scale(1.05); }
.rn-preview-cap { position:absolute; inset:auto 0 0 0; padding:1.1rem 1.25rem;
  background:linear-gradient(transparent, rgba(16,42,67,0.85)); }

@media (max-width: 768px) { section { padding: 5rem 0; } }
