/* ===========================
   VILLA BUDA – LUXURY REAL ESTATE
   Cormorant Garamond + Montserrat
   Palette: Warm Noir + Champagne Gold
=========================== */

:root {
  --noir: #0d0d0b;
  --noir2: #1a1916;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #9a7a47;
  --cream: #f5f0e8;
  --white: #fdfcf9;
  --text: #2c2a26;
  --text-light: #7a7570;
  --border: rgba(201,169,110,0.2);
  --nav-h: 72px;
  --transition: 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--noir); }
h2 em { font-style: italic; color: var(--gold-dark); }
h3 { font-size: 1.4rem; font-weight: 400; }

p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-light);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label.center { text-align: center; }
.center { text-align: center; }

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(13,13,11,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--noir);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
}

.mobile-menu a:hover { color: var(--gold); }

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,11,0.7) 0%,
    rgba(13,13,11,0.35) 60%,
    rgba(13,13,11,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  line-height: 2;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--noir);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.3s;
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-primary.full { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.btn-link:hover { color: var(--gold); border-color: var(--gold); }

/* ===========================
   HIGHLIGHTS
=========================== */
.highlights {
  background: var(--noir);
  padding: 3rem 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(201,169,110,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-item:last-child { border-right: none; }

.h-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.h-unit {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin: 0.25rem 0 0.5rem;
}

.h-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-img {
  position: relative;
  height: 600px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 60%; height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
  pointer-events: none;
}

.about-text { padding: 2rem 0; }

.about-text h2 { margin-bottom: 1.5rem; }

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
  line-height: 2;
}

/* ===========================
   FEATURES
=========================== */
.features {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.features h2 { margin-bottom: 3.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s;
}

.feature-card:hover {
  background: var(--noir);
  border-color: var(--noir);
}

.feature-card:hover h3 { color: var(--gold-light); }
.feature-card:hover p { color: rgba(255,255,255,0.5); }
.feature-card:hover .feature-icon { color: var(--gold); }

.feature-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-weight: 400;
  transition: color 0.4s;
}

.feature-card p {
  font-size: 0.82rem;
  transition: color 0.4s;
}

/* ===========================
   QUOTE SECTION
=========================== */
.quote-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,11,0.75);
}

.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(1.5rem, 10vw, 8rem);
  max-width: 900px;
}

blockquote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-style: normal;
}

/* ===========================
   KAPCSOLAT
=========================== */
.kapcsolat {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--noir2);
}

.kapcsolat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.kapcsolat-text .section-label { color: var(--gold); }

.kapcsolat-text h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.kapcsolat-text p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.contact-icon {
  color: var(--gold);
  font-size: 0.7rem;
}

/* FORM */
.kapcsolat-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { position: relative; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 1rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group label { display: none; }

.form-note {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 0.5rem;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--noir);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.25em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
}

/* ===========================
   PAGE HERO (Galéria, Műszaki)
=========================== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero-content p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.page-hero-content .hero-badge {
  margin-bottom: 1.5rem;
}

/* ===========================
   VIDEO SECTION
=========================== */
.video-section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--white);
}

.video-section h2 { margin-bottom: 2.5rem; }

.video-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.video-placeholder {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.video-placeholder:hover .video-thumb { transform: scale(1.03); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  width: 80px; height: 80px;
  transition: transform 0.3s;
}

.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.play-btn svg { width: 80px; height: 80px; }

.video-frame {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

.hidden { display: none; }

/* ===========================
   GALLERY
=========================== */
.gallery-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 10vw, 8rem);
  background: var(--white);
}

.gallery-section h2 { margin-bottom: 2.5rem; }

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--noir);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  transition: transform 0.6s var(--transition);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,11,0);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(13,13,11,0.45);
}

.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s 0.1s;
  letter-spacing: 0.08em;
}

.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.filtered-out {
  display: none;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lb-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lb-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  width: auto;
  height: auto;
}

.lb-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}

.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
}

.lb-close:hover { color: var(--gold); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 1rem;
  line-height: 1;
}

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { color: var(--gold); }

/* ===========================
   MÜSZAKI LEÍRÁS
=========================== */
.muszaki-section {
  padding: clamp(5rem, 10vw, 8rem) 0 3rem;
  background: var(--white);
}

.specs-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
  background: var(--cream);
}

.spec-big {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
}

.spec-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--noir);
  line-height: 1;
}

.spec-unit {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.spec-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.muszaki-detail {
  padding: 2rem 0 clamp(5rem, 10vw, 8rem);
  background: var(--white);
}

.muszaki-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.muszaki-category {
  border: 1px solid var(--border);
  overflow: hidden;
}

.mc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.mc-icon {
  color: var(--gold);
  font-size: 1rem;
}

.mc-header h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--noir);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid rgba(201,169,110,0.1);
}

.spec-table tr:last-child { border-bottom: none; }

.spec-table td {
  padding: 0.75rem 1.5rem;
  font-size: 0.78rem;
  color: var(--text);
  line-height: 1.5;
}

.spec-table td:first-child {
  color: var(--text-light);
  font-weight: 300;
  width: 42%;
}

.spec-table td:last-child {
  font-weight: 400;
}

.spec-table tr:hover { background: rgba(201,169,110,0.04); }

/* DOWNLOAD */
.download-section {
  padding: 0 0 clamp(5rem, 10vw, 8rem);
  background: var(--white);
}

.download-box {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.download-text h3 {
  color: var(--noir);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.download-text p {
  font-size: 0.82rem;
  max-width: 500px;
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoom-in {
  opacity: 0;
  animation: zoomIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 0.95s; }

/* Scroll-triggered animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-up.delay-1 { transition-delay: 0.15s; }
.fade-up.delay-2 { transition-delay: 0.3s; }
.fade-up.delay-3 { transition-delay: 0.45s; }
.fade-up.delay-4 { transition-delay: 0.6s; }

/* ===========================
   RESPONSIVE — MOBILE FIRST
=========================== */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-sub br { display: none; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }

  /* Highlights */
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlight-item {
    border-right: none;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .highlight-item:nth-child(odd) {
    border-right: 1px solid rgba(201,169,110,0.15);
  }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 300px; }
  .about-img-accent { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 1px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }
  .gallery-item.large { grid-column: span 2; }

  /* Müszaki */
  .specs-overview { grid-template-columns: repeat(2, 1fr); }
  .muszaki-grid { grid-template-columns: 1fr; }

  /* Kapcsolat */
  .kapcsolat-inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }

  /* Download */
  .download-box { flex-direction: column; padding: 2rem; }

  /* Lightbox nav */
  .lb-prev { left: 0.25rem; }
  .lb-next { right: 0.25rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 0.35rem; }
  .gallery-item.large { grid-column: span 1; aspect-ratio: 4/3; }
  .specs-overview { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
}

/* ===========================
   AWARD BANNER
=========================== */
.award-banner {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.award-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.award-icon {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.award-text { flex: 1; min-width: 200px; }

.award-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--noir);
  margin-bottom: 0.25rem;
}

.award-title em { font-style: italic; color: var(--gold-dark); }

.award-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.award-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.award-link {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.award-link:hover { color: var(--gold); border-color: var(--gold); }

/* ===========================
   FLOORS SECTION
=========================== */
.floors {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--noir);
}

.floors h2 { color: var(--white); margin-bottom: 3rem; }
.floors h2 em { color: var(--gold-light); }
.floors .section-label { color: var(--gold); }

.floors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2.5rem;
}

.floor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 2.5rem 2rem;
  transition: background 0.3s, border-color 0.3s;
}

.floor-card.highlight-floor {
  background: rgba(201,169,110,0.08);
  border-color: rgba(201,169,110,0.35);
}

.floor-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.floor-icon {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 1.25rem;
}

.floor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.floor-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.floor-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.highlight-floor .floor-list li { color: rgba(255,255,255,0.85); }

/* ===========================
   PRESS SECTION
=========================== */
.press-section {
  padding: clamp(5rem, 10vw, 8rem) 0 3rem;
  background: var(--cream);
}

.press-section h2 { margin-bottom: 3rem; }

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2.5rem;
}

.press-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.press-label {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--noir);
  line-height: 1.25;
}

.press-title em { font-style: italic; color: var(--gold-dark); }

.press-card p {
  font-size: 0.8rem;
  line-height: 1.8;
  flex: 1;
}

/* Responsive additions */
@media (max-width: 768px) {
  .award-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .award-links { gap: 1rem; }
  .floors-grid { grid-template-columns: 1fr; gap: 1px; }
  .press-grid { grid-template-columns: 1fr; gap: 1px; }
}
