/* =========================================================
   RITMAS PRAMOGŲ KLUBAS — Stilius
   Tamsus, premium, kinematografinis dizainas
   ========================================================= */

:root {
  /* Brand colors */
  --bg: #0a0706;
  --bg-2: #14100d;
  --bg-3: #1f1813;
  --surface: #1a1411;
  --surface-2: #25201c;
  --copper: #C97D3A;
  --copper-light: #E29A5C;
  --copper-dark: #8E5728;
  --gold: #D4A968;
  --cream: #F1E4D2;
  --text: #ECE2D4;
  --text-dim: #B5A795;
  --text-muted: #7A6E60;
  --line: rgba(201, 125, 58, 0.22);

  /* Type */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-copper { color: var(--copper); }
.text-cream { color: var(--cream); }
.eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--copper); font-weight: 600;
  margin-bottom: 16px; position: relative; padding-left: 36px;
}
.eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 24px; height: 1px; background: var(--copper); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--cream); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
h4 { font-size: 1.25rem; margin-bottom: 12px; }
p { color: var(--text-dim); margin-bottom: 1rem; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; background: rgba(10, 7, 6, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.04); transition: padding 0.3s ease, background 0.3s ease; }
.nav.scrolled { padding: 12px 0; background: rgba(10, 7, 6, 0.92); }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { font-family: var(--font-display); font-size: 26px; font-style: italic; color: var(--copper); letter-spacing: -0.02em; font-weight: 600; }
.nav-logo span { display: block; font-size: 8px; letter-spacing: 4px; color: var(--text-dim); font-style: normal; text-transform: uppercase; margin-top: -4px; font-family: var(--font-body); font-weight: 600; }
.nav-menu { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-menu a { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); font-weight: 500; transition: color 0.2s; position: relative; }
.nav-menu a:hover, .nav-menu a.active { color: var(--copper); }
.nav-cta { background: var(--copper); color: var(--bg); padding: 12px 22px; border-radius: var(--radius); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; border: 1px solid var(--copper); transition: all 0.2s; }
.nav-cta:hover { background: var(--copper-light); color: var(--bg) !important; }
.nav-toggle { display: none; background: transparent; border: 0; color: var(--cream); font-size: 24px; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; overflow: hidden; background: radial-gradient(ellipse at top right, rgba(201, 125, 58, 0.18), transparent 60%), radial-gradient(ellipse at bottom left, rgba(140, 70, 30, 0.12), transparent 55%), linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(201,125,58,0.04) 80px, rgba(201,125,58,0.04) 81px); pointer-events: none; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.35; z-index: 0; filter: saturate(1.1); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,7,6,0.55) 0%, rgba(10,7,6,0.85) 60%, var(--bg) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero h1 { margin-bottom: 24px; text-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.hero h1 em { font-style: italic; color: var(--copper); font-weight: 400; }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--text-dim); max-width: 620px; margin-bottom: 40px; line-height: 1.55; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; border-radius: var(--radius); border: 1px solid var(--copper); transition: all 0.25s ease; }
.btn-primary { background: var(--copper); color: var(--bg); }
.btn-primary:hover { background: var(--copper-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,125,58,0.3); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(241,228,210,0.3); }
.btn-ghost:hover { border-color: var(--copper); color: var(--copper); }

.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-darker { background: #060403; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.section-head h2 em { font-style: italic; color: var(--copper); font-weight: 400; }
.section-head p { font-size: 1.1rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0; }
.stat { background: var(--bg-2); padding: 40px 24px; text-align: center; }
.stat-n { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--copper); display: block; line-height: 1; margin-bottom: 10px; }
.stat-l { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-dim); }

.spaces { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 24px; }
.space-card { position: relative; background: var(--surface); border: 1px solid rgba(255,255,255,0.04); border-radius: var(--radius); overflow: hidden; transition: all 0.4s ease; display: flex; flex-direction: column; min-height: 460px; cursor: pointer; text-decoration: none; color: inherit; }
.space-card:hover .space-card-link { gap: 16px; color: var(--copper-light); }
.space-card:hover .space-card-img { transform: scale(1.04); }
.space-card-img { transition: transform 0.6s ease; }
.space-card:hover { border-color: var(--copper); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(201,125,58,0.15); }
.space-card-img { position: relative; width: 100%; height: 260px; background: linear-gradient(135deg, rgba(201,125,58,0.18), rgba(80,30,15,0.4)), linear-gradient(180deg, var(--bg-3), var(--surface)); background-size: cover; background-position: center; overflow: hidden; }
.space-card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,7,6,0.85) 100%); }
.space-card-tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(10,7,6,0.7); backdrop-filter: blur(8px); border: 1px solid var(--line); padding: 6px 14px; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--copper); font-weight: 600; border-radius: 30px; }
.space-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.space-card h3 { font-size: 1.6rem; margin-bottom: 8px; color: var(--cream); }
.space-card .sub { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--copper); margin-bottom: 14px; font-weight: 600; }
.space-card p { font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.space-card-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; font-weight: 600; }
.space-card-meta span::before { content: "● "; color: var(--copper); }
.space-card-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--copper); font-weight: 700; transition: gap 0.2s; }
.space-card-link:hover { gap: 16px; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature { padding: 36px 28px; border: 1px solid var(--line); background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%); border-radius: var(--radius); transition: all 0.3s; position: relative; overflow: hidden; }
.feature::before { content: ""; position: absolute; top: 0; left: 0; height: 2px; width: 0; background: var(--copper); transition: width 0.4s ease; }
.feature:hover::before { width: 100%; }
.feature:hover { transform: translateY(-4px); border-color: rgba(201,125,58,0.5); }
.feature-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(201,125,58,0.1); border: 1px solid var(--copper); border-radius: 50%; margin-bottom: 22px; color: var(--copper); font-size: 22px; }
.feature h4 { color: var(--cream); margin-bottom: 10px; }
.feature p { font-size: 0.93rem; color: var(--text-dim); margin-bottom: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-img { position: relative; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--bg-3), var(--surface)); border-radius: var(--radius); overflow: hidden; background-size: cover; background-position: center; }
.two-col-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,7,6,0.6) 100%); }
.two-col-img.framed { border: 1px solid var(--line); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }

.testimonial { text-align: center; max-width: 880px; margin: 0 auto; padding: 0 20px; }
.testimonial-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.4rem); font-style: italic; color: var(--cream); line-height: 1.4; margin-bottom: 24px; }
.testimonial-quote::before { content: "“ "; color: var(--copper); }
.testimonial-quote::after { content: " ”"; color: var(--copper); }
.testimonial-attr { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--copper); font-weight: 700; }

.event-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.event-type { background: var(--surface); padding: 36px 28px; text-align: center; transition: all 0.3s; }
.event-type:hover { background: var(--surface-2); color: var(--copper); }
.event-type-icon { font-size: 32px; margin-bottom: 14px; color: var(--copper); }
.event-type h4 { font-size: 1.1rem; margin-bottom: 6px; }
.event-type p { font-size: 0.85rem; margin-bottom: 0; }

.cta-band { background: radial-gradient(ellipse at center, rgba(201,125,58,0.18) 0%, transparent 70%), linear-gradient(135deg, #1c130d 0%, #0d0807 100%); padding: 100px 0; position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: -2px; border: 1px solid var(--line); pointer-events: none; }
.cta-band h2 { margin-bottom: 18px; }
.cta-band p { font-size: 1.15rem; margin-bottom: 36px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { padding: 0; }
.contact-info h3 { margin-bottom: 24px; }
.contact-line { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line-icon { flex-shrink: 0; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--copper); color: var(--copper); border-radius: 50%; font-size: 16px; }
.contact-line-text { flex: 1; padding-top: 6px; }
.contact-line-text strong { display: block; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.contact-line-text a, .contact-line-text span { color: var(--cream); font-size: 1.05rem; }
.contact-line-text a:hover { color: var(--copper); }

.form { background: var(--surface); border: 1px solid var(--line); padding: 36px; border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea { background: var(--bg); border: 1px solid var(--line); color: var(--text); padding: 14px 16px; font-family: var(--font-body); font-size: 15px; border-radius: var(--radius); transition: border-color 0.2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--copper); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form button[type="submit"] { width: 100%; margin-top: 8px; }

.footer { background: #050403; padding: 80px 0 30px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer h5 { font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--copper); margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; }
.footer ul li { padding: 6px 0; }
.footer ul a { color: var(--text-dim); font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: var(--copper); }
.footer-brand { font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--copper); margin-bottom: 8px; }
.footer-tagline { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text-dim); transition: all 0.2s; }
.footer-socials a:hover { border-color: var(--copper); color: var(--copper); }
.footer-bottom { padding-top: 30px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 12px; color: var(--text-muted); }

.page-hero { position: relative; min-height: 70vh; padding: 180px 0 80px; display: flex; align-items: center; background: var(--bg-2); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; z-index: 0; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,7,6,0.5) 0%, rgba(10,7,6,0.92) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 820px; }
.crumb { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px; }
.crumb a { color: var(--copper); }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.gallery-item { aspect-ratio: 4/3; background: var(--surface); background-size: cover; background-position: center; border-radius: var(--radius); position: relative; overflow: hidden; transition: transform 0.4s; }
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(10,7,6,0.6) 100%); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: 3/5; }

.amenities { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.amenity { background: var(--surface); padding: 28px 22px; text-align: left; }
.amenity-icon { font-size: 24px; color: var(--copper); margin-bottom: 12px; }
.amenity h5 { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); margin-bottom: 6px; }
.amenity p { font-size: 0.88rem; color: var(--text-dim); margin: 0; }

.info-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 40px; }
.info-bar-item { background: var(--surface); padding: 22px 24px; }
.info-bar-item strong { display: block; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; font-weight: 700; }
.info-bar-item span { font-family: var(--font-display); color: var(--cream); font-size: 1.05rem; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .nav-menu { position: fixed; top: 64px; right: 0; flex-direction: column; background: rgba(10, 7, 6, 0.98); padding: 32px; width: min(320px, 100%); height: calc(100vh - 64px); transform: translateX(100%); transition: transform 0.3s; align-items: flex-start; gap: 20px; border-left: 1px solid var(--line); }
  .nav-menu.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}
@media (max-width: 600px) {
  .hero { min-height: 90vh; padding: 100px 0 60px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
