@import url("reset.css");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Jost:wght@300;400;500;600&display=swap");

/* VARIABLES */
:root {
  /* COLORS — Ecaterina palette (approved mockup) */
  --color-background: #f5f5f3;
  --color-bg-secondary: #f5f5f3;
  --color-dark-1: #494949;
  --color-dark-blue: #22242a; /* ink — legacy var name kept, remapped from the old blue theme */
  --light-gray-1: #f2f2f2;
  --light-gray-2: #e4e2dc;
  --color-white: #fff;
  --color-black: #22242a;
  --text-color: #6e7076;
  --color-muted: #8a8c92;
  --primary-orange: #e59b3c;
  --accent-dark: #d08825;
  --color-gold: #c9a24b;
  --color-card: #ffffff;
  --color-line: #ececea;
  --card-shadow: 0 2px 14px rgba(20, 20, 25, 0.06);

  /* FONTS */
  --font-serif: "Marcellus", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", system-ui, sans-serif;

  /* BORDER RADIUS */
  --border-radius-8: 12px;
  --border-radius-12: 12px;
  --border-radius-24: 24px;
  --border-radius-32: 32px;
  --border-rounded: 100%;

  /* LINE HEIGHT */
  --line-height-115: 115%;
  --line-height-135: 135%;
  --line-height-150: 150%;
  --line-height-175: 175%;
  --line-height-200: 200%;

  --header-text: #f8f3eb;
  --header-text-dark: #1f1a17;
  --header-accent: #c8a96b;
  --header-accent-hover: #e0c28a;
  --header-white: rgba(255, 252, 247, 0.94);
  --header-border-light: rgba(31, 26, 23, 0.08);
  --header-border-dark: rgba(255, 255, 255, 0.18);
  --header-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-background);
  color: var(--color-dark-blue);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

._lock {
  overflow: hidden;
}

.site-wrapper {
  min-height: 100vh;
}

.container {
  max-width: 1330px;
  width: 100%;
  margin: 0 auto;
}

.container-mid {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
}

.container-max {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.page-dark-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.32);
  transition: opacity 0.38s ease, visibility 0.38s ease;
  visibility: hidden;
  opacity: 0;
  z-index: -2;
}
.page-dark-overlay._active {
  visibility: visible;
  opacity: 1;
  z-index: 10;
}

.ds-none {
  display: none !important;
}

/***** BUTTONS *****/
a.view-more {
  flex-shrink: 0;
  padding: 9px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-dark-blue);
  border: 1px solid #d8d8d4;
  border-radius: 999px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

a.view-more i {
  margin-left: 10px;
  color: var(--primary-orange);
  font-size: 13px;
  transition: all 0.5s ease-in-out;
}

a.view-more:hover {
  background-color: var(--primary-orange);
  color: var(--color-white);
  border-color: var(--primary-orange);
}

a.view-more:hover i {
  color: var(--color-white);
}

.btn-wr-sl {
  margin-top: 60px;
}

.btn-wr-sl button {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  border-radius: var(--border-rounded);
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--primary-orange);
  border-radius: var(--border-rounded);
  width: 0;
  height: 0;
  transition: all 0.5s;
  z-index: 1;
}

.btn-wr-sl button:hover::before {
  width: 100%;
  height: 100%;
}
.btn-wr-sl button:hover {
  background-color: rgba(255, 179, 102, 0.7);
  border: 3px solid var(--primary-orange);
}
.btn-wr-sl button i {
  margin: 0;
  padding: 0;
  color: var(--color-dark-blue);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.btn-wr-sl button:hover i {
  color: var(--color-white);
}

.btn-wr-sl .line {
  margin: 0px 7px;
  background-color: var(--primary-orange);
  height: 1px;
  width: 40px;
}

.btn-wr-sl.cl-gr button {
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: var(--light-gray-2);
  border: unset;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl.cl-gr .line {
  margin: 0px 7px;
  background-color: var(--light-gray-2);
  height: 1px;
  width: 40px;
}
/***** End BUTTONS *****/

/***** Section *****/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 88px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    height 0.35s ease;
}

header._scrolled {
  height: 70px;
  background-color: rgba(255, 252, 247, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(31, 26, 23, 0.07);
}

header .nav-items {
  width: 100%;
  min-height: 100%;
  position: relative;
}

.desk-menu {
  width: 100%;
  /* max-width: 1440px; */
  margin: 0 auto;
  position: relative;
  padding: 0 10px;
}

header .nav-item .nav-item-link {
  position: relative;
  font-size: 12px;
  line-height: 1;
  color: var(--header-text);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

header .nav-item .nav-item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--header-accent);
  transition: width 0.3s ease;
}

header .nav-item .nav-item-link:hover {
  color: var(--header-accent);
}

header .nav-item .nav-item-link:hover::after {
  width: 100%;
}

/* scrolled links */
header._scrolled .nav-item .nav-item-link {
  color: var(--header-text-dark);
}

header._scrolled .nav-item .nav-item-link:hover {
  color: var(--header-accent);
}

/* logo */
.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-logo::before,
.header-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 169, 107, 0.75),
    transparent
  );
  transform: translateY(-50%);
  opacity: 0.9;
  transition: opacity 0.35s ease;
}

.header-logo::before {
  right: calc(100% + 10px);
}

.header-logo::after {
  left: calc(100% + 10px);
}

.header-logo img {
  max-width: 175px;
  height: auto;
  margin: 0 20px;
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    filter 0.4s ease;
  /* dark Ecaterina logo rendered white over the hero image */
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.header-logo:hover img {
  transform: scale(1.03);
}

header._scrolled .header-logo img {
  /* back to the original dark logo on the light scrolled header */
  filter: none;
}

/* primary header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid var(--primary-orange);
  border-radius: 999px;
  background: var(--primary-orange);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(224, 149, 60, 0.28);
}

.header-cta:focus-visible {
  outline: 2px solid var(--header-accent);
  outline-offset: 3px;
}

.header-cta:active {
  transform: translateY(0);
}

/* nav links */
.nav-links {
  flex-wrap: nowrap;
}

.nav-links .nav-item-link {
  white-space: nowrap;
}

/* mobile logo */
.logo-mobile img {
  max-width: 130px;
  height: auto;
  display: block;
}

/* burger */
.menu-icon {
  z-index: 5;
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
  margin-left: 5px;
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
}

.menu-icon:focus-visible {
  outline: 2px solid var(--header-accent);
  outline-offset: 6px;
}

.menu-icon span,
.menu-icon::before,
.menu-icon::after {
  left: 0;
  position: absolute;
  height: 2px;
  width: 100%;
  transition: all 0.5s ease;
  background-color: var(--header-text);
  border-radius: 10px;
}

header._scrolled .menu-icon span,
header._scrolled .menu-icon::before,
header._scrolled .menu-icon::after {
  background-color: var(--header-text-dark);
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  transform: perspective(1px) scale(1) translate3d(0, 0, 0);
}

.menu-icon::before {
  top: 0;
}

.menu-icon::after {
  bottom: 0;
}

.menu-icon span {
  top: 50%;
  transform: perspective(1px) scale(1) translate(0px, -50%)
    translate3d(0, 0, 0);
}

.menu-icon._active span {
  transform: scale(0) translate(0px, -50%);
}

.menu-icon._active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
}

.menu-icon._active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0px, 50%);
}

/***** End Section *****/

/***** Main *****/

main._pg {
  margin-top: 50px;
}

/***** main Banner — premium centered hero (approved mockup) *****/
.main-banner {
  position: relative;
  width: 100%;
  height: min(88vh, 840px);
  min-height: 560px;
}

.main-banner .video-banner,
.main-banner .image-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.main-banner .text-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 20, 14, 0.45);
  padding: 20px;
  justify-content: center;
}

.main-banner .text-wrapper .container-mid {
  width: 100%;
}

.main-banner .text-items {
  align-items: center;
  text-align: center;
  gap: 0;
}

.main-banner .text-items .banner-sub {
  font-size: 13px;
  color: var(--color-gold);
  font-weight: 500;
  line-height: var(--line-height-150);
  letter-spacing: 0.45em;
  margin-bottom: 22px;
}

.main-banner .text-items .banner-title {
  font-size: clamp(44px, 6vw, 76px);
  color: var(--color-white);
  line-height: 1.18;
  max-width: 820px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.main-banner .text-items .button-wrapper {
  margin-top: 34px;
}

.main-banner .text-items a {
  display: inline-block;
  font-size: 12px;
  color: var(--color-white);
  font-weight: 500;
  padding: 15px 38px;
  border: 1px solid var(--color-gold);
  border-radius: 2px;
  background: var(--color-gold);
  transition: background-color 0.3s ease, border-color 0.3s ease;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-banner .text-items a:hover {
  background-color: #b08c3c;
  border-color: #b08c3c;
}

/***** End main Banner *****/

/***** About Us Home Page *****/
.about-us-section {
  margin-top: 100px;
}

.about-us-section .content-wrapper {
  gap: 100px;
}

.about-us-section .text-wrapper {
  width: 32%;
  margin-left: 100px;
  color: var(--text-color);
  line-height: var(--line-height-135);
}

.about-us-section .text-wrapper.rv {
  width: 32%;
  margin-left: 0;
  margin-right: 100px;
  color: var(--text-color);
  line-height: var(--line-height-135);
}

.about-us-section .text-wrapper h3 {
  font-weight: 400;
  font-size: 26px;
  line-height: var(--line-height-150);
  letter-spacing: 0.5px;
  color: var(--color-dark-blue);
}

.about-us-section .text-wrapper h3::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--header-accent);
  margin-bottom: 22px;
}
.about-us-section .text-wrapper p {
  font-weight: 500;
}
.about-us-section .text-wrapper b {
  font-weight: 600;
}

.about-us-section .slider-wrapper {
  width: 68%;
  /* border: 1px solid red; */
}

/* .about-us-section .slider-wrapper {
  max-height: 650px;
} */

.about-us-section .slider-wrapper .img-slide-wr {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 48% 0;
}

.about-us-section .slider-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-section .collage-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-self: center;
}

/* Home page intro: white card, text ~50% / collage ~50% (approved mockup) */
.about-us-section.about-collage {
  margin-top: 46px;
}

.about-us-section.about-collage .container-max {
  max-width: 1330px;
  padding: 0 15px;
}

.about-us-section.about-collage .content-wrapper {
  gap: 44px;
  align-items: center;
  background: var(--color-card);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 38px 40px;
}

.about-us-section.about-collage .text-wrapper {
  width: auto;
  flex: 1.05 1 0;
  margin-left: 0;
}

.about-us-section.about-collage .text-wrapper h3 {
  font-size: 34px;
  line-height: var(--line-height-135);
  letter-spacing: 0;
  margin-bottom: 4px;
}

.about-us-section.about-collage .text-wrapper p {
  font-weight: 400;
  font-size: 15.5px;
  line-height: var(--line-height-175);
  color: #43454b;
}

.about-us-section.about-collage .text-wrapper b {
  font-weight: 600;
  font-size: 15.5px;
  line-height: var(--line-height-175);
  color: var(--color-dark-blue);
}

.about-us-section.about-collage .collage-wrapper {
  width: auto;
  flex: 0.95 1 0;
  margin-right: 0;
}

.about-us-section .collage-wrapper .collage-item {
  position: relative;
  width: 100%;
  padding: 0 0 100% 0;
  border-radius: 6px;
  overflow: hidden;
}

.about-us-section .collage-wrapper .collage-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us-section .collage-wrapper--single {
  grid-template-columns: 1fr;
}

.about-us-section .collage-wrapper--single .collage-item {
  padding: 0 0 85% 0;
}
/***** End About Us Home Page *****/

/***** Gallery section Homepage *****/

/* White premium content card (mockup .card-sec) */
.card-sec {
  background: var(--color-card);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 38px 40px 34px;
}

.card-sec--head {
  margin-bottom: 30px;
  padding-bottom: 38px;
}

.gallery {
  margin-top: 46px;
  padding: 0px 15px;
}

.gallery-heading {
  width: 100%;
  margin-bottom: 26px;
  gap: 24px;
}

.gallery-heading .text-wrapper.pg {
  width: 100%;
}

.gallery-heading .text-wrapper.pg h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.gallery-heading h2 {
  font-size: 32px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-dark-blue);
  margin-bottom: 6px;
}

.gallery-heading h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--header-accent);
  margin-top: 12px;
}

.gallery-heading p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-muted);
  line-height: var(--line-height-175);
  margin-bottom: 0;
  margin-top: 6px;
  max-width: 620px;
  width: 100%;
}

.gallery-slide {
  width: 100%;
  position: relative;
  height: auto;
  aspect-ratio: 4 / 3.4; /* padding-% hack breaks inside swiper-wrapper */
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 6px;
}

.gallery-wrapper-modal,
.gallery-slider-single {
  max-width: 1000px;
  width: 100%;
}

.gallery-slide-single {
  width: 100%;
  position: relative;
  padding: 0 0 70% 0;
}

.gallery-slide-single img,
.gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.gallery-slide img {
  border-radius: 6px;
}

.gallery-slide img:hover {
  transform: scale(1.1);
}

/***** End Gallery section Homepage *****/

/***** Our Rooms *****/

.pod-detailed {
  margin-top: 46px;
  margin-bottom: 46px;
  padding: 0 15px;
}

.pod-det-hd-wr {
  margin-bottom: 0;
  padding-left: 0;
  width: 100%;
  gap: 24px;
}

.pod-det-hd-wr .text-wrapper {
  max-width: 600px;
  width: 100%;
  gap: 20px;
}

.pod-det-hd-wr a.view-more {
  margin-bottom: 0;
}

.pod-det-hd-wr h2 {
  font-size: 32px;
  line-height: var(--line-height-135);
  color: var(--color-dark-blue);
  font-weight: 400;
  margin-bottom: 6px;
}

.pod-det-hd-wr p {
  font-size: 14px;
  line-height: var(--line-height-175);
  font-weight: 400;
  color: var(--color-muted);
  max-width: 620px;
  width: 100%;
}

.cta-row .explore__btn {
  margin-top: 0;
  margin-bottom: 0;
}

/* Room rows — one white card, image flush against content (approved mockup) */
.pod-detail__slide {
  gap: 0;
  background: var(--color-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  align-items: stretch !important;
}

.pod-detail__rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pod-detail__slide .img-wrapper {
  max-width: 51%;
  width: 100%;
  position: relative;
  min-height: 340px;
  border-radius: 0;
  overflow: hidden;
}

.pod-detail__slide .img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.pod-detail__slide .prod-description {
  max-width: 49%;
  width: 100%;
  gap: 10px;
  padding: 36px 40px;
  justify-content: center;
}

.pod-detail__slide .prod-description h2 {
  font-size: 30px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-dark-blue);
  width: 100%;
  margin-bottom: 4px;
}

.pod-detail__slide .prod-description p {
  max-width: 100%;
  width: 100%;
  font-size: 14.5px;
  line-height: var(--line-height-175);
  font-weight: 400;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.pod-features {
  max-width: 100%;
  width: 100%;
  gap: 16px 24px;
  margin: 12px 0 4px;
}

.pod-features li {
  max-width: 45%;
  width: 100%;
}

.pod-features li h4 {
  font-size: 16px;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  font-weight: 400;
  margin-bottom: 2px;
}

.pod-features li p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: var(--line-height-135);
  font-weight: 400;
}

.explore__btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  color: var(--color-white);
  border-radius: 999px;
  background-color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  margin-top: 14px;
  gap: 10px;
  transition: all 0.25s ease;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.explore__btn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  content: "";
  width: 50%;
  height: 120%;
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 1s ease-in-out;
}

.explore__btn:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--color-white);
}

.explore__btn:hover::before {
  left: 125%;
}

.btn-wr-sl {
  margin-top: 60px;
}

.btn-wr-sl button {
  width: 50px;
  height: 50px;
  margin: 0px 10px;
  border-radius: var(--border-rounded);
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: rgba(255, 255, 255, 0);
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl button::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: var(--primary-orange);
  border-radius: var(--border-rounded);
  width: 0;
  height: 0;
  transition: all 0.5s;
  z-index: 1;
}

.btn-wr-sl button:hover::before {
  width: 100%;
  height: 100%;
}
.btn-wr-sl button:hover {
  background-color: rgba(66, 184, 131, 0.7);
  border: 3px solid var(--primary-orange);
}
.btn-wr-sl button i {
  margin: 0;
  padding: 0;
  color: var(--color-dark-blue);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.btn-wr-sl button:hover i {
  color: var(--color-white);
}

.btn-wr-sl .line {
  margin: 0px 7px;
  background-color: var(--primary-orange);
  height: 1px;
  width: 40px;
}

.btn-wr-sl.cl-gr button {
  border: 3px solid var(--light-gray-1);
  padding: 0;
  background-color: var(--light-gray-2);
  border: unset;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.btn-wr-sl.cl-gr .line {
  margin: 0px 7px;
  background-color: var(--light-gray-2);
  height: 1px;
  width: 40px;
}
/***** End Our Rooms *****/

/***** Promo Offer Homepage *****/

/* Final CTA — dark full-width photo band (approved mockup .bigcta) */
.promo-offer {
  padding: 84px 24px;
  margin-top: 46px;
  position: relative;
  overflow: hidden;
  background-color: #1d1e22;
}

.promo-offer img.editable-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.promo-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 17, 20, 0.74);
  z-index: 1;
  pointer-events: none;
}

.promo-offer .container {
  position: relative;
  z-index: 2;
}

.promo-offer__row {
  flex-direction: column !important;
  gap: 28px;
  justify-content: center !important;
}

.promo-offer h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: var(--line-height-135);
  color: var(--color-white);
  font-weight: 400;
  max-width: 720px;
  width: 100%;
  text-align: center;
  text-shadow: none;
}

.promo-offer p {
  font-size: 16px;
  line-height: var(--line-height-175);
  font-weight: 300;
  max-width: 500px;
  width: 100%;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
}

.promo-offer .call__action {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 999px;
  background-color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  box-shadow: none;
  color: var(--color-white);
  transition: all 0.25s ease;
  cursor: pointer;
}

.promo-offer .call__action:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--color-white);
  box-shadow: none;
}

/***** End Promo Offer Homepage *****/

/***** End Main *****/

/***** Contact Page *****/

/* Page-level intro paragraph (below hero, above columns) */
.contact-pg-intro {
  padding: 52px 0 0;
  text-align: center;
}

.contact-pg-intro p {
  font-size: 17px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Main contact section */
.contact-pg {
  padding: 64px 0 120px;
}

/* Two-column layout — ~50/50 ca in mockup */
.contact-pg-wrapper {
  gap: 36px;
  align-items: flex-start;
}

.contact-pg .form-wrapper {
  width: 50%;
}

/* ── Left column: contact info ── */
.contact-pg .text-wrapper {
  width: 50%;
  gap: 0;
  padding-top: 0;
}

.contact-pg .text-wrapper h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
  margin-bottom: 18px;
}

/* Short introductory paragraph above contact details */
.contact-pg .text-wrapper .info-intro {
  font-size: 15px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--text-color);
  margin-bottom: 28px;
}

.contact-pg .text-wrapper p {
  font-size: 15px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--text-color);
}

.contact-pg .text-wrapper p span {
  color: var(--color-dark-blue);
  font-weight: 600;
}

/* Contact icon list */
.contact-pg .text-wrapper .contacts {
  gap: 0;
  margin-bottom: 28px;
}

.contact-pg .text-wrapper .contacts li {
  margin-bottom: 16px;
}

.contact-pg .text-wrapper .contacts li:last-child {
  margin-bottom: 0;
}

.contact-pg .text-wrapper .contacts a,
.contact-pg .text-wrapper .contacts span {
  color: var(--text-color);
  font-size: 15px;
  font-weight: 500;
}

.contact-pg .text-wrapper .contacts a {
  transition: color 0.2s ease;
}

.contact-pg .text-wrapper .contacts a:hover {
  color: var(--header-accent);
}

/* Contact info row — icon vertically centered against the full label+value
   block (title + label), consistent box size regardless of glyph shape. */
.contact-pg .text-wrapper .contacts .contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.contact-pg .text-wrapper .contacts .contact-info-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  border-radius: 50%;
  background-color: var(--header-accent);
  color: var(--color-white);
}

.contact-pg .text-wrapper .contacts .contact-info-icon i {
  display: block;
  line-height: 1;
  margin: 0;
  font-size: 17px;
}

/* Hours block — separated with a top divider */
.contact-pg .text-wrapper .hours-block {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 26, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-pg .text-wrapper .hours-block p {
  font-size: 14px;
  color: var(--text-color);
}

.contact-pg .text-wrapper .hours-block p span {
  color: var(--color-dark-blue);
  font-weight: 600;
}

/* ── Card alb pentru coloana de contact (mockup) ── */
.contact-pg .text-wrapper.contact-info-card {
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(20, 20, 25, 0.06);
  padding: 34px 36px;
}

.contact-pg .contact-info-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-pg .text-wrapper .contacts .c-meta {
  gap: 2px;
  min-width: 0;
}

.contact-pg .text-wrapper .contacts .c-meta > a,
.contact-pg .text-wrapper .contacts .c-meta > span:not(.c-label) {
  color: var(--color-dark-blue);
  font-weight: 600;
  font-size: 14.5px;
}

.contact-pg .text-wrapper .contacts .c-label {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-color);
}

/* ── Right column: form wrapper ── */
.form-wrapper {
  width: 56%;
  gap: 22px;
}

.form-wrapper h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: var(--line-height-150);
  color: var(--color-dark-blue);
}

.form-wrapper form {
  max-width: 100%;
  gap: 0;
}

iframe.map {
  margin-top: 50px;
  margin-bottom: 100px;
}

/***** End Contact Page *****/

/***** Page Intro *****/
.page-intro {
  position: relative;
  width: 100%;
  padding: 0 0 45% 0;
}

.page-intro.min {
  position: relative;
  width: 100%;
  padding: 0 0 37.5% 0;
}

.page-intro img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.page-intro.min img {
  object-position: 0 0;
}

.page-intro .intro-text-wrapper {
  position: absolute;
  width: 100%;
  bottom: 100px;
  left: 0;
}

.page-intro .page-intro-txt {
  color: var(--color-white);
  gap: 10px;
}

.page-intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 14, 17, 0) 35%, rgba(13, 14, 17, 0.6) 100%);
  pointer-events: none;
}

.page-intro .intro-text-wrapper {
  z-index: 1;
}

/* Ecaterina breadcrumb component (views/common/_page_hero.php) */
.ecat-breadcrumbs {
  margin-bottom: 16px;
}

.ecat-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 7px 18px;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ecat-breadcrumbs__item {
  display: flex;
  align-items: center;
  min-width: 0;
}

.ecat-breadcrumbs__item a,
.ecat-breadcrumbs__item span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.ecat-breadcrumbs__item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ecat-breadcrumbs__item a:hover {
  color: var(--primary-orange);
}

.ecat-breadcrumbs__item a:focus-visible {
  outline: 2px solid var(--primary-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.ecat-breadcrumbs__item.is-current span {
  color: var(--primary-orange);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42vw;
}

.ecat-breadcrumbs__sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1;
}

.page-intro__rule {
  display: block;
  width: 46px;
  height: 2px;
  margin: 16px 0 4px;
  background: var(--primary-orange);
}

.page-intro .page-intro-txt h2 {
  font-family: var(--font-serif);
  font-size: 62px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h2.ttl-min {
  font-size: 34px;
  font-weight: 500;
  line-height: 135%;
}

.page-intro .page-intro-txt h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: 135%;
  margin-top: 15px;
  letter-spacing: 1.4px;
}

.page-intro .page-intro-txt p {
  font-size: 18px;
  font-weight: 300;
  line-height: 175%;
  max-width: 600px;
  width: 100%;
}
/***** End Page Intro *****/

/***** PRODUCT PAGE *****/

.page-desc {
  margin-top: 50px;
}

.prod-desc {
  gap: 15px;
}
.prod-desc h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.prod-desc p {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.specifications {
  margin-top: 75px;
}

.spec-heading h3 {
  font-size: 36px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  margin-bottom: 35px;
}

.spec-wrapper {
  gap: 100px;
}

.spec-wrapper .img-wrapper {
  max-width: 650px;
  width: 100%;
  position: relative;
  padding: 0 0 45% 0;
}

.spec-wrapper .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  filter: brightness(80%);
}

.spec-list {
  max-width: 580px;
  width: 100%;
  gap: 15px;
}

.spec-list h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: var(--line-height-150);
}

.spec-list .item {
  gap: 5px;
}

.spec-list .item h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: var(--line-height-150);
  color: var(--color-black);
}

.spec-list .item p {
  font-size: 17px;
  font-weight: 400;
  color: var(--color-dark-blue);
  line-height: var(--line-height-150);
}

.floor-paln {
  margin-top: 100px;
  margin-bottom: 100px;
}

.floor-paln h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
  margin-bottom: 20px;
}

.floor-paln .img-wrapper img {
  max-width: 950px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.features-wrapper {
  margin-top: 50px;
  margin-bottom: 75px;
}

.features-wrapper ul {
  max-width: 1000px;
  width: 100%;
  gap: 20px;
}

.features-wrapper ul li {
  font-size: 17px;
  line-height: var(--line-height-175);
  color: var(--color-black);
}

.features-wrapper ul li i {
  margin-right: 15px;
  color: var(--primary-green);
  font-size: 35px;
}

.features-wrapper h3 {
  margin-bottom: 30px;
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.related-prod.pg {
  background-color: transparent;
}

.rel-hd-wr {
  margin-bottom: 30px;
  gap: 10px;
}

.rel-hd-wr h2 {
  font-size: 38px;
  line-height: var(--line-height-135);
  font-weight: 400;
  color: var(--color-black);
}

.rel-hd-wr p {
  font-size: 16px;
  line-height: var(--line-height-150);
  font-weight: 400;
  color: var(--text-color);
}

.related-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.related-slide::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  height: 7px;
  width: 100%;
  background-color: var(--primary-green);
  transition: all 0.3s ease-in-out;
}

.related-slide:hover::after {
  bottom: 0px;
}

.related-slide .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 70% 0;
}

.related-slide .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(60%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.related-slide .slide-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  z-index: 1;
  gap: 5px;
}

.related-slide .slide-text h3 {
  font-size: 24px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
}

.related-slide .slide-text h4 {
  font-size: 16px;
  font-weight: 300;
  line-height: var(--line-height-150);
  color: var(--color-white);
  letter-spacing: 1.4px;
}

.related-slide:hover .img-wrapper img {
  filter: brightness(40%);
}

/***** End PRODUCT PAGE *****/

/***** Blog Homepage section *****/

.view-more-itm {
  margin-bottom: 50px;
}
.blog__homepage {
  margin-top: 75px;
  padding: 0px 15px;
  margin-bottom: 75px;
}

.blog__row {
  gap: 50px 30px;
}

.blog-heading {
  width: 100%;
  margin-bottom: 20px;
}

.blog-heading h2 {
  font-size: 48px;
  line-height: var(--line-height-150);
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
}

.blog-heading p {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
}

.blog-item {
  max-width: 31%;
  width: 100%;
  gap: 15px;
}

.blog-item .img-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 65% 0;
}

.blog-item .img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-12);
  transition: all 0.3s ease-in-out;
}

.blog-item .date-wrapper {
  gap: 10px;
}

.blog-item .date-wrapper span {
  font-size: 12px;
  line-height: var(--line-height-135);
  color: var(--text-color);
}

.blog-item .date-wrapper i {
  font-size: 12px;
  line-height: var(--line-height-135);
  color: var(--text-color);
}

.blog-item h3 {
  font-size: 22px;
  line-height: var(--line-height-135);
  color: var(--color-dark-blue);
  font-weight: 500;
}

.blog-item p {
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--text-color);
  font-weight: 300;
}

.blog_btn {
  max-width: 200px;
  width: 100%;
  padding: 15px 30px;
  outline: none;
  border: none;
  border-radius: var(--border-radius-24);
  color: var(--color-white);
  background-color: var(--primary-green);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.blog_btn span {
  position: relative;
}

.blog_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--link-color);
  transition: all 0.3s ease-in-out;
}

.blog-item:hover .blog_btn::before {
  top: 0;
}

.blog-item:hover .img-wrapper img {
  filter: grayscale(1);
}

.post-content {
  margin: 50px 10px;
}
.post-content p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: normal;
  line-height: var(--line-height-175);
}

.post-content h1 {
  font-size: 2em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h2 {
  font-size: 1.5em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h3 {
  font-size: 1.17em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h4 {
  font-size: 1em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h5 {
  font-size: 0.83em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

.post-content h6 {
  font-size: 0.67em;
  font-weight: 500;
  color: var(--color-black);
  line-height: var(--line-height-150);
  /* Add more styles as needed */
}

/***** End Blog Homepage section *****/

/***** Footer *****/

footer {
  width: 100%;
  background-color: #1c1b1b;
  margin-top: auto;
}

.footer-nav {
  padding: 48px 0px;
}

.footer-nav-section {
  max-width: 307px;
  width: 100%;
  padding: 0px 15px;
}

.footer-nav-row .footer-info {
  gap: 22px;
}
.footer-nav-row .footer-info .footer-logo {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.footer-nav-row .footer-info h2 {
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}

.footer-nav-row .footer-info .footer-socials {
  gap: 12px;
}
.footer-nav-row .footer-info .footer-socials img {
  width: 22px;
  height: auto;
}
.footer-nav-row .footer-info p {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-white);
}

.footer-nav-row .footer-nav-section:nth-child(2) {
  padding-left: 48px;
}

.footer-nav-row .footer-nav-links h3 {
  font-size: 22px;
  line-height: var(--line-height-150);
  color: var(--color-white);
  font-weight: bold;
  margin-bottom: 15px;
}
.footer-nav-row .footer-nav-links .footer-link {
  margin-bottom: 8px;
}
.footer-nav-row .footer-nav-links .footer-link a {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: var(--line-height-150);
  color: var(--color-white);
  transition: all 0.25s ease-in-out;
}

.footer-nav-row .footer-nav-section:last-child .footer-link a {
  font-size: 16px;
  line-height: 24px;
}

.footer-nav-row .footer-nav-links .footer-link a:hover {
  color: var(--primary-orange);
}

.bottom-footer {
  height: 72px;
  background-color: #1c1b1b;
  width: 100%;
}
.bottom-footer h4 {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 16px;
  line-height: 24px;
}

/***** End Footer *****/

/* MODAL WINDOW */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.modal-overlay._active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay .close-modal-window {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--color-white);
  font-size: 40px;
  cursor: pointer;
  transition: all 0.6s ease-in-out;
}

.modal-body {
  transition: all 0.6s ease-in-out;
  transition-delay: 0.2s;
  position: relative;
  bottom: -100%;
  opacity: 1;
  visibility: hidden;
}

.modal-overlay._active .modal-body {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

.modal-overlay .close-modal-window:hover {
  transform: rotate(90deg);
  color: #ff8080;
}

/* MODAL WIDNOW */

/***** CONTACT MODAL WINDOW *****/

.contact-form-popup {
  max-width: 80%;   /* modal context — overridden in page context below */
  width: 100%;
  gap: 20px;
}

/* In the standalone contact page the form fills the card */
.contact-pg .contact-form-popup {
  max-width: 100%;
  gap: 22px;
}

.contact-form-popup input {
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #dcdcd8;
  padding: 12px 2px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark-blue);
  outline: none;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.contact-form-popup input:focus {
  border-bottom-color: var(--header-accent);
}

.contact-form-popup input::placeholder {
  color: #aab0b8;
  font-weight: 400;
}

.contact-form-popup .get-quote {
  border: none;
  color: var(--color-white);
  background-color: var(--header-accent);
  font-size: 13px;
  text-transform: uppercase;
  line-height: var(--line-height-150);
  transition: background-color 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
  margin-top: 12px;
  border-radius: 999px;
  padding: 15px 0;
  cursor: pointer;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-family: inherit;
  width: 100%;
}

.contact-form-popup .get-quote:hover {
  animation: none;
  background-color: var(--color-dark-blue);
  box-shadow: 0 6px 22px rgba(0, 26, 51, 0.18);
}

.contact-form-popup .get-quote:active {
  transform: scale(0.99);
}

.contact-form-popup .get-quote:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/***** End CONTACT MODAL WINDOW *****/

/* ============================================================
   PREMIUM HOMEPAGE IMPROVEMENTS
   ============================================================ */

/* --- Banner: image version --- */
.main-banner .image-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Banner: constrain text width on wide screens (centered, mockup) --- */
.main-banner .text-items {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

/* --- Banner: body text paragraph (longer description) --- */
.main-banner .text-wrapper .text-items .banner-text {
  font-size: 15px;
  color: rgba(255, 252, 247, 0.66);
  font-weight: 300;
  letter-spacing: 0.4px;
  line-height: var(--line-height-175);
  text-transform: none;
  max-width: 520px;
}

/* --- Banner: entrance animations --- */
@keyframes bannerFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-banner .text-items h2,
.main-banner .text-items .banner-title {
  animation: bannerFadeUp 0.85s ease both;
  animation-delay: 0.2s;
}

.main-banner .text-items p:not(.banner-text) {
  animation: bannerFadeUp 0.85s ease both;
  animation-delay: 0.45s;
}

.main-banner .text-items .banner-text {
  animation: bannerFadeUp 0.85s ease both;
  animation-delay: 0.6s;
}

.main-banner .button-wrapper {
  animation: bannerFadeUp 0.85s ease both;
  animation-delay: 0.75s;
}

/* --- Banner: button refinement --- */
.main-banner .text-wrapper .text-items a {
  position: relative;
}

/* --- Active nav link state --- */
header .nav-item-link.nav-current {
  color: var(--header-accent) !important;
}

header .nav-item-link.nav-current::after {
  width: 100% !important;
}

/* ============================================================
   MOBILE RESPONSIVE — BANNER
   ============================================================ */

@media (max-width: 1024px) {
  .main-banner .text-items h2,
  .main-banner .text-items .banner-title {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  .main-banner,
  .main-banner .video-banner,
  .main-banner .text-wrapper {
    height: 90vh;
    min-height: 520px;
  }

  .main-banner .image-banner {
    min-height: 90vh;
  }

  .main-banner .text-items h2,
  .main-banner .text-items .banner-title {
    font-size: 36px;
  }

  .main-banner .text-wrapper .text-items p:not(.banner-text) {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .main-banner .text-wrapper .text-items .banner-text {
    font-size: 14px;
    max-width: 100%;
  }

  .main-banner .text-items {
    max-width: 100%;
    padding: 0;
  }

  .main-banner .text-wrapper .text-items a {
    padding: 14px 28px;
    font-size: 10px;
    letter-spacing: 2.5px;
  }
}

@media (max-width: 480px) {
  .main-banner,
  .main-banner .video-banner,
  .main-banner .text-wrapper {
    height: 85vh;
    min-height: 480px;
  }

  .main-banner .image-banner {
    min-height: 85vh;
  }

  .main-banner .text-items h2,
  .main-banner .text-items .banner-title {
    font-size: 30px;
  }

  .main-banner .text-wrapper .text-items a {
    padding: 13px 24px;
    font-size: 10px;
  }
}

/* ============================================================
   END PREMIUM HOMEPAGE IMPROVEMENTS
   ============================================================ */

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  position: relative;
}

.lang-current-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--header-border-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--header-text);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.lang-current-btn:hover,
.lang-switcher._open .lang-current-btn {
  border-color: rgba(200, 169, 107, 0.75);
  background: rgba(200, 169, 107, 0.08);
  color: var(--header-accent);
}

.lang-chevron {
  font-size: 9px;
  transition: transform 0.25s ease;
}

.lang-switcher._open .lang-chevron {
  transform: rotate(180deg);
}

header._scrolled .lang-current-btn {
  color: var(--header-text-dark);
  border-color: rgba(31, 26, 23, 0.14);
}

header._scrolled .lang-switcher._open .lang-current-btn,
header._scrolled .lang-current-btn:hover {
  border-color: var(--header-accent);
  color: var(--header-accent);
  background: rgba(200, 169, 107, 0.06);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 88px;
  background: rgba(255, 252, 247, 0.99);
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 200;
}

.lang-switcher._open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lang-option {
  display: block;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--header-text-dark);
  text-align: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-option:hover {
  background: rgba(200, 169, 107, 0.08);
  color: var(--header-accent);
}

.lang-option.lang-active {
  color: var(--header-accent);
  font-weight: 500;
}

/* ============================================================
   MOBILE MENU CLOSE BUTTON
   ============================================================ */
.menu-close-btn {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 50%;
  cursor: pointer;
  color: var(--header-text-dark);
  font-size: 16px;
  z-index: 5;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-close-btn:hover {
  background: rgba(31, 26, 23, 0.05);
  border-color: rgba(31, 26, 23, 0.22);
}

@media (max-width: 1200px) {
  .menu-close-btn {
    display: flex;
  }
}

/* ============================================================
   About Section — Offers / Pricing Blocks (editable test area)
   ============================================================ */
.about-offers-block {
  padding: 60px 100px 80px;
  border-top: 1px solid rgba(200, 169, 107, 0.25);
}

.about-offers-block .offers-intro {
  margin-bottom: 40px;
}

.about-offers-block .offers-intro h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.about-offers-block .offers-intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-dark-1);
  max-width: 520px;
  font-weight: 500;
}

.about-offers-block .offers-prices {
  margin-bottom: 40px;
}

.offer-price-card {
  border: 1px solid rgba(200, 169, 107, 0.35);
  border-radius: 10px;
  padding: 22px 30px;
  min-width: 170px;
  background: rgba(200, 169, 107, 0.04);
  transition: border-color 0.25s ease;
}

.offer-price-card:hover {
  border-color: var(--header-accent);
}

.offer-price-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--header-accent);
  margin-bottom: 8px;
  font-weight: 600;
}

.offer-price-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark-blue);
  display: block;
}

.about-offers-block .offers-cta-area {
  gap: 36px;
}

.offers-img {
  width: 260px;
  height: 175px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
}

.offers-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1px solid var(--header-accent);
  border-radius: 30px;
  color: var(--color-dark-blue);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.offers-cta-btn:hover {
  background: var(--header-accent);
  color: #fff;
}

@media (max-width: 1024px) {
  .about-offers-block {
    padding: 50px 40px 60px;
  }
}

@media (max-width: 768px) {
  .about-offers-block {
    padding: 40px 20px 50px;
  }

  .about-offers-block .offers-intro h2 {
    font-size: 22px;
  }

  .offers-img {
    width: 100%;
    height: 200px;
  }

  .offers-cta-area {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* =========================================
   ROOM CARD — Premium Hotel Style
   ========================================= */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.room-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 26, 51, 0.07);
  border: 1px solid rgba(0, 26, 51, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--header-accent);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 26, 51, 0.14);
  text-decoration: none;
  color: inherit;
}

.room-card:hover::before {
  transform: scaleX(1);
}

.room-card__img {
  position: relative;
  width: 100%;
  padding: 0 0 62% 0;
  overflow: hidden;
  flex-shrink: 0;
}

.room-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-card__img img {
  transform: scale(1.04);
}

.room-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card__title {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  margin-bottom: 8px;
}

.room-card__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-150);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.room-card__capacity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(200, 169, 107, 0.09);
  border: 1px solid rgba(200, 169, 107, 0.32);
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.room-card__capacity i {
  font-size: 16px;
  color: var(--header-accent);
  line-height: 1;
  flex-shrink: 0;
}

.room-card__capacity-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark-blue);
  white-space: nowrap;
}

.room-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-color);
  margin-bottom: 20px;
}

.room-card__meta i {
  font-size: 14px;
  color: var(--header-accent);
  flex-shrink: 0;
}

.room-card__cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--border-radius-24);
  border: 1.5px solid var(--header-accent);
  background: transparent;
  color: var(--header-accent);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.room-card__cta i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.room-card:hover .room-card__cta {
  background: var(--header-accent);
  color: #fff;
}

.room-card:hover .room-card__cta i {
  transform: translateX(4px);
}

/* =========================================
   EVENT ROW — blocuri orizontale alternante (mockup)
   ========================================= */

.events-rows {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.event-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(20, 20, 25, 0.06);
}

.event-row--rev {
  direction: rtl;
}

.event-row--rev > * {
  direction: ltr;
}

.event-row__img {
  position: relative;
  display: block;
  min-height: 340px;
}

.event-row__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-row:hover .event-row__img img {
  transform: scale(1.04);
}

.event-row__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-row__body h3 {
  font-size: 30px;
  font-weight: 400;
  color: var(--color-dark-blue);
  margin-bottom: 12px;
}

.event-row__desc {
  color: var(--text-color);
  font-size: 14.5px;
  line-height: var(--line-height-150);
  flex: 1;
  margin: 14px 0 20px;
}

.event-row__includes {
  flex: 0 0 auto;
  margin: 0 0 20px;
}

.event-row__includes i {
  color: var(--header-accent);
  margin-right: 6px;
}

.event-row__acts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* =========================================
   PORTFOLIO CARD — Editorial / Event Style
   ========================================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0, 26, 51, 0.06);
  border: 1px solid rgba(0, 26, 51, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 26, 51, 0.13);
  text-decoration: none;
  color: inherit;
}

.portfolio-card__img {
  position: relative;
  width: 100%;
  padding: 0 0 68% 0;
  overflow: hidden;
  flex-shrink: 0;
}

.portfolio-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__img img {
  transform: scale(1.05);
}

.portfolio-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to bottom, transparent, rgba(0, 26, 51, 0.78));
  transition: background 0.35s ease;
}

.portfolio-card:hover .portfolio-card__overlay {
  background: linear-gradient(to bottom, transparent, rgba(0, 26, 51, 0.92));
}

.portfolio-card__overlay-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: var(--line-height-135);
  margin: 0;
}

.portfolio-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.portfolio-card__date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  color: var(--header-accent);
}

.portfolio-card__date i {
  font-size: 12px;
}

.portfolio-card__title {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
}

.portfolio-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-150);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--header-accent);
  letter-spacing: 0.05em;
  margin-top: auto;
  padding-top: 8px;
  text-transform: uppercase;
  border-top: 1px solid rgba(0, 26, 51, 0.07);
}

.portfolio-card__cta i {
  font-size: 13px;
  transition: transform 0.2s ease;
}

.portfolio-card:hover .portfolio-card__cta i {
  transform: translateX(4px);
}

/* =========================================
   TEAM MEMBER CARD
   ========================================= */

.team-section {
  margin-top: 75px;
  margin-bottom: 75px;
  padding: 0 15px;
}

.team-section__heading {
  margin-bottom: 40px;
}

.team-section__heading h2 {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 7px;
  line-height: var(--line-height-135);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-category-title {
  font-size: 24px;
  line-height: var(--line-height-135);
  margin: 34px 0 18px;
}

.team-category-title:first-of-type {
  margin-top: 0;
}

.team-grid + .team-category-title {
  margin-top: 40px;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 26, 51, 0.07);
  border: 1px solid rgba(0, 26, 51, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 26, 51, 0.12);
}

.team-card__img {
  position: relative;
  width: 100%;
  padding: 0 0 110% 0;
  overflow: hidden;
  flex-shrink: 0;
}

.team-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card__img img {
  transform: scale(1.04);
}

.team-card__body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.team-card__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  margin: 0;
}

.team-card__position {
  font-size: 12px;
  font-weight: 500;
  color: var(--header-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-color);
  line-height: var(--line-height-150);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 6px;
}

/***** Contact Form — ActiveForm overrides *****/

.contact-form-popup textarea {
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #dcdcd8;
  padding: 12px 2px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark-blue);
  outline: none;
  resize: vertical;
  min-height: 90px;
  max-height: 300px;
  font-family: inherit;
  line-height: var(--line-height-175);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-popup textarea:focus {
  border-bottom-color: var(--header-accent);
}

.contact-form-popup textarea::placeholder {
  color: #aab0b8;
  font-weight: 400;
}

.contact-form-popup .form-group {
  margin-bottom: 0;
}

.contact-form-popup .has-error input,
.contact-form-popup .has-error textarea {
  border-bottom-color: #dc3545;
}

.contact-form-popup .help-block {
  font-size: 12px;
  color: #dc3545;
  margin-top: 6px;
  display: block;
  padding-left: 2px;
  font-weight: 400;
}

.contact-alert {
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: var(--line-height-150);
}

.contact-alert--success {
  background-color: #d1f0e0;
  color: #146c43;
  border: 1px solid #a3d9bb;
}

.contact-alert--error {
  background-color: #fde8e8;
  color: #9b1c1c;
  border: 1px solid #f8b4b4;
}

/* Contact form card wrapper */
.contact-pg .contact-form-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 34px 36px;
  box-shadow: 0 2px 14px rgba(20, 20, 25, 0.06);
}

/* Field labels — mockup folosește doar placeholders (booking modal keeps its
   original compact look); the /contact page form shows visible labels above
   every field, overridden below via .contact-pg .contact-field-label. */
.contact-form-popup .contact-field-label {
  display: none;
}

/* ---- Field labels visible on the /contact page form (placeholders alone aren't enough) ---- */
.contact-pg .contact-field-label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-dark-1, var(--color-black));
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.contact-pg .contact-form-card__subtitle {
  color: var(--text-color, #6b6b70);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin: 6px 0 20px;
}

.contact-pg .contact-form-card__privacy {
  margin: 4px 0 16px;
  color: var(--text-color, #6b6b70);
  font-size: 12px;
  line-height: 1.6;
}

.contact-pg .contact-form-card__privacy a {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Edit-Mode-only "request form texts" management block (views/common/
   _contact_form_texts_panel.php, used by both the booking modal and the
   /contact page form). RenderHelper::isEditor() only checks the user's role,
   so this stays server-rendered for any authorized admin — hide it here by
   default and reveal it only inside the Edit Mode iframe once editing has
   actually been started, matching how every other .editable outline is
   gated via the [data-em-edit-mode] attribute the editor JS toggles on
   <html> (see modules/editmode/web/js/main.js injectIframeStyles). */
.request-form__edit-labels {
  display: none;
}

[data-em-edit-mode] .request-form__edit-labels {
  display: block;
}

/* Two-column field rows (booking form layout) */
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Selects share the input look */
.contact-form-popup select {
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #dcdcd8;
  padding: 12px 42px 12px 2px;
  border-radius: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-dark-blue);
  outline: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='none' stroke='%23657078' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition: border-color 0.2s ease;
}

.contact-form-popup select:focus {
  border-bottom-color: var(--header-accent);
}

/* Submit overlay — hidden by default, shown via .is-active */
.contact-submit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 26, 51, 0.35);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.contact-submit-overlay.is-active {
  display: flex;
}

.contact-submit-spinner {
  width: 58px;
  height: 58px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--header-accent);
  border-radius: 50%;
  animation: contactSpin 0.75s linear infinite;
}

@keyframes contactSpin {
  to { transform: rotate(360deg); }
}

/***** FAQ Accordion *****/

.faq-section {
  padding: 70px 0;
}

.faq-section .sc-hd-wr {
  margin-bottom: 40px;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e8e8e8;
  background: transparent;
  border-radius: 0 !important;
}

.faq-accordion .accordion-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.faq-accordion__btn {
  background: transparent !important;
  color: var(--color-dark-blue);
  font-size: 16px;
  font-weight: 500;
  padding: 22px 0;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.faq-accordion__btn:not(.collapsed) {
  color: var(--header-accent);
}

.faq-accordion__btn::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c8a96b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 20px;
  transition: transform 0.3s ease;
}

.faq-accordion__btn:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.faq-accordion__body {
  padding: 0 0 22px 0;
  font-size: 15px;
  color: var(--text-color);
  line-height: var(--line-height-175);
}

.faq-accordion__body p {
  margin-bottom: 10px;
}

.faq-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-color);
  font-size: 15px;
}

/* ============================================================
   CONTACT PAGE — RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .contact-pg-wrapper {
    gap: 32px;
  }
}

@media (max-width: 1024px) {
  .contact-pg {
    padding: 52px 0 90px;
  }
  .contact-pg-wrapper {
    gap: 28px;
  }
  .contact-pg .contact-form-card,
  .contact-pg .text-wrapper.contact-info-card {
    padding: 30px 28px;
  }
}

@media (max-width: 768px) {
  .contact-pg-intro {
    padding: 36px 0 0;
  }
  .contact-pg-intro p {
    font-size: 15px;
  }
  .contact-pg {
    padding: 44px 0 70px;
  }
  .contact-pg-wrapper {
    flex-direction: column;
    gap: 36px;
  }
  .contact-pg .text-wrapper,
  .contact-pg .form-wrapper {
    width: 100%;
  }
  .contact-pg .text-wrapper {
    padding-top: 0;
  }
  .contact-pg .contact-form-card {
    padding: 28px 26px;
  }
  .form-wrapper h2 {
    font-size: 26px;
  }
  .contact-pg .text-wrapper h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .contact-pg {
    padding: 32px 0 56px;
  }
  .contact-pg-intro {
    padding: 28px 0 0;
  }
  .contact-pg-intro p {
    font-size: 14px;
  }
  .contact-pg .contact-form-card {
    padding: 22px 18px;
    border-radius: 14px;
  }
  .form-wrapper h2 {
    font-size: 22px;
  }
  .contact-pg .text-wrapper h2 {
    font-size: 22px;
  }
  .contact-form-popup .get-quote {
    font-size: 15px;
    padding: 14px 0;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* =========================================================
   INFO PAGES  (Privacy Policy, Terms of Use)
   ========================================================= */

.page-content.info-page {
  padding: 72px 0 96px;
}

.info-content {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.info-block h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-dark-blue);
  line-height: var(--line-height-135);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 26, 51, 0.08);
}

.info-block p {
  font-size: 16px;
  color: var(--text-color);
  line-height: var(--line-height-175);
  margin: 0;
}

@media (max-width: 1024px) {
  .page-content.info-page {
    padding: 56px 0 80px;
  }
  .info-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-content.info-page {
    padding: 44px 0 64px;
  }
  .info-content {
    gap: 32px;
  }
  .info-block h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .info-block p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-content.info-page {
    padding: 36px 0 52px;
  }
  .info-content {
    gap: 26px;
  }
  .info-block h3 {
    font-size: 17px;
  }
  .info-block p {
    font-size: 14px;
  }
}

/* =========================================================
   404 ERROR PAGE
   ========================================================= */

.error-404 {
  padding: 80px 0 96px;
}

.error-404__content {
  gap: 16px;
}

.error-404__code {
  font-size: 160px;
  font-weight: 800;
  line-height: 1;
  color: var(--header-accent);
  letter-spacing: -4px;
  margin: 0 0 8px;
  opacity: 0.9;
}

.error-404__text {
  font-size: 17px;
  color: var(--text-color);
  line-height: var(--line-height-175);
  max-width: 480px;
  margin: 0 auto;
}

.error-404 .explore__btn {
  max-width: 380px;
  width: auto;
  margin-top: 36px;
}

/* =========================================================
   GENERIC ERROR PAGE  (500, 403, etc.)
   ========================================================= */

.error-generic {
  padding: 100px 0 120px;
}

.error-generic__content {
  gap: 14px;
}

.error-generic .error-404__code {
  font-size: 120px;
  font-weight: 800;
  color: var(--header-accent);
  line-height: 1;
  margin: 0 0 6px;
  opacity: 0.8;
}

.error-generic .ttl-min {
  color: var(--color-dark-blue);
}

.error-generic p {
  font-size: 16px;
  color: var(--text-color);
  line-height: var(--line-height-175);
  max-width: 440px;
}

.error-generic .explore__btn {
  max-width: 360px;
  width: auto;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .error-404 {
    padding: 64px 0 80px;
  }
  .error-404__code {
    font-size: 130px;
    letter-spacing: -3px;
  }
  .error-generic {
    padding: 80px 0 96px;
  }
  .error-generic .error-404__code {
    font-size: 100px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 52px 0 68px;
  }
  .error-404__code {
    font-size: 100px;
    letter-spacing: -2px;
  }
  .error-404__text {
    font-size: 15px;
  }
  .error-404 .explore__btn {
    max-width: 100%;
    margin-top: 28px;
  }
  .error-generic {
    padding: 60px 0 76px;
  }
  .error-generic .error-404__code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .error-404 {
    padding: 40px 0 56px;
  }
  .error-404__code {
    font-size: 80px;
    letter-spacing: -1px;
  }
  .error-404__text {
    font-size: 14px;
  }
  .error-generic {
    padding: 48px 0 60px;
  }
  .error-generic .error-404__code {
    font-size: 64px;
  }
}

/* ============================================================
   MOCKUP MODIFICĂRI (iulie 2026)
   ============================================================ */

/* ----- Generic CTA buttons (booking popup triggers) ----- */
.cta-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta-row.centered {
  justify-content: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 999px;
  background-color: var(--primary-orange);
  border: 1px solid var(--primary-orange);
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.cta-btn:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--color-white);
}

.cta-btn--outline {
  background-color: transparent;
  border-color: #d8d8d4;
  color: var(--color-dark-blue);
}

.cta-btn--outline:hover {
  background-color: transparent;
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.cta-btn--sm {
  padding: 12px 22px;
  font-size: 10.5px;
  letter-spacing: 2px;
}

/* ----- Booking popup (MOD 1.1) ----- */
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto;
  background: rgba(20, 17, 14, 0.66);
  backdrop-filter: blur(4px);
}

.booking-modal-backdrop.is-open {
  display: flex;
}

body.booking-modal-open {
  overflow: hidden;
}

.booking-modal {
  max-width: 960px;
  width: 100%;
  margin: auto;
  animation: bookingFade 0.3s ease;
}

@keyframes bookingFade {
  from { opacity: 0; transform: translateY(16px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  max-height: 90vh;
  background: var(--color-white);
  border-radius: var(--border-radius-24);
  box-shadow: 0 30px 80px rgba(20, 17, 14, 0.35);
  overflow: hidden;
}

/* ---- Left: visual/information panel ---- */
.booking-modal-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  padding: 40px 34px;
  background-image: url("/core/images/resturant/1.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.booking-modal-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.35) 0%, rgba(20, 17, 14, 0.55) 55%, rgba(20, 17, 14, 0.86) 100%);
}

.booking-modal-visual-content {
  position: relative;
  z-index: 1;
}

.booking-modal-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.booking-modal-visual-title {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: #fff;
}

.booking-modal-visual-text {
  margin: 0 0 22px;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
  line-height: 1.7;
}

.booking-modal-benefits {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.booking-modal-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.booking-modal-benefits i {
  color: var(--color-gold);
  font-size: 16px;
  flex: 0 0 auto;
}

.booking-modal-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.booking-modal-phone:hover { color: var(--color-gold); }
.booking-modal-phone i { color: var(--color-gold); font-size: 16px; }

/* ---- Right: form panel ---- */
.booking-modal-form-panel {
  position: relative;
  min-width: 0;
  max-height: 90vh;
  overflow-y: auto;
}

.booking-modal-form-panel-inner {
  padding: 38px 42px 34px;
}

.booking-modal-card h2 {
  font-family: var(--font-serif);
  font-size: 27px;
  color: var(--color-dark-blue);
  font-weight: 400;
  margin-bottom: 6px;
  padding-right: 34px;
  line-height: 1.2;
}

.booking-modal-subtitle {
  margin: 0 0 22px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.6;
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--color-dark-blue);
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20, 17, 14, 0.18);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.15s ease;
}

.booking-modal-close:hover {
  color: #fff;
  background: var(--header-accent);
  transform: rotate(90deg);
}

/* ---- Privacy notice ---- */
.booking-modal-privacy {
  margin: 4px 0 16px;
  color: var(--color-muted);
  font-size: 11.5px;
  line-height: 1.6;
}

.booking-modal-privacy a {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ---- Field labels visible in the modal (placeholders alone aren't enough) ---- */
.booking-modal-card .contact-field-label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-dark-1);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.booking-modal-card .contact-form-popup-guests {
  max-width: 200px;
}

/* ---- Submit button loading state ---- */
.booking-modal-card .get-quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-modal-card .get-quote .btn-loading {
  display: none;
  align-items: center;
  gap: 8px;
}

.booking-modal-card .get-quote.is-loading .btn-text { display: none; }
.booking-modal-card .get-quote.is-loading .btn-loading { display: inline-flex; }

.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: bookingSpin 0.7s linear infinite;
}

@keyframes bookingSpin { to { transform: rotate(360deg); } }

/* ---- In-modal success state ---- */
.booking-modal-state {
  padding: 18px 4px 6px;
  text-align: center;
}

.booking-modal-state-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.14);
  color: var(--accent-dark);
  font-size: 24px;
}

.booking-modal-state-title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--color-dark-blue);
}

.booking-modal-state-text {
  margin: 0 0 26px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.7;
}

.booking-modal-state-btn {
  padding: 12px 30px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: transparent;
  color: var(--color-dark-blue);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.booking-modal-state-btn:hover {
  border-color: var(--header-accent);
  background: var(--header-accent);
  color: #fff;
}

@media (max-width: 860px) {
  .booking-modal-card {
    grid-template-columns: 1fr;
    max-height: 94vh;
  }

  .booking-modal-visual {
    display: none;
  }

  .booking-modal-form-panel {
    max-height: 94vh;
  }

  .booking-modal-form-panel-inner {
    padding: 32px 22px 26px;
  }
}

/* ----- Promo / Pachete banner on homepage (MOD 2.3) ----- */
.promo-packages {
  padding: 0 0 20px;
}

.promo-packages__banner {
  position: relative;
  border-radius: var(--border-radius-12);
  overflow: hidden;
  padding: 74px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  background-position: center;
  background-size: cover;
}

.promo-packages__banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.promo-packages__banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 17, 20, 0.68);
  z-index: 1;
  pointer-events: none;
}

.promo-packages__banner > * {
  position: relative;
  z-index: 2;
}

.promo-packages__banner h2 {
  font-size: 36px;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 1px;
  max-width: 720px;
}

.promo-packages__subtitle {
  color: var(--color-white);
  opacity: 0.85;
  max-width: 640px;
  margin-top: -12px;
}

/* ----- Room blocks: extra specs + reserve button (MOD 3) ----- */
.room-card__specs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 4px;
}

.room-card__meta,
.room-card__capacity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
  font-size: 14px;
}

.room-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
}

/* ----- Room detail CTA block (MOD 1.1 / MOD 3) ----- */
.room-cta {
  padding: 6px 0 40px;
}

.room-cta .cta-row {
  justify-content: center;
}

/* ----- Specification lists (Facilitati / Dotari tehnice) ----- */
.spec-list .item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text-color);
}

.spec-list .item ul li {
  padding: 2px 0;
  font-size: 16px;
  line-height: var(--line-height-150);
}

/* ----- Contact page map (MOD 4.3) ----- */
.contact-map {
  margin-top: 26px;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  border: 1px solid var(--light-gray-2);
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

/* ----- Team photo placeholder (MOD 5.2) ----- */
.team-photo-section {
  padding: 52px 0 0;
}

.team-photo-section .team-photo-wrapper {
  border-radius: var(--border-radius-12);
  overflow: hidden;
}

.team-photo-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ----- Portfolio restructure (MOD 6) ----- */
.portfolio-filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.portfolio-filters button {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 24px;
  background: var(--color-white);
  border: 1px solid var(--light-gray-2);
  border-radius: 999px;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-filters button:hover {
  border-color: var(--header-accent);
  color: var(--header-accent);
}

.portfolio-filters button.is-active {
  background: var(--header-accent);
  border-color: var(--header-accent);
  color: var(--color-white);
}

.portfolio-project {
  background: var(--color-white);
  border: 1px solid var(--light-gray-2);
  border-radius: var(--border-radius-12);
  overflow: hidden;
  margin-bottom: 36px;
}

.portfolio-project__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
}

.portfolio-project__gallery a {
  display: block;
  overflow: hidden;
}

.portfolio-project__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
  transition: transform 0.5s ease;
}

.portfolio-project__gallery a:hover img {
  transform: scale(1.05);
}

.portfolio-project__gallery a.is-wide {
  grid-row: span 2;
}

.portfolio-project__gallery a.is-wide img {
  aspect-ratio: auto;
}

.portfolio-project__body {
  padding: 30px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.portfolio-project__body h3 {
  font-size: 27px;
  font-weight: 400;
  color: var(--color-dark-blue);
}

.portfolio-project__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-project__tags span {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--light-gray-2);
  border-radius: 999px;
  padding: 5px 14px;
  color: var(--text-color);
}

.portfolio-project__desc {
  color: var(--text-color);
  font-size: 15px;
  line-height: var(--line-height-175);
}

.portfolio-project__review {
  font-style: italic;
  font-size: 16.5px;
  color: var(--color-dark-1);
  border-left: 3px solid var(--header-accent);
  padding-left: 16px;
  line-height: var(--line-height-175);
}

.portfolio-project__review small {
  display: block;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-color);
  margin-top: 6px;
}

.portfolio-project__more {
  align-self: flex-start;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--header-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.portfolio-project__more:hover {
  color: var(--color-dark-blue);
}

/* Before/After + Highlights (MOD 6.4-6.6) */
.portfolio-extra {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.portfolio-extra .section-heading h2 {
  font-size: 32px;
  font-weight: 400;
  color: var(--color-dark-blue);
  margin-bottom: 6px;
}

.portfolio-extra .section-heading p {
  color: var(--text-color);
  font-size: 15px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.before-after-grid .ph {
  position: relative;
  border-radius: var(--border-radius-12);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: var(--light-gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.before-after-grid .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after-grid .ph .ph-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(20, 20, 20, 0.55);
  color: var(--color-white);
  font-size: 13px;
  letter-spacing: 0.4px;
  z-index: 2;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.highlights-grid .ph {
  position: relative;
  border-radius: var(--border-radius-12);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  background: var(--light-gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.highlights-grid .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.highlights-grid .ph--video i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 38px;
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.highlights-grid .ph--video .ph-video-poster {
  position: absolute;
  inset: 0;
}

.highlights-grid .ph--video .ph-video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.highlights-grid .ph--video .ph-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ----- Footer socials (MOD 1.4) ----- */
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  border: 1px solid rgba(200, 169, 107, 0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header-accent);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--header-accent);
  color: var(--color-white);
  border-color: var(--header-accent);
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-project__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-project__gallery a.is-wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .portfolio-project__gallery a.is-wide img {
    aspect-ratio: 16 / 8;
  }
}

@media (max-width: 767px) {
  .booking-modal-form-panel-inner {
    padding: 26px 18px 22px;
  }

  .promo-packages__banner {
    padding: 54px 22px;
  }

  .promo-packages__banner h2 {
    font-size: 27px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Frontend admin quick-action bar (WordPress-style toolbar) ===== */
:root { --frontend-adminbar-height: 34px; }
body.has-frontend-adminbar { padding-top: var(--frontend-adminbar-height); }
body.has-frontend-adminbar > .site-wrapper > header {
  top: var(--frontend-adminbar-height);
}
.frontend-admin-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 99999;
  display: none;
  height: var(--frontend-adminbar-height);
  color: #fff;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  font-family: inherit;
  line-height: 1;
}
.frontend-admin-bar.is-visible { display: block; }
.frontend-admin-bar__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 8px;
}
.frontend-admin-bar a { text-decoration: none; }
.frontend-admin-bar__link,
.frontend-admin-bar__user,
.frontend-admin-bar__logout {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  height: var(--frontend-adminbar-height);
  padding: 0 10px;
  border: 0;
  color: rgba(255,255,255,.86);
  background: transparent;
  font-size: 12px;
  white-space: nowrap;
  transition: color .15s ease, background-color .15s ease;
}
.frontend-admin-bar__brand { color: #fff !important; }
.frontend-admin-bar__brand strong { font-size: 12px; font-weight: 700; }
.frontend-admin-bar__actions {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.frontend-admin-bar__link:hover,
.frontend-admin-bar__link:focus-visible { color: #fff; background: rgba(255,255,255,.1); }
.frontend-admin-bar__context { color: #a9d8ff; }
.frontend-admin-bar__account { display: flex; align-items: stretch; flex: 0 0 auto; margin-left: auto; }
.frontend-admin-bar__languages { display: flex; align-items: center; gap: 2px; padding: 0 5px; }
.frontend-admin-bar__languages a {
  display: grid;
  min-width: 27px;
  height: 24px;
  padding: 0 5px;
  place-items: center;
  border-radius: 5px;
  color: #9aa9bd;
  font-size: 10px;
  font-weight: 700;
}
.frontend-admin-bar__languages a.active,
.frontend-admin-bar__languages a:hover { color: #fff; background: rgba(255,255,255,.12); }
.frontend-admin-bar__user { color: #b9c5d5; }
.frontend-admin-bar__logout-form { display: flex; margin: 0; }
.frontend-admin-bar__logout { cursor: pointer; }
.frontend-admin-bar__logout:hover,
.frontend-admin-bar__logout:focus-visible { color: #fff; background: #8f3040; }
.frontend-admin-bar .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  font-family: "bootstrap-icons" !important;
  font-size: 14px;
  font-style: normal;
  line-height: 1;
  vertical-align: middle;
}
@media (max-width: 1100px) {
  .frontend-admin-bar__user,
  .frontend-admin-bar__secondary { display: none; }
}
@media (max-width: 767px) {
  .frontend-admin-bar { overflow: hidden; }
  .frontend-admin-bar__inner { overflow-x: auto; overflow-y: hidden; padding: 0 4px; scrollbar-width: none; }
  .frontend-admin-bar__inner::-webkit-scrollbar { display: none; }
  .frontend-admin-bar__link,
  .frontend-admin-bar__logout { padding: 0 9px; }
  .frontend-admin-bar__languages { display: none; }
  .frontend-admin-bar__account { margin-left: 0; }
}
@media (max-width: 520px) {
  .frontend-admin-bar__brand strong,
  .frontend-admin-bar__actions .frontend-admin-bar__link:not(.frontend-admin-bar__context) span,
  .frontend-admin-bar__logout span { display: none; }
  .frontend-admin-bar__link,
  .frontend-admin-bar__logout { min-width: 34px; justify-content: center; }
}

/* Respect reduced-motion preference for nonessential header/menu animations */
@media (prefers-reduced-motion: reduce) {
  header,
  header *,
  .desk-menu,
  .menu-icon span,
  .menu-icon::before,
  .menu-icon::after,
  .lang-dropdown,
  .header-cta,
  .header-logo img {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
