@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&display=swap");

/* New Beauty Style — salon beauty Timișoara */
:root {
  --emerald: #50c878;
  --emerald-dark: #3da85f;
  --emerald-glow: rgba(80, 200, 120, 0.35);
  --emerald-soft: rgba(80, 200, 120, 0.12);
  --white: #ffffff;
  --cream: #e8dcc8;
  --cream-dark: #c4a574;
  --gold-muted: #9a7b4f;
  --bg-dark: #0e0f12;
  --bg-dark-elevated: #16181d;
  --bg-dark-card: #1c1f26;
  --gray-50: #f7f8f9;
  --gray-100: #eef0f2;
  --gray-600: #5c6368;
  --gray-800: #2d3338;
  --gray-900: #1a1d20;
  --font-sans: "Poppins", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", "Lora", Georgia, serif;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(26, 29, 32, 0.08);
  --shadow-dark: 0 16px 48px rgba(0, 0, 0, 0.35);
  --transition: 0.25s ease;
  --section-space: clamp(3.5rem, 8vw, 6rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--emerald-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--emerald);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--gray-900);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0 0 0.5rem;
}

h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 15, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-switch__link {
  color: rgba(255, 255, 255, 0.78);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.lang-switch__link:hover {
  color: var(--emerald);
}

.lang-switch__link[aria-current="page"] {
  color: var(--emerald);
}

.lang-switch__sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
  font-weight: 400;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
}

.logo span {
  color: var(--emerald);
}

.logo--brand {
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: none;
}

.logo--brand span {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--emerald);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(80, 200, 120, 0.35);
}

.btn-primary:hover {
  background: var(--emerald-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--emerald-dark);
  border: 2px solid var(--emerald);
}

.btn-outline:hover {
  background: var(--emerald-soft);
  color: var(--emerald-dark);
}

.btn-ghost {
  background: var(--gray-100);
  color: var(--gray-800);
}

.btn-ghost:hover {
  background: var(--emerald-soft);
  color: var(--emerald-dark);
}

/* Main */
main {
  overflow-x: hidden;
}

.section {
  padding: var(--section-space) 1.25rem;
}

.section--alt {
  background: var(--gray-50);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-intro p {
  color: var(--gray-600);
  margin-bottom: 0;
}

.lead {
  font-size: 1.125rem;
  color: var(--gray-600);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 1.25rem 4rem;
  max-width: 1120px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 1.25rem 5rem;
    gap: 3rem;
  }
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content .lead {
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
}

.hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  text-align: center;
}

/* Grid cards */
.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}

.card--team {
  text-align: center;
  padding-top: 0;
  overflow: hidden;
}

/* Echipa mea — cadru uniform, crop controlat (object-fit + object-position per poză) */
.card--team__media {
  margin: 0 -1.75rem 1.25rem;
  width: calc(100% + 3.5rem);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--gray-100);
}

.card--team__media .card-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.card--team__media .card-photo--cristea-diana {
  object-position: center 22%;
}

.card--team__media .card-photo--palii-valeria {
  object-position: center 35%;
}

.card--service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--emerald-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.grid-2 .card--service-wide {
  grid-column: 1 / -1;
}

/* Servicii — sugaring evidențiat + 3 coloane sub (desktop) */
.services-layout {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.services-layout__row {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .services-layout__row {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.card--service-featured {
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgba(196, 165, 116, 0.35);
  background: linear-gradient(
    165deg,
    var(--white) 0%,
    var(--gray-50) 45%,
    rgba(232, 220, 200, 0.45) 100%
  );
  box-shadow: 0 14px 44px rgba(26, 29, 32, 0.09);
}

.card--service-featured .service-icon {
  width: 72px;
  height: 72px;
  font-size: 2rem;
}

.card--service-featured h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  margin-bottom: 0.65rem;
}

.card--service-featured p,
.card--service-featured .service-subtitle {
  max-width: 72ch;
}

.services-layout__row .card--service {
  height: 100%;
}

.service-subtitle {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--emerald-dark);
  margin: 1.5rem 0 0.65rem;
}

.service-ancient-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--cream-dark);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.service-ancient-note__glyph {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.2;
  opacity: 0.85;
}

/* About split */
.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  border-radius: var(--radius);
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.credentials li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--gray-600);
}

.credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
}

/* Form */
.form {
  max-width: 560px;
}

.form-row {
  margin-bottom: 1.25rem;
}

.form label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--gray-800);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px var(--emerald-soft);
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  color: #c62828;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: none;
}

.form-row.has-error .form-error {
  display: block;
}

.form-row.has-error input,
.form-row.has-error select,
.form-row.has-error textarea {
  border-color: #c62828;
}

.form-note {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-top: 1rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-block {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  margin-bottom: 1.25rem;
}

.contact-block h3 {
  margin-bottom: 0.75rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: #0a0b0d;
  color: var(--gray-100);
  padding: 2.5rem 1.25rem;
  margin-top: 2rem;
}

.site-footer a {
  color: var(--gray-100);
  opacity: 0.9;
}

.site-footer a:hover {
  color: var(--emerald);
  opacity: 1;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: flex-end;
  }
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--emerald);
}

.footer-copy {
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.6;
  opacity: 0.88;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.footer-legal p {
  margin: 0 0 0.65rem;
}

.footer-legal strong {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.footer-bottom .footer-links {
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-bottom .footer-links {
    justify-content: flex-end;
    flex: 1;
  }
}

body.has-cookie-banner {
  padding-bottom: clamp(7rem, 22vw, 10rem);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -6px 24px rgba(26, 29, 32, 0.08);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 720px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--gray-800);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
}

.cookie-banner .btn-outline {
  border-color: var(--emerald);
  color: var(--emerald-dark);
}

.legal-doc {
  max-width: 720px;
}

.legal-doc h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1rem 0;
}

.legal-doc th,
.legal-doc td {
  border: 1px solid var(--gray-100);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.legal-doc th {
  background: var(--gray-50);
}

/* Mobile nav */
@media (max-width: 767px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    flex: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark-elevated);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav.is-open {
    max-height: 420px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0;
    color: rgba(255, 255, 255, 0.92);
  }

  .site-header {
    position: relative;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-title {
  padding: 2.5rem 1.25rem 1rem;
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.page-title h1 {
  margin-bottom: 0.35rem;
}

.page-title p {
  color: var(--gray-600);
  margin: 0;
}

/* ——— Homepage: hero slider, dark sections, gallery, testimonials ——— */
.home-main > .section:first-child {
  padding-top: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: min(88vh, 820px);
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-slider__viewport {
  overflow: hidden;
  width: 100%;
  height: min(88vh, 820px);
}

.hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: min(88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-slider {
    min-height: min(78vh, 640px);
  }

  .hero-slider__viewport {
    height: min(78vh, 640px);
  }

  .hero-slide {
    height: min(78vh, 640px);
  }
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transform-origin: center center;
  transition: transform 0.1s linear;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14, 15, 18, 0.88) 0%,
    rgba(14, 15, 18, 0.55) 45%,
    rgba(14, 15, 18, 0.35) 100%
  );
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

.hero-slide__kicker {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 0.75rem;
}

.hero-slide__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.hero-slide__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.hero-slide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-light-solid {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 24px var(--emerald-glow);
}

.btn-light-solid:hover {
  background: var(--emerald-dark);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(232, 220, 200, 0.55);
}

.btn-outline-light:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 15, 18, 0.5);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.hero-slider__arrow:hover {
  background: rgba(80, 200, 120, 0.25);
  border-color: var(--emerald);
  color: var(--emerald);
}

.hero-slider__arrow--prev {
  left: 0.75rem;
}

.hero-slider__arrow--next {
  right: 0.75rem;
}

@media (max-width: 767px) {
  .hero-slider__arrow {
    width: 42px;
    height: 42px;
  }

  .hero-slider__arrow--prev {
    left: 0.35rem;
  }

  .hero-slider__arrow--next {
    right: 0.35rem;
  }
}

.hero-slider__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-slider__dot[aria-current="true"] {
  background: var(--emerald);
  transform: scale(1.15);
}

.hygiene-band {
  background: linear-gradient(90deg, #d4bc9c 0%, var(--cream) 50%, #c9a882 100%);
  color: var(--bg-dark);
  padding: 1.15rem 1.25rem;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

.hygiene-band strong {
  font-weight: 700;
}

.section--dark {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark .section-intro p,
.section--dark .text-muted {
  color: rgba(255, 255, 255, 0.62);
}

.section--dark a:not(.btn) {
  color: var(--emerald);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 0.5rem;
}

.section-intro--gallery-head {
  max-width: min(100%, 50rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.35rem);
}

.section-intro--gallery-head .text-muted {
  margin-top: 0;
}

.section--dark h2.gallery-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.65vw, 1.9rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 clamp(0.55rem, 1.6vw, 0.85rem);
}

.home-services__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .home-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home-services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-service-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.3s ease;
}

.home-service-card:hover {
  border-color: rgba(80, 200, 120, 0.35);
  box-shadow: var(--shadow-dark);
  transform: translateY(-3px);
}

.home-service-card__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--emerald);
  opacity: 0.95;
  margin-bottom: 0.35rem;
}

.home-service-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.65rem;
}

.home-service-card__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 1rem;
}

.home-service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream);
}

.home-service-card__link:hover {
  color: var(--emerald);
}

.values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.value-card__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--emerald);
  margin: 0 0 0.85rem;
  letter-spacing: 0.02em;
}

.value-card__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(80, 200, 120, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.gallery-block {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  gap: clamp(1.1rem, 2.8vw, 1.5rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid__item:last-child:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - clamp(1.1rem, 2.8vw, 1.5rem)) / 2));
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid__item:last-child:nth-child(3) {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }
}

.gallery-grid__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gallery-grid__media {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.gallery-grid__item .gallery-slide__caption {
  padding: 1rem 0 0;
  justify-content: flex-start;
}

.gallery-slider__viewport {
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.gallery-slide {
  flex: 0 0 100%;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.gallery-slide__caption {
  padding: 1.25rem 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .gallery-slide__caption {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.gallery-slide__caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.gallery-slider__arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 15, 18, 0.65);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.gallery-slider__arrow:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.gallery-slider__arrow--prev {
  left: 0.65rem;
}

.gallery-slider__arrow--next {
  right: 0.65rem;
}

/* Marinela activity — preview slider, full gallery modal, lightbox */
.marinela-hero-slider {
  position: relative;
  max-width: min(100%, 960px);
  margin: 0 auto;
}

.marinela-hero-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  touch-action: pan-y pinch-zoom;
  width: 100%;
  height: clamp(320px, min(62vw, 68vh), 680px);
  background: rgba(18, 20, 26, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.marinela-hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.marinela-hero-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  background: transparent;
}

.marinela-hero-slider__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  vertical-align: middle;
}

/* Focal points per slide — slider mare only (nu afectează galeria modală) */
.marinela-hero-slider__slide--1 img {
  object-position: center 28%;
}

.marinela-hero-slider__slide--2 img {
  object-position: center 32%;
}

.marinela-hero-slider__slide--3 img {
  object-position: center center;
}

/* Săgeți peste imagine, în interiorul viewport-ului */
.marinela-hero-slider__viewport .marinela-hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 11, 14, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.marinela-hero-slider__viewport .marinela-hero-slider__arrow:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(10, 11, 14, 0.72);
}

.marinela-hero-slider__viewport .marinela-hero-slider__arrow--prev {
  left: max(0.5rem, env(safe-area-inset-left, 0px));
}

.marinela-hero-slider__viewport .marinela-hero-slider__arrow--next {
  right: max(0.5rem, env(safe-area-inset-right, 0px));
}

@media (max-width: 640px) {
  .marinela-hero-slider__viewport {
    height: clamp(280px, min(72vw, 52vh), 560px);
  }

  .marinela-hero-slider__viewport .marinela-hero-slider__arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .marinela-hero-slider__viewport .marinela-hero-slider__arrow--prev {
    left: 0.4rem;
  }

  .marinela-hero-slider__viewport .marinela-hero-slider__arrow--next {
    right: 0.4rem;
  }
}

.marinela-slider-actions {
  text-align: center;
  margin: 1.75rem 0 0;
}

.marinela-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.25rem 1rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.marinela-modal:not([hidden]) {
  display: flex;
}

.marinela-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(10, 11, 14, 0.88);
  cursor: pointer;
}

.marinela-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.15rem 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, #1a1d24 0%, #12141a 100%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.marinela-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.marinela-modal__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0;
}

.marinela-modal__close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 15, 18, 0.85);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.marinela-modal__close:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.marinela-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 0.65rem;
}

.marinela-modal__thumb {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.25);
  transition: box-shadow var(--transition), transform 0.2s ease;
}

.marinela-modal__thumb:hover {
  box-shadow: 0 0 0 2px var(--emerald);
  transform: translateY(-2px);
}

.marinela-modal__thumb:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

.marinela-modal__thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.marinela-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.marinela-lightbox:not([hidden]) {
  display: flex;
}

.marinela-lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

.marinela-lightbox__frame {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1200px);
  max-height: min(88vh, 900px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.marinela-lightbox__frame img {
  max-width: 100%;
  max-height: min(85vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
  touch-action: pan-y pinch-zoom;
}

.marinela-lightbox__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(14, 15, 18, 0.75);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}

.marinela-lightbox__nav:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.marinela-lightbox__nav--prev {
  left: max(0.5rem, env(safe-area-inset-left, 0px));
}

.marinela-lightbox__nav--next {
  right: max(0.5rem, env(safe-area-inset-right, 0px));
}

.marinela-lightbox__x {
  position: absolute;
  z-index: 2;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(14, 15, 18, 0.8);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.marinela-lightbox__x:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

@media (max-width: 520px) {
  .marinela-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .marinela-lightbox__nav--prev {
    left: 0.35rem;
  }

  .marinela-lightbox__nav--next {
    right: 0.35rem;
  }
}

.testimonials-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonials-grid--reviews {
  align-items: start;
}

.testimonial-review-card {
  margin: 0;
  padding: 0;
  width: 100%;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.testimonial-review-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.quick-contact-bar {
  background: var(--bg-dark-elevated);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.35rem 1.25rem;
}

.quick-contact-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

@media (min-width: 900px) {
  .quick-contact-bar__inner {
    justify-content: space-between;
    gap: 1rem;
  }
}

.quick-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.quick-contact-item:hover {
  color: var(--emerald);
  background: rgba(255, 255, 255, 0.04);
}

.quick-contact-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer--extended {
  padding-top: 3.5rem;
  background: #0a0b0d;
}

.footer-columns {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .footer-columns {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-col__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.footer-col__text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 0.75rem;
}

.footer-col__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--emerald);
}

.footer-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col__list li {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-col__list a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-col__list a:hover {
  color: var(--emerald);
}

.footer-col__icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--emerald);
  opacity: 0.9;
}

.footer-legal--spaced {
  margin-top: 0.5rem;
}

.footer-bottom--simple {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 600px) {
  .footer-bottom--simple {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom--simple .social-links a {
  background: rgba(255, 255, 255, 0.06);
}

