:root {
  --gold: #C5A880;
  --gold-dark: #A3704C;
  --bej: #FDFBF7;
  --bej-mid: #F0EAE0;
  --dark-navy: #0F1A34;
  --navy: #1A2B4C;
  --text-dark: #1A2B4C;
  --text-muted: #6B7A94;
  --white: #fff;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit',sans-serif;
  background: var(--bej);
  color: var(--text-dark);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,26,52,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197,168,128,0.18);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cardo',serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.logo-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.logo-sub {
  font-size: 9px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}

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

.btn-cta {
  background: var(--gold);
  color: var(--dark-navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-cta:hover {
  background: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 22px;
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-navy);
}

.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(15,26,52,0.88),rgba(15,26,52,0.45));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 5%;
  max-width: 820px;
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cardo',serif;
  font-size: clamp(2.5rem,6vw,5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 600px;
}

.breadcrumb {
  background: rgba(15,26,52,0.95);
  padding: 14px 80px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.breadcrumb a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  margin-right: 10px;
}

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

.cta-band {
  background: var(--dark-navy);
  padding: 24px 5%;
  text-align: center;
}

.cta-band h2 {
  font-family: 'Cardo',serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-band p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.85;
  font-weight: 300;
}

footer {
  background: var(--dark-navy);
  padding: 48px 80px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  border-top: 1px solid rgba(197,168,128,0.15);
}

footer a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 10px;
}

.products-sec {
  padding: 24px 5%;
  max-width: 1100px;
  margin: 0 auto;
}

.products-header {
  text-align: center;
  margin-bottom: 24px;
}

.products-header h2 {
  font-family: 'Cardo',serif;
  font-size: 2rem;
  color: var(--navy);
  margin-top: 12px;
}

.products-count {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.product-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--bej-mid);
  margin-bottom: 18px;
  transition: all var(--transition);
}

.product-row:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(15,26,52,0.06);
}

.product-thumb {
  width: 160px;
  height: 120px;
  object-fit: cover;
  background: var(--bej-mid);
}

.product-info h3 {
  font-family: 'Cardo',serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.product-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.detail-sec {
  padding: 24px 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.detail-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  background: var(--bej-mid);
}

.detail-info h1 {
  font-family: 'Cardo',serif;
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.detail-divider {
  height: 1px;
  background: var(--bej-mid);
  margin: 24px 0;
}

.detail-info .row {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.8;
}

.detail-info .row b {
  color: var(--navy);
  font-weight: 600;
  margin-right: 8px;
}

.detail-info .pret {
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 24px 0;
}

:root {
  --gold: #C5A880;
  --gold-dark: #A3704C;
  --gold-light: #DFC9A8;
  --bej: #FDFBF7;
  --bej-mid: #F0EAE0;
  --dark-navy: #0F1A34;
  --navy: #1A2B4C;
  --ivory: #F5EFEB;
  --text-dark: #1A2B4C;
  --text-muted: #6B7A94;
  --white: #ffffff;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

body {
  font-family: 'Outfit',sans-serif;
  background: var(--bej);
  color: var(--text-dark);
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15,26,52,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197,168,128,0.18);
  padding: 0 48px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 9px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

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

.btn-cta {
  background: var(--gold);
  color: var(--dark-navy);
  border: none;
  cursor: pointer;
  font-family: 'Outfit',sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: background var(--transition),transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-cta:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark-navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Cardo',serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=85') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.0);
  }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(15,26,52,0.9) 0%,rgba(15,26,52,0.6) 55%,rgba(15,26,52,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 5%;
  max-width: 700px;
}

.page-hero h1 {
  font-family: 'Cardo',serif;
  font-size: clamp(2.8rem,6vw,5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
  animation: fadeUp 1s ease 0.2s both;
}

.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  animation: fadeUp 1s ease 0.4s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb {
  background: rgba(15,26,52,0.95);
  padding: 14px 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.18);
}

.breadcrumb span {
  color: var(--gold);
}

.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 500px;
}

.contact-info {
  background: var(--dark-navy);
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h2 {
  font-family: 'Cardo',serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 16px 0 32px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(197,168,128,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}



.info-item-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.info-item-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
}

.info-item-value a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.info-item-value a:hover {
  color: var(--gold);
}

.contact-socials {
  margin-top: 40px;
}

.contact-socials p {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(197,168,128,0.25);
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: border-color var(--transition),color var(--transition),background var(--transition);
}

.soc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,168,128,0.06);
}

.schedule-box {
  background: rgba(197,168,128,0.07);
  border: 1px solid rgba(197,168,128,0.15);
  padding: 24px;
  margin-top: 36px;
}

.schedule-box h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  border-bottom: 1px solid rgba(197,168,128,0.08);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row span:last-child {
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.contact-form-wrap {
  background: var(--white);
  padding: 40px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrap h2 {
  font-family: 'Cardo',serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 10px;
}

.contact-form-wrap .subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.topic-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.topic-btn {
  padding: 13px;
  border: 1px solid rgba(197,168,128,0.25);
  background: transparent;
  cursor: pointer;
  font-family: 'Outfit',sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.topic-btn.selected {
  border-color: var(--gold);
  background: rgba(197,168,128,0.07);
  color: var(--navy);
}

.topic-btn svg {
  color: var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bej);
  border: 1px solid rgba(197,168,128,0.25);
  padding: 14px 18px;
  font-family: 'Outfit',sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition);
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107,122,148,0.5);
}

.form-submit {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-submit .btn-cta {
  padding: 15px 36px;
  font-size: 12px;
  border: none;
  cursor: pointer;
}

.form-note {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(100,160,100,0.08);
  border-left: 3px solid #6AAA6A;
  font-size: 13px;
  color: #3A7A3A;
  margin-top: 16px;
  line-height: 1.6;
}

.quick-band {
  background: var(--dark-navy);
  padding: 52px 80px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(197,168,128,0.1);
  margin-top: 36px;
}

.quick-item {
  background: var(--dark-navy);
  padding: 36px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background var(--transition);
  text-decoration: none;
}

.quick-item:hover {
  background: rgba(197,168,128,0.06);
}

.quick-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(197,168,128,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.quick-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.quick-value {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
}

.quick-band .sec-label {
  color: var(--gold);
}

.quick-band h2 {
  font-family: 'Cardo',serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ivory);
  margin-top: 8px;
}

.map-section {
  height: 420px;
  position: relative;
  overflow: hidden;
  background: var(--bej-mid);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1600&q=80') center/cover no-repeat;
  position: relative;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,26,52,0.48);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  z-index: 2;
}

.map-pin-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 0 0 16px rgba(197,168,128,0.2), 0 0 0 32px rgba(197,168,128,0.08);
  animation: pinPulse 2.5s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% {
    box-shadow: 0 0 0 10px rgba(197,168,128,0.2),0 0 0 22px rgba(197,168,128,0.08);
  }

  50% {
    box-shadow: 0 0 0 18px rgba(197,168,128,0.15),0 0 0 36px rgba(197,168,128,0.05);
  }
}

.map-pin-label {
  background: rgba(15,26,52,0.92);
  padding: 10px 20px;
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
}

.faq {
  padding: 24px 5%;
  background: var(--bej);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.faq-item {
  border: 1px solid rgba(197,168,128,0.2);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Outfit',sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(197,168,128,0.05);
}

.faq-question.open {
  background: rgba(197,168,128,0.07);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(197,168,128,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease,padding 0.3s;
  background: var(--white);
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

footer {
  background: var(--dark-navy);
  padding:  80px 32px;
  border-top: 1px solid rgba(197,168,128,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197,168,128,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: border-color var(--transition),color var(--transition),background var(--transition);
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197,168,128,0.08);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

.footer-bottom a {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  text-decoration: none;
  transition: color var(--transition);
}

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

.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=85') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(15,26,52,0.88) 0%,rgba(15,26,52,0.55) 55%,rgba(15,26,52,0.25) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 5%;
  max-width: 760px;
}

.page-hero h1 {
  font-family: 'Cardo',serif;
  font-size: clamp(2.8rem,6vw,5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.2s both;
}

.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 0;
  max-width: 500px;
  animation: fadeUp 1s ease 0.4s both;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.story-img {
  position: relative;
  overflow: hidden;
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

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

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(15,26,52,0.3),transparent);
}

.story-content {
  background: var(--white);
  padding: 24px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-content h2 {
  font-family: 'Cardo',serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 28px;
  margin-top: 16px;
}

.story-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.stats-section {
  background: var(--dark-navy);
  padding: 40px 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(197,168,128,0.12);
  margin-top: 48px;
}

.stat-item {
  background: var(--dark-navy);
  padding: 44px 24px;
  text-align: center;
  transition: background var(--transition);
}

.stat-item:hover {
  background: rgba(197,168,128,0.05);
}

.stat-num {
  font-family: 'Cardo',serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1.5;
}

.stats-section .sec-label {
  color: var(--gold);
}

.stats-section .section-header h2 {
  color: var(--ivory);
  font-family: 'Cardo',serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 12px;
}

.mission {
  padding: 24px 5%;
  background: var(--bej);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 0;
}

.mission-text h2 {
  font-family: 'Cardo',serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 28px;
  margin-top: 16px;
}

.mission-text p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.mission-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid rgba(197,168,128,0.2);
  background: var(--white);
  transition: border-color var(--transition),box-shadow var(--transition);
}

.value-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(197,168,128,0.12);
}

.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(197,168,128,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.value-text h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.value-text p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.team {
  background: var(--bej-mid);
  padding: 24px 5%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 24px;
}

.team-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--transition),box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(197,168,128,0.14);
}

.team-img {
  height: 280px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.07);
}

.team-info {
  padding: 28px 28px 32px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}

.team-card:hover .team-info {
  border-color: var(--gold);
}

.team-name {
  font-family: 'Cardo',serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline {
  padding: 24px 5%;
  background: var(--white);
}

.timeline-list {
  margin-top: 24px;
  position: relative;
}

.timeline-list::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,transparent,var(--gold),var(--gold),transparent);
}

.timeline-item {
  display: flex;
  gap: 60px;
  padding-bottom: 40px;
  padding-left: 0;
  position: relative;
}

.timeline-dot {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cardo',serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  background: var(--white);
  position: relative;
  z-index: 1;
}

.timeline-body {
  padding-top: 14px;
}

.timeline-year {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.timeline-title {
  font-family: 'Cardo',serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.timeline-text {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 800px;
}

.cta-band {
  background: var(--dark-navy);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/despre-noi.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.cta-band-content {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: 'Cardo',serif;
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 20px;
}

.cta-band p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1px solid rgba(197,168,128,0.6);
  color: var(--white);
  font-family: 'Outfit',sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background var(--transition),color var(--transition);
}

.btn-outline-light:hover {
  background: var(--gold);
  color: var(--dark-navy);
  border-color: var(--gold);
}

:root {
  --gold: #C5A880;
  --gold-dark: #A3704C;
  --gold-light: #DFC9A8;
  --gold-glow: rgba(197,168,128,0.18);
  --bej: #FDFBF7;
  --bej-mid: #F0EAE0;
  --dark-navy: #0F1A34;
  --navy: #1A2B4C;
  --ivory: #F5EFEB;
  --text-dark: #1A2B4C;
  --text-muted: #6B7A94;
  --white: #ffffff;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::after {
  width: 100%;
}

#video-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-bg-element {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.0);
  }
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,rgba(15,26,52,0.82) 0%,rgba(15,26,52,0.5) 50%,rgba(15,26,52,0.3) 100%);
}

.video-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.video-hero-content h1 {
  font-family: 'Cardo',serif;
  font-size: clamp(3rem,7vw,6.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  animation: fadeUp 1s ease 0.3s both;
}

.video-hero-content p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 1s ease 0.5s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.7s both;
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom,var(--gold),transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

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

  50% {
    opacity: 1;
    transform: scaleY(1.25);
  }
}

.brand-strip {
  background: var(--dark-navy);
  border-bottom: 1px solid rgba(197,168,128,0.12);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1px;
}

.brand-stat-num {
  font-family: 'Cardo',serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.brand-sep {
  width: 1px;
  height: 32px;
  background: rgba(197,168,128,0.2);
}

#chooser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
}

.split-panel {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  padding: 40px 64px;
  text-decoration: none;
}

.split-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}

.split-panel:hover .split-panel-bg {
  transform: scale(1.06);
}

.split-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(15,26,52,0.88) 0%,rgba(15,26,52,0.5) 50%,rgba(15,26,52,0.15) 100%);
  transition: background var(--transition);
}

.split-panel:hover .split-panel-overlay {
  background: linear-gradient(to top,rgba(15,26,52,0.78) 0%,rgba(15,26,52,0.38) 60%,rgba(15,26,52,0.1) 100%);
}

.split-content {
  position: relative;
  z-index: 2;
}

.split-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.split-title {
  font-family: 'Cardo',serif;
  font-size: clamp(3.5rem,6vw,5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 320px;
}

.btn-split {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--white);
  font-family: 'Outfit',sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background var(--transition),color var(--transition);
}

.btn-split:hover,
.split-panel:hover .btn-split {
  background: var(--gold);
  color: var(--dark-navy);
}

.btn-split svg {
  transition: transform 0.3s;
}

.split-panel:hover .btn-split svg {
  transform: translateX(4px);
}

.split-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,transparent,var(--gold),transparent);
  z-index: 10;
  transform: translateX(-50%);
}

.split-divider-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 11;
  box-shadow: 0 0 22px rgba(197,168,128,0.65);
}

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-teaser-img {
  position: relative;
  overflow: hidden;
}

.about-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.about-teaser:hover .about-teaser-img img {
  transform: scale(1.05);
}

.about-teaser-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(15,26,52,0.45),transparent);
}

.about-teaser-content {
  background: var(--navy);
  padding: 24px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-teaser-content h2 {
  font-family: 'Cardo',serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 24px;
}

.about-teaser-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 14px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(197,168,128,0.2);
  padding-top: 36px;
}

.stat-num {
  font-family: 'Cardo',serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  letter-spacing: 1px;
  margin-top: 4px;
}

.features-band {
  background: var(--bej);
  padding: 24px 5%;
}

.features-band-header {
  text-align: center;
  margin-bottom: 24px;
}

.features-band-header h2 {
  font-family: 'Cardo',serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  padding: 40px 28px;
  border: 1px solid rgba(197,168,128,0.2);
  text-align: center;
  transition: border-color var(--transition),transform var(--transition),box-shadow var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(197,168,128,0.14);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border: 1px solid rgba(197,168,128,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.feature-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-band {
  background: var(--dark-navy);
  padding: 24px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1400&q=60') center/cover no-repeat;
  opacity: 0.05;
}

.contact-band-content {
  position: relative;
  z-index: 1;
}

.contact-band h2 {
  font-family: 'Cardo',serif;
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 700;
  color: var(--white);
  margin: 16px 0 20px;
  line-height: 1.2;
}

.contact-band p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.85;
}

.contact-band-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.proj-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1720696550IMG-1c1a992b442b94cb8109e4c7257491cd-V.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.proj-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(15,26,52,0.85) 0%,rgba(15,26,52,0.55) 55%,rgba(15,26,52,0.3) 100%);
}

.proj-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 5%;
  max-width: 900px;
}

.proj-hero h1 {
  font-family: 'Cardo',serif;
  font-size: clamp(2.5rem,6vw,5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.2s both;
}

.proj-hero p.lead {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 640px;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.6s both;
}

.breadcrumb span.current {
  color: var(--gold);
}

.proj-intro {
  background: var(--bej);
  padding: 24px 5%;
}

.proj-intro-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.proj-intro h2 {
  font-family: 'Cardo',serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 24px;
}

.proj-intro p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.95;
  max-width: 760px;
  margin: 0 auto 18px;
}

.gallery-sec {
  background: var(--bej-mid);
  padding: 24px 5%;
}

.gallery-header {
  text-align: center;
  margin-bottom: 24px;
}

.gallery-header h2 {
  font-family: 'Cardo',serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(15,26,52,0.4),transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.consult-band {
  background: var(--dark-navy);
  padding: 24px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1720696550IMG-1c1a992b442b94cb8109e4c7257491cd-V.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.consult-content {
  position: relative;
  z-index: 2;
}

.consult-band h2 {
  font-family: 'Cardo',serif;
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 20px;
  line-height: 1.25;
}

.consult-band p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.consult-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.related {
  background: var(--bej);
  padding: 24px 5%;
}

.related-header {
  text-align: center;
  margin-bottom: 24px;
}

.related-header h2 {
  font-family: 'Cardo',serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.proj-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
  display: block;
}

.proj-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.proj-card:hover .proj-thumb {
  transform: scale(1.07);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(15,26,52,0.92) 0%,rgba(15,26,52,0.3) 55%,rgba(15,26,52,0.0) 100%);
  transition: background var(--transition);
}

.proj-card:hover .proj-overlay {
  background: linear-gradient(to top,rgba(15,26,52,0.82) 0%,rgba(15,26,52,0.2) 55%,transparent 100%);
}

.proj-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}

.proj-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.proj-title {
  font-family: 'Cardo',serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
}

.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}

.proj-card:hover .proj-link {
  gap: 12px;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,26,52,0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 95vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 32px;
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1720695363IMG-20240711-WA0054.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1720695363IMG-20240711-WA0054.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1720695323IMG-09a39d9d697be871c9c22ba1fa423b31-V.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1720695323IMG-09a39d9d697be871c9c22ba1fa423b31-V.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1720702747IMG-20240711-WA0059.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1720702747IMG-20240711-WA0059.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1699344302living1.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//project/1699344302living1.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=85') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(15,26,52,0.82) 0%,rgba(15,26,52,0.5) 55%,rgba(15,26,52,0.2) 100%);
}

.page-hero h1 {
  font-family: 'Cardo',serif;
  font-size: clamp(3rem,7vw,6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  animation: fadeUp 1s ease 0.2s both;
}

.page-hero p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 500px;
  animation: fadeUp 1s ease 0.4s both;
}

.page-hero-accent {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cardo',serif;
  font-size: 220px;
  font-weight: 700;
  color: rgba(197,168,128,0.055);
  letter-spacing: -10px;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

.video-strip {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-strip-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1631679706909-1844bbd07221?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.video-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,26,52,0.52);
}

.video-strip-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 700px;
}

.video-strip-content h2 {
  font-family: 'Cardo',serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.video-strip-content p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 32px;
}

.categories {
  padding: 24px 5%;
  background: var(--bej);
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-family: 'Cardo',serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 12px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  text-decoration: none;
  display: block;
}

.cat-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.cat-card:hover .cat-card-img {
  transform: scale(1.07);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(15,26,52,0.88) 0%,rgba(15,26,52,0.3) 55%,rgba(15,26,52,0.05) 100%);
  transition: background var(--transition);
}

.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top,rgba(15,26,52,0.78) 0%,rgba(15,26,52,0.22) 55%,rgba(15,26,52,0.0) 100%);
}

.cat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.cat-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.cat-title {
  font-family: 'Cardo',serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.cat-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease,opacity 0.4s;
  opacity: 0;
}

.cat-card:hover .cat-desc {
  max-height: 80px;
  opacity: 1;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}

.cat-card:hover .cat-link {
  gap: 12px;
}

.advantages {
  background: var(--dark-navy);
  padding: 24px 5%;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(197,168,128,0.12);
  margin-top: 48px;
}

.adv-item {
  background: var(--dark-navy);
  padding: 44px 28px;
  transition: background var(--transition);
}

.adv-item:hover {
  background: rgba(197,168,128,0.06);
}

.adv-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.adv-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 12px;
}

.adv-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
}

.advantages .sec-label {
  color: var(--gold);
}

.advantages .section-header h2 {
  color: var(--ivory);
}

.portfolio {
  padding: 24px 5%;
  background: var(--bej);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 20px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.port-item {
  position: relative;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(15,26,52,0.82) 0%,transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.port-item:hover .port-overlay {
  opacity: 1;
}

.port-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: 'Outfit',sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background var(--transition),color var(--transition);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.process {
  background: var(--bej-mid);
  padding: 24px 5%;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right,transparent,var(--gold),transparent);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cardo',serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--bej-mid);
}

.step-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.testimonials {
  background: var(--white);
  padding: 24px 5%;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 24px;
}

.test-card {
  padding: 36px;
  border: 1px solid rgba(197,168,128,0.2);
  transition: border-color var(--transition),box-shadow var(--transition);
}

.test-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(197,168,128,0.12);
}

.test-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 18px;
}

.test-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.test-author {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}

.test-role {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/despre-noi.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=85') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 16s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(15,26,52,0.85) 0%,rgba(15,26,52,0.52) 50%,rgba(15,26,52,0.22) 100%);
}

.stats-band {
  background: var(--navy);
  padding: 52px 80px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
}

.stat-box {
  background: var(--navy);
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(197,168,128,0.12);
}

.stat-box:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Cardo',serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

.services {
  background: var(--bej);
  padding: 24px 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.srv-card {
  background: var(--white);
  padding: 44px 32px;
  border: 1px solid rgba(197,168,128,0.18);
  transition: border-color var(--transition),transform var(--transition),box-shadow var(--transition);
}

.srv-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(197,168,128,0.14);
}

.srv-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(197,168,128,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}

.srv-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.srv-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.srv-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.srv-card:hover .srv-link {
  gap: 10px;
}

.visual-strip {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-strip-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600&q=80') center/cover no-repeat;
  transform: scale(1.04);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.visual-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,26,52,0.55);
}

.visual-strip-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 700px;
}

.visual-strip-content h2 {
  font-family: 'Cardo',serif;
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.visual-strip-content p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 32px;
}

.tipuri {
  background: var(--dark-navy);
  padding: 24px 5%;
}

.tipuri-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  margin-top: 48px;
}

.tip-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.tip-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.tip-card:hover .tip-card-bg {
  transform: scale(1.07);
}

.tip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(15,26,52,0.9) 0%,rgba(15,26,52,0.4) 60%,transparent 100%);
}

.tip-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.tip-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.tip-title {
  font-family: 'Cardo',serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.tip-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.tipuri .sec-label {
  color: var(--gold);
}

.tipuri .section-header h2 {
  color: var(--ivory);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.port-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0;
  margin-top: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right,transparent,var(--gold),transparent);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cardo',serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--bej-mid);
}

.step-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/despre-noi.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//news/1708009551straseni.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//news/1708009551straseni.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//news/1701675766Imagine%20WhatsApp%202023-12-01%20la%2012.34.29_e8fa6b16.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//news/1701675766Imagine%20WhatsApp%202023-12-01%20la%2012.34.29_e8fa6b16.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//news/1699343962pavaj1.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//news/1699343962pavaj1.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

.proj-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//news/1708009564s2.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
  filter: saturate(1.05);
}

.consult-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://creamobil.md/storage//news/1708009564s2.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: blur(2px);
}

@media (max-width:1024px) {
  header {
    padding: 0 24px;
  }

  nav {
    display: none;
  }

  .hero-content {
    padding: 0 32px;
  }

  .breadcrumb {
    padding: 12px 24px;
  }

  .cta-band,
  footer,
  .products-sec,
  .detail-sec {
    padding: 52px 24px;
  }

  .detail-sec {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-row {
    grid-template-columns: 120px 1fr;
    gap: 18px;
  }

  .product-row .btn-cta {
    grid-column: 1/-1;
    justify-self: start;
  }

  .product-thumb {
    width: 120px;
    height: 90px;
  }

  .hamburger {
    display: flex;
  }

  .btn-cta.header-cta {
    display: none;
  }

  .page-hero-content {
    padding: 0 32px;
  }

  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 52px 28px;
  }

  .contact-form-wrap {
    padding: 52px 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .topic-selector {
    grid-template-columns: 1fr 1fr;
  }

  .quick-band {
    padding: 52px 24px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .faq {
    padding: 52px 24px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 48px 24px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-img {
    height: 300px;
  }

  .story-content {
    padding: 48px 28px;
  }

  .stats-section {
    padding: 52px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .mission {
    padding: 52px 24px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team {
    padding: 52px 24px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline {
    padding: 52px 24px;
  }

  .cta-band {
    padding: 52px 24px;
  }

  .brand-strip {
    padding: 18px 24px;
    gap: 32px;
  }

  #chooser {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-panel {
    min-height: 58vh;
    padding: 40px 28px;
  }

  .split-divider,
  .split-divider-dot {
    display: none;
  }

  .about-teaser {
    grid-template-columns: 1fr;
  }

  .about-teaser-img {
    height: 300px;
  }

  .about-teaser-content {
    padding: 52px 28px;
  }

  .features-band {
    padding: 52px 24px;
  }

  .features-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .contact-band {
    padding: 52px 24px;
  }

  .proj-hero-content {
    padding: 0 32px;
  }

  .proj-intro {
    padding: 52px 24px;
  }

  .gallery-sec {
    padding: 52px 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .consult-band {
    padding: 52px 24px;
  }

  .related {
    padding: 52px 24px;
  }

  .related-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .page-hero-accent {
    display: none;
  }

  .video-strip {
    height: 300px;
  }

  .categories {
    padding: 52px 24px;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .advantages {
    padding: 52px 24px;
  }

  .advantages-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .portfolio {
    padding: 52px 24px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .process {
    padding: 52px 24px;
  }

  .process-steps {
    grid-template-columns: repeat(2,1fr);
  }

  .process-steps::before {
    display: none;
  }

  .testimonials {
    padding: 52px 24px;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    padding: 36px 24px;
    grid-template-columns: repeat(2,1fr);
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(197,168,128,0.12);
  }

  .services {
    padding: 52px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .visual-strip {
    height: 320px;
  }

  .tipuri {
    padding: 52px 24px;
  }

  .tipuri-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .topic-selector {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .social-row {
    flex-wrap: wrap;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2,1fr);
  }

  .contact-band-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    max-width: 280px;
  }

  .consult-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .port-item.wide {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   SECTION 4 – COMPREHENSIVE MOBILE OPTIMIZATION
   Navigation · Cards · Images · Buttons · Typography
   Touch targets · Spacing · Responsiveness
═══════════════════════════════════════════════════════ */

/* ── MOBILE BACKDROP (for nav overlay) ── */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 997;
  background: rgba(15,26,52,0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  cursor: pointer;
}
.mobile-backdrop.open { display: block; }

/* ── GLOBAL TOUCH & SCROLL FIXES ── */
html { -webkit-overflow-scrolling: touch; }
img { max-width: 100%; height: auto; display: block; }
button, a, input, select, textarea { touch-action: manipulation; }

/* ── 1024px TABLET BREAKPOINT ── */
@media (max-width: 1024px) {

  /* Header */
  header { padding: 0 24px; height: 64px; }
  nav { display: none; }

  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    padding: 0;
    gap: 5px;
  }
  .hamburger span { transition: transform 0.3s ease, opacity 0.2s ease; }

  /* Animated hamburger -> X */
  .hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile menu: slide in from right instead of full-screen */
  .mobile-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: min(300px, 82vw);
    background: var(--dark-navy);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding:  32px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    display: flex !important;
    box-shadow: -12px 0 48px rgba(0,0,0,0.45);
    border-left: 1px solid rgba(197,168,128,0.12);
    z-index: 999;
  }
  .mobile-menu.open { transform: translateX(0); }

  .mobile-menu a {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid rgba(197,168,128,0.08);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
  }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu a:hover,
  .mobile-menu a:active { color: var(--gold); }

  .mobile-menu .btn-cta {
    margin-top: 28px;
    width: 100%;
    text-align: center;
    padding: 15px 24px;
    font-size: 11px;
    border: none;
  }

  .mobile-menu-close {
    position: absolute;
    top: 16px; right: 18px;
    font-size: 22px;
    padding: 8px;
    min-width: 44px; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
  }

  /* Hero */
  .page-hero-content, .proj-hero-content { padding: 0 24px; }
  .page-hero { min-height: 52vh; }

  /* Breadcrumb */
  .breadcrumb {
    padding: 12px 20px;
    font-size: 10px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* Touch-friendly minimum target sizes */
  .btn-cta, .btn-outline, .btn-outline-light,
  .filter-btn, .cat-link, .srv-link, .prod-action {
    min-height: 44px;
  }

  /* Stats band */
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
    gap: 16px;
  }
  .stat-num { font-size: 1.8rem; }

  /* CTA stacking */
  .cta-btns, .contact-band-btns, .consult-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 40px 20px 24px; }

  /* Why strip */
  .why-strip {
    flex-direction: column !important;
    text-align: center;
    padding: 40px 20px !important;
    gap: 24px;
  }
  .why-strip-actions { flex-direction: column; width: 100%; }
  .why-strip-actions a { text-align: center; width: 100%; }

  /* Popup */
  .popup-box { max-width: 94vw; }
  .popup-body { padding: 28px 20px 22px; }

  /* Partners */
  .partners-section { padding: 36px 20px !important; }
  .partners-inner { flex-direction: column; gap: 16px; }

  /* Process */
  .process-steps { gap: 24px; }
  .step-num { width: 48px; height: 48px; font-size: 0.9rem; }
}

/* ── 768px BREAKPOINT ── */
@media (max-width: 768px) {

  /* Hero text */
  .mob-hero-content h1,
  .pav-hero-content h1,
  .page-hero h1,
  .proj-hero-content h1,
  .dcc-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
  .mob-hero-content p.lead,
  .pav-hero-content p.lead,
  .page-hero p { font-size: 14px; }

  /* Video hero */
  #video-hero { min-height: 85vh; }
  .video-hero-content { padding: 0 20px; }
  .video-hero-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .video-hero-content p { font-size: 14px; margin-bottom: 28px; }

  /* Section h2 */
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem) !important; }

  /* Split chooser */
  #chooser { grid-template-columns: 1fr !important; }
  .split-panel { min-height: 52vh !important; padding: 32px 24px !important; }
  .split-divider, .split-divider-dot { display: none !important; }

  /* About teaser */
  .about-teaser { grid-template-columns: 1fr !important; }
  .about-teaser-img { height: 240px; }
  .about-teaser-content { padding: 36px 20px; }

  /* Features */
  .features-band { padding: 44px 20px; }
  .features-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .feature-card { padding: 24px 20px; }

  /* Catalog grid: 2 cols */
  .catalog-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }

  /* Category cards */
  .cat-grid { grid-template-columns: 1fr 1fr !important; }
  .cat-card { aspect-ratio: 3/4; }
  .cat-desc { max-height: 80px !important; opacity: 1 !important; }

  /* Lucrari grid: single col on mobile */
  .lucrari-grid { grid-template-columns: 1fr !important; gap: 4px; }
  .lucrari-item.large { grid-column: span 1 !important; aspect-ratio: 16/9; }

  /* Advantage cards */
  .adv-grid { grid-template-columns: 1fr !important; }
  .adv-card { flex-direction: column; gap: 14px; padding: 24px 18px; }

  /* Diff counters: 3 cols */
  .diff-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .diff-num { font-size: 2rem; }
  .diff-item { padding: 24px 12px; }

  /* Servicii grid: 2 cols */
  .servicii-grid { grid-template-columns: 1fr 1fr !important; }
  .srv-card { padding: 24px 18px; }

  /* Proj grid: 1 col */
  .proj-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .proj-card .proj-thumb { height: 200px; }

  /* Process: 2 cols */
  .process-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 24px; }
  .process-steps::before { display: none !important; }

  /* Testimonials */
  .test-grid { grid-template-columns: 1fr !important; }
  .test-card { padding: 24px 20px; }

  /* Stats band */
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Certs */
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cert-card { padding: 24px 16px; }

  /* Contact */
  .contact-band { padding: 48px 20px !important; }
  .contact-main { grid-template-columns: 1fr !important; }

  /* CTA band */
  .cta-band { padding: 48px 20px !important; }
  .cta-btns { flex-direction: column; align-items: stretch; }
}

/* ── 480px SMALL PHONES ── */
@media (max-width: 480px) {

  /* Single column everything */
  .catalog-grid,
  .cat-grid,
  .proj-grid,
  .servicii-grid,
  .certs-grid,
  .features-grid,
  .adv-grid,
  .test-grid { grid-template-columns: 1fr !important; }

  .diff-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .process-steps { grid-template-columns: 1fr !important; }
  .stats-band { grid-template-columns: 1fr !important; gap: 8px; }
  .stat-box { padding: 10px 0; border-bottom: 1px solid rgba(197,168,128,0.1); }

  /* Typography tightening */
  .sec-label { font-size: 9px !important; letter-spacing: 3px; }
  .brand-stat-num { font-size: 1.4rem; }
  .stat-num { font-size: 1.6rem !important; }

  /* Images */
  .about-teaser-img { height: 200px; }
  .proj-card .proj-thumb { height: 160px; }
  .cat-card { aspect-ratio: 5/4; }
  .lucrari-item { aspect-ratio: 4/3 !important; }

  /* Buttons — full width on tiny screens */
  .btn-cta, .btn-outline, .btn-outline-light {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 11px !important;
  }

  .hero-btns { flex-direction: column !important; gap: 10px; width: 100%; max-width: 100%; }
  .hero-btns a { text-align: center; justify-content: center; }

  /* Popup */
  .popup-body { padding: 20px 16px 18px; }
  .popup-box h2 { font-size: 1.3rem; }
  .popup-discount-num { font-size: 1.9rem; }
  .popup-badge { font-size: 8px; }
  .popup-actions { flex-direction: column; }
  .popup-actions .btn-cta, .popup-close-link { flex: unset; width: 100%; }

  /* Section header rows */
  .cat-section-header, .lucrari-header, .section-header-row,
  .catalog-top, .portfolio-header { flex-direction: column !important; align-items: flex-start !important; gap: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px; }
  footer { padding: 28px 16px 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Breadcrumb */
  .breadcrumb { padding: 10px 16px; font-size: 9px; }

  /* Brand strip */
  .brand-strip {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px;
    justify-content: center;
  }
  .brand-stat { min-width: calc(50% - 12px); }

  /* Partners */
  .partners-logos { gap: 8px; }
  .partner-logo-placeholder { padding: 6px 10px; font-size: 8px; }
}

/* ── TOUCH DEVICE: disable hover transforms ── */
@media (hover: none) and (pointer: coarse) {
  .cat-card:hover .cat-card-img { transform: none; }
  .cat-card .cat-desc { max-height: 80px; opacity: 1; }
  .prod-card:hover { transform: none; box-shadow: none; }
  .cert-card:hover { transform: none; }
  .adv-card:hover { transform: none; }
  .lucrari-item:hover img { transform: none; }
  .lucrari-item-overlay { opacity: 1; }
  .lucrari-item-label { opacity: 1; transform: translateY(0); }
  .proj-card:hover .proj-thumb { transform: none; }
  .btn-cta:hover { transform: none; }
}