/* Onest (SIL Open Font License 1.1), găzduit local.
   Google Fonts transmitea IP-ul vizitatorului înainte de consimțământ. */
/* latin */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/onest-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* cyrillic */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* cyrillic-ext */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/onest-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-alt: #ececec;
  --surface-hover: #e4e4e4;
  --bg-ink: #111111;
  --border: #e2e2e2;
  --border-hover: #111111;
  --text: #111111;
  --text-secondary: #5c5c5c;
  --text-tertiary: #8a8a8a;
  --text-on-ink: #f5f5f5;
  --accent: #111111;
  --accent-hover: #2c2c2c;
  --accent-soft: #d0d0d0;
  --bg-rgb: 245, 245, 245;
  --surface-rgb: 255, 255, 255;
  --text-rgb: 17, 17, 17;
  --accent-rgb: 17, 17, 17;
  --ink-rgb: 17, 17, 17;
  --on-ink-rgb: 245, 245, 245;
  --success: #2f2f2f;
  --error: #4a4a4a;
  --warning: #6a6a6a;
  --font-display: "Onest", "Segoe UI", sans-serif;
  --font-body: "Onest", "Segoe UI", sans-serif;
  --header-h: 76px;
  --floatbar-h: 0px;
}

body[data-division="business"] { --bg: #f3f3f3; }
body[data-division="residence"] { --bg: #f7f7f7; }

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

body.mellony {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  position: relative;
  overflow-x: clip;
  min-width: 0;
  padding-bottom: var(--floatbar-h);
}
body.mellony.is-nav-open,
body.mellony.is-modal-open { overflow: hidden; }
body.mellony::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 3;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg, video { max-width: 100%; height: auto; display: block; }
picture { display: contents; }

.mellony h1, .mellony h2, .mellony h3, .mellony h4 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.mellony h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); line-height: 1.12; }
.mellony h3 { font-size: 1.45rem; line-height: 1.2; }
.mellony p { color: var(--text-secondary); }

.ml-wrap {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
  min-width: 0;
}
.ml-wrap--narrow { width: min(720px, calc(100% - 32px)); }
.ml-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ml-split img { width: 100%; height: auto; }
.ml-section { padding: 96px 0; }
.ml-section--tight { padding: 64px 0; }
.ml-ink { background: var(--bg-ink); color: var(--text-on-ink); }
.ml-ink h2, .ml-ink h3 { color: var(--text-on-ink); }
.ml-ink p { color: rgba(var(--on-ink-rgb), 0.72); }
.ml-alt { background: var(--surface-alt); }

.ml-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.ml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 44px;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.ml-btn--primary { background: var(--accent); color: #fff; }
.ml-btn--primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }
.ml-btn--primary:active { transform: translateY(0); }
.ml-btn--primary:focus-visible,
.ml-btn--ghost:focus-visible,
.ml-btn--on-ink-ghost:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.ml-btn--primary:disabled,
.ml-btn--ghost:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.ml-btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.ml-btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.ml-btn--on-ink-ghost {
  background: transparent;
  color: var(--text-on-ink);
  border-color: rgba(var(--on-ink-rgb), 0.4);
}
.ml-btn--on-ink-ghost:hover { border-color: #fff; color: #fff; }
.ml-ink .ml-btn--primary,
.ml-hero .ml-btn--primary {
  background: #fff;
  color: var(--text);
}
.ml-ink .ml-btn--primary:hover,
.ml-hero .ml-btn--primary:hover {
  background: #e8e8e8;
  color: var(--text);
}
.ml-btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.ml-btn-row--center { justify-content: center; }

.ml-link {
  color: var(--accent);
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease, color 0.25s ease;
}
.ml-link:hover { background-size: 100% 1px; color: var(--accent-hover); }
.ml-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.ml-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(var(--bg-rgb), 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.ml-header.is-scrolled { background: var(--surface); }
.ml-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  min-width: 0;
}
.ml-logo { min-width: 0; flex: 0 1 auto; }
.ml-logo img, .ml-logo svg {
  height: 36px;
  width: auto;
  max-width: min(168px, 46vw);
  object-fit: contain;
}
.ml-footer .ml-logo img,
.ml-footer .ml-logo svg {
  height: 28px;
  max-width: 180px;
  filter: invert(1);
}
.ml-nav { display: flex; align-items: center; gap: 22px; }
.ml-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
}
.ml-nav a:hover, .ml-nav a.is-active { color: var(--text); }
.ml-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.ml-header__tools { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.ml-lang { display: flex; gap: 6px; font-size: 0.72rem; letter-spacing: 0.08em; }
.ml-lang a {
  color: var(--text-tertiary);
  text-decoration: none;
  padding: 6px 4px;
  min-height: 32px;
}
.ml-lang a.is-active { color: var(--text); font-weight: 600; }
.ml-nav-phone { display: none; }
.ml-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  flex: none;
  flex-shrink: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  appearance: none;
  -webkit-appearance: none;
  touch-action: manipulation;
}
.ml-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.ml-hero {
  position: relative;
  min-height: min(86vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--text-on-ink);
}
.ml-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ml-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: scale(1.04);
}
.ml-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(var(--ink-rgb), 0.28) 0%, rgba(var(--ink-rgb), 0.45) 38%, rgba(var(--ink-rgb), 0.88) 100%);
}
.ml-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 0 72px;
  color: var(--text-on-ink);
  min-width: 0;
}
.mellony .ml-hero .ml-eyebrow { color: var(--accent-soft); }
.mellony .ml-hero-title,
.mellony .ml-hero h1 {
  font-size: clamp(2.35rem, 6.2vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-on-ink);
  max-width: 14ch;
  animation: mlHeroReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.ml-hero-title .word {
  display: inline-block;
  color: inherit;
  animation: mlFadeUp 0.8s ease both;
}
.ml-hero-title .word:nth-child(2) { animation-delay: 0.12s; }
.ml-hero-title .word:nth-child(3) { animation-delay: 0.22s; }
.mellony .ml-hero p,
.mellony .ml-hero .lead {
  max-width: 38ch;
  color: rgba(var(--on-ink-rgb), 0.92);
  margin: 1.25rem 0 1.75rem;
}

@keyframes mlHeroReveal {
  from { clip-path: inset(0 0 100% 0); opacity: 0; }
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}
@keyframes mlFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.ml-marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 18px 0;
}
.ml-marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: mlMarquee 32s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-secondary);
  white-space: nowrap;
}
@keyframes mlMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ml-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.ml-tile {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--text-on-ink);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  text-decoration: none;
  --mx: 50%;
  --my: 50%;
}
.ml-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ml-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px circle at var(--mx) var(--my), rgba(255,255,255,0.18), transparent 42%),
    linear-gradient(180deg, rgba(var(--ink-rgb), 0.05), rgba(var(--ink-rgb), 0.72));
}
.ml-tile:hover img { transform: scale(1.06); }
.ml-tile__body { position: relative; z-index: 1; min-width: 0; }
.ml-tile h3 { color: var(--text-on-ink); font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 8px; }
.ml-tile p { color: rgba(var(--on-ink-rgb), 0.82); margin: 0; }

.ml-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  min-width: 0;
  transition: transform 0.35s ease, border-color 0.35s ease;
  --mx: 50%;
  --my: 40%;
}
.ml-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(255,255,255,0.28), transparent 46%);
  transition: opacity 0.3s ease;
}
.ml-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }
.ml-card:hover::before { opacity: 1; }
.ml-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.ml-card__media { aspect-ratio: 4 / 5; overflow: hidden; }
.ml-card__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ml-card:hover .ml-card__media img { transform: scale(1.06); }
.ml-card__body { padding: 18px 20px 22px; }
.ml-card__body h3 { font-size: 1.45rem; margin: 0 0 4px; }
.ml-card--ink .ml-card__media {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 28px 24px;
  background: var(--bg-ink);
  color: var(--text-on-ink);
}
.ml-card--ink .ml-card__media .ml-eyebrow { color: rgba(var(--on-ink-rgb), 0.55); margin-bottom: 8px; }
.ml-card--ink .ml-card__media h3 {
  color: var(--text-on-ink);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}
.ml-card--ink .ml-card__media p {
  color: rgba(var(--on-ink-rgb), 0.72);
  margin: 0;
  max-width: 28ch;
}
.ml-seal {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 72px;
  height: 72px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--surface-rgb), 0.92);
  line-height: 1.2;
}

.ml-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--border);
}
.ml-stat {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.ml-stat:last-child { border-right: 0; }
.ml-stat__index {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.ml-stat h3 {
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.ml-stat h3 em {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.ml-stat p {
  margin: 14px 0 0;
  max-width: 24ch;
}

.ml-carousel {
  background: var(--surface);
  border: 1px solid var(--border);
}
.ml-carousel__viewport { overflow: hidden; }
.ml-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: pan-y;
}
.ml-quote {
  margin: 0;
  flex: 0 0 50%;
  min-width: 0;
  min-height: 280px;
  padding: 36px 32px 28px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-right: 1px solid var(--border);
}
.ml-quote::before {
  content: "„";
  display: block;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
  color: var(--text);
}
.ml-quote p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
  max-width: 42ch;
}
.ml-quote cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}
.ml-quote cite span {
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--text-tertiary);
}
.ml-carousel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}
.ml-carousel__btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex: none;
}
.ml-carousel__btn:hover { background: var(--bg); }
.ml-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ml-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: var(--border-hover, #111);
  opacity: 0.22;
  cursor: pointer;
}
.ml-carousel__dots button.is-active {
  width: 22px;
  opacity: 1;
}

.ml-cta-band {
  padding: 72px 0;
  text-align: left;
  border-bottom: 1px solid rgba(var(--on-ink-rgb), 0.12);
}
.ml-cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 300px);
  gap: 40px 64px;
  align-items: end;
}
.ml-cta-band .ml-eyebrow { color: var(--accent-soft); }
.ml-cta-band h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  max-width: 16ch;
  margin: 0;
  text-align: left;
  line-height: 1.12;
}
.ml-cta-band__copy p:not(.ml-eyebrow) {
  margin: 14px 0 0;
  max-width: 42ch;
  color: rgba(var(--on-ink-rgb), 0.72);
}
.ml-cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.ml-cta-band__actions .ml-btn { width: 100%; justify-content: center; }
.ml-cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: rgba(var(--on-ink-rgb), 0.72);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.ml-cta-phone:hover { color: #fff; }

.ml-footer { background: var(--bg-ink); color: var(--text-on-ink); padding: 72px 0 0; }
.ml-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.ml-footer__note {
  margin: 16px 0 0;
  max-width: 28ch;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(var(--on-ink-rgb), 0.58);
}
.ml-footer__map {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-ink);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.ml-footer a { color: rgba(var(--on-ink-rgb), 0.72); text-decoration: none; }
.ml-footer a:hover { color: #fff; }
.ml-footer h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.ml-footer ul { list-style: none; padding: 0; margin: 0; }
.ml-footer li { margin: 0 0 8px; }
.ml-footer-contact li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  margin: 0 0 16px;
}
.ml-footer-contact li:last-child { margin-bottom: 0; }
.ml-footer-contact span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--on-ink-rgb), 0.5);
}
.ml-footer-contact a {
  color: var(--text-on-ink);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.ml-footer-contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ml-footer-acc h4 { position: relative; }
.ml-footer-acc__btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-align: left;
  cursor: default;
}
.ml-subfoot {
  border-top: 1px solid rgba(var(--on-ink-rgb), 0.12);
  margin-top: 48px;
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(var(--on-ink-rgb), 0.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ml-subfoot a {
  color: inherit;
  text-decoration: none;
}
.ml-subfoot a:hover {
  color: #fff;
}
.ml-social {
  display: flex;
  align-items: center;
  gap: 2px;
}
.ml-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(var(--on-ink-rgb), 0.62);
}
.ml-social a:hover { color: #fff; }
.ml-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ml-pagehead { padding: 48px 0 24px; }
.ml-pagehead h1 { font-size: clamp(2rem, 5vw, 4.2rem); margin: 0; }

.ml-places {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.ml-place {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.ml-place .ml-eyebrow { margin-bottom: 10px; }
.ml-place h3 { margin: 0 0 14px; }
.ml-place p {
  margin: 0 0 8px;
  max-width: 34ch;
  color: var(--text-secondary);
}
.ml-place a:not(.ml-btn) {
  color: var(--text);
  text-decoration: none;
}
.ml-place a:not(.ml-btn):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ml-place .ml-btn-row { margin-top: 18px; }

.ml-map {
  position: relative;
  overflow: hidden;
  background: var(--surface-alt);
  aspect-ratio: 16 / 7;
  min-height: 280px;
}
.ml-map__consent {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 28px;
  background: var(--surface-alt);
}
.ml-map__consent p {
  margin: 0;
  max-width: 46ch;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.ml-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1);
}

.ml-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 28px; }
.ml-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
}
.ml-chip.is-active, .ml-chip:hover { border-color: var(--accent); color: var(--text); }

.ml-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ml-product {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: start;
}
.ml-gallery { display: grid; gap: 12px; min-width: 0; }
.ml-gallery img { width: 100%; height: auto; display: block; }
.ml-sticky { position: sticky; top: calc(var(--header-h) + 24px); min-width: 0; }
.ml-specs { list-style: none; padding: 0; margin: 20px 0; }
.ml-specs li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 0.95rem;
}

.ml-field { margin-bottom: 16px; }
.ml-field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-secondary);
}
.ml-field input,
.ml-field textarea,
.ml-field select {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
}
.ml-field textarea { min-height: 120px; }
.ml-field input:hover, .ml-field textarea:hover, .ml-field select:hover { border-color: var(--border-hover); }
.ml-field input:focus, .ml-field textarea:focus, .ml-field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 0;
  border-color: var(--accent);
}
.ml-consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 8px 0 20px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-secondary);
}
.ml-consent input { width: 20px; height: 20px; margin-top: 4px; accent-color: var(--accent); flex: none; }
.ml-form-msg { display: none; padding: 12px 14px; border: 1px solid var(--success); color: var(--success); margin-bottom: 16px; }
.ml-form-msg.is-on { display: block; }
.ml-form-err { display: none; padding: 12px 14px; border: 1px solid var(--error); color: var(--error); margin-bottom: 16px; }
.ml-form-err.is-on { display: block; }

.ml-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(var(--ink-rgb), 0.62);
}
.ml-modal.is-open { display: grid; }
.ml-modal__panel {
  position: relative;
  background: #fff;
  width: min(480px, 100%);
  max-height: 90vh;
  overflow: auto;
  padding: 32px 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(var(--text-rgb), 0.18);
}
.ml-modal__panel:not(:has(.ml-eyebrow)) h2::before {
  content: "Mellony";
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}
.ml-modal__panel .ml-eyebrow { margin-bottom: 8px; }
.ml-modal__panel h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 14ch;
  margin: 0 52px 12px 0;
}
.ml-modal__panel > p:not(.ml-form-msg):not(.ml-form-err) {
  margin: 0 0 24px;
  max-width: 38ch;
  font-size: 0.95rem;
}
.ml-modal__panel form .ml-btn--primary {
  width: 100%;
  justify-content: center;
}
.ml-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}
.ml-modal__close:hover { background: var(--bg); }

.ml-consent-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 80;
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: none;
}
.ml-consent-banner.is-on { display: block; }
.ml-consent-cats { display: flex; flex-wrap: wrap; gap: 12px 18px; margin: 12px 0 16px; font-size: 0.9rem; }
.ml-consent-cats label { display: flex; gap: 8px; align-items: center; min-height: 44px; }
.ml-consent-cats input:disabled { accent-color: var(--text-tertiary); }

.ml-floatbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.ml-floatbar a {
  flex: 1;
  min-height: 56px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.ml-floatbar a:first-child { color: var(--text); }
.ml-floatbar a:last-child { background: var(--accent); color: #fff; }

.ml-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ml-reveal.is-in { opacity: 1; transform: none; }
.ml-delay-1 { transition-delay: 0.1s; }
.ml-delay-2 { transition-delay: 0.2s; }
.ml-delay-3 { transition-delay: 0.3s; }

.ml-legal { max-width: 720px; }
.ml-legal h1 { margin-bottom: 12px; }
.ml-note {
  border: 1px dashed var(--border);
  padding: 16px 18px;
  background: var(--surface);
  color: var(--text-secondary);
  margin: 16px 0 24px;
}

.ml-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
}
.ml-process__step {
  position: relative;
  min-width: 0;
  padding: 36px 32px 40px;
  border-right: 1px solid var(--border);
}
.ml-process__step:last-child { border-right: 0; }
.ml-process__index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.ml-process__index::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.ml-process__step:last-child .ml-process__index::after { display: none; }
.ml-process__step h3 {
  margin: 0;
  font-size: 1.25rem;
}
.ml-process__step p {
  margin: 12px 0 0;
  max-width: 22ch;
}

.ml-partners { margin-top: 40px; }
.ml-partners__viewport {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ml-partners__track {
  display: flex;
  width: max-content;
  animation: ml-partners-scroll 32s linear infinite;
}
.ml-partners__viewport:hover .ml-partners__track {
  animation-play-state: paused;
}
.ml-partners__item {
  flex: none;
  display: grid;
  place-items: center;
  width: 200px;
  height: 96px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
}
.ml-partners__item img {
  display: block;
  width: auto;
  height: 28px;
  max-width: 148px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.ml-partners__item:hover img {
  filter: none;
  opacity: 1;
}
.ml-partners__more {
  margin: 28px 0 0;
  display: flex;
  justify-content: center;
}
@keyframes ml-partners-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
.ml-stack-32 { margin-top: 32px; }
.ml-lede {
  max-width: 42ch;
  margin-bottom: 32px;
}

/* Tablet */
@media (max-width: 1100px) {
  .ml-bento { grid-template-columns: 1fr 1fr; }
  .ml-tile:first-child { grid-column: 1 / -1; min-height: 340px; }
  .ml-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ml-process { grid-template-columns: 1fr 1fr; }
  .ml-process__step:nth-child(2n) { border-right: 0; }
  .ml-process__step:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .ml-process__step:nth-child(2n) .ml-process__index::after { display: none; }
  .ml-process__step { padding: 28px 24px 32px; }
  .ml-footer__grid { grid-template-columns: 1fr 1fr; }
  .ml-section { padding: 80px 0; }
  .ml-nav { gap: 16px; }
}

@media (max-width: 980px) {
  .ml-header {
    background: var(--surface);
  }
  .ml-header.is-open {
    top: 0;
    z-index: 60;
    height: 100svh;
    height: 100dvh;
    min-height: 100svh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    backdrop-filter: none;
  }
  .ml-header__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-height: var(--header-h);
  }
  .ml-header.is-open .ml-header__bar {
    flex: 1;
    align-content: flex-start;
    overflow: auto;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
  .ml-logo {
    margin-right: auto;
    min-width: 0;
    flex: 1 1 auto;
  }
  .ml-logo img, .ml-logo svg {
    max-width: min(140px, 42vw);
  }
  .ml-header__tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }
  .ml-lang {
    display: none;
    width: 100%;
    order: 4;
    gap: 16px;
    padding: 16px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
  }
  .ml-header.is-open .ml-lang { display: flex; }
  .ml-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
  }
  .ml-header.is-open .ml-nav { display: flex; }
  .ml-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    white-space: normal;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .ml-nav-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    min-height: 76px;
    margin-top: 8px;
    padding: 16px 0;
    border-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
  }
  .ml-nav-phone span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .ml-nav-phone strong {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.03em;
  }
  .ml-header .ml-btn--ghost[href^="tel"] { display: none; }
  .ml-header .ml-btn--primary {
    flex-shrink: 0;
    padding: 0.7rem 0.9rem;
  }
  .ml-header .ml-btn--primary span { display: none; }
  .ml-header .ml-btn--primary::after { content: "Consultație"; }
  .ml-menu-toggle { display: inline-flex; }
  .ml-header.is-open .ml-menu-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .ml-header.is-open .ml-menu-toggle span:nth-child(2) { opacity: 0; }
  .ml-header.is-open .ml-menu-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .ml-product { grid-template-columns: 1fr; gap: 28px; }
  .ml-sticky { position: static; }
  .ml-split { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 700px) {
  :root { --header-h: 64px; }
  .ml-wrap { width: min(1200px, calc(100% - 24px)); }
  .ml-section { padding: 56px 0; }
  .ml-section--tight { padding: 40px 0; }
  .ml-pagehead { padding: 32px 0 16px; }
  .ml-hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .ml-hero__content { padding: 28px 0 40px; }
  .mellony .ml-hero-title,
  .mellony .ml-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
    max-width: none;
  }
  .ml-hero-title .word { display: inline; animation: none; }
  .mellony .ml-hero p,
  .mellony .ml-hero .lead { max-width: none; }
  .ml-btn-row { flex-direction: column; align-items: stretch; }
  .ml-btn-row .ml-btn { width: 100%; }
  .ml-bento,
  .ml-grid,
  .ml-process,
  .ml-stats,
  .ml-places,
  .ml-footer__grid { grid-template-columns: 1fr; }
  .ml-map { aspect-ratio: 4 / 3; }
  .ml-quote {
    flex: 0 0 100%;
    border-right: 0;
    min-height: 240px;
    padding: 28px 20px 24px;
  }
  .ml-stat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    column-gap: 16px;
    row-gap: 6px;
    padding: 22px 20px;
  }
  .ml-stat:last-child { border-bottom: 0; }
  .ml-process__step {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    column-gap: 16px;
    row-gap: 6px;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .ml-process__step:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .ml-process__step:last-child { border-bottom: 0; }
  .ml-process__index {
    grid-row: 1 / span 2;
    margin: 4px 0 0;
  }
  .ml-process__index::after { display: none; }
  .ml-process__step h3 { font-size: 1.15rem; }
  .ml-process__step p { margin: 0; max-width: none; }
  .ml-stat__index {
    grid-row: 1 / span 2;
    margin: 4px 0 0;
  }
  .ml-stat h3 { font-size: 1.85rem; }
  .ml-stat p { margin: 0; max-width: none; }
  .ml-tile,
  .ml-tile:first-child { min-height: 280px; grid-column: auto; padding: 20px; }
  .ml-cta-band { padding: 56px 0; }
  .ml-cta-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ml-cta-band h2 { max-width: none; }
  .ml-floatbar { display: flex; }
  .ml-consent-banner {
    left: 12px;
    right: 12px;
    bottom: calc(56px + env(safe-area-inset-bottom, 0px) + 10px);
    padding: 1rem;
  }
  .ml-consent-banner .ml-btn-row { flex-direction: column; }
  .ml-modal {
    padding: 0;
    align-items: end;
  }
  .ml-modal__panel {
    width: 100%;
    max-height: 92dvh;
    padding: 24px 20px calc(20px + env(safe-area-inset-bottom, 0px));
    border: 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 -12px 40px rgba(var(--text-rgb), 0.12);
  }
  .ml-modal__close {
    top: 16px;
    right: 16px;
  }
  .ml-seal { width: 60px; height: 60px; font-size: 0.55rem; }
  .ml-logo img, .ml-logo svg { height: 30px; }
  .ml-footer-acc {
    border-top: 1px solid rgba(var(--on-ink-rgb), 0.12);
  }
  .ml-footer-acc h4 .ml-footer-acc__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 0;
    min-height: 52px;
    cursor: pointer;
    color: var(--text-on-ink);
  }
  .ml-footer-acc__btn::after {
    content: "";
    width: 7px;
    height: 7px;
    flex: none;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    opacity: 0.7;
  }
  .ml-footer-acc.is-open .ml-footer-acc__btn::after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }
  .ml-footer-acc ul {
    display: none;
    padding: 0 0 14px;
  }
  .ml-footer-acc.is-open ul { display: block; }
}

@media (max-width: 700px) {
  body.mellony {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 380px) {
  .ml-header .ml-btn--primary { font-size: 0.75rem; padding: 0.65rem 0.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ml-reveal { opacity: 1; transform: none; }
  .ml-hero-title { clip-path: none; }
  .ml-partners__track { animation: none; }
  .ml-partners__viewport {
    overflow-x: auto;
    mask-image: none;
  }
}

.ml-notfound {
  grid-column: 1 / -1;
  padding: 48px 0 32px;
  max-width: 52ch;
}
.ml-notfound h1 { margin: 8px 0 12px; }
.ml-notfound p { color: var(--text-secondary); }
.ml-notfound .ml-btn-row { margin-top: 28px; }

.ml-consent.is-invalid input { outline: 2px solid var(--error); outline-offset: 3px; }
.ml-form-msg:focus, .ml-form-err:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
