/* =========================================================
   Obsidian Care — Black & Gold Marble Theme
   ========================================================= */

:root {
  color-scheme: dark;
  --black-950: #08080a;
  --black-900: #0c0c0f;
  --black-800: #141418;
  --black-700: #1c1c22;
  --gold-100: #f8dc8e;
  --gold-300: #eab646;
  --gold-500: #d99a2e;
  --gold-600: #b87f22;
  --gold-700: #8a5f18;
  --ivory: #eae6da;
  --ivory-dim: #d6d2c5;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ivory);
  background-color: var(--black-950);
  overflow-x: hidden;
  position: relative;
}

/* ---------------------------------------------------------
   Marble background: layered gradients + gold veining
   --------------------------------------------------------- */
.marble-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--black-950);
  background-image:
    linear-gradient(rgba(6,6,8,0.35), rgba(6,6,8,0.35)),
    url("../assets/images/marble-background-v3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.marble-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/></svg>");
  background-size: 200px 200px;
}

@media (max-width: 780px) {
  .marble-bg {
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100vh;
    height: 100lvh;
  }
}

/* =========================================================
   Utility
   ========================================================= */
.gold-text {
  background: linear-gradient(100deg, var(--gold-700) 0%, var(--gold-300) 30%, var(--gold-100) 50%, var(--gold-300) 70%, var(--gold-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plain-hyphen {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin: 0 0.06em;
}

.eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-500);
  margin: 0 0 0.9rem;
}

.divider {
  width: 64px;
  height: 2px;
  margin: 1.1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold-700), var(--gold-300) 45%, var(--gold-500) 75%, var(--gold-700));
  color: var(--black-950);
  box-shadow: 0 6px 20px rgba(217,154,46,0.22);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(217,154,46,0.34);
}

.btn-outline {
  background: transparent;
  color: var(--gold-300);
  border-color: rgba(234,182,70,0.5);
}
.btn-outline:hover {
  background: rgba(234,182,70,0.08);
  border-color: var(--gold-300);
  transform: translateY(-2px);
}

.link-gold {
  color: var(--gold-300);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.link-gold:hover {
  border-color: var(--gold-300);
  color: var(--gold-100);
}

/* =========================================================
   Header / Navbar
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,8,10,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,154,46,0.18);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.6rem;
}

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

.logo-mark {
  width: 88px;
  height: 88px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-400, var(--gold-500));
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--ivory); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold-300); }

.nav-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
}

.nav-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-social .social-icon {
  width: 32px;
  height: 32px;
}
.nav-social .icon-mask {
  width: 15px;
  height: 15px;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 0.8rem;
}

.nav-social-persistent {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.nav-social-persistent .social-icon {
  width: 32px;
  height: 32px;
}
.nav-social-persistent .icon-mask {
  width: 15px;
  height: 15px;
}

.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1px solid rgba(217,154,46,0.4);
  border-radius: 4px;
  padding: 0.45rem 0.7rem;
  color: var(--gold-300);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-toggle:hover {
  border-color: var(--gold-300);
  color: var(--gold-100);
}

.lang-caret {
  font-size: 0.55rem;
  transition: transform 0.2s ease;
}
.lang-switcher.open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 130px;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: linear-gradient(160deg, rgba(28,28,34,0.97), rgba(10,10,13,0.98));
  border: 1px solid rgba(217,154,46,0.3);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: block;
  padding: 0.5rem 0.7rem;
  border-radius: 4px;
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 0.84rem;
  white-space: nowrap;
}
.lang-option:hover {
  background: rgba(217,154,46,0.1);
  color: var(--ivory);
}
.lang-option.active {
  color: var(--gold-300);
  font-weight: 600;
}

.flag-icon {
  display: inline-block;
  width: 20px;
  height: 14px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
  vertical-align: middle;
  flex-shrink: 0;
}

.flag-ro {
  background-image: linear-gradient(to right, #002B7F 0 33.33%, #FCD116 33.33% 66.66%, #CE1126 66.66% 100%);
}

.flag-gb {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 480'><path fill='%23012169' d='M0 0h640v480H0z'/><path fill='%23FFF' d='M75 0l244 181L562 0h78v62L400 241l240 178v61h-80L320 301 81 480H0v-60l239-179L0 62V0z'/><path fill='%23C8102E' d='M424 281l216 159v40L369 281h55zm-184 20l6 35L54 480H0l240-179zM640 0v3L391 191l2-44L590 0h50zM0 0l239 176h-60L0 42V0z'/><path fill='%23FFF' d='M241 0v480h160V0H241zM0 160v160h640V160H0z'/><path fill='%23C8102E' d='M0 193v96h640v-96H0zM273 0v480h96V0h-96z'/></svg>");
}

.flag-fr {
  background-image: linear-gradient(to right, #002395 0 33.33%, #FFFFFF 33.33% 66.66%, #ED2939 66.66% 100%);
}

.flag-de {
  background-image: linear-gradient(to bottom, #000000 0 33.33%, #DD0000 33.33% 66.66%, #FFCE00 66.66% 100%);
}

.flag-it {
  background-image: linear-gradient(to right, #008C45 0 33.33%, #F4F5F0 33.33% 66.66%, #CD212A 66.66% 100%);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold-300);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
}

.hero-content { max-width: 780px; }
.hero-content.hero-brand { max-width: min(98vw, 2200px); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.12;
  font-weight: 600;
  margin: 0 0 1.4rem;
  color: var(--ivory);
}

.hero-brand-title {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(5rem, 65vw, 72rem);
  color: var(--ivory);
  margin: 0 0 2.4rem;
  white-space: nowrap;
}
.hero-brand-title .hero-reg {
  font-size: 0.3em;
  vertical-align: top;
  color: var(--gold-300);
  -webkit-text-fill-color: var(--gold-300);
}

.hero-brand-tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  margin-bottom: 2.6rem;
}

.hero-side-tag {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.5vw, 1.05rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ivory-dim);
  white-space: nowrap;
}
.hero-side-tag strong {
  color: var(--gold-300);
  font-weight: 700;
}

.hero-brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--gold-500);
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
}
.hero-brand-divider::before,
.hero-brand-divider::after {
  content: "";
  width: clamp(40px, 7vw, 110px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.hero-brand-divider::after {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.hero-brand-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: clamp(1.8rem, 6.4vw, 4.6rem);
  color: var(--gold-300);
  margin: 0 0 0.6rem;
  white-space: nowrap;
}

@media (max-width: 1300px) {
  .hero-brand-tagline-row {
    flex-direction: column;
    gap: 1.6rem;
  }
  .hero-side-tag {
    flex-direction: row;
    gap: 0.5rem;
  }
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.hero-sub p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ivory-dim);
  font-weight: 400;
  margin: 0 0 0.9rem;
}
.hero-sub p:last-child {
  margin-bottom: 0;
}
.hero-sub-lead {
  color: var(--ivory);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   Page hero (secondary pages: Produse, Contact)
   ========================================================= */
.page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 9.5rem 1.6rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 600;
  margin: 0.4rem 0 1rem;
  color: var(--ivory);
}

.page-hero-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ivory-dim);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.page-hero-large .eyebrow {
  font-size: clamp(0.85rem, 1.7vw, 1.2rem);
  letter-spacing: 0.3em;
}
.page-hero-large h1 {
  font-size: clamp(3.4rem, 8.5vw, 7rem);
}

/* =========================================================
   Sections (shared)
   ========================================================= */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 7rem 1.6rem;
}

.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3.4rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 600;
  margin: 0;
  color: var(--ivory);
}

.section-sub {
  margin-top: 1.2rem;
  color: var(--ivory-dim);
  font-size: 0.9rem;
  font-weight: 400;
}

/* =========================================================
   Despre noi
   ========================================================= */
.despre-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.despre-text p {
  color: var(--ivory-dim);
  line-height: 1.85;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1.3rem;
}

.despre-values {
  display: grid;
  gap: 1.1rem;
  align-self: start;
  position: sticky;
  top: 6.5rem;
}

.despre-highlights .check-list {
  margin-top: 0.3rem;
  margin-bottom: 0;
}

.despre-more {
  display: inline-block;
  margin-top: 1.4rem;
}

.freshbatch-feature {
  margin-top: 5rem;
}
.freshbatch-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  font-weight: 600;
  color: var(--ivory);
  text-align: center;
  margin: 0 0 1rem;
}

.freshbatch-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--ivory-dim);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.8;
}

.freshbatch-img {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(217,154,46,0.2);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  margin: 0 0 3rem;
}
.freshbatch-img img {
  display: block;
  width: 100%;
  height: auto;
}

.freshbatch-body {
  max-width: 720px;
  margin: 0 auto;
}
.freshbatch-body p {
  color: var(--ivory-dim);
  line-height: 1.85;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 1.5rem;
}
.freshbatch-body p:last-child {
  margin-bottom: 0;
}

.freshbatch-list {
  list-style: none;
  margin: 0.5rem 0 2.2rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.freshbatch-list li {
  color: var(--ivory-dim);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  padding-left: 1.6rem;
  position: relative;
}
.freshbatch-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

.value-card {
  background: linear-gradient(145deg, rgba(28,28,34,0.7), rgba(12,12,15,0.7));
  border: 1px solid rgba(217,154,46,0.16);
  border-radius: 6px;
  padding: 1.5rem 1.6rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.value-card:hover {
  border-color: rgba(217,154,46,0.45);
  transform: translateY(-3px);
}

.value-icon {
  color: var(--gold-500);
  font-size: 0.8rem;
  display: block;
  margin-bottom: 0.6rem;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  color: var(--gold-100);
  font-weight: 600;
}

.value-card p {
  margin: 0;
  color: var(--ivory-dim);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
}

/* =========================================================
   Produse
   ========================================================= */
.produse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: linear-gradient(160deg, rgba(28,28,34,0.75), rgba(10,10,13,0.85));
  border: 1px solid rgba(217,154,46,0.14);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217,154,46,0.5);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.product-img {
  aspect-ratio: 1 / 1;
  position: relative;
  background: var(--black-950);
  border-bottom: 1px solid rgba(217,154,46,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.product-img img:hover {
  transform: scale(1.03);
}

/* Certificates page: images aren't zoomable, so no zoom cursor/hover effect */
#certificate .product-img img {
  cursor: default;
}
#certificate .product-img img:hover {
  transform: none;
}
.product-img[data-label]::before {
  content: attr(data-label);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234,182,70,0.4);
  border: 1px dashed rgba(234,182,70,0.3);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
}

.product-body {
  padding: 1.5rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-info {
  height: 9.4rem;
  overflow: hidden;
}
.product-info.product-info-expanded {
  height: auto;
  overflow: visible;
}

.product-tagline.product-tagline-plain {
  font-style: normal;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  color: var(--ivory);
  font-weight: 600;
}

.product-body p {
  color: var(--ivory-dim);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 1.1rem;
}

.product-category {
  color: var(--gold-500);
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.6rem !important;
}

.product-tagline {
  font-style: italic;
}

.product-badge {
  margin-top: auto;
  border: 1px solid rgba(217,154,46,0.4);
  background: rgba(217,154,46,0.08);
  color: var(--gold-300);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.65rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.product-details-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  border-top: 1px solid rgba(217,154,46,0.16);
  padding-top: 0.9rem;
  cursor: pointer;
  color: var(--gold-300);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-details-btn::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--gold-500);
}
.product-details-btn:hover {
  color: var(--gold-100);
}

/* =========================================================
   Product details modal
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6vh 1.5rem 1.5rem;
  background: rgba(6,6,8,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  position: relative;
  max-width: 460px;
  width: 100%;
  height: 75vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(28,28,34,0.95), rgba(10,10,13,0.98));
  border: 1px solid rgba(217,154,46,0.35);
  border-radius: 10px;
  padding: 2.2rem;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(217,154,46,0.4);
  background: none;
  color: var(--gold-300);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.modal-close:hover {
  border-color: var(--gold-300);
  color: var(--gold-100);
}

.modal-box h3 {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ivory);
  margin: 0 0 0.4rem;
  padding-right: 2rem;
}

.modal-category {
  flex-shrink: 0;
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}

.modal-panels {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.modal-tabs {
  flex-shrink: 0;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.35rem;
  border-bottom: 1px solid rgba(217,154,46,0.3);
  margin: 0 -0.2rem 1.3rem;
  padding: 0 0.2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.modal-tabs::-webkit-scrollbar {
  display: none;
}

.modal-tab {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(217,154,46,0.22);
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  margin-bottom: -1px;
  padding: 0.55rem 0.7rem;
  color: var(--ivory-dim);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.modal-tab:hover {
  color: var(--ivory);
  background: rgba(217,154,46,0.08);
}
.modal-tab.active {
  color: var(--gold-300);
  background: rgba(217,154,46,0.16);
  border-color: var(--gold-500);
}

.modal-tab-panel {
  display: none;
}
.modal-tab-panel.active {
  display: block;
}

.modal-desc {
  color: var(--ivory-dim);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 0 1.3rem;
}

.modal-placeholder {
  color: var(--ivory-dim);
  font-size: 0.88rem;
  font-style: italic;
  opacity: 0.7;
  margin: 0;
}

.modal-inci {
  color: var(--ivory-dim);
  font-size: 0.86rem;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

.modal-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.modal-features li {
  color: var(--ivory-dim);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.55;
  padding-left: 1.5rem;
  position: relative;
}
.modal-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

.modal-note {
  margin: 1rem 0 0;
  padding: 0.7rem 0.9rem;
  border-left: 2px solid var(--gold-500);
  background: rgba(217,154,46,0.08);
  border-radius: 0 4px 4px 0;
  color: var(--gold-100);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.5;
}
.modal-note + .modal-note {
  margin-top: 0.7rem;
}
.modal-note-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--gold-300);
}
.modal-note p {
  margin: 0 0 0.5rem;
  font-style: normal;
}
.modal-note-list {
  margin: 0;
  padding-left: 1.1rem;
  font-style: normal;
}
.modal-note-list li {
  margin-bottom: 0.35rem;
}
.modal-note-list li:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Product image lightbox (zoom)
   ========================================================= */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(4,4,5,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.image-lightbox img {
  max-width: min(90vw, 640px);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(217,154,46,0.3);
  cursor: zoom-out;
  transform: scale(0.85);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.image-lightbox.open img {
  transform: scale(1);
  opacity: 1;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(217,154,46,0.4);
  background: rgba(10,10,12,0.7);
  color: var(--gold-300);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover {
  border-color: var(--gold-300);
  color: var(--gold-100);
}

.produse-cta {
  margin-top: 3.5rem;
  text-align: center;
  padding: 2.5rem 1.6rem;
  border-top: 1px solid rgba(217,154,46,0.16);
}

.produse-cta p {
  color: var(--ivory-dim);
  font-size: 0.98rem;
  font-weight: 400;
  margin: 0 0 1.4rem;
}

/* =========================================================
   Certificates page
   ========================================================= */
.cert-status {
  margin: 0.6rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(217,154,46,0.16);
  color: var(--ivory-dim);
  font-size: 0.85rem;
  font-style: italic;
}
.cert-status a {
  font-style: normal;
}

.cert-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1rem;
}

.cert-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(217,154,46,0.4);
  border-radius: 4px;
  background: rgba(217,154,46,0.05);
  color: var(--gold-300);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.cert-download:hover {
  background: rgba(234,182,70,0.12);
  border-color: var(--gold-300);
  color: var(--gold-100);
  transform: translateY(-2px);
}

.icon-download {
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23eab646' d='M12 15.577l-4.5-4.5 1.061-1.06 2.69 2.688V3h1.5v9.705l2.69-2.688 1.06 1.06-4.5 4.5zM5.25 19.5v-3h1.5v1.5h10.5v-1.5h1.5v3H5.25z'/></svg>");
  flex-shrink: 0;
}
.cert-download:hover .icon-download {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23f8dc8e' d='M12 15.577l-4.5-4.5 1.061-1.06 2.69 2.688V3h1.5v9.705l2.69-2.688 1.06 1.06-4.5 4.5zM5.25 19.5v-3h1.5v1.5h10.5v-1.5h1.5v3H5.25z'/></svg>");
}

/* =========================================================
   Legal pages (Termeni, Confidențialitate)
   ========================================================= */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-100);
  margin: 2.2rem 0 0.8rem;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--ivory-dim);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 1rem;
}

/* =========================================================
   Parteneri
   ========================================================= */
.parteneri-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.parteneri-text p {
  color: var(--ivory-dim);
  line-height: 1.85;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.check-list li {
  color: var(--ivory-dim);
  font-size: 0.92rem;
  font-weight: 400;
  padding-left: 1.6rem;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

/* =========================================================
   Philosophy page (De ce Obsidian)
   ========================================================= */
.philosophy-story {
  max-width: 720px;
  margin: 0 auto;
}

.philosophy-story p {
  color: var(--ivory-dim);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  margin: 0 0 1.6rem;
}

.philosophy-pullquote {
  max-width: 860px;
  margin: 3.6rem auto;
  padding: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.4;
  background: linear-gradient(100deg, var(--gold-700) 0%, var(--gold-300) 30%, var(--gold-100) 50%, var(--gold-300) 70%, var(--gold-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.philosophy-pullquote p {
  margin: 0;
}
.philosophy-pullquote p + p {
  margin-top: 0.5rem;
}

.philosophy-tagline {
  max-width: 640px;
  margin: 3.6rem auto 0;
  padding-top: 2.6rem;
  border-top: 1px solid rgba(217,154,46,0.25);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--ivory);
}

@media (max-width: 780px) {
  .philosophy-pullquote {
    font-size: 1.6rem;
    margin: 2.4rem auto;
  }
}

/* =========================================================
   FAQ page
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(217,154,46,0.15);
}
.faq-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.faq-question {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--gold-300);
  margin: 0 0 0.7rem;
}

.faq-answer {
  color: var(--ivory-dim);
  font-size: 0.94rem;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

.parteneri-stats {
  display: grid;
  gap: 1.2rem;
}

.stat-card {
  background: linear-gradient(145deg, rgba(28,28,34,0.7), rgba(12,12,15,0.7));
  border: 1px solid rgba(217,154,46,0.16);
  border-radius: 6px;
  padding: 1.6rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-300);
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ivory-dim);
  letter-spacing: 0.02em;
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info {
  display: grid;
  gap: 1.6rem;
  align-content: start;
}

.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217,154,46,0.4);
  border-radius: 50%;
  color: var(--gold-300);
  font-size: 1rem;
}

.info-row h4 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ivory);
  font-weight: 600;
}

.info-row p {
  margin: 0;
  color: var(--ivory-dim);
  font-size: 0.9rem;
  font-weight: 400;
}

.contact-faq-note {
  margin: 0.6rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(217,154,46,0.16);
  color: var(--ivory-dim);
  font-size: 0.88rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217,154,46,0.4);
  border-radius: 50%;
  color: var(--gold-300);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-icon:hover {
  border-color: var(--gold-300);
  transform: translateY(-2px);
}

.icon-mask {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.icon-instagram {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23eab646' d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.897 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.897-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.645-1.44-1.44 0-.795.645-1.44 1.44-1.44.795 0 1.44.645 1.44 1.44z'/></svg>");
}
.social-icon:hover .icon-instagram {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23f8dc8e' d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.897 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.897-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.645-1.44-1.44 0-.795.645-1.44 1.44-1.44.795 0 1.44.645 1.44 1.44z'/></svg>");
}

.icon-whatsapp {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23eab646' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884M20.52 3.449C18.24 1.245 15.24 0 12.05 0 5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.423-8.452'/></svg>");
}
.social-icon:hover .icon-whatsapp {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23f8dc8e' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884M20.52 3.449C18.24 1.245 15.24 0 12.05 0 5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.423-8.452'/></svg>");
}

.contact-form {
  background: linear-gradient(160deg, rgba(28,28,34,0.75), rgba(10,10,13,0.85));
  border: 1px solid rgba(217,154,46,0.16);
  border-radius: 8px;
  padding: 2.2rem;
  display: grid;
  gap: 1.2rem;
}

.form-row { display: grid; gap: 0.5rem; }

.form-row label {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: rgba(8,8,10,0.6);
  border: 1px solid rgba(234,182,70,0.2);
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-500);
}

.form-submit {
  border: none;
  margin-top: 0.4rem;
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gold-300);
  min-height: 1.1em;
}
.form-note.form-note-error {
  color: #e07a5f;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  border-top: 1px solid rgba(217,154,46,0.18);
  padding: 2.6rem 1.6rem 2.2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}

.footer-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold-300); }

.footer-copy {
  color: var(--ivory-dim);
  font-size: 0.76rem;
  margin: 0;
  width: 100%;
  text-align: center;
  opacity: 0.7;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .despre-grid,
  .parteneri-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .parteneri-stats { order: -1; grid-template-columns: repeat(3, 1fr); }
  .freshbatch-feature { margin-top: 3.5rem; }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .mobile-actions { display: flex; }
  .nav-social-persistent { display: flex; }
  .nav-cta-row .nav-social { display: none; }

  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(8,8,10,0.97);
    border-bottom: 1px solid rgba(217,154,46,0.18);
    padding: 0.5rem 1.6rem 1.2rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links li { width: 100%; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta-row { border-bottom: none !important; padding-top: 1rem !important; justify-content: space-between; }
  .nav-cta { display: inline-block; }

  /* Without this, the li's full width (not the button's) becomes the
     .lang-menu's containing block, so the dropdown docks to the row's
     right edge instead of the RO button's edge. */
  .nav-links li.lang-switcher { width: fit-content; border-bottom: none; }

  /* The button sits near the screen's left edge here, so right-aligning
     the (wider) dropdown pushes it off-screen to the left. Grow it
     rightward instead. */
  .nav-links .lang-menu { left: 0; right: auto; }

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

@media (max-width: 520px) {
  .section { padding: 4.5rem 1.2rem; }
  .hero { padding-top: 7rem; }
  .contact-form { padding: 1.5rem; }
  .logo-mark { width: 60px; height: 60px; }
  .modal-box { padding: 1.5rem; }
}
