/* ===== RESET & VARS ===== */
* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --cream: #F4EAD5;
  --sand: #E8DFD0;
  --navy: #1A2744;
  --navy2: #0D1525;
  --gold: #C9A96E;
  --gold2: #E8C99A;
  --white: #FFFFFF;
  --rope: #7A6040;
}
html { scroll-behavior:smooth; }
body { background:#0D1525; font-family:'Jost',sans-serif; overflow-x:hidden; }

/* ===== PROGRESS ===== */
#progress { position:fixed; top:0; left:0; height:2px; background:linear-gradient(90deg,var(--gold),var(--gold2)); z-index:1000; width:0%; transition:width 0.1s linear; }

/* ===== ROOM TRANSITION ===== */
#room-transition { position:fixed; inset:0; z-index:400; background:var(--navy2); opacity:0; pointer-events:none; display:flex; align-items:center; justify-content:center; }
.transition-text { font-family:'Cormorant Garamond',serif; font-size:52px; color:var(--gold); letter-spacing:8px; font-weight:300; font-style:italic; opacity:0; }

/* ===== NAV ===== */
nav { position:fixed; top:0; left:0; right:0; z-index:200; display:flex; align-items:center; justify-content:space-between; padding:28px 60px; background:linear-gradient(to bottom,rgba(13,21,37,0.85),transparent); transition:all 0.5s; }
nav.solid { background:rgba(13,21,37,0.97); backdrop-filter:blur(20px); padding:16px 60px; border-bottom:1px solid rgba(201,169,110,0.1); }
.nav-logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }
.nav-logo-img { height:90px; width:auto; display:block; }

/* NOD logo inline (no RESTAURANT) — clips bottom ~26% */
.nod-logo-only { height:1em; width:1em; display:inline-block; vertical-align:middle; clip-path:inset(0 8% 26% 8%); }
.rooms-label .nod-logo-only { height:30px; width:30px; }
.gallery-title .nod-logo-only { vertical-align:-0.1em; }

/* Footer logo */
.footer-logo-img { height:160px; width:auto; display:block; opacity:0.22; margin-bottom:12px; }
.nav-links { display:flex; gap:40px; align-items:center; }
.nav-links a { color:rgba(255,255,255,0.7); text-decoration:none; font-size:10px; letter-spacing:3px; text-transform:uppercase; transition:color 0.3s; font-weight:300; }
.nav-links a:hover { color:var(--gold); }
.nav-cta { background:transparent; border:1px solid rgba(201,169,110,0.5); color:var(--gold); padding:10px 28px; font-size:9px; letter-spacing:3px; text-transform:uppercase; cursor:pointer; font-family:'Jost'; transition:all 0.3s; }
.nav-cta:hover { background:var(--gold); color:var(--navy); }

/* Hamburger */
.nav-hamburger { display:none; flex-direction:column; gap:6px; padding:8px 4px; background:transparent; border:none; cursor:pointer; z-index:300; position:relative; }
.h-line { display:block; width:26px; height:1.5px; background:var(--white); transition:all 0.35s ease; transform-origin:center; }
.nav-hamburger.active .h-line:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
.nav-hamburger.active .h-line:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-hamburger.active .h-line:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile-menu {
  position:fixed; inset:0; z-index:150;
  background:rgba(6,13,26,0.98); backdrop-filter:blur(24px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:36px;
  opacity:0; pointer-events:none; transition:opacity 0.4s ease;
}
.nav-mobile-menu.open { opacity:1; pointer-events:all; }
.nav-mobile-link {
  font-family:'Cormorant Garamond',serif; font-size:clamp(28px,8vw,40px); font-weight:300;
  color:var(--white); text-decoration:none; letter-spacing:4px; transition:color 0.3s;
}
.nav-mobile-link:hover { color:var(--gold); }
.nav-mobile-cta {
  margin-top:8px; background:transparent; border:1px solid rgba(201,169,110,0.5);
  color:var(--gold); padding:14px 44px; font-size:9px; letter-spacing:4px; text-transform:uppercase;
  font-family:'Jost'; cursor:pointer; transition:all 0.3s;
}
.nav-mobile-cta:hover { background:rgba(201,169,110,0.1); }

/* ===== INTRO ===== */
#intro { position:fixed; inset:0; z-index:500; display:flex; align-items:center; justify-content:center; background:#0D1525; overflow:hidden; }
.intro-particles { position:absolute; inset:0; pointer-events:none; }
.particle { position:absolute; width:2px; height:2px; background:var(--gold); border-radius:50%; animation:floatUp linear infinite; opacity:0; }
@keyframes floatUp { 0%{transform:translateY(100vh);opacity:0} 10%{opacity:0.5} 90%{opacity:0.2} 100%{transform:translateY(-10vh);opacity:0} }

.intro-card { width:min(460px,88vw); aspect-ratio:3/4; position:relative; overflow:hidden; box-shadow:0 40px 120px rgba(0,0,0,0.8),0 0 0 1px rgba(201,169,110,0.2); }
.intro-card-img { position:absolute; inset:0; }
.intro-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(13,21,37,0.95) 0%,rgba(13,21,37,0.25) 55%,transparent 100%); }
.intro-card-content { position:absolute; bottom:0; left:0; right:0; padding:40px 36px; text-align:center; display:flex; flex-direction:column; align-items:center; }
.intro-nod-badge { width:min(280px,80%); height:auto; margin-bottom:0; }
.intro-line { width:40px; height:1px; background:var(--gold); margin:20px auto; opacity:0.5; }
.intro-cta { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.35); animation:blinkPulse 2s ease-in-out infinite; }
@keyframes blinkPulse { 0%,100%{opacity:0.35} 50%{opacity:1} }

/* ===== IMAGE BACKGROUNDS ===== */
.nod-grad-warm { background:url('images/intro-card.jpeg') center/cover no-repeat; }
.nod-grad-scene { width:100%; height:100%; background:linear-gradient(135deg,#080f1e 0%,#1A2744 48%,#0d1a30 100%); }

/* Rezervari background */
.nod-grad-rezervari { width:100%; height:100%; background:url('images/rezervari-bg.jpeg') center 40%/cover no-repeat; }

/* NOD monogram watermark on gallery items */
.gallery-img { position:relative; }
.gallery-img::after {
  content:'NOD';
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font-family:'Cormorant Garamond',serif; font-size:clamp(24px,6vw,40px); font-weight:300;
  letter-spacing:10px; color:rgba(201,169,110,0.08);
  pointer-events:none;
}

/* ===== MAIN SITE ===== */
#main-site { opacity:0; }

/* ===== HERO ===== */
#hero { height:100vh; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.hero-video-bg { position:absolute; inset:0; background:#0D1525; overflow:hidden; }

/* Hero real photo background */
.hero-bg-img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center 65%;
}

/* Cinematic overlay on top of photo */
.hero-cinematic-bg {
  position:absolute; inset:0;
  background:linear-gradient(160deg,rgba(6,13,26,0.35) 0%,rgba(13,21,37,0.1) 50%,rgba(6,13,26,0.45) 100%);
}

/* Light shimmer layer (sunlight on water) */
.hero-light-shimmer {
  position:absolute; inset:0;
  background:
    linear-gradient(108deg,transparent 28%,rgba(201,169,110,0.028) 48%,transparent 68%),
    linear-gradient(262deg,transparent 33%,rgba(201,169,110,0.018) 53%,transparent 73%);
  background-size:300% 300%,250% 250%;
  animation:shimmer 20s ease-in-out infinite;
  pointer-events:none;
}
@keyframes shimmer {
  0%,100% { background-position:0% 50%,100% 0%; opacity:0.7; }
  25%      { background-position:50% 0%,0% 50%; opacity:1; }
  50%      { background-position:100% 50%,50% 100%; opacity:0.8; }
  75%      { background-position:50% 100%,100% 50%; opacity:0.95; }
}

/* Hero logo watermark */
.hero-logo-watermark {
  position:absolute; bottom:80px; right:60px; width:160px; height:160px; pointer-events:none; opacity:0.7;
}

.hero-parallax-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(13,21,37,0.55) 0%,rgba(13,21,37,0.15) 50%,rgba(13,21,37,0.65) 100%); }
.hero-grain { position:absolute; inset:0; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); opacity:0.35; pointer-events:none; }
.hero-content { position:relative; z-index:2; text-align:center; padding:0 20px; max-width:660px; }
.hero-tagline { font-size:10px; letter-spacing:6px; text-transform:uppercase; color:var(--gold); margin-bottom:24px; opacity:0; transform:translateY(20px); transition:all 0.8s ease; }
.hero-name { font-family:'Cormorant Garamond',serif; font-size:clamp(72px,13vw,160px); font-weight:300; color:var(--white); letter-spacing:clamp(12px,3vw,20px); line-height:0.9; opacity:0; transform:translateY(30px); transition:all 1s ease; }
.hero-sub-title { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:18px; color:rgba(255,255,255,0.45); letter-spacing:4px; margin-top:16px; opacity:0; transform:translateY(20px); transition:all 0.8s ease; }
.hero-desc { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.9; max-width:480px; margin:28px auto 0; font-weight:300; opacity:0; transform:translateY(20px); transition:all 0.8s ease; }
.hero-btns { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin-top:44px; opacity:0; transform:translateY(20px); transition:all 0.8s ease; }
.btn-gold { background:var(--gold); color:var(--navy); padding:16px 44px; font-size:9px; letter-spacing:3px; text-transform:uppercase; border:none; cursor:pointer; font-family:'Jost'; font-weight:500; transition:all 0.3s; touch-action:manipulation; }
.btn-gold:hover { background:var(--gold2); transform:translateY(-3px); box-shadow:0 10px 40px rgba(201,169,110,0.3); }
.btn-ghost { background:transparent; color:var(--white); padding:16px 44px; font-size:9px; letter-spacing:3px; text-transform:uppercase; border:1px solid rgba(255,255,255,0.25); cursor:pointer; font-family:'Jost'; transition:all 0.3s; touch-action:manipulation; }
.btn-ghost:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }
.hero-scroll-hint { position:absolute; bottom:40px; left:0; right:0; display:flex; flex-direction:column; align-items:center; gap:10px; opacity:0; transition:opacity 0.8s ease; }
.scroll-bar { width:1px; height:60px; background:linear-gradient(to bottom,transparent,var(--gold)); animation:scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
.scroll-txt { font-size:8px; letter-spacing:4px; text-transform:uppercase; color:rgba(255,255,255,0.3); }

/* ===== SCENE ===== */
.scene { min-height:100vh; position:relative; overflow:hidden; display:flex; align-items:center; padding:120px 0; }
.scene-bg { position:absolute; inset:0; overflow:hidden; }
.scene-fade-right { position:absolute; inset:0; background:linear-gradient(to right,rgba(13,21,37,0.92) 0%,rgba(13,21,37,0.6) 55%,rgba(13,21,37,0.2) 100%); }
.scene-content { position:relative; z-index:2; max-width:1200px; margin:0 auto; padding:0 60px; width:100%; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.scene-label { font-size:9px; letter-spacing:5px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.scene-title { font-family:'Cormorant Garamond',serif; font-size:clamp(36px,5vw,68px); font-weight:300; color:var(--white); line-height:1.1; margin-bottom:28px; }
.scene-title em { color:var(--gold); font-style:italic; }
.scene-body { font-size:15px; line-height:2; color:rgba(255,255,255,0.6); font-weight:300; }
.scene-body p+p { margin-top:16px; }
.story-visual-block { display:flex; flex-direction:column; gap:16px; }
.story-img-main { width:100%; aspect-ratio:4/5; display:block; filter:brightness(0.85); object-fit:cover; }
.story-img-accent { width:60%; aspect-ratio:1; display:block; filter:brightness(0.8); align-self:flex-end; margin-top:-60px; border:3px solid var(--gold); object-fit:cover; }
.scene-divider { height:100px; background:linear-gradient(to bottom,transparent,#060D1A); }

/* ===== ROOMS ===== */
#rooms-nav { background:#060D1A; padding:100px 60px; position:relative; overflow:hidden; }
.rooms-bg-pattern { position:absolute; inset:0; background:repeating-linear-gradient(45deg,rgba(201,169,110,0.02) 0,rgba(201,169,110,0.02) 1px,transparent 1px,transparent 28px),repeating-linear-gradient(-45deg,rgba(201,169,110,0.02) 0,rgba(201,169,110,0.02) 1px,transparent 1px,transparent 28px); }
.rooms-inner { max-width:1200px; margin:0 auto; position:relative; }
.rooms-header { text-align:center; margin-bottom:64px; }
.rooms-label { font-size:9px; letter-spacing:5px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.rooms-title { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:300; color:var(--white); }
.rooms-title em { font-style:italic; color:var(--gold); }
.rooms-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; }
.room-card { position:relative; aspect-ratio:3/4; overflow:hidden; cursor:pointer; }
.room-card-bg { position:absolute; inset:0; transition:all 0.7s cubic-bezier(0.25,0.46,0.45,0.94); transform:scale(1.06); filter:brightness(0.45) saturate(0.7); overflow:hidden; }
.room-card-bg img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; pointer-events:none; }
.room-card:hover .room-card-bg { filter:brightness(0.65) saturate(1.2); transform:scale(1); }
.room-card-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(13,21,37,0.95) 0%,rgba(13,21,37,0.25) 60%,transparent 100%); transition:all 0.5s; }
.room-card:hover .room-card-overlay { background:linear-gradient(to top,rgba(13,21,37,0.85) 0%,rgba(13,21,37,0.1) 60%,transparent 100%); }
.room-card-content { position:absolute; bottom:0; left:0; right:0; padding:36px 32px; }
.room-number { font-family:'Cormorant Garamond',serif; font-size:64px; font-weight:300; color:rgba(201,169,110,0.12); line-height:1; margin-bottom:-10px; }
.room-label { font-size:8px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.room-name { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:400; color:var(--white); margin-bottom:12px; }
.room-desc { font-size:12px; color:rgba(255,255,255,0.5); line-height:1.7; font-weight:300; }
.room-enter { display:inline-flex; align-items:center; gap:10px; font-size:9px; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-top:20px; opacity:0; transform:translateY(10px); transition:all 0.4s; }
.room-card:hover .room-enter { opacity:1; transform:translateY(0); }
.room-enter-line { width:24px; height:1px; background:var(--gold); transition:width 0.3s; }
.room-card:hover .room-enter-line { width:40px; }

/* ===== GALLERY ===== */
#gallery-section { background:var(--cream); padding:100px 0 0; overflow:hidden; }
.gallery-inner { max-width:1200px; margin:0 auto; padding:0 60px; }
.gallery-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:56px; }
.gallery-title { font-family:'Cormorant Garamond',serif; font-size:52px; font-weight:300; color:var(--navy); }
.gallery-title em { font-style:italic; color:var(--gold); }
.gallery-subtitle { font-size:11px; color:rgba(26,39,68,0.45); letter-spacing:3px; text-transform:uppercase; }
.gallery-marquee { overflow:hidden; white-space:nowrap; }
.gallery-track { display:inline-flex; gap:4px; animation:marqueeLeft 28s linear infinite; }
.gallery-track.reverse { animation:marqueeRight 34s linear infinite; }
@keyframes marqueeLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes marqueeRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.gallery-img { width:280px; height:320px; flex-shrink:0; display:inline-block; filter:brightness(0.88); transition:filter 0.3s; background-size:cover; background-position:center; background-repeat:no-repeat; }
.gallery-img:hover { filter:brightness(1); }

/* ===== REZERVARI ===== */
#rezervari-section { position:relative; min-height:100vh; display:flex; align-items:center; overflow:hidden; }
.rezervari-bg { position:absolute; inset:0; overflow:hidden; }
.rezervari-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(13,21,37,0.88) 0%,rgba(13,21,37,0.45) 100%); }
.rezervari-content { position:relative; z-index:2; max-width:1200px; margin:0 auto; padding:100px 60px; width:100%; display:grid; grid-template-columns:1fr 1fr; gap:100px; align-items:center; }
.rez-label { font-size:9px; letter-spacing:5px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.rez-title { font-family:'Cormorant Garamond',serif; font-size:56px; font-weight:300; color:var(--white); line-height:1.1; margin-bottom:24px; }
.rez-title em { font-style:italic; color:var(--gold); }
.rez-body { font-size:14px; color:rgba(255,255,255,0.5); line-height:1.9; font-weight:300; margin-bottom:36px; }
.rez-info { display:flex; flex-direction:column; gap:16px; }
.rez-info-item { display:flex; align-items:center; gap:16px; }
.rez-info-icon { font-size:18px; width:44px; height:44px; background:rgba(201,169,110,0.08); border:1px solid rgba(201,169,110,0.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rez-info-text { font-size:13px; color:rgba(255,255,255,0.55); line-height:1.6; }
.rez-info-text strong { color:var(--white); display:block; font-weight:400; font-size:14px; }

/* FORM */
.form-card { background:rgba(255,255,255,0.04); backdrop-filter:blur(20px); border:1px solid rgba(201,169,110,0.15); padding:48px 44px; position:relative; }
.form-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,var(--gold),var(--gold2),var(--gold)); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-lbl { font-size:8px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.4); }
.form-inp { background:rgba(255,255,255,0.05); border:1px solid rgba(201,169,110,0.15); color:var(--white); padding:14px 18px; font-size:13px; font-family:'Jost'; outline:none; transition:border-color 0.3s; -webkit-appearance:none; appearance:none; width:100%; }
.form-inp:focus { border-color:var(--gold); background:rgba(201,169,110,0.05); }
.form-inp::placeholder { color:rgba(255,255,255,0.2); }
.form-inp option { background:#1A2744; color:#fff; }
.form-btn { width:100%; background:var(--gold); color:var(--navy2); padding:18px; font-size:10px; letter-spacing:4px; text-transform:uppercase; border:none; cursor:pointer; font-family:'Jost'; font-weight:500; margin-top:8px; transition:all 0.3s; touch-action:manipulation; }
.form-btn:hover { background:var(--gold2); transform:translateY(-2px); box-shadow:0 10px 40px rgba(201,169,110,0.3); }

/* ===== FOOTER ===== */
.map-section { height:420px; position:relative; }
.map-iframe { width:100%; height:100%; border:0; display:block; filter:grayscale(0.3) contrast(1.05); }
footer { background:#060D1A; padding:80px 60px 40px; border-top:1px solid rgba(201,169,110,0.06); }
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,0.04); }
.footer-brand { display:flex; flex-direction:column; }
.footer-tagline { font-size:13px; color:rgba(255,255,255,0.28); line-height:1.8; font-weight:300; }
.ft-col-title { font-size:8px; letter-spacing:4px; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.ft-link { display:block; font-size:13px; color:rgba(255,255,255,0.32); margin-bottom:10px; text-decoration:none; transition:color 0.3s; }
.ft-link:hover { color:var(--gold); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding-top:28px; }
.footer-copy { font-size:11px; color:rgba(255,255,255,0.15); }
.footer-gold { width:48px; height:1px; background:var(--gold); opacity:0.3; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up { opacity:0; transform:translateY(40px); transition:opacity 0.9s ease,transform 0.9s ease; }
.reveal-up.in { opacity:1; transform:translateY(0); }
.d1 { transition-delay:0.12s; }
.d2 { transition-delay:0.24s; }
.d3 { transition-delay:0.36s; }
.d4 { transition-delay:0.48s; }

/* ===== RESPONSIVE — 900px (tablet/mobile) ===== */
@media(max-width:900px){
  nav { padding:20px 24px; }
  nav.solid { padding:12px 24px; }
  .nav-links { display:none; }
  .nav-cta { display:none; }
  .nav-hamburger { display:flex; }

  .scene-content { grid-template-columns:1fr; gap:40px; padding:0 24px; }
  .story-visual-block { display:none; }
  .scene-fade-right { background:linear-gradient(to bottom,rgba(13,21,37,0.88) 0%,rgba(13,21,37,0.6) 55%,rgba(13,21,37,0.2) 100%); }

  .rooms-grid { grid-template-columns:1fr; gap:3px; }
  .room-card { aspect-ratio:16/9; }
  .room-card-content { padding:24px 28px; }
  .room-number { font-size:44px; }
  #rooms-nav { padding:60px 24px; }

  .gallery-inner { padding:0 24px; }
  .gallery-header { flex-direction:column; align-items:flex-start; gap:8px; }
  .gallery-img { width:220px; height:250px; }

  .rezervari-content { grid-template-columns:1fr; gap:48px; padding:60px 24px; }
  .rez-title { font-size:42px; }

  .footer-top { grid-template-columns:1fr 1fr; gap:36px; }
  footer { padding:60px 24px 32px; }

  .hero-logo-watermark { display:none; }
  .hero-desc br { display:none; }

  /* Disable heavy animations on mobile for performance */
  .hero-light-shimmer { animation:none; }

  /* Show room enter hints on mobile (no hover) */
  .room-enter { opacity:1; transform:translateY(0); }
}

/* ===== RESPONSIVE — 768px ===== */
@media(max-width:768px){
  .scene { padding:80px 0; }
  .scene-title { font-size:clamp(30px,7vw,48px); }
  .scene-body { font-size:14px; }

  .rooms-title { font-size:36px; }

  .gallery-title { font-size:36px; }
  .gallery-img { width:200px; height:230px; }

  .form-row { grid-template-columns:1fr; }
  .form-card { padding:32px 24px; }
  .rez-title { font-size:36px; }

  .footer-top { grid-template-columns:1fr 1fr; gap:28px; }
  .footer-logo-img { height:100px; }
}

/* ===== RESPONSIVE — 480px (large phones) ===== */
@media(max-width:480px){
  nav { padding:16px 20px; }

  /* Intro card */
  .intro-card { width:90vw; }
  .intro-nod-badge { width:80%; }
  .intro-card-content { padding:28px 20px; }

  /* Hero */
  .hero-name { font-size:clamp(60px,18vw,96px); letter-spacing:10px; }
  .hero-desc { font-size:13px; max-width:100%; }
  .hero-btns { flex-direction:column; align-items:center; gap:12px; margin-top:32px; }
  .btn-gold,.btn-ghost { width:100%; max-width:280px; padding:15px 20px; }
  .hero-scroll-hint { bottom:24px; }

  /* Rooms */
  .room-card-content { padding:20px; }
  .room-desc { display:none; }
  .room-enter { margin-top:8px; }

  /* Gallery */
  .gallery-img { width:160px; height:185px; }
  .gallery-title { font-size:28px; }
  #gallery-section { padding:60px 0 0; }

  /* Rezervari */
  .rezervari-content { padding:48px 20px; gap:36px; }
  .rez-title { font-size:30px; }
  .rez-body { font-size:13px; }
  .form-card { padding:28px 18px; }

  /* Footer */
  .footer-top { grid-template-columns:1fr; gap:28px; }
  footer { padding:48px 20px 28px; }
  .footer-logo-img { height:90px; }
  .footer-bottom { flex-direction:column; gap:12px; text-align:center; }
}

/* ===== RESPONSIVE — 390px (iPhone 15 Pro) ===== */
@media(max-width:390px){
  .hero-name { font-size:clamp(56px,16vw,80px); letter-spacing:8px; }
  .intro-nod-badge { width:85%; }
  .gallery-img { width:140px; height:165px; }
  .rooms-title { font-size:28px; }
}

/* ===== RESPONSIVE — 375px (iPhone SE) ===== */
@media(max-width:375px){
  .hero-tagline { font-size:8px; letter-spacing:4px; }
  .hero-name { letter-spacing:6px; }
  .hero-sub-title { font-size:14px; }
  .btn-gold,.btn-ghost { max-width:260px; font-size:8px; }
  .gallery-img { width:130px; height:152px; }
  .scene-content { padding:0 18px; }
  .rooms-header { margin-bottom:40px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion:reduce) {
  .hero-light-shimmer { animation:none; }
  .scroll-bar { animation:none; }
  .gallery-track,.gallery-track.reverse { animation:none; }
  .particle { animation:none; }
  .reveal-up { opacity:1; transform:none; transition:none; }
}
