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

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--wood-deep);
  color: var(--caramel);
  padding: 12px 20px;
  border-radius: 6px;
  z-index: 9999;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s;
}
.skip-link:focus { top: 16px; }

*:focus-visible {
  outline: 2px solid var(--caramel);
  outline-offset: 2px;
}

:root {
  --warm-white: #FFF8F0;
  --cream: #F5E6D3;
  --caramel: #BF8C60;
  --wood-dark: #5D4037;
  --wood-darker: #3E2723;
  --wood-deep: #2C1810;
  --text: #2C1810;
  --text-light: #8D6E63;
  --shadow: rgba(44, 24, 16, 0.15);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(44,24,16,0.85) 0%, transparent 100%);
  transition: background 0.4s;
}

nav.scrolled {
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow);
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

nav .logo img {
  height: 56px;
  filter: drop-shadow(0 2px 12px rgba(201, 168, 76, 0.3));
  transition: filter 0.3s;
}

nav .logo img:hover {
  filter: drop-shadow(0 4px 20px rgba(201, 168, 76, 0.6));
}

nav .logo span {
  font-size: 22px;
  font-weight: 700;
  color: var(--caramel);
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

nav .nav-links a {
  color: rgba(255, 248, 240, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

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

nav .nav-links a:hover { color: var(--accent-gold, var(--caramel)); }
nav .nav-links a:hover::after { width: 100%; }
nav .nav-links a.active { color: var(--accent-gold, var(--caramel)); }
nav .nav-links a.active::after { width: 100%; background: var(--accent-gold, var(--caramel)); }

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero .slideshow {
  padding-top: 80px;
}

.slideshow {
  position: absolute;
  inset: 0;
}

.slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slideshow .slide.active {
  opacity: 1;
}

.slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.92);
}

.slideshow .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.3) 0%,
    rgba(44, 24, 16, 0.1) 30%,
    rgba(44, 24, 16, 0.4) 70%,
    rgba(44, 24, 16, 0.8) 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0.12;
  pointer-events: none;
}

.hero-logo-watermark img {
  width: clamp(250px, 45vw, 600px);
  height: auto;
}

.hero-content h1 {
  display: none;
}

.hero-content .wood-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 248, 240, 0.9);
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slideshow-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slideshow-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 240, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slideshow-nav button.active {
  background: var(--caramel);
  border-color: var(--caramel);
  transform: scale(1.2);
}

.slideshow-nav button:hover {
  border-color: var(--caramel);
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 248, 240, 0.6);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.slide-left {
  transform: translateX(-40px);
}

.animate-on-scroll.slide-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.slide-right {
  transform: translateX(40px);
}

.animate-on-scroll.slide-right.visible {
  transform: translateX(0);
}

.animate-on-scroll.scale-in {
  transform: scale(0.9);
}

.animate-on-scroll.scale-in.visible {
  transform: scale(1);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--wood-deep);
  letter-spacing: 1px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 60px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wood-title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--wood-dark));
  margin: 0 auto 16px;
  border-radius: 2px;
}

.about-grid {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.about-text .highlight {
  color: var(--caramel);
  font-weight: 600;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 24, 16, 0.15);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(191, 140, 96, 0.2);
  border-radius: 12px;
  z-index: 1;
}

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

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

.feature-card {
  text-align: center;
  padding: 48px 28px;
  background: linear-gradient(145deg, var(--wood-darker), var(--wood-deep));
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid rgba(191, 140, 96, 0.15);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(191, 140, 96, 0.05), transparent);
  border-radius: 16px;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--caramel), transparent);
  border-radius: 16px 16px 0 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.feature-card .icon {
  font-size: 36px;
  margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  color: var(--caramel);
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--accent-gold, var(--caramel));
  letter-spacing: 0.5px;
  position: relative;
}

.feature-card h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--caramel);
  margin: 12px auto 0;
  border-radius: 2px;
  opacity: 0.5;
}

.feature-card p {
  font-size: 14px;
  color: rgba(255, 248, 240, 0.65);
  line-height: 1.7;
  position: relative;
}

.slideshow-preview {
  background: var(--wood-deep);
  padding: 80px 0;
  margin: 0;
  max-width: 100%;
}

.slideshow-preview .section-title {
  color: var(--warm-white);
}

.slideshow-preview .section-subtitle {
  color: rgba(255, 248, 240, 0.6);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.mini-gallery .item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.mini-gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.mini-gallery .item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.mini-gallery .item:hover .overlay {
  opacity: 1;
}

.mini-gallery .item .overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  border-radius: 4px;
}

.contact-section {
  background: linear-gradient(135deg, var(--wood-deep), var(--wood-darker));
  padding: 100px 40px;
  margin: 0;
  max-width: 100%;
}

.contact-section .section-title {
  color: var(--warm-white);
}

.contact-section .section-subtitle {
  color: rgba(255, 248, 240, 0.6);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info h3 {
  color: var(--caramel);
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255, 248, 240, 0.8);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.contact-info .label {
  color: var(--caramel);
  font-weight: 600;
  display: inline-block;
  min-width: 80px;
}

.contact-info a {
  color: var(--caramel);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover { color: #D4A574; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(191, 140, 96, 0.2);
  border-radius: 8px;
  background: rgba(255, 248, 240, 0.05);
  color: var(--warm-white);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--caramel);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 248, 240, 0.3);
}

.contact-form button {
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--caramel), var(--wood-dark));
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-transform: uppercase;
  width: 100%;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(191, 140, 96, 0.3);
}

footer {
  background: var(--wood-deep);
  padding: 60px 40px 40px;
  text-align: center;
  border-top: 1px solid rgba(191, 140, 96, 0.1);
  position: relative;
  overflow: hidden;
}

footer .footer-logo {
  margin-bottom: 24px;
  opacity: 0.3;
  transition: opacity 0.4s;
}

footer .footer-logo:hover { opacity: 0.7; }

footer .footer-logo img {
  height: 48px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

footer p {
  color: rgba(255, 248, 240, 0.4);
  font-size: 13px;
  letter-spacing: 1px;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

footer .social-links a {
  color: rgba(255, 248, 240, 0.4);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  letter-spacing: 1px;
}

footer .social-links a:hover {
  color: var(--accent-gold, var(--caramel));
}

footer .rk-logo {
  margin-top: 16px;
  opacity: 0.45;
  transition: opacity 0.3s;
}
footer .rk-logo:hover { opacity: 0.8; }
footer .rk-logo img { height: 28px; width: auto; }

footer .copyright {
  color: rgba(255, 248, 240, 0.5);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
footer .copyright-sub {
  color: rgba(255, 248, 240, 0.35);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

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

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

@media (max-width: 768px) {
  nav { padding: 12px 16px; }
  nav .logo img { height: 44px; }
  nav .logo span { display: none; }
  .hamburger { display: flex; }
  nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(44, 24, 16, 0.98);
    padding: 16px 20px;
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(191, 140, 96, 0.1);
  }
  nav .nav-links.open { display: flex; }
  nav .nav-links a { padding: 16px 0; font-size: 16px; border-bottom: 1px solid rgba(255,248,240,0.05); min-height: 44px; display: flex; align-items: center; }
  nav .nav-links li:last-child a { border-bottom: none; }
  .section { padding: 56px 20px; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; margin-bottom: 44px; line-height: 1.5; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-text p { font-size: 16px; line-height: 1.7; }
  .features { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 40px 28px; }
  .feature-card .icon { margin-bottom: 20px; }
  .feature-card h3 { font-size: 18px; }
  .feature-card p { font-size: 15px; line-height: 1.6; }
  .mini-gallery { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 16px; }
  .slideshow-preview { padding: 56px 0; }
  .slideshow-preview .section-title { font-size: 26px; }
  .hero-content { bottom: 20%; padding: 0 20px; }
  .hero-content h1 { font-size: 34px; letter-spacing: 2px; }
  .hero-content p { font-size: 15px; letter-spacing: 1px; }
  .slideshow-nav { bottom: 28px; gap: 10px; }
  .slideshow-nav button { width: 12px; height: 12px; }
  .contact-section { padding: 56px 20px; }
  .contact-form input,
  .contact-form textarea { font-size: 16px; padding: 14px 16px; min-height: 48px; }
  .contact-form textarea { min-height: 140px; }
  .contact-form button { font-size: 15px; padding: 16px 32px; min-height: 48px; }
  .scroll-indicator { bottom: 60px; font-size: 12px; }
  footer { padding: 48px 20px 36px; }
  .hero-logo-watermark img { width: clamp(280px, 55vw, 700px); }
}

@media (max-width: 480px) {
  nav { padding: 10px 14px; }
  nav .logo img { height: 38px; }
  nav .nav-links a { font-size: 15px; padding: 14px 0; }
  .hero-content h1 { font-size: 30px; letter-spacing: 1px; }
  .hero-content p { font-size: 14px; letter-spacing: 1px; }
  .mini-gallery { grid-template-columns: repeat(2, 1fr); gap: 3px; padding: 0 12px; }
  .section { padding: 44px 16px; }
  .section-title { font-size: 24px; }
  .section-subtitle { font-size: 14px; margin-bottom: 32px; }
  .features { gap: 14px; }
  .feature-card { padding: 32px 20px; }
  .gallery-grid { padding: 12px; gap: 4px; }
  .gallery-header { min-height: 220px; }
  .gallery-header h1 { font-size: 28px; letter-spacing: 2px; }
  .contact-form input,
  .contact-form textarea { padding: 14px 14px; }
  .scroll-indicator { bottom: 48px; font-size: 11px; }
  footer { padding: 40px 16px 32px; }
  .hero-logo-watermark img { width: clamp(260px, 60vw, 500px); }
}

/* Galerie Page */
.gallery-header {
  height: 50vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,24,16,0.6), rgba(44,24,16,0.8));
}

.gallery-header h1 {
  position: relative;
  z-index: 1;
  color: rgba(255,248,240,0.55);
  font-size: clamp(48px, 10vw, 96px);
  letter-spacing: clamp(8px, 5vw, 48px);
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8), 0 4px 12px rgba(0,0,0,0.5);
  -webkit-text-stroke: 1px rgba(0,0,0,0.3);
  padding: 0 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

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

.gallery-grid .item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-grid .item.wide { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  display: block;
}

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 4px;
  }
  .gallery-grid .item.tall,
  .gallery-grid .item.wide {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 4/3;
  }
}

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

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.lightbox .close:hover { opacity: 1; }

.lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.5;
  transition: opacity 0.3s;
  padding: 20px;
}

.lightbox .nav-btn:hover { opacity: 1; }
.lightbox .prev { left: 10px; }
.lightbox .next { right: 10px; }

.form-msg {
  font-size: 13px;
  min-height: 20px;
  padding: 4px 0;
}
.form-msg.error { color: #e74c3c; }
.form-msg.success { color: #27ae60; }

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--wood-deep);
  color: var(--caramel);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 10000;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast.error {
  background: #c0392b;
  color: #fff;
}
.toast.success {
  background: #27ae60;
  color: #fff;
}

/* ============================================================
   TOFI2 — componente noi (varianta lead-gen)
   ============================================================ */

/* Butoane unificate */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600;
  letter-spacing: .5px; text-decoration: none; cursor: pointer; border: none;
  font-family: var(--font); transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-lg { padding: 16px 44px; font-size: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--caramel), var(--wood-dark)); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px var(--shadow); }
.btn-ghost { background: rgba(255,248,240,.12); color: #fff; border: 1.5px solid rgba(255,248,240,.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,248,240,.22); border-color: #fff; transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--text-light); border: 1.5px solid rgba(141,110,99,.4); }
.btn-ghost-dark:hover { color: var(--wood-dark); border-color: var(--wood-dark); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,.35); }

/* Hero headline + CTA */
.hero-content h1.hero-headline {
  display: block;
  font-size: clamp(26px, 5vw, 52px); font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 14px; letter-spacing: -.5px;
  text-shadow: 0 3px 18px rgba(0,0,0,.45);
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* Nav CTA evidențiat */
.nav-links a.nav-cta {
  background: var(--caramel); color: #fff !important; padding: 8px 18px;
  border-radius: 8px; transition: background .25s, transform .25s;
}
.nav-links a.nav-cta:hover { background: var(--wood-dark); transform: translateY(-1px); }
.nav-links a.nav-cta::after { display: none !important; }

/* Cum lucrăm */
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1100px; margin: 50px auto 0; padding: 0 20px;
}
.how-step {
  background: var(--warm-white); border: 1px solid rgba(141,110,99,.15);
  border-radius: 16px; padding: 32px 22px; text-align: center; position: relative;
}
.how-num {
  width: 48px; height: 48px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--caramel), var(--wood-dark));
  color: #fff; border-radius: 50%; font-size: 20px; font-weight: 700;
}
.how-step h3 { font-size: 17px; color: var(--wood-dark); margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* Quote card — flux ghidat */
.quote-card {
  max-width: 620px; margin: 44px auto 0; background: var(--warm-white);
  border: 1px solid rgba(141,110,99,.18); border-radius: 18px;
  padding: 30px 28px; box-shadow: 0 12px 40px var(--shadow);
}
.quote-progress { height: 5px; background: rgba(141,110,99,.15); border-radius: 99px; overflow: hidden; margin-bottom: 26px; }
.qp-bar { display: block; height: 100%; width: 33%; background: linear-gradient(90deg, var(--caramel), var(--wood-dark)); border-radius: 99px; transition: width .35s ease; }
.quote-step { display: none; }
.quote-step.active { display: block; animation: qFade .3s ease; }
@keyframes qFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.quote-q { font-size: 19px; color: var(--wood-dark); margin-bottom: 20px; font-weight: 600; }
.chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.chip-grid-2 { grid-template-columns: repeat(2, 1fr); }
.chip {
  padding: 16px 14px; border: 1.5px solid rgba(141,110,99,.3); background: #fff;
  border-radius: 12px; font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; transition: all .2s; font-family: var(--font); text-align: center;
}
.chip:hover { border-color: var(--caramel); transform: translateY(-2px); box-shadow: 0 6px 16px var(--shadow); }
.chip.selected { background: linear-gradient(135deg, var(--caramel), var(--wood-dark)); color: #fff; border-color: transparent; }
.quote-fields { display: flex; flex-direction: column; gap: 14px; position: relative; }
.quote-fields input, .quote-fields textarea {
  width: 100%; padding: 15px 16px; border: 1.5px solid rgba(141,110,99,.3);
  border-radius: 10px; font-size: 16px; font-family: var(--font); color: var(--text);
  background: #fff; transition: border-color .2s;
}
.quote-fields input:focus, .quote-fields textarea:focus { outline: none; border-color: var(--caramel); }
.quote-fields textarea { min-height: 90px; resize: vertical; }
.quote-msg { margin-top: 12px; font-size: 14px; color: #c0392b; min-height: 18px; }
.quote-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 26px; }
.quote-alt { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-light); }
.quote-alt a { color: var(--wood-dark); font-weight: 600; text-decoration: none; }
.quote-alt a:hover { color: var(--caramel); }

/* Contact simplificat (o coloană centrată) */
.contact-grid-simple { grid-template-columns: 1fr !important; max-width: 520px; }

/* WhatsApp flotant (stânga-jos, ca să nu se bată cu paleta de teme dreapta-jos) */
.wa-float {
  position: fixed; bottom: 20px; left: 20px; z-index: 9998;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: transform .25s;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); } 50% { box-shadow: 0 6px 28px rgba(37,211,102,.7); } }

/* Responsive */
@media (max-width: 860px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .how-steps { grid-template-columns: 1fr; }
  .chip-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 24px 18px; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ============================================================
   TOFI2 — ajustari dupa feedback (hero sobru, mobil, fara wa-float)
   ============================================================ */

/* Hero: buton discret si elegant (nu tipator) */
.btn-hero {
  background: rgba(255,248,240,.10); color: #fff;
  border: 1.5px solid rgba(255,248,240,.55); backdrop-filter: blur(4px);
  padding: 12px 30px; font-weight: 500; letter-spacing: 1px;
}
.btn-hero:hover { background: rgba(255,248,240,.2); border-color: #fff; transform: translateY(-2px); }
.hero-cta { margin-top: 20px; }

/* WhatsApp flotant scos complet din design */
.wa-float { display: none !important; }

/* Nav CTA: in meniul mobil = link simplu cu accent (nu pastila latita) */
@media (max-width: 768px) {
  .nav-links a.nav-cta {
    background: transparent !important; color: var(--accent-gold, var(--caramel)) !important;
    padding: 16px 0 !important; border-radius: 0 !important;
  }
  .nav-links a.nav-cta:hover { transform: none; }
}

/* Mobil: how-steps + flux ghidat + hero */
@media (max-width: 768px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 36px; }
  .how-step { padding: 26px 18px; }
  .how-step h3 { font-size: 16px; }
  .quote-card { padding: 24px 18px; margin-top: 32px; }
  .quote-q { font-size: 17px; }
  .chip { padding: 14px 10px; font-size: 14px; }
  .quote-nav .btn { padding: 13px 20px; font-size: 14px; }
  .hero-cta .btn { flex: 0 0 auto; }
}
@media (max-width: 480px) {
  .how-steps { grid-template-columns: 1fr; }
  .chip-grid, .chip-grid-2 { grid-template-columns: 1fr; }
  .hero-content p { font-size: 13px; letter-spacing: 1px; }
  .btn-hero { padding: 12px 26px; font-size: 14px; }
  .quote-card { padding: 20px 16px; }
}

/* ============================================================
   TOFI2 — footer mai compact pe desktop (feedback: prea mare/incarcat)
   ============================================================ */
@media (min-width: 769px) {
  footer { padding: 36px 40px 24px; }
  footer .footer-logo { margin-bottom: 12px; }
  footer .footer-logo img { height: 36px; }
  footer .social-links { margin-bottom: 12px; gap: 16px; }
  footer .copyright { font-size: 13px; letter-spacing: 1.5px; margin-bottom: 2px; }
  footer .copyright-sub { font-size: 11px; margin-bottom: 8px; }
  footer .rk-logo { margin-top: 8px; }
  footer .rk-logo img { height: 24px; }
}

/* ============================================================
   TOFI2 — footer: (c) langa logo TOFI + "web design" langa rK
   ============================================================ */
footer .footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 12px; opacity: 1;
}
footer .footer-logo:hover { opacity: 1; }
footer .footer-logo img { opacity: 0.4; transition: opacity .3s; }
footer .footer-logo:hover img { opacity: 0.7; }
footer .footer-copy {
  color: rgba(255,248,240,0.5); font-size: 14px; letter-spacing: 1.5px; font-weight: 500;
}
footer .rk-logo a {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
}
footer .rk-logo span {
  color: rgba(255,248,240,0.45); font-size: 10px; letter-spacing: 1.5px; text-transform: lowercase;
}

/* (c) mai mic si discret */
footer .footer-copy { font-size: 11px; color: rgba(255,248,240,0.30); letter-spacing: 1px; font-weight: 400; }

/* footer fara logo TOFI: doar text (c) + rK cu "web design" auriu */
footer .footer-copy { display: block; font-size: 12px; color: rgba(255,248,240,0.42); letter-spacing: 1px; font-weight: 400; margin-bottom: 14px; }
footer .rk-logo span { color: #E0C000; }

/* ============================================================
   TOFI2 — galerie dinamica: filtre categorie
   ============================================================ */
.gallery-filters { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; padding:20px 16px 0; max-width:1100px; margin:0 auto; }
.gfilter { padding:8px 18px; border:1.5px solid var(--caramel); background:transparent; color:var(--caramel); border-radius:99px; font-size:14px; font-weight:600; cursor:pointer; font-family:var(--font); transition:all .2s; }
.gfilter:hover { background:rgba(191,140,96,.12); }
.gfilter.active { background:var(--caramel); color:#fff; }
