:root {
  --black: #050505;
  --black-soft: #0d0d0d;
  --white: #ffffff;
  --cream: #f5efe5;
  --muted: #b8b8b8;
  --gold: #c8a45d;
  --gold-light: #dec078;
  --gold-soft: rgba(200, 164, 93, 0.18);
  --border: rgba(255,255,255,0.12);
  --transition: all 0.35s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}
body.wp-theme-the-palm { --wp--preset--color--primary: var(--gold); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.95;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.section-subtitle {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.gold { color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold { background: var(--gold); color: #101010; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.42), transparent);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}
.nav {
  width: min(1320px, 94%);
  margin: 0 auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-branding { display: flex; flex-direction: column; line-height: 1; }
.site-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 700;
}
.site-description {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 7px;
}
.primary-menu { display: flex; gap: 22px; align-items: center; list-style: none; }
.primary-menu a {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  transition: var(--transition);
}
.primary-menu a:hover, .primary-menu .current-menu-item a { color: var(--gold); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.search-toggle { width:42px; height:42px; display:grid; place-items:center; flex:0 0 auto; padding:0; border:1px solid rgba(255,255,255,.35); border-radius:50%; background:transparent; color:#fff; font:700 25px/1 Arial,sans-serif; cursor:pointer; transition:var(--transition); }
.search-toggle:hover, .search-toggle:focus-visible { border-color:var(--gold); color:var(--gold); }
.header-search-panel { position:absolute; z-index:1005; top:100%; right:3%; width:min(520px,94vw); padding:16px; border:1px solid rgba(255,255,255,.18); border-radius:0 0 18px 18px; background:rgba(12,10,7,.97); box-shadow:0 18px 40px rgba(0,0,0,.28); }
.header-search-panel[hidden] { display:none; }
.header-search-inner .search-form { display:flex; gap:10px; margin:0; }
.header-search-inner .search-form label { flex:1; }
.header-search-inner .search-field { width:100%; min-height:48px; padding:12px 15px; border:1px solid rgba(255,255,255,.3); border-radius:8px; background:rgba(255,255,255,.08); color:#fff; }
.header-search-inner .search-field::placeholder { color:rgba(255,255,255,.68); }
.menu-toggle { display:none; }
.hero, .page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero { min-height: 92vh; }
.page-hero { min-height: 70vh; padding-top: 120px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.52;
  filter: saturate(0.85) contrast(1.08);
}
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(200,164,93,0.18), transparent 28%),
    linear-gradient(to bottom, rgba(0,0,0,0.16), rgba(0,0,0,0.94)),
    linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.25), rgba(0,0,0,0.72));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 940px; padding-top: 56px; }
.page-hero .hero-content { padding-top: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
.hero h1, .page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 8vw, 118px);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 30px;
}
.page-hero h1 { font-size: clamp(52px, 7vw, 98px); }
.hero p, .page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-bottom {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 92%);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 18px;
}
.split-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 54px; }
.direction-card {
  min-height: 620px;
  border: 1px solid var(--border);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: var(--black-soft);
}
.direction-card .card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.46;
  transform: scale(1.02);
  transition: var(--transition);
}
.direction-card:hover .card-image { transform: scale(1.08); opacity: 0.58; }
.direction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.25), rgba(0,0,0,0.1));
  z-index: 1;
}
.direction-content { position: absolute; z-index: 2; bottom: 0; padding: 42px; }
.direction-content h3, .info-card h3, .venue-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
.direction-content h3 { font-size: 46px; margin-bottom: 18px; }
.direction-content p { color: rgba(255,255,255,0.76); line-height: 1.75; margin-bottom: 24px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}
.about-grid, .feature-section, .contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about-image, .feature-image {
  min-height: 620px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}
.about-text p, .content-block p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 18px;
}
.service-list, .feature-content ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
  list-style: none;
}
.service-list span, .feature-content li {
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-size: 14px;
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 60px; }
.stat {
  padding: 34px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.dark-panel {
  background:
    radial-gradient(circle at 20% 0%, rgba(200,164,93,0.12), transparent 32%),
    linear-gradient(180deg, #090909, #020202);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.info-card {
  padding: 34px;
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  transition: var(--transition);
}
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,164,93,0.45);
  background: rgba(200,164,93,0.06);
}
.info-card h3 { font-size: 34px; margin-bottom: 16px; }
.info-card p { color: var(--muted); line-height: 1.75; font-size: 15px; }
.venues-toolbar { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
.venue-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.venue-photo { height: 260px; background-size: cover; background-position: center; }
.venue-body { padding: 26px; }
.venue-body h3 { font-size: 31px; margin-bottom: 10px; }
.venue-body p { color: var(--muted); line-height: 1.7; font-size: 14px; margin-bottom: 16px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 280px;
  gap: 18px;
  margin-top: 55px;
}
.portfolio-item {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background-size: cover;
  background-position: center;
}
.portfolio-item.large { grid-row: span 2; }
.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent 60%);
}
.portfolio-item span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
}
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 55px; }
.testimonial {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
}
.testimonial p { color: rgba(255,255,255,0.84); line-height: 1.85; margin-bottom: 24px; font-size: 15px; }
.testimonial strong { color: var(--gold); font-size: 14px; }
.contact-grid { align-items: start; }
.contact-box {
  padding: 38px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.contact-box p { color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.contact-line {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
}
.contact-line span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 6px;
}
form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
  color: var(--white);
  padding: 0 16px;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}
textarea { min-height: 150px; padding-top: 16px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: rgba(200,164,93,0.07); }
select option { background: #111; color: #fff; }
.site-footer {
  background: #030303;
  padding: 78px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 42px; }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 27px;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col p, .footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 9px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,0.42);
  font-size: 13px;
}
.whatsapp {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  z-index: 90;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(0,0,0,0.35);
  transition: var(--transition);
}
.whatsapp:hover { transform: translateY(-4px) scale(1.04); }
.fade-up { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.show { opacity: 1; transform: translateY(0); }
@media (max-width: 1080px) {
  .primary-menu { display: none; }
  .menu-toggle { display:flex; color:#fff; background:transparent; border:1px solid var(--border); border-radius:999px; padding:10px 14px; }
  .primary-menu.open {
    position: absolute;
    top: 82px;
    left: 3%;
    right: 3%;
    display: grid;
    background: rgba(5,5,5,0.96);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
  }
}

/* v80: ajustări finale pentru layout și meniul de pe ecrane mici. */
.contact-grid { align-items: start !important; }
.whatsapp { display: none !important; }
@media (min-width: 1081px) {
  .primary-menu > .menu-item-has-children > a {
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .primary-menu > .menu-item-has-children > a::after {
    flex: 0 0 auto;
    position: relative;
    top: 0;
  }
}
@media (max-width: 680px) {
  body.home .direction-card { min-height: 0 !important; }
  body.home .direction-content { padding: 28px 26px !important; }
  body.home .elegant-list {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin: 20px 0 24px !important;
  }
  body.home .elegant-list span {
    min-height: 28px;
    padding-left: 24px;
    font-size: 14px;
  }
  .primary-menu.open { opacity: 1 !important; }
}

/* v81: cele două coloane ale contactului pornesc pe exact aceeași linie. */
@media (min-width: 1025px) {
  .contact-grid {
    align-items: start !important;
    grid-auto-rows: min-content !important;
  }
  .contact-grid > :first-child,
  .contact-grid > :last-child,
  .contact-grid > .contact-box {
    align-self: start !important;
    margin-top: 0 !important;
  }
  .contact-grid > :last-child .the-palm-form-wrap,
  .contact-grid > :last-child .the-palm-cf7-form,
  .contact-grid > :last-child form {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
@media (max-width: 1024px) {
  .split-cards, .about-grid, .feature-section, .contact-grid { grid-template-columns: 1fr; }
  .stats, .cards-grid, .venue-grid, .testimonials, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .section { padding: 78px 0; }

  .site-branding { margin-left: 5px; }
  .menu-toggle { margin-right: 5px; }
  body.home .hero { min-height: auto; padding-top: 112px; padding-bottom: 72px; align-items: flex-start; }
  body.home .hero-content { padding-top: 40px; }
  body.home .hero h1 { margin-bottom: 22px; }
  body.home .hero p { margin-bottom: 28px; }
  .whatsapp { display: flex; }

  .nav { height: 72px; width: min(100%, 94%); }
  .nav-cta { display: none; }
  .search-toggle { width:38px; height:38px; margin-left:auto; margin-right:8px; }
  .header-search-panel { top:72px; right:3%; left:3%; width:auto; }
  .header-search-inner .search-form { display:flex; }
  .hero h1, .page-hero h1 { font-size: 54px; }
  .hero-bottom { display: none; }
  .direction-card { min-height: 560px; }
  .direction-content { padding: 28px; }
  .stats, .cards-grid, .venue-grid, .testimonials, .footer-grid, form, .feature-content ul, .service-list, .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-item.large { grid-row: span 1; }
  .footer-bottom { flex-direction: column; }
}

@media (min-width: 1081px) {
  body.home .hero-content {
    padding-top: 40px;
    max-width: 880px;
  }
  body.home .hero h1 {
    font-size: clamp(58px, 6.8vw, 104px);
    line-height: 0.92;
  }
  body.home .hero p {
    max-width: 720px;
  }
}


.footer-anpc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(21,17,11,.08);
}
.footer-anpc a {
  display: block;
  margin: 0;
  line-height: 0;
}
.footer-anpc img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #fff;
  transition: var(--transition);
}
.footer-anpc a:hover img {
  transform: translateY(-2px);
  border-color: rgba(200,164,93,0.45);
}
@media (max-width: 680px) {
  .footer-anpc img {
    max-width: 180px;
  }
}



.hero-bottom {
  display: none !important;
}

.btn-gold::after {
  content: "→";
  margin-left: 10px;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn-gold:hover::after {
  transform: translateX(4px);
}

input,
select,
textarea,
button {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-size: 14px;
}

.form-consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin-top: -4px;
}

.whatsapp {
  width: auto;
  min-width: 108px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.not-found-box {
  max-width: 760px;
}

.not-found-box p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
  margin-bottom: 24px;
}

@media (max-width: 680px) {
  input,
  select,
  textarea {
    min-height: 54px;
    border-radius: 16px;
    font-size: 16px;
    transform: translateZ(0);
  }

  textarea {
    min-height: 150px;
  }

  form {
    gap: 14px;
  }
}



.footer-anpc {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-anpc a {
  display: inline-flex;
  margin: 0;
  line-height: 0;
}

.footer-anpc img {
  width: 150px !important;
  max-width: 150px !important;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #fff;
  transition: var(--transition);
}

.footer-legal-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-legal-inline a {
  display: inline;
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer-legal-inline span {
  color: rgba(255,255,255,0.35);
}

@media (max-width: 680px) {
  .footer-anpc img {
    width: 140px !important;
    max-width: 140px !important;
  }
}



.footer-anpc {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px !important;
  margin-top: 18px;
}

.footer-anpc a {
  display: inline-flex !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.footer-anpc img {
  width: 120px !important;
  max-width: 120px !important;
  height: auto !important;
  border-radius: 8px;
}

@media (max-width: 680px) {
  .footer-anpc {
    gap: 8px !important;
  }

  .footer-anpc img {
    width: 120px !important;
    max-width: 120px !important;
  }
}



.footer-anpc {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 18px !important;
}

.footer-anpc a {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.footer-anpc img {
  width: 120px !important;
  max-width: 120px !important;
  height: auto !important;
  border-radius: 8px !important;
}

.footer-legal-inline {
  display: none !important;
}

@media (max-width: 680px) {
  .footer-anpc {
    flex-wrap: nowrap !important;
  }

  .footer-anpc img {
    width: 120px !important;
    max-width: 120px !important;
  }
}



.menu-toggle {
  width: 46px;
  height: 42px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle-line {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  display: block;
  transition: transform 0.28s ease, opacity 0.22s ease, background 0.28s ease;
  transform-origin: center;
}

.menu-toggle:hover .menu-toggle-line {
  background: var(--gold);
}

.menu-toggle.is-open .menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1081px) {
  .menu-toggle {
    display: none !important;
  }
}



:root {
  --black: #f7f2e8;
  --black-soft: #ffffff;
  --white: #15110b;
  --cream: #fffaf0;
  --muted: #6f675b;
  --gold: #b98c37;
  --gold-light: #d3ad63;
  --gold-soft: rgba(185, 140, 55, 0.13);
  --border: rgba(21, 17, 11, 0.12);
}

body {
  background: #f7f2e8;
  color: #15110b;
}

.site-header {
  background: linear-gradient(to bottom, rgba(255,255,255,0.94), rgba(255,255,255,0.82), rgba(255,255,255,0.58));
  border-bottom: 1px solid rgba(21,17,11,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
}

.site-title {
  color: #15110b;
}

.primary-menu a {
  color: rgba(21,17,11,0.82);
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
  color: var(--gold);
}

.btn-outline {
  border-color: rgba(21,17,11,0.22);
  color: #15110b;
  background: rgba(255,255,255,0.62);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255,255,255,0.9);
}

.hero .btn-outline,
.page-hero .btn-outline {
  border-color: rgba(255,255,255,0.36);
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

.hero .btn-outline:hover,
.page-hero .btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #d3ad63;
}

.hero .eyebrow::before,
.page-hero .eyebrow::before {
  background: #d3ad63;
}

.hero h1,
.hero p,
.page-hero h1,
.page-hero p {
  color: #ffffff;
}

.section {
  background:
    radial-gradient(circle at 92% 6%, rgba(185,140,55,0.08), transparent 24%),
    linear-gradient(180deg, #fffaf0, #f7f2e8);
}

.dark-panel {
  background:
    radial-gradient(circle at 15% 0%, rgba(185,140,55,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff, #f7f2e8);
  border-top: 1px solid rgba(21,17,11,0.08);
  border-bottom: 1px solid rgba(21,17,11,0.08);
}

.about-text p,
.content-block p,
.section-subtitle,
.contact-box p,
.info-card p,
.venue-body p,
.testimonial p {
  color: #6f675b;
}

.service-list span,
.feature-content li,
.info-card,
.venue-card,
.testimonial,
.contact-box,
.stat {
  background: rgba(255,255,255,0.78);
  border-color: rgba(21,17,11,0.10);
  box-shadow: 0 18px 50px rgba(62,45,22,0.06);
}

.info-card:hover {
  background: rgba(255,255,255,0.96);
  border-color: rgba(185,140,55,0.38);
}

.service-list span,
.feature-content li {
  color: rgba(21,17,11,0.86);
}

.direction-card {
  background: #111111;
  border-color: rgba(185,140,55,0.18);
}

.direction-content h3,
.direction-content p {
  color: #ffffff;
}

.tag {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.86);
}

.filter-chip {
  background: rgba(255,255,255,0.76);
  border-color: rgba(21,17,11,0.12);
  color: rgba(21,17,11,0.76);
}

input,
select,
textarea {
  background: rgba(255,255,255,0.88);
  border-color: rgba(21,17,11,0.14);
  color: #15110b;
}

input::placeholder,
textarea::placeholder {
  color: #8a8173;
}

input:focus,
select:focus,
textarea:focus {
  background: #ffffff;
  border-color: var(--gold);
}

.form-consent {
  background: rgba(255,255,255,0.82);
  border-color: rgba(21,17,11,0.12);
  color: rgba(21,17,11,0.82);
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid rgba(21,17,11,0.10);
}

.footer-col h4 {
  color: #15110b;
}

.footer-col p,
.footer-col a {
  color: #6f675b;
}

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

.footer-bottom {
  border-top: 1px solid rgba(21,17,11,0.08);
  color: rgba(21,17,11,0.48);
}

.contact-line {
  border-bottom: 1px solid rgba(21,17,11,0.10);
  color: rgba(21,17,11,0.86);
}

.menu-toggle {
  border-color: rgba(21,17,11,0.18);
  background: rgba(255,255,255,0.72);
}

.menu-toggle-line {
  background: #15110b;
}

@media (max-width: 1080px) {
  .primary-menu.open {
    background: rgba(255,255,255,0.98);
    border-color: rgba(21,17,11,0.10);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  }
}



@media (min-width: 1081px) {
  .site-header {
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  .site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 120px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0.42), rgba(0,0,0,0.16), transparent);
    z-index: -1;
  }

  .site-title,
  .site-description,
  .primary-menu a {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  }

  .site-description {
    color: #d3ad63 !important;
  }

  .primary-menu a:hover,
  .primary-menu .current-menu-item a {
    color: #d3ad63 !important;
  }

  .nav-cta .btn-outline {
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.46) !important;
    background: rgba(0,0,0,0.18) !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
  }

  .nav-cta .btn-outline:hover {
    color: #d3ad63 !important;
    border-color: #d3ad63 !important;
    background: rgba(0,0,0,0.28) !important;
  }
}

/* Keep inner pages readable where hero image is also behind the menu */
.page-hero,
.hero {
  margin-top: 0;
}



html,
body {
  touch-action: manipulation;
}

a,
button,
.btn,
.menu-toggle,
.whatsapp,
input,
select,
textarea,
label {
  touch-action: manipulation;
}

@media (max-width: 680px) {
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}



@media (max-width: 1080px) {
  .site-header {
    background: transparent !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }

  .site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    height: 105px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0.46), rgba(0,0,0,0.15), transparent);
    z-index: -1;
    transition: opacity 0.28s ease;
  }

  .site-header .site-title,
  .site-header .site-description {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55);
    transition: color 0.28s ease, text-shadow 0.28s ease;
  }

  .site-header .site-description {
    color: #d3ad63 !important;
  }

  .site-header .menu-toggle {
    background: rgba(0,0,0,0.16) !important;
    border-color: rgba(255,255,255,0.38) !important;
    transition: background 0.28s ease, border-color 0.28s ease;
  }

  .site-header .menu-toggle-line {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.45);
    transition: background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease, opacity 0.22s ease;
  }

  .site-header.is-scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(21,17,11,0.08) !important;
    box-shadow: 0 14px 36px rgba(0,0,0,0.08) !important;
  }

  .site-header.is-scrolled::before {
    opacity: 0;
  }

  .site-header.is-scrolled .site-title {
    color: #15110b !important;
    text-shadow: none !important;
  }

  .site-header.is-scrolled .site-description {
    color: var(--gold) !important;
    text-shadow: none !important;
  }

  .site-header.is-scrolled .menu-toggle {
    background: rgba(255,255,255,0.9) !important;
    border-color: rgba(21,17,11,0.16) !important;
  }

  .site-header.is-scrolled .menu-toggle-line {
    background: #15110b !important;
    box-shadow: none !important;
  }

  .primary-menu.open {
    background: rgba(255,255,255,0.98) !important;
    border-color: rgba(21,17,11,0.10) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12) !important;
  }

  .primary-menu.open a {
    color: rgba(21,17,11,0.86) !important;
    text-shadow: none !important;
  }

  .primary-menu.open a:hover,
  .primary-menu.open .current-menu-item a {
    color: var(--gold) !important;
  }
}



.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
  z-index: 4;
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(211,173,99,0.35), #d3ad63, rgba(211,173,99,0.35));
  box-shadow: 0 0 14px rgba(211,173,99,0.45);
  transition: width 0.08s linear;
}

.site-header.is-scrolled .scroll-progress {
  background: rgba(21,17,11,0.08);
}

.site-header.is-scrolled .scroll-progress span {
  background: linear-gradient(90deg, rgba(185,140,55,0.25), #b98c37, rgba(185,140,55,0.25));
  box-shadow: 0 0 12px rgba(185,140,55,0.28);
}

@media (min-width: 1081px) {
  .scroll-progress {
    background: rgba(255,255,255,0.16);
  }
}



.page-hero {
  min-height: calc(70vh - 20px);
  padding-top: 100px;
}

@media (max-width: 680px) {
  .page-hero {
    padding-top: 100px;
  }
}



.site-header,
.nav,
.site-branding,
.site-title,
.site-description,
.primary-menu,
.primary-menu a,
.nav-cta,
.menu-toggle {
  backface-visibility: hidden;
}

.site-branding {
  width: 190px;
  min-width: 190px;
  min-height: 44px;
}

.site-title {
  line-height: 1;
  min-height: 30px;
}

.site-description {
  line-height: 1;
  min-height: 10px;
}

.primary-menu {
  min-height: 22px;
}

.primary-menu a {
  white-space: nowrap;
}

.nav-cta {
  width: 146px;
  min-width: 146px;
  justify-content: flex-end;
}

.loaded .site-header,
.loaded .site-branding,
.loaded .primary-menu,
.loaded .nav-cta {
  transition-property: background, box-shadow, border-color, color, text-shadow;
}

@media (max-width: 1080px) {
  .site-branding {
    width: 178px;
    min-width: 178px;
  }

  .nav-cta {
    width: auto;
    min-width: 0;
  }
}



@media (min-width: 1081px) {
  .site-header {
    transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  }

  .site-header.is-scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(21,17,11,0.08) !important;
    box-shadow: 0 14px 36px rgba(0,0,0,0.08) !important;
    backdrop-filter: blur(10px) !important;
  }

  .site-header.is-scrolled::before {
    opacity: 0 !important;
  }

  .site-header.is-scrolled .site-title {
    color: #15110b !important;
    text-shadow: none !important;
  }

  .site-header.is-scrolled .site-description {
    color: var(--gold) !important;
    text-shadow: none !important;
  }

  .site-header.is-scrolled .primary-menu a {
    color: rgba(21,17,11,0.82) !important;
    text-shadow: none !important;
  }

  .site-header.is-scrolled .primary-menu a:hover,
  .site-header.is-scrolled .primary-menu .current-menu-item a {
    color: var(--gold) !important;
  }

  .site-header.is-scrolled .nav-cta .btn-outline {
    color: #15110b !important;
    border-color: rgba(21,17,11,0.22) !important;
    background: rgba(255,255,255,0.9) !important;
    text-shadow: none !important;
  }

  .site-header.is-scrolled .nav-cta .btn-outline:hover {
    color: var(--gold) !important;
    border-color: var(--gold) !important;
    background: #ffffff !important;
  }
}



@media (min-width: 1081px) {
  .nav-cta {
    width: 176px !important;
    min-width: 176px !important;
    justify-content: flex-end !important;
  }

  .nav-cta .btn {
    white-space: nowrap !important;
    min-width: 156px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .nav-cta .btn-outline {
    line-height: 1 !important;
  }
}



.site-description {
  white-space: nowrap;
}

@media (max-width: 680px) {
  .site-branding {
    width: 205px !important;
    min-width: 205px !important;
  }

  .site-description {
    white-space: nowrap !important;
    font-size: 9px !important;
    letter-spacing: 2.2px !important;
    line-height: 1 !important;
  }

  .site-title {
    font-size: 28px !important;
  }
}

@media (max-width: 380px) {
  .site-branding {
    width: 190px !important;
    min-width: 190px !important;
  }

  .site-description {
    font-size: 8.5px !important;
    letter-spacing: 1.8px !important;
  }
}



.site-header {
  height: 82px;
  min-height: 82px;
  contain: layout paint style;
}

.nav {
  height: 82px !important;
  min-height: 82px !important;
  display: grid !important;
  grid-template-columns: 205px minmax(0, 1fr) 176px;
  align-items: center !important;
  column-gap: 22px;
}

.site-branding {
  width: 205px !important;
  min-width: 205px !important;
  max-width: 205px !important;
  height: 46px !important;
  min-height: 46px !important;
  justify-content: center;
  overflow: visible;
}

.site-title {
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 30px !important;
  line-height: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  letter-spacing: 2px !important;
  display: block;
  white-space: nowrap;
}

.site-description {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 10px !important;
  line-height: 10px !important;
  height: 10px !important;
  min-height: 10px !important;
  letter-spacing: 3px !important;
  white-space: nowrap !important;
  display: block;
}

.primary-menu {
  display: flex !important;
  justify-content: center;
  align-items: center !important;
  gap: 18px !important;
  min-height: 22px !important;
  height: 22px;
  width: 100%;
  overflow: visible;
}

.primary-menu .menu-item {
  flex: 0 0 auto;
}

.primary-menu a {
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  line-height: 18px !important;
  height: 18px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap !important;
  font-weight: 400 !important;
}

.nav-cta {
  width: 176px !important;
  min-width: 176px !important;
  max-width: 176px !important;
  height: 52px;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.nav-cta .btn {
  min-width: 156px !important;
  height: 52px !important;
  min-height: 52px !important;
  white-space: nowrap !important;
}

.scroll-progress {
  bottom: 0 !important;
}

@media (min-width: 1081px) {
  .site-header {
    height: 82px !important;
    min-height: 82px !important;
  }

  .nav {
    height: 82px !important;
    min-height: 82px !important;
  }
}

/* v70: căutarea este a patra coloană, nu un element care poate coborî pe alt rând. */
@media (min-width: 1081px) {
  .nav {
    grid-template-columns: 205px minmax(0, 1fr) 156px 42px !important;
    column-gap: 12px !important;
    flex-wrap: nowrap !important;
  }
  .primary-menu {
    gap: clamp(9px, 1vw, 16px) !important;
    min-width: 0;
    flex-wrap: nowrap !important;
  }
  .primary-menu a { font-size: clamp(11px, .9vw, 13px) !important; }
  .nav-cta {
    width: 156px !important;
    min-width: 156px !important;
    max-width: 156px !important;
  }
  .nav-cta .btn { min-width: 146px !important; padding-inline: 18px !important; }
  .search-toggle { grid-column: 4; margin: 0 !important; }
}

/* v71: panoul de căutare poate ieși sub header, fără a fi tăiat de containere. */
.site-header {
  contain: layout style !important;
  overflow: visible !important;
}
.header-search-panel {
  display: block;
  pointer-events: auto;
}
.header-search-panel[hidden] { display: none !important; }

/* v72: serviciile se citesc ca un panou ordonat, fără suprapuneri. */
@media (min-width: 1081px) {
  .primary-menu > .menu-item-has-children > .sub-menu {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
    width: min(680px, 78vw);
    min-width: 500px;
    padding: 14px;
  }
  .primary-menu > .menu-item-has-children:hover > .sub-menu,
  .primary-menu > .menu-item-has-children:focus-within > .sub-menu {
    display: grid !important;
  }
  .primary-menu .sub-menu li { min-width: 0; }
  .primary-menu .sub-menu a {
    display: flex !important;
    align-items: center;
    min-height: 48px !important;
    height: auto !important;
    padding: 11px 13px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }
}

/* Aceeași distanță vizuală deasupra și sub elementele cerute. */
@media (min-width: 681px) {
  .mission-quote-wrap {
    margin-top: 64px !important;
    margin-bottom: 0 !important;
    padding-block: 0 !important;
  }
  .mission-quote-wrap + .photo-section { padding-top: 64px !important; }
  .partner-stats-feature {
    margin-block: 0 !important;
    padding-block: 30px !important;
  }
  .partner-stats-feature .feature-image {
    margin-block: 0 !important;
  }
}

.article-promo-section { padding-block: 56px; }
.article-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(200, 164, 93, .35);
  background: linear-gradient(120deg, #17130d, #2b2113);
}
.article-promo { border-radius: 14px; overflow: hidden; }
.article-promo h2 { max-width: 760px; margin: 8px 0 12px; font: 600 clamp(30px, 4vw, 52px)/1.02 'Cormorant Garamond', serif; }
.article-promo h2 { color: #fff !important; text-shadow: none !important; }

/* v76: submeniul pornește lipit de Servicii, fără zonă moartă la hover/click. */
@media (min-width: 1081px) {
  .primary-menu > .menu-item-has-children > a {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
  }
  .primary-menu > .menu-item-has-children > a::after {
    margin-left: 1px !important;
    transform: translateY(-1px);
  }
  .primary-menu > .menu-item-has-children > .sub-menu {
    top: 100% !important;
    margin-top: 0 !important;
    z-index: 1002 !important;
  }
}

/* v78: submeniul este lizibil în headerul sticky și controlat explicit pe mobil. */
@media (min-width: 1081px) {
  .primary-menu .sub-menu,
  .site-header.is-scrolled .primary-menu .sub-menu { background: #151515 !important; }
  .primary-menu .sub-menu a,
  .site-header.is-scrolled .primary-menu .sub-menu a { color: #fff !important; }
  .primary-menu .sub-menu a:hover,
  .site-header.is-scrolled .primary-menu .sub-menu a:hover { color: var(--gold) !important; }
  .submenu-toggle { display: none !important; }
}

@media (max-width: 1080px) {
  .primary-menu.open .menu-item-has-children { position: relative; }
  .primary-menu.open .menu-item-has-children > .sub-menu {
    display: none !important;
    padding: 7px 0 7px 16px !important;
    background: #fff !important;
    border-left: 2px solid var(--gold) !important;
  }
  .primary-menu.open .menu-item-has-children.is-submenu-open > .sub-menu { display: block !important; }
  .primary-menu.open .menu-item-has-children > .sub-menu a,
  .primary-menu.open .menu-item-has-children > .sub-menu a:visited { color: #15110b !important; }
  .submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #15110b;
    font-size: 20px;
    cursor: pointer;
  }
  .submenu-toggle span { display: inline-block; transition: transform .2s ease; }
  .is-submenu-open > .submenu-toggle span { transform: rotate(180deg); }
  .primary-menu.open .menu-item-has-children > a { padding-right: 52px !important; }
  body.home .hero-slide .hero-slide-title { color: #fff !important; }
  .process-grid { grid-template-columns: 1fr !important; }
  .cards-grid { gap: 22px !important; }
  .cards-grid .info-card { min-height: 0; }
}

/* Ritm constant între blocurile paginilor de servicii, pe orice ecran. */
.narrow-content + .cards-grid,
.cards-grid + .narrow-content { margin-top: 34px; }
.cards-grid .info-card { height: 100%; }
.article-promo p { max-width: 680px; color: rgba(255,255,255,.76); line-height: 1.65; }
@media (max-width: 680px) { .article-promo { align-items: flex-start; flex-direction: column; } }

/* v73: rezultate de căutare lizibile și spațiu real în jurul imaginii de statistici. */
.editorial-hero h1,
.search-results .editorial-hero h1,
body.search .editorial-hero h1 { color: #fff !important; }
body.search .editorial-hero { color: #fff; }
.hero-slider-toggle,
[data-slider-toggle] { display: none !important; }
@media (min-width: 681px) {
  .partner-stats-feature {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding-block: 0 !important;
  }
}

/* Final v74 override: this controls the exact existing Elementor block. */
@media (min-width: 681px) {
  .feature-section.partner-stats-feature {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    height: 72px !important;
    min-height: 72px !important;
    contain: none;
  }

  .nav {
    height: 72px !important;
    min-height: 72px !important;
    display: flex !important;
    grid-template-columns: none !important;
  }

  .site-branding {
    width: 205px !important;
    min-width: 205px !important;
    max-width: 205px !important;
    height: 42px !important;
    min-height: 42px !important;
  }

  .site-title {
    font-size: 28px !important;
    line-height: 28px !important;
    height: 28px !important;
  }

  .site-description {
    font-size: 9px !important;
    line-height: 9px !important;
    height: 9px !important;
    letter-spacing: 2.2px !important;
  }

  .primary-menu {
    height: auto !important;
    min-height: auto !important;
    display: none !important;
    justify-content: flex-start;
    gap: 0 !important;
  }

  .primary-menu.open {
    display: grid !important;
  }

  .primary-menu a {
    height: auto !important;
    line-height: 1.4 !important;
  }

  .nav-cta {
    display: none !important;
  }
}



@media (max-width: 1080px) {
  .primary-menu.open {
    top: 82px !important;
    left: 4% !important;
    right: 4% !important;
    display: grid !important;
    gap: 0 !important;
    padding: 18px 22px !important;
    border-radius: 24px !important;
    background: rgba(255,255,255,0.98) !important;
    border: 1px solid rgba(21,17,11,0.10) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12) !important;
  }

  .primary-menu.open .menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(21,17,11,0.08);
  }

  .primary-menu.open .menu-item:last-child {
    border-bottom: 0;
  }

  .primary-menu.open a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 4px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
    color: rgba(21,17,11,0.92) !important;
    text-shadow: none !important;
  }

  .primary-menu.open a:hover,
  .primary-menu.open .current-menu-item a {
    color: var(--gold) !important;
  }
}

@media (max-width: 680px) {
  .primary-menu.open {
    top: 76px !important;
    padding: 16px 20px !important;
  }

  .primary-menu.open a {
    min-height: 50px !important;
    font-size: 16px !important;
  }
}



@media (max-width: 1080px) {
  .primary-menu {
    transform-origin: top center;
  }

  .primary-menu.open {
    padding: 14px 0 !important;
    animation: mobileMenuReveal 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
    overflow: hidden;
  }

  .primary-menu.open .menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(21,17,11,0.10) !important;
    opacity: 0;
    transform: translateY(-8px);
    animation: mobileMenuItemFade 0.34s ease forwards;
  }

  .primary-menu.open .menu-item:nth-child(1) { animation-delay: 0.03s; }
  .primary-menu.open .menu-item:nth-child(2) { animation-delay: 0.06s; }
  .primary-menu.open .menu-item:nth-child(3) { animation-delay: 0.09s; }
  .primary-menu.open .menu-item:nth-child(4) { animation-delay: 0.12s; }
  .primary-menu.open .menu-item:nth-child(5) { animation-delay: 0.15s; }
  .primary-menu.open .menu-item:nth-child(6) { animation-delay: 0.18s; }
  .primary-menu.open .menu-item:nth-child(7) { animation-delay: 0.21s; }
  .primary-menu.open .menu-item:nth-child(8) { animation-delay: 0.24s; }
  .primary-menu.open .menu-item:nth-child(9) { animation-delay: 0.27s; }

  .primary-menu.open .menu-item:last-child {
    border-bottom: 0 !important;
  }

  .primary-menu.open a {
    padding: 14px 24px !important;
    min-height: 52px !important;
  }
}

@keyframes mobileMenuReveal {
  from {
    opacity: 0;
    transform: translateY(-10px) scaleY(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes mobileMenuItemFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (max-width: 1080px) {
  .primary-menu.open {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .primary-menu.open .menu-item {
    position: relative;
    border-bottom: 0 !important;
  }

  .primary-menu.open .menu-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(
      90deg,
      rgba(21,17,11,0.08),
      rgba(185,140,55,0.24),
      rgba(21,17,11,0.08)
    );
  }

  .primary-menu.open .menu-item:last-child::after {
    display: none;
  }

  .primary-menu.open a {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 680px) {
  .primary-menu.open a {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}



@media (max-width: 1080px) {
  .primary-menu.open {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .primary-menu.open .menu-item {
    position: relative !important;
    width: 100% !important;
    border-bottom: 0 !important;
  }

  .primary-menu.open .menu-item::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 1px !important;
    display: block !important;
    background: linear-gradient(
      90deg,
      rgba(21,17,11,0.10),
      rgba(185,140,55,0.28),
      rgba(21,17,11,0.10)
    ) !important;
  }

  .primary-menu.open .menu-item:last-child::after {
    display: none !important;
  }

  .primary-menu.open a {
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 680px) {
  .primary-menu.open {
    left: 4% !important;
    right: 4% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .primary-menu.open a {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}



@media (max-width: 1080px) {
  .primary-menu.open {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: stretch !important;
    align-items: stretch !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
    padding: 14px 0 !important;
    gap: 0 !important;
  }

  .primary-menu.open .menu-item {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 0 !important;
    position: relative !important;
    box-sizing: border-box !important;
  }

  .primary-menu.open .menu-item::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: auto !important;
    height: 1px !important;
    display: block !important;
    background: linear-gradient(
      90deg,
      rgba(21,17,11,0.11) 0%,
      rgba(185,140,55,0.30) 50%,
      rgba(21,17,11,0.11) 100%
    ) !important;
    pointer-events: none !important;
  }

  .primary-menu.open .menu-item:last-child::after {
    display: none !important;
  }

  .primary-menu.open .menu-item > a {
    display: flex !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    padding: 14px 24px !important;
    min-height: 52px !important;
  }
}

@media (max-width: 680px) {
  .primary-menu.open {
    left: 4% !important;
    right: 4% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .primary-menu.open .menu-item > a {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}

.site-footer,
.site-footer .footer-col h4,
.site-footer .footer-col p,
.site-footer .footer-col a,
.site-footer .footer-bottom { color:#000!important; }
.site-footer .footer-col a:hover { color:var(--gold)!important; }

select {
  padding-left:16px!important;
  padding-right:52px!important;
  background-position:calc(100% - 22px) center!important;
  text-align:left;
  text-align-last:left;
  appearance:auto;
  -webkit-appearance:menulist;
}

.info-card.image-card { padding:0!important; overflow:hidden; }
.info-card-image {
  width:100%;
  height:190px;
  background-size:cover;
  background-position:center;
  border-bottom:1px solid rgba(21,17,11,.08);
}
.info-card-body { padding:30px 32px 34px; }

.palm-signature {
  margin:28px 0 22px;
  font-family:"Brush Script MT","Segoe Script","Snell Roundhand",cursive;
  font-size:clamp(44px,6vw,72px);
  line-height:1;
  color:var(--gold);
  transform:rotate(-2deg);
  letter-spacing:1px;
  text-shadow:0 8px 22px rgba(185,140,55,.14);
}

@media(max-width:680px){
  .info-card-image{height:210px;}
  .info-card-body{padding:26px 26px 30px;}
  .palm-signature{font-size:54px;}
  select{padding-right:54px!important;}
}


/* v34 final refinements */
.catering-hero-extra-space .hero-actions {
  margin-bottom: 34px;
}

.hero-slide {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}

.hero-slide.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.hero-slider-dot {
  width: 38px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  padding: 0;
  transition: width .25s ease, background .25s ease, opacity .25s ease;
}

.hero-slider-dot.is-active {
  width: 58px;
  background: var(--gold-light);
  box-shadow: 0 0 16px rgba(211,173,99,.38);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-logo-main {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #000;
}

.footer-logo-small {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 7px;
  white-space: nowrap;
}

.palm-signature {
  font-family: "Segoe Script", "Snell Roundhand", "Brush Script MT", cursive !important;
  font-weight: 300 !important;
  font-size: clamp(42px, 5.2vw, 66px) !important;
  color: #a77a2c !important;
  letter-spacing: .5px !important;
  text-shadow: none !important;
  opacity: .9;
}

.info-card.image-card {
  min-height: 0;
}

.info-card.image-card .info-card-body h3 {
  margin-bottom: 14px;
}

@media (max-width: 680px) {
  .catering-hero-extra-space .hero-actions {
    margin-bottom: 42px;
  }
  .hero-slider-controls {
    margin-top: 20px;
  }
  .footer-logo-main {
    font-size: 28px;
  }
}


/* v35 refinements */
@media (min-width: 1081px) {
  .primary-menu .current-menu-item > a {
    position: relative;
  }

  .primary-menu .current-menu-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 1px;
    background: currentColor;
    opacity: 0.95;
    transform: scaleX(1);
    transform-origin: center;
  }

  .site-header.is-scrolled .primary-menu .current-menu-item > a::after {
    background: var(--gold);
  }
}

@media (max-width: 1080px) {
  .primary-menu.open .current-menu-item > a {
    position: relative;
    color: var(--gold) !important;
  }

  .primary-menu.open .current-menu-item > a::before {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--gold);
    margin-right: 12px;
    flex: 0 0 auto;
  }
}

.service-list.check-list span {
  position: relative;
  padding-left: 44px !important;
}

.service-list.check-list span::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(185,140,55,0.13);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.contact-box select[name="tip_eveniment"] {
  padding-right: 64px !important;
  background-position: calc(100% - 30px) center !important;
}

@media (min-width: 1081px) {
  .contact-box select[name="tip_eveniment"] {
    padding-right: 68px !important;
    background-position: calc(100% - 34px) center !important;
  }
}


/* v36 mobile slider, stable controls, form fields and solid mobile menu */
.hero-slider {
  position: relative;
  min-height: 330px;
}

.hero-slide {
  width: 100%;
}

.hero-slider-controls {
  min-height: 24px;
  margin-top: 24px !important;
}

@media (min-width: 1081px) {
  .hero-slider {
    min-height: 330px;
  }

  .hero-slider-controls {
    margin-top: 24px !important;
  }
}

@media (max-width: 680px) {
  .hero-slider {
    min-height: 390px;
    touch-action: pan-y;
  }

  .hero-slide h1 {
    min-height: 150px;
  }

  .hero-slide p {
    min-height: 178px;
  }

  .hero-actions {
    min-height: 118px;
    align-items: flex-start;
  }

  .hero-slider-controls {
    margin-top: 18px !important;
    min-height: 24px;
  }

  .hero-slider-dot {
    width: 42px;
    height: 3px;
  }

  .hero-slider-dot.is-active {
    width: 58px;
  }

  .contact-box form input:not([type="checkbox"]),
  .contact-box form select {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    border-radius: 16px !important;
    line-height: 56px !important;
  }

  .contact-box form input[type="date"] {
    min-height: 56px !important;
    height: 56px !important;
    line-height: normal !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .contact-box form textarea {
    min-height: 150px !important;
    height: auto !important;
    max-height: none !important;
    line-height: 1.6 !important;
  }

  .contact-box form .form-consent {
    min-height: auto !important;
  }
}

.palm-signature {
  color: #8f6722 !important;
  opacity: 1 !important;
  font-weight: 400 !important;
  letter-spacing: .2px !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.45) !important;
}

.palm-signature::first-letter {
  font-size: 1.18em;
  color: #7d581b;
}

@media (max-width: 1080px) {
  body.mobile-menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .primary-menu.open {
    position: fixed !important;
    top: 76px !important;
    left: 4% !important;
    right: 4% !important;
    width: auto !important;
    max-height: calc(100vh - 96px) !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    -webkit-overflow-scrolling: touch;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .primary-menu.open .menu-item,
  .primary-menu.open .menu-item > a {
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .menu-toggle {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 680px) {
  .primary-menu.open {
    top: 76px !important;
  }
}


/* v37 hero spacing and slider control alignment */
body.home .hero-content {
  padding-top: 60px !important;
}

/* Keep slider controls at the same distance from buttons on both slides */
.hero-slider {
  min-height: 330px !important;
}

.hero-actions {
  margin-top: 0 !important;
}

.hero-slider-controls {
  margin-top: 22px !important;
}

/* Inner pages: less space between top header line and small gold eyebrow */
.page-hero {
  padding-top: 82px !important;
}

@media (min-width: 1081px) {
  body.home .hero-content {
    padding-top: 60px !important;
  }

  .hero-slider {
    min-height: 330px !important;
  }

  .hero-slide h1 {
    min-height: 190px;
  }

  .hero-slide p {
    min-height: 110px;
  }

  .hero-slider-controls {
    margin-top: 22px !important;
  }

  .page-hero {
    padding-top: 82px !important;
  }
}

@media (max-width: 680px) {
  /* Home: exactly 60px from header/progress line to the gold eyebrow */
  body.home .hero {
    padding-top: 72px !important;
  }

  body.home .hero-content {
    padding-top: 60px !important;
  }

  /* Inner pages: reduce space above the small gold page label */
  .page-hero {
    padding-top: 78px !important;
    min-height: 62vh !important;
  }

  .page-hero .hero-content {
    padding-top: 26px !important;
  }

  .page-hero .eyebrow {
    margin-bottom: 18px !important;
  }

  .hero-slider {
    min-height: 386px !important;
  }

  .hero-slide h1 {
    min-height: 150px !important;
  }

  .hero-slide p {
    min-height: 178px !important;
  }

  .hero-actions {
    min-height: 118px !important;
    margin-top: 0 !important;
  }

  .hero-slider-controls {
    margin-top: 18px !important;
  }
}


/* v38 clearer handwritten signature on About page */
.palm-signature {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 30px 0 22px;
  font-family: "Lucida Handwriting", "Segoe Script", "Snell Roundhand", "Brush Script MT", cursive !important;
  font-weight: 400 !important;
  font-size: clamp(40px, 5.6vw, 68px) !important;
  line-height: 1;
  color: #8d6521 !important;
  letter-spacing: 0.2px !important;
  text-shadow: none !important;
  transform: rotate(-1.5deg);
  opacity: 1 !important;
}

.palm-signature .sig-the {
  font-size: 0.86em;
  font-weight: 400;
}

.palm-signature .sig-palm {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.4px;
}

.palm-signature .sig-palm::first-letter {
  font-size: 1.24em;
  font-weight: 500;
  margin-right: 1px;
  color: #7c571b;
}

@media (max-width: 680px) {
  .palm-signature {
    gap: 8px;
    font-size: 52px !important;
  }
}


/* v39 refinements: date placeholder, premium signature, mobile WhatsApp */
.contact-box input.date-field {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.contact-box input.date-field::placeholder {
  color: #8a8173;
  opacity: 1;
}

.palm-signature {
  font-family: "Parisienne", "Great Vibes", "Edwardian Script ITC", "Snell Roundhand", cursive !important;
  font-size: clamp(52px, 7vw, 84px) !important;
  font-weight: 400 !important;
  color: #8b6220 !important;
  letter-spacing: 0 !important;
  line-height: 0.95 !important;
  transform: rotate(-2deg) !important;
  opacity: 1 !important;
  text-shadow: 0 10px 26px rgba(139,98,32,0.12) !important;
}

.palm-signature .sig-the {
  font-size: 0.82em !important;
  font-weight: 400 !important;
}

.palm-signature .sig-palm {
  font-size: 1em !important;
  font-weight: 400 !important;
}

.palm-signature .sig-palm::first-letter {
  font-size: 1.28em !important;
  font-weight: 400 !important;
  color: #765018 !important;
  margin-right: 2px;
}

@media (max-width: 680px) {
  .contact-box form input.date-field {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    width: 100% !important;
    line-height: normal !important;
  }

  .palm-signature {
    font-size: 64px !important;
  }

  .whatsapp {
    left: 18px !important;
    right: auto !important;
    bottom: 18px !important;
    min-width: 92px !important;
    width: auto !important;
    height: 38px !important;
    padding: 0 13px !important;
    font-size: 11px !important;
    border-radius: 999px !important;
  }
}


/* v40 luxury loader + marquee refinements */
.luxury-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(185,140,55,0.16), transparent 28%),
    linear-gradient(135deg, #0c0a07, #16120b 48%, #050403);
  color: #fff;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility .65s ease;
}

.no-js .luxury-loader {
  display: none;
}

.luxury-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.luxury-loader-inner {
  text-align: center;
  transform: translateY(0);
  animation: loaderFloat 1.2s ease both;
}

.luxury-loader-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 7vw, 74px);
  line-height: 1;
  letter-spacing: 5px;
  color: #fff;
  text-shadow: 0 18px 42px rgba(0,0,0,.35);
}

.luxury-loader-text {
  margin-top: 15px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d3ad63;
}

.luxury-loader-line {
  width: min(260px, 62vw);
  height: 1px;
  margin: 22px auto 0;
  background: rgba(255,255,255,.16);
  overflow: hidden;
}

.luxury-loader-line span {
  display: block;
  height: 100%;
  width: 42%;
  background: linear-gradient(90deg, transparent, #d3ad63, transparent);
  animation: loaderLine 1.1s ease-in-out infinite;
}

@keyframes loaderLine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

@keyframes loaderFloat {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.venues-marquee,
.home-premium-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid rgba(185,140,55,.22);
  border-bottom: 1px solid rgba(185,140,55,.22);
  background:
    linear-gradient(90deg, rgba(255,250,240,.96), rgba(255,255,255,.86), rgba(255,250,240,.96));
}

.venues-marquee {
  margin-top: 42px;
  border-radius: 0;
}

.home-premium-marquee {
  margin: 0;
  z-index: 5;
}

.venues-marquee::before,
.venues-marquee::after,
.home-premium-marquee::before,
.home-premium-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.venues-marquee::before,
.home-premium-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fffaf0, transparent);
}

.venues-marquee::after,
.home-premium-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fffaf0, transparent);
}

.venues-marquee-track,
.home-premium-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: palmMarquee 30s linear infinite;
  will-change: transform;
}

.home-premium-marquee-track {
  animation-duration: 34s;
}

.venues-marquee span,
.home-premium-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 2.4vw, 36px);
  line-height: 1;
  color: #15110b;
  white-space: nowrap;
  letter-spacing: .2px;
}

.venues-marquee span::after,
.home-premium-marquee span::after {
  content: "✦";
  color: var(--gold);
  font-size: .55em;
  margin-left: 18px;
}

@keyframes palmMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.venue-body p {
  min-height: 72px;
}

@media (max-width: 680px) {
  .luxury-loader-mark {
    letter-spacing: 3px;
  }

  .luxury-loader-text {
    letter-spacing: 3px;
  }

  .venues-marquee::before,
  .venues-marquee::after,
  .home-premium-marquee::before,
  .home-premium-marquee::after {
    width: 58px;
  }

  .venues-marquee span,
  .home-premium-marquee span {
    padding: 17px 20px;
    font-size: 25px;
  }

  .venue-body p {
    min-height: auto;
  }
}


/* v41 loader only Home + double duration */
.luxury-loader {
  transition: opacity 1.3s ease, visibility 1.3s ease !important;
}

.luxury-loader-inner {
  animation-duration: 2.4s !important;
}

.luxury-loader-line span {
  animation-duration: 2.2s !important;
}


/* v42 contact map + elegant card subcategories */
.elegant-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 24px 0 30px;
  max-width: 520px;
}

.elegant-list span {
  position: relative;
  display: block;
  padding-left: 22px;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.elegant-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 1px;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(211,173,99,0.28);
}

.contact-map-section {
  padding-top: 0;
}

.contact-map {
  margin-top: 42px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(21,17,11,0.10);
  box-shadow: 0 24px 70px rgba(62,45,22,0.08);
  background: #ffffff;
}

.contact-map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: saturate(0.82) contrast(1.02);
}

@media (max-width: 680px) {
  .elegant-list {
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 22px 0 28px;
  }

  .elegant-list span {
    font-size: 13px;
  }

  .contact-map {
    border-radius: 24px;
    margin-top: 32px;
  }

  .contact-map iframe {
    height: 360px;
  }
}


/* v44 refinements */
.elegant-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 11px 22px !important;
}

.contact-map-section {
  padding-top: 36px !important;
}

.contact-map {
  box-shadow:
    0 34px 90px rgba(62,45,22,0.16),
    0 14px 34px rgba(185,140,55,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.55) !important;
}

.contact-map iframe {
  min-height: 440px;
}

@media (max-width: 680px) {
  .elegant-list {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .contact-map-section {
    padding-top: 18px !important;
  }

  .contact-map {
    box-shadow:
      0 24px 58px rgba(62,45,22,0.16),
      0 10px 24px rgba(185,140,55,0.10) !important;
  }
}


/* v46 footer cleanup + centered select arrow */
.contact-box select[name="tip_eveniment"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 72px !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #15110b 50%),
    linear-gradient(135deg, #15110b 50%, transparent 50%) !important;
  background-position:
    calc(100% - 34px) 50%,
    calc(100% - 26px) 50% !important;
  background-size:
    8px 8px,
    8px 8px !important;
  background-repeat: no-repeat !important;
}

.contact-box select[name="tip_eveniment"]:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%) !important;
}

@media (min-width: 1081px) {
  .contact-box select[name="tip_eveniment"] {
    padding-right: 78px !important;
    background-position:
      calc(100% - 38px) 50%,
      calc(100% - 30px) 50% !important;
  }
}

@media (max-width: 680px) {
  .contact-box select[name="tip_eveniment"] {
    padding-right: 68px !important;
    background-position:
      calc(100% - 34px) 50%,
      calc(100% - 26px) 50% !important;
  }
}


/* v47 SAL/SOL restored in footer */
.footer-anpc {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 16px !important;
}

.footer-anpc a {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  line-height: 0 !important;
}

.footer-anpc img {
  width: 120px !important;
  max-width: 120px !important;
  height: auto !important;
  border-radius: 8px !important;
  border: 1px solid rgba(21,17,11,0.12) !important;
  background: #ffffff !important;
  transition: transform .25s ease, box-shadow .25s ease;
}

.footer-anpc a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

@media (max-width: 680px) {
  .footer-anpc {
    gap: 8px !important;
  }

  .footer-anpc img {
    width: 116px !important;
    max-width: 116px !important;
  }
}


/* v48 premium network statement + Romania handwriting */
.home-romania-handwriting {
  margin-top: -14px;
  margin-bottom: 28px;
  font-family: "Parisienne", "Great Vibes", "Edwardian Script ITC", "Snell Roundhand", cursive;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  color: #d3ad63;
  text-shadow: 0 8px 26px rgba(0,0,0,0.28);
  transform: rotate(-1.3deg);
}

.premium-network-statement {
  padding: 72px 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(185,140,55,0.12), transparent 35%),
    linear-gradient(180deg, #fffaf0, #ffffff);
  overflow: hidden;
}

.premium-network-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  border-top: 1px solid rgba(185,140,55,0.28);
  border-bottom: 1px solid rgba(185,140,55,0.28);
}

.premium-network-inner::before,
.premium-network-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  width: min(220px, 22vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,140,55,0.55), transparent);
}

.premium-network-inner::before {
  left: 0;
}

.premium-network-inner::after {
  right: 0;
}

.premium-network-inner span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  color: #15110b;
  letter-spacing: -0.8px;
}

.premium-network-inner span::before,
.premium-network-inner span::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.34em;
  margin: 0 20px;
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .home-romania-handwriting {
    margin-top: -6px;
    margin-bottom: 24px;
    font-size: 42px;
  }

  .premium-network-statement {
    padding: 54px 0;
  }

  .premium-network-inner {
    min-height: 116px;
  }

  .premium-network-inner::before,
  .premium-network-inner::after {
    width: 54px;
  }

  .premium-network-inner span {
    padding: 0 14px;
    font-size: 38px;
    line-height: 1.08;
  }

  .premium-network-inner span::before,
  .premium-network-inner span::after {
    margin: 0 10px;
  }
}


/* v49 mobile Home slider equalization */
@media (max-width: 680px) {
  body.home .hero-content {
    display: flex;
    flex-direction: column;
  }

  body.home .hero-slider {
    min-height: 438px !important;
    height: 438px !important;
    display: block;
    position: relative;
    overflow: hidden;
  }

  body.home .hero-slide {
    position: absolute;
    inset: 0;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
    pointer-events: none;
  }

  body.home .hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.home .hero-slide .eyebrow {
    min-height: 16px !important;
    margin-bottom: 22px !important;
  }

  body.home .hero-slide h1 {
    min-height: 156px !important;
    height: 156px !important;
    margin-bottom: 24px !important;
    display: flex;
    align-items: flex-start;
  }

  body.home .hero-slide p {
    min-height: 140px !important;
    height: 140px !important;
    margin-bottom: 0 !important;
    overflow: hidden;
  }

  body.home .home-romania-handwriting {
    min-height: 50px !important;
    height: 50px !important;
    margin-top: 18px !important;
    margin-bottom: 0 !important;
  }

  body.home .hero-actions {
    min-height: 118px !important;
    height: 118px !important;
    margin-top: 0 !important;
    align-items: flex-start !important;
  }

  body.home .hero-slider-controls {
    margin-top: 18px !important;
    min-height: 24px !important;
    height: 24px !important;
  }
}

@media (max-width: 390px) {
  body.home .hero-slider {
    min-height: 468px !important;
    height: 468px !important;
  }

  body.home .hero-slide h1 {
    min-height: 176px !important;
    height: 176px !important;
  }

  body.home .hero-slide p {
    min-height: 152px !important;
    height: 152px !important;
  }
}


/* v50 map border + desktop header stability at 100% zoom */
.contact-map {
  border: 6px solid #ffffff !important;
  outline: 1px solid rgba(185,140,55,0.18);
  box-shadow:
    0 34px 90px rgba(62,45,22,0.16),
    0 14px 34px rgba(185,140,55,0.10),
    0 0 0 1px rgba(255,255,255,0.75) !important;
}

/* Give the desktop navigation enough space at normal 100% browser zoom */
@media (min-width: 1081px) {
  .nav {
    width: min(1440px, 96%) !important;
    grid-template-columns: 205px minmax(760px, 1fr) 176px !important;
    column-gap: 18px !important;
  }

  .primary-menu {
    gap: clamp(10px, 1vw, 18px) !important;
    justify-content: center !important;
  }

  .primary-menu a {
    font-size: clamp(12px, 0.82vw, 13px) !important;
    letter-spacing: -0.1px !important;
  }

  .site-branding {
    width: 205px !important;
    min-width: 205px !important;
    max-width: 205px !important;
  }

  .nav-cta {
    width: 176px !important;
    min-width: 176px !important;
    max-width: 176px !important;
  }
}

/* On medium desktop widths, slightly compact menu so nothing overlaps header text */
@media (min-width: 1081px) and (max-width: 1320px) {
  .nav {
    grid-template-columns: 190px minmax(660px, 1fr) 160px !important;
    column-gap: 12px !important;
  }

  .site-branding {
    width: 190px !important;
    min-width: 190px !important;
    max-width: 190px !important;
  }

  .site-title {
    font-size: 28px !important;
    letter-spacing: 1.6px !important;
  }

  .site-description {
    font-size: 9px !important;
    letter-spacing: 2.2px !important;
  }

  .primary-menu {
    gap: 10px !important;
  }

  .primary-menu a {
    font-size: 12px !important;
  }

  .nav-cta {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
  }

  .nav-cta .btn {
    min-width: 146px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 13px !important;
  }
}

/* Keep contact button safe on narrower desktop; do not allow wrapping */
.nav-cta .btn,
.primary-menu a {
  white-space: nowrap !important;
}


/* v51 desktop Home hero spacing fix for 100% browser zoom */
@media (min-width: 1081px) {
  body.home .hero {
    align-items: flex-start !important;
    padding-top: 82px !important;
    min-height: 100vh !important;
  }

  body.home .hero-content {
    padding-top: 96px !important;
  }

  body.home .hero-slide .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 26px !important;
  }
}

/* Extra safety for common laptop / non-maximized desktop widths */
@media (min-width: 1081px) and (max-width: 1500px) {
  body.home .hero {
    padding-top: 82px !important;
  }

  body.home .hero-content {
    padding-top: 112px !important;
  }
}

/* If viewport height is smaller, keep enough header clearance without crushing content */
@media (min-width: 1081px) and (max-height: 760px) {
  body.home .hero-content {
    padding-top: 92px !important;
  }

  body.home .hero-slide h1 {
    font-size: clamp(52px, 5.9vw, 88px) !important;
  }

  body.home .hero-slide p {
    font-size: 18px !important;
    line-height: 1.6 !important;
  }
}


/* v52 fixed inner-page hero spacing + elegant quotes */
@media (min-width: 1081px) {
  body:not(.home) .page-hero {
    min-height: 640px !important;
    padding-top: 82px !important;
    align-items: flex-start !important;
  }

  body:not(.home) .page-hero .hero-content {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  body:not(.home) .page-hero .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }

  body:not(.home) .page-hero h1 {
    margin-bottom: 28px !important;
  }

  body:not(.home) .page-hero p {
    margin-bottom: 40px !important;
  }

  body:not(.home) .page-hero .hero-actions {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: 52px !important;
  }
}

.page-quote-section {
  position: relative;
  padding: 34px 0 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(185,140,55,0.08), transparent 38%),
    linear-gradient(180deg, #fffaf0, #ffffff);
  border-bottom: 1px solid rgba(21,17,11,0.06);
}

.page-quote {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.12;
  font-weight: 500;
  color: #15110b;
  letter-spacing: -0.4px;
}

.page-quote::before,
.page-quote::after {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  margin: 0 18px 10px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.72;
}

@media (max-width: 680px) {
  .page-quote-section {
    padding: 28px 0 32px;
  }

  .page-quote {
    font-size: 30px;
    line-height: 1.16;
  }

  .page-quote::before,
  .page-quote::after {
    width: 28px;
    margin: 0 10px 8px;
  }
}


/* v53 Home hero spacing aligned with inner pages */
@media (min-width: 1081px) {
  body.home .hero {
    align-items: flex-start !important;
    padding-top: 82px !important;
    min-height: 100vh !important;
  }

  body.home .hero-content {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  body.home .hero-slide .eyebrow {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }

  body.home .hero-slide h1 {
    margin-bottom: 28px !important;
  }

  body.home .hero-slide p {
    margin-bottom: 0 !important;
  }

  body.home .home-romania-handwriting {
    margin-top: 22px !important;
    margin-bottom: 32px !important;
  }

  body.home .hero-actions {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: 52px !important;
  }

  body.home .hero-slider-controls {
    margin-top: 22px !important;
  }
}

/* Safety for smaller desktop heights */
@media (min-width: 1081px) and (max-height: 760px) {
  body.home .hero-content {
    padding-top: 40px !important;
  }
}





/* v57 restore permanent mobile WhatsApp visibility on Home */
@media (max-width: 680px) {
  body.home .whatsapp {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

/* v58 WordPress integration, accessibility and editable components */

.elementor-widget-the-palm-code,
.elementor-widget-the-palm-code > .elementor-widget-container {
  width: 100%;
  max-width: none;
}

.elementor-widget-the-palm-code > .elementor-widget-container {
  margin: 0;
  padding: 0;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  z-index: 100000;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: #050505;
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.fade-up {
  opacity: 1 !important;
  transform: none !important;
}

.fade-up.is-pending:not(.show) {
  opacity: 0 !important;
  transform: translateY(28px) !important;
}

.fade-up.is-pending.show {
  opacity: 1 !important;
  transform: none !important;
}

.hero-slide .hero-slide-title {
  margin-bottom: 30px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 8vw, 118px);
  line-height: .88;
  font-weight: 600;
  letter-spacing: -2px;
}

/* v61: slide-ul „Locațiile frumoase” trebuie să rămână lizibil pe desktop. */
@media (min-width: 681px) {
  body.home .hero-slide .hero-slide-title {
    color: #fff !important;
  }
}

/* v62: galerie de proiecte, cu fotografii de formate diferite afișate unitar. */
.narrow-content { max-width: 860px; margin: 0 auto; }
.narrow-content > * + * { margin-top: 18px; }
.process-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:34px; }
.process-grid article { padding:26px; border:1px solid rgba(30,25,18,.13); background:#fff; }
.process-grid span { display:block; margin-bottom:18px; color:var(--accent,#b9924e); font:600 14px/1 Inter,sans-serif; letter-spacing:.11em; }
.process-grid h3 { margin:0 0 10px; }
.process-grid p { margin:0; }
.photo-section { padding-top:20px; }
.the-palm-photo-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.the-palm-photo-grid img { display:block; width:100%; aspect-ratio:4/3; object-fit:cover; object-position:center; border-radius:2px; }
.the-palm-photo-grid--gallery { grid-template-columns:repeat(4,minmax(0,1fr)); }
.the-palm-photo-grid--gallery img { aspect-ratio:1/1; }
@media (max-width:900px) { .process-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.the-palm-photo-grid--gallery{grid-template-columns:repeat(3,minmax(0,1fr));} }
@media (max-width:620px) { .process-grid,.the-palm-photo-grid,.the-palm-photo-grid--gallery{grid-template-columns:repeat(2,minmax(0,1fr));}.process-grid article{padding:20px;}.the-palm-photo-grid img{aspect-ratio:1/1;} }

/* v63: păstrează același ritm vizual deasupra și sub accentele de conținut. */
.mission-quote-wrap { padding-block: 72px; }
.partner-stats-feature { margin-block: 72px; }
@media (max-width:680px) { .mission-quote-wrap { padding-block: 48px; } .partner-stats-feature { margin-block: 48px; } }

.hero-slider-toggle {
  min-width: 68px;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  color: #fff;
  font: 600 11px/1 Inter, sans-serif;
  cursor: pointer;
}

body.home .hero-slider-controls {
  height: auto !important;
  min-height: 32px !important;
  flex-wrap: wrap;
}

/* v69: ritm egal în blocurile editoriale de pe desktop. */
@media (min-width: 681px) {
  .mission-quote-wrap {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .partner-stats-feature .feature-image {
    margin-top: 28px;
    margin-bottom: 28px;
  }
}

.site-branding-image,
.site-branding-image .custom-logo-link {
  display: flex;
  align-items: center;
  width: 205px;
  height: 58px;
}

.site-branding-image .custom-logo {
  width: auto;
  max-width: 205px;
  max-height: 58px;
  object-fit: contain;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-logo-main {
  color: #15110b;
}

.site-footer .footer-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: min(220px, 100%);
  height: auto;
}

.site-footer .footer-logo .custom-logo {
  width: auto;
  max-width: 220px;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 16px;
}

.footer-socials:empty {
  display: none;
}

.footer-widget > :last-child {
  margin-bottom: 0;
}

.form-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field > span {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15px;
}

.the-palm-contact-form {
  position: relative;
}

.the-palm-cf7-form .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.the-palm-cf7-form .wpcf7-form p {
  margin: 0;
}

.the-palm-cf7-form .wpcf7-form label {
  display: grid;
  gap: 8px;
  color: rgba(21,17,11,.82);
  font-size: 13px;
  font-weight: 600;
}

.the-palm-cf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.the-palm-cf7-form .wpcf7-submit {
  width: auto;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  cursor: pointer;
  font-weight: 600;
}

.the-palm-cf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
}

.the-palm-cf7-form .wpcf7-response-output {
  margin: 0 !important;
  padding: 14px 16px !important;
  border-radius: 14px;
}

.the-palm-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.form-notice-error {
  border: 1px solid rgba(255,120,120,.45);
  background: rgba(130,20,20,.22);
  color: #ffe8e8;
}

.map-consent {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 30%, rgba(200,164,93,.18), transparent 38%),
    linear-gradient(135deg, #fffaf0, #fff);
}

.map-consent-inner {
  max-width: 590px;
  text-align: center;
}

.map-consent-inner p {
  margin-bottom: 20px;
  color: #3c3328;
  font-size: 16px;
  line-height: 1.7;
}

.map-consent .btn-outline {
  border-color: rgba(21,17,11,.3);
  background: #15110b;
  color: #fff;
}

.editorial-main {
  min-height: 70vh;
  padding-bottom: 100px;
}

.editorial-hero {
  padding: 170px 0 80px;
  background:
    radial-gradient(circle at 25% 20%, rgba(200,164,93,.14), transparent 30%),
    linear-gradient(180deg, #080808, #111);
}

.editorial-hero h1 {
  max-width: 980px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .95;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 70px;
}

.editorial-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,.04);
}

.editorial-card-image,
.editorial-card-image img,
.editorial-featured img {
  display: block;
  width: 100%;
  height: auto;
}

.editorial-card-body {
  padding: 30px;
}

.editorial-card h2 {
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  line-height: 1.05;
}

.editorial-meta,
.editorial-excerpt {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.editorial-narrow {
  width: min(820px, 92%);
  margin-inline: auto;
}

.editorial-featured,
.editorial-content,
.comments-area {
  margin-top: 56px;
}

.editorial-content {
  font-size: 17px;
  line-height: 1.8;
}

.editorial-content > * + * {
  margin-top: 1.35em;
}

.search-form {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.search-form label {
  flex: 1;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 680px) {
  .hero-slide .hero-slide-title,
  body.home .hero-slide .hero-slide-title {
    min-height: 156px !important;
    height: 156px !important;
    margin-bottom: 24px !important;
    display: flex;
    align-items: flex-start;
    font-size: 52px;
  }

  .the-palm-contact-form,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .map-consent {
    min-height: 360px;
    padding: 24px;
  }

  .editorial-hero {
    padding: 130px 0 60px;
  }
}

@media (max-width: 390px) {
  body.home .hero-slide .hero-slide-title {
    min-height: 176px !important;
    height: 176px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up,
  .fade-up.is-pending {
    opacity: 1 !important;
    transform: none !important;
  }

  .venues-marquee-track,
  .home-premium-marquee-track {
    animation: none !important;
  }
}

/* v59 mobile stability and compact side-by-side hero actions */
html,
body {
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
}

html {
  background: var(--black);
}

@media (max-width: 1080px) {
  body {
    background-color: var(--black);
  }

  .hero,
  .page-hero {
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  .hero-bg {
    inset: -4px;
    transform: translate3d(0, 0, 0) scale(1.015);
    transform-origin: center top;
    backface-visibility: hidden;
  }

  body.home .hero {
    min-height: 100svh !important;
  }

  body:not(.home) .page-hero {
    min-height: 70svh;
  }
}

@media (max-width: 680px) {
  .hero-actions,
  body.home .hero-actions,
  body:not(.home) .page-hero .hero-actions {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 360px;
    min-height: 50px !important;
    height: 50px !important;
  }

  .hero-actions .btn {
    flex: 1 1 0 !important;
    width: calc(50% - 4px) !important;
    min-width: 0 !important;
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 10px !important;
    font-size: 11.5px !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  .hero-actions .btn-gold::after {
    margin-left: 6px;
    font-size: 13px;
  }
}

@media (max-width: 350px) {
  .hero-actions .btn {
    padding-inline: 7px !important;
    font-size: 10.5px !important;
  }
}

/* v60: reliable mobile navigation and desktop contact alignment */
@media (min-width: 1025px) {
  .contact-grid {
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr) !important;
    align-items: start !important;
    gap: 38px !important;
  }

  .contact-grid > .contact-box {
    margin: 0 !important;
  }

  .contact-grid .the-palm-contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1080px) {
  body.mobile-menu-open {
    touch-action: auto !important;
  }

  .primary-menu.open {
    z-index: 1002 !important;
    pointer-events: auto !important;
  }

  .primary-menu.open .menu-item > a {
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }

  .primary-menu.open .current-menu-item > a::before,
  .primary-menu.open .current-menu-item > a::after {
    content: none !important;
    display: none !important;
  }
}

/* v66: meniul mobil nu folosește delimitări decorative pentru pagina activă. */
@media (max-width: 1080px) {
  .primary-menu.open .current-menu-item > a::before,
  .primary-menu.open .current-menu-item > a::after,
  .primary-menu.open .current_page_item > a::before,
  .primary-menu.open .current_page_item > a::after,
  .primary-menu.open .current-menu-ancestor > a::before,
  .primary-menu.open .current-menu-ancestor > a::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
  }
  .primary-menu.open .current-menu-item,
  .primary-menu.open .current_page_item,
  .primary-menu.open .current-menu-ancestor {
    border: 0 !important;
  }
}

/* Același ritm vizual pe mobil, între headerul întunecat și conținutul paginii. */
@media (max-width: 680px) {
  .page-hero {
    min-height: auto !important;
    padding-top: 112px !important;
    padding-bottom: 72px !important;
    align-items: flex-start !important;
  }
  .page-hero .hero-content {
    padding-top: 40px !important;
  }
  .page-hero h1 { margin-bottom: 22px !important; }
  .page-hero p { margin-bottom: 28px !important; }
}

.site-footer .footer-anpc {
  display: flex !important;
  flex-flow: row nowrap !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 18px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

.site-footer .footer-anpc a {
  display: inline-flex !important;
  flex: 0 0 auto !important;
}

.site-footer .footer-anpc img {
  width: 120px !important;
  max-width: 120px !important;
}

/* v67: submeniul Servicii rămâne lizibil și utilizabil pe orice ecran. */
@media (min-width: 1081px) {
  .primary-menu > .menu-item-has-children { position: relative; }
  .primary-menu > .menu-item-has-children > a::after {
    content: '⌄';
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    line-height: 1;
  }
  .primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 16px);
    left: -16px;
    z-index: 210;
    min-width: 270px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #151515;
    border: 1px solid rgba(200, 164, 93, .38);
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  }
  .primary-menu .menu-item-has-children:hover > .sub-menu,
  .primary-menu .menu-item-has-children:focus-within > .sub-menu { display: block; }
  .primary-menu .sub-menu li { display: block; }
  .primary-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
    border-radius: 8px;
  }
  .primary-menu .sub-menu a:hover,
  .primary-menu .sub-menu a:focus-visible { background: rgba(200, 164, 93, .12); }
}

@media (max-width: 1080px) {
  .primary-menu.open .menu-item-has-children > .sub-menu {
    display: block !important;
    position: static !important;
    margin: 4px 0 8px !important;
    padding: 0 0 0 14px !important;
    list-style: none !important;
    background: transparent !important;
    border: 0 !important;
    border-left: 1px solid rgba(200, 164, 93, .46) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  .primary-menu.open .menu-item-has-children > .sub-menu a {
    min-height: 42px !important;
    padding: 10px 0 !important;
    font-size: 12px !important;
    color: rgba(255, 255, 255, .82) !important;
  }
}

/* Final mobile submenu rule: remains closed until its arrow is pressed. */
@media (max-width: 1080px) {
  .primary-menu.open .menu-item-has-children > .sub-menu { display: none !important; background: #fff !important; }
  .primary-menu.open .menu-item-has-children.is-submenu-open > .sub-menu { display: block !important; }
  .primary-menu.open .menu-item-has-children > .sub-menu a { color: #15110b !important; }
}

/* v79: doar butonul-săgeată deschide Servicii pe mobil; fără linii decorative. */
@media (max-width: 1080px) {
  .primary-menu.open a::before,
  .primary-menu.open a::after { content: none !important; display: none !important; }
  .primary-menu.open .menu-item-has-children > a { padding-right: 58px !important; }
  .primary-menu.open .submenu-toggle {
    display: grid !important;
    place-items: center;
    z-index: 5;
  }
}

/* v80 final override */
.contact-grid { align-items: start !important; }
.whatsapp { display: none !important; }
@media (min-width: 1081px) {
  .primary-menu > .menu-item-has-children > a { white-space: nowrap !important; flex-wrap: nowrap !important; }
  .primary-menu > .menu-item-has-children > a::after { flex: 0 0 auto; position: relative; top: 0; }
}
@media (max-width: 680px) {
  body.home .direction-card { min-height: 0 !important; }
  body.home .direction-content { padding: 28px 26px !important; }
  body.home .elegant-list { grid-template-columns: 1fr !important; gap: 12px !important; margin: 20px 0 24px !important; }
  body.home .elegant-list span { min-height: 28px; padding-left: 24px; font-size: 14px; }
  .primary-menu.open { opacity: 1 !important; }
}
