:root {
  --green: #333d29;
  --gold: #cab597;
  --gold-dark: #9f8763;
  --ink: #1f241c;
  --muted: #68705f;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(51, 61, 41, 0.14);
  --shadow: 0 24px 80px rgba(31, 36, 28, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.has-lightbox {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 12px 40px rgba(31, 36, 28, 0.08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
}

.is-scrolled .brand {
  color: var(--green);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 181, 151, 0.75);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
}

.brand-text {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.brand-text em {
  color: var(--gold);
  font-style: normal;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.is-scrolled .primary-nav {
  color: var(--green);
}

.primary-nav a {
  transition: color 0.2s ease;
}

.primary-nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--green) !important;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(202, 181, 151, 0.5);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 140px 0 58px;
  color: var(--white);
  background: var(--green) var(--hero-image) center/cover no-repeat;
}

.seo-hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: end;
  padding: 150px 0 92px;
  color: var(--white);
  background: var(--green) var(--seo-image) center/cover no-repeat;
}

.seo-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 14, 0.82), rgba(16, 20, 14, 0.28)),
    linear-gradient(180deg, rgba(16, 20, 14, 0.18), rgba(16, 20, 14, 0.55));
}

.seo-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.seo-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 88px);
}

.seo-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 14, 0.78), rgba(16, 20, 14, 0.28)),
    linear-gradient(180deg, rgba(16, 20, 14, 0.28), rgba(16, 20, 14, 0.45));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-bottom: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(52px, 8vw, 104px);
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
}

h3 {
  font-size: 30px;
}

.hero-copy {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions,
.center {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--green);
}

.btn-light {
  background: var(--white);
  color: var(--green);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn-outline {
  border-color: var(--green);
  color: var(--green);
}

.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.hero-stats span {
  min-width: 154px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.section {
  padding: 104px 0;
}

.split,
.lead-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: center;
}

.split-copy p:not(.eyebrow),
.lead-copy p,
.section-head p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
}

.image-duo {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 18px;
  align-items: end;
}

.image-duo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-duo img:first-child {
  height: 430px;
  margin-top: 80px;
}

.events-section,
.gallery-section,
.testimonials-section {
  background: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  min-height: 490px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.event-card img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.event-card:hover img {
  transform: scale(1.04);
}

.event-card div {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.event-card h3 {
  font-size: 28px;
}

.event-card p {
  color: var(--muted);
  font-size: 15px;
}

.event-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 600;
}

.facilities-section {
  background:
    linear-gradient(rgba(51, 61, 41, 0.93), rgba(51, 61, 41, 0.93)),
    url("https://www.lafiluta.ro/wp-content/uploads/2025/05/Photo00016-scaled-1536x1024.jpg") center/cover fixed;
  color: var(--white);
}

.facilities-section .section-head {
  color: var(--white);
}

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

.facility {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(202, 181, 151, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.facility-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border: 1px solid rgba(202, 181, 151, 0.55);
  border-radius: 50%;
  background: rgba(202, 181, 151, 0.12);
  color: var(--gold);
}

.facility-icon svg {
  width: 27px;
  height: 27px;
}

.facility h3 {
  font-size: 27px;
}

.facility p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  padding: 70px 0;
  background: var(--gold);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-inner .eyebrow {
  color: var(--green);
}

.cta-inner .btn-primary {
  background: var(--green);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.gallery-grid-modern {
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  background: var(--green);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-grid-modern .gallery-item {
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(31, 36, 28, 0.11);
}

.gallery-grid-modern .gallery-item:nth-child(10n + 1),
.gallery-grid-modern .gallery-item:nth-child(10n + 8) {
  grid-row: span 2;
}

.gallery-grid-modern .gallery-item:nth-child(10n + 6),
.gallery-grid-modern .gallery-item:nth-child(14n + 12) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-grid-modern .gallery-item img {
  min-height: 100%;
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  border-radius: 999px;
  background: rgba(51, 61, 41, 0.84);
  color: var(--white);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 20, 14, 0.58));
  opacity: 0.9;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.filuta-gallery-slider {
  margin: 34px 0;
}

.filuta-gallery-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.7fr);
  min-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 24px 80px rgba(31, 36, 28, 0.15);
}

.filuta-gallery-track {
  position: relative;
  min-height: 640px;
  background: #11160f;
}

.filuta-gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.filuta-gallery-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.filuta-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filuta-gallery-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 46px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%),
    var(--green);
}

.filuta-gallery-info .eyebrow {
  color: var(--gold);
  margin: 0 0 auto;
}

.filuta-gallery-info span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
}

.filuta-gallery-info h3 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 0.98;
}

.filuta-gallery-info p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.filuta-gallery-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.filuta-gallery-actions button {
  min-width: 48px;
  height: 48px;
  border: 1px solid rgba(202, 181, 151, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filuta-gallery-actions button:not(.filuta-gallery-open) {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.filuta-gallery-actions .filuta-gallery-open {
  width: auto;
  padding: 0 18px;
  background: var(--gold);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.filuta-gallery-actions button:hover {
  transform: translateY(-1px);
  background: var(--gold);
  color: var(--green);
}

.filuta-gallery-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(92px, 118px);
  gap: 10px;
  overflow-x: auto;
  padding: 14px 2px 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.filuta-gallery-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: var(--green);
  cursor: pointer;
  opacity: 0.62;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.filuta-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filuta-gallery-thumb.is-active,
.filuta-gallery-thumb:hover {
  border-color: var(--gold);
  opacity: 1;
  transform: translateY(-1px);
}

.premium-feature {
  background: var(--white);
}

.premium-page-content .seo-block {
  min-height: 300px;
}

.lead-section {
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 50%, rgba(202, 181, 151, 0.18) 50%, rgba(202, 181, 151, 0.18) 100%);
}

.trust-list {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: var(--green);
  font-weight: 700;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.offer-form {
  display: block;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.offer-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(202, 181, 151, 0.2);
}

.offer-form .full {
  grid-column: 1 / -1;
}

.form-notice {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  font-weight: 700;
}

.form-notice.success {
  background: rgba(51, 61, 41, 0.1);
  color: var(--green);
}

.form-notice.error {
  background: rgba(160, 45, 24, 0.09);
  color: #8b2a19;
}

.form-fineprint {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.testimonial-slider {
  position: relative;
  max-width: 840px;
  min-height: 270px;
  margin: 0 auto;
  padding: 54px;
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  margin: 0 auto 24px;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.14;
}

.testimonial h3 {
  font-size: 24px;
}

.testimonial span {
  color: var(--muted);
  font-size: 14px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid var(--green);
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.slider-dots button.active {
  background: var(--green);
}

.contact-grid {
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.seo-content {
  background: var(--white);
}

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

.seo-block,
.faq-item {
  min-height: 270px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.seo-block span {
  display: block;
  width: 38px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--gold);
}

.seo-block h2,
.faq-item h3 {
  font-size: 32px;
}

.seo-block p,
.faq-item p {
  color: var(--muted);
}

.seo-local {
  background: var(--paper);
}

.seo-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--gold-dark);
  text-transform: uppercase;
  font-size: 13px;
}

.page-content {
  max-width: 920px;
}

.page-content h1 {
  margin-top: 36px;
  color: var(--green);
  font-size: clamp(44px, 6vw, 76px);
}

.legal-copy {
  color: var(--muted);
}

.legal-copy strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.1;
}

.legal-copy h2 {
  margin-top: 34px;
  color: var(--green);
  font-size: 34px;
}

.legal-copy h3 {
  margin-top: 24px;
  color: var(--green);
  font-size: 26px;
}

.legal-copy a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

.wp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.wp-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

.wp-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wp-gallery-grid figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 2px 0;
}

.map-wrap {
  min-height: 480px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  min-width: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(31, 36, 28, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.floating-actions a:first-child {
  background: #25d366;
}

.floating-actions a:nth-child(2) {
  background: var(--gold);
  color: var(--green);
}

.site-footer {
  padding: 68px 0 24px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.footer-brand,
.site-footer h2 {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
}

.site-footer h2 {
  font-size: 24px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.socials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(14, 17, 12, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  width: auto;
  box-shadow: var(--shadow);
}

.lightbox button {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

.elementor-front-page {
  padding-top: 82px;
  background: var(--paper);
}

.elementor-front-page .elementor-widget-container,
.elementor-page .elementor-widget-container {
  margin: 0;
}

.filuta-premium-page {
  margin-top: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

.filuta-premium-hero {
  position: relative;
  min-height: min(780px, 82svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green) var(--premium-hero) center/cover no-repeat;
}

.filuta-premium-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.filuta-premium-hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(202, 181, 151, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(13, 17, 11, 0.86), rgba(13, 17, 11, 0.35) 58%, rgba(13, 17, 11, 0.55)),
    linear-gradient(180deg, rgba(13, 17, 11, 0.12), rgba(13, 17, 11, 0.64));
}

.filuta-premium-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 118px;
}

.filuta-premium-hero__inner span,
.filuta-premium-head span,
.filuta-premium-showcase span,
.filuta-premium-contact span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.filuta-premium-hero h1 {
  max-width: 980px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(50px, 6.7vw, 104px);
  line-height: 0.95;
}

.filuta-premium-hero p {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.filuta-premium-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.filuta-premium-actions a,
.filuta-premium-cards a,
.elementor-page .elementor-button,
.elementor-page .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold) !important;
  color: var(--green) !important;
  padding: 13px 24px;
  font-weight: 600;
  text-decoration: none !important;
}

.filuta-premium-actions a:nth-child(2) {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.45);
}

.filuta-premium-section,
.filuta-premium-facilities {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

.filuta-premium-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.filuta-premium-head h2,
.filuta-premium-showcase h2,
.filuta-premium-contact h2 {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 0.98;
}

.filuta-premium-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.filuta-premium-cards article {
  min-height: 310px;
  border: 1px solid rgba(51, 61, 41, 0.12);
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
  box-shadow: 0 18px 60px rgba(31, 36, 28, 0.08);
}

.filuta-premium-cards article::before {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--gold);
}

.filuta-premium-cards h3,
.filuta-premium-faq h3 {
  color: var(--green);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.05;
}

.filuta-premium-cards p,
.filuta-premium-copy,
.filuta-premium-faq p,
.filuta-premium-contact p,
.filuta-premium-contact li {
  color: var(--muted);
  font-size: 16px;
}

.filuta-premium-showcase,
.filuta-premium-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.filuta-premium-showcase img {
  width: 100%;
  height: min(620px, 62vw);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.filuta-premium-copy {
  margin-top: 22px;
}

.filuta-premium-copy h2:first-child,
.filuta-premium-copy p:first-child {
  display: none;
}

.filuta-premium-facilities {
  color: var(--white);
}

.filuta-premium-facilities {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(51, 61, 41, 0.94), rgba(51, 61, 41, 0.94)),
    url("https://www.lafiluta.ro/wp-content/uploads/2025/05/Photo00016-scaled-1536x1024.jpg") center/cover fixed;
}

.filuta-premium-facilities .filuta-premium-head h2 {
  color: var(--white);
}

.filuta-premium-facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.filuta-premium-facility-grid article {
  min-height: 150px;
  border: 1px solid rgba(202, 181, 151, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.filuta-premium-facility-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid rgba(202, 181, 151, 0.55);
  border-radius: 50%;
  color: var(--gold);
}

.filuta-premium-facility-grid svg {
  width: 25px;
  height: 25px;
}

.filuta-premium-facility-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.filuta-premium-contact {
  align-items: start;
  background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 50%, rgba(202, 181, 151, 0.18) 50%, rgba(202, 181, 151, 0.18) 100%);
}

.filuta-premium-contact ul {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.filuta-premium-contact li {
  margin: 10px 0;
  font-weight: 700;
}

.filuta-premium-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.filuta-premium-faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.filuta-premium-faq article {
  border-top: 3px solid var(--gold);
  background: var(--white);
  padding: 28px;
}

@media (max-width: 900px) {
  .filuta-premium-cards,
  .filuta-premium-showcase,
  .filuta-premium-contact,
  .filuta-premium-faq {
    grid-template-columns: 1fr;
  }

  .filuta-premium-facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .filuta-premium-hero__inner {
    width: min(100% - 28px, 760px);
    padding: 118px 0 84px;
  }

  .filuta-premium-section,
  .filuta-premium-facilities {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .filuta-premium-cards,
  .filuta-premium-facility-grid {
    grid-template-columns: 1fr;
  }
}

.home .elementor-front-page + .site-footer,
.elementor-page .site-header:not(.is-scrolled) {
  background: rgba(251, 250, 247, 0.96);
  box-shadow: 0 12px 40px rgba(31, 36, 28, 0.08);
}

.elementor-page .site-header:not(.is-scrolled) .brand,
.elementor-page .site-header:not(.is-scrolled) .primary-nav {
  color: var(--green);
}

.filuta-editable-page {
  max-width: 980px;
  margin: 0 auto;
}

.filuta-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.filuta-cf7-grid p,
.filuta-cf7-grid .wpcf7-form-control-wrap {
  margin: 0;
}

.filuta-field {
  min-width: 0;
}

.filuta-field.full,
.filuta-consent,
.filuta-submit {
  grid-column: 1 / -1;
}

.filuta-field > label {
  display: block;
  width: 100%;
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.filuta-cf7-grid .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.filuta-cf7-grid input,
.filuta-cf7-grid select,
.filuta-cf7-grid textarea {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.filuta-cf7-grid select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.filuta-cf7-grid textarea {
  min-height: 132px;
  resize: vertical;
}

.filuta-cf7-grid input:focus,
.filuta-cf7-grid select:focus,
.filuta-cf7-grid textarea:focus {
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(202, 181, 151, 0.2);
}

.filuta-cf7-grid .wpcf7-acceptance {
  display: block;
  margin-top: 2px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(202, 181, 151, 0.12);
  padding: 13px 14px;
  color: var(--muted);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.filuta-cf7-grid .wpcf7-acceptance label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.filuta-cf7-grid input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.filuta-cf7-grid input[type="submit"],
.wpcf7-submit {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--gold) !important;
  color: var(--green) !important;
  padding: 15px 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(159, 135, 99, 0.22);
}

.wpcf7-spinner {
  margin: 12px auto 0;
  display: block;
}

.wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #9d2f1f;
  font-size: 12px;
  font-weight: 700;
}

.wpcf7-response-output {
  margin: 18px 0 0 !important;
  border: 1px solid var(--gold) !important;
  border-radius: 8px;
  background: rgba(202, 181, 151, 0.12);
  color: var(--green);
  padding: 12px 14px !important;
  font-weight: 700;
}

.filuta-cookie,
.cmplz-cookiebanner {
  position: fixed !important;
  left: 24px !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 9999 !important;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid rgba(202, 181, 151, 0.58) !important;
  border-radius: 8px !important;
  background: #333d29 !important;
  color: #ffffff !important;
  padding: 20px !important;
  box-shadow: 0 24px 80px rgba(31, 36, 28, 0.26);
}

.filuta-cookie[hidden] {
  display: none !important;
}

.filuta-cookie strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.filuta-cookie p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.55;
}

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

.filuta-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.filuta-cookie .btn-outline {
  border-color: rgba(202, 181, 151, 0.6);
  color: var(--white);
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
  border-radius: 999px !important;
  font-weight: 600 !important;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-accept {
  background: #cab597 !important;
  border-color: #cab597 !important;
  color: #333d29 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 760px);
  }

  .site-header {
    z-index: 1000;
    background: rgba(251, 250, 247, 0.96);
    box-shadow: 0 12px 40px rgba(31, 36, 28, 0.08);
    backdrop-filter: blur(16px);
  }

  .site-header .brand {
    color: var(--green);
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 1002;
    flex: 0 0 auto;
    border-color: rgba(51, 61, 41, 0.18);
    border-radius: 50%;
    background: var(--green);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .nav-toggle span {
    width: 22px;
    margin: 3px 0;
    background: var(--gold);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100vw;
    height: 100dvh;
    padding: 112px 28px 36px;
    background:
      linear-gradient(rgba(51, 61, 41, 0.96), rgba(51, 61, 41, 0.98)),
      url("https://www.lafiluta.ro/wp-content/uploads/2025/03/FLT-1-scaled.jpg") center/cover no-repeat;
    color: var(--white);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
  }

  .primary-nav a {
    width: 100%;
    max-width: 520px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(32px, 10vw, 48px);
    font-weight: 700;
    line-height: 1;
    text-transform: none;
  }

  .primary-nav .nav-cta {
    justify-content: center;
    width: min(100%, 320px);
    margin-top: 24px;
    border: 0;
    border-radius: 999px;
    color: var(--green) !important;
    font-family: var(--sans);
    font-size: 15px;
    text-transform: uppercase;
  }

  body.admin-bar .primary-nav {
    padding-top: 148px;
  }

  .split,
  .lead-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .facility-grid,
  .seo-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid-modern {
    grid-template-columns: 1fr 1fr;
  }

  .filuta-gallery-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .filuta-gallery-track {
    min-height: 520px;
  }

  .filuta-gallery-info {
    padding: 32px;
  }

  .filuta-cookie,
  .cmplz-cookiebanner {
    grid-template-columns: 1fr;
  }

  .lead-section {
    background: var(--paper);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 72px;
  }

  .brand-text {
    font-size: 24px;
  }

  .hero {
    min-height: 94svh;
    padding: 112px 0 34px;
    align-items: center;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .btn,
  .offer-form .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .image-duo,
  .event-grid,
  .facility-grid,
  .seo-grid,
  .faq-grid,
  .gallery-grid,
  .offer-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-duo img,
  .image-duo img:first-child,
  .seo-photo img {
    height: 390px;
    margin-top: 0;
  }

  .event-card,
  .facility {
    min-height: auto;
  }

  .gallery-grid-modern .gallery-item:nth-child(10n + 1),
  .gallery-grid-modern .gallery-item:nth-child(10n + 8),
  .gallery-grid-modern .gallery-item:nth-child(10n + 6),
  .gallery-grid-modern .gallery-item:nth-child(14n + 12),
  .event-card:last-child {
    grid-row: auto;
    grid-column: auto;
  }

  .filuta-gallery-track {
    min-height: 360px;
  }

  .filuta-gallery-info {
    padding: 24px;
  }

  .filuta-gallery-info h3 {
    font-size: 34px;
  }

  .filuta-gallery-actions {
    width: 100%;
  }

  .filuta-gallery-actions .filuta-gallery-open {
    flex: 1 1 160px;
  }

  .filuta-gallery-thumbs {
    grid-auto-columns: 82px;
  }

  .offer-form {
    padding: 22px;
  }

  .filuta-cf7-grid {
    grid-template-columns: 1fr;
  }

  .filuta-cookie {
    left: 12px !important;
    right: 12px !important;
    bottom: 78px !important;
    padding: 16px !important;
  }

  .filuta-cookie-actions .btn {
    width: 100%;
  }

  .testimonial-slider {
    padding: 32px 22px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-actions a {
    min-height: 48px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Premium custom pages */
.fx-container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.fx-page {
  background: var(--paper);
  color: var(--ink);
}

.fx-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green) var(--fx-hero) center/cover no-repeat;
}

.fx-hero-contact {
  min-height: 650px;
}

.fx-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.fx-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 22, 15, 0.88), rgba(18, 22, 15, 0.42) 58%, rgba(18, 22, 15, 0.72)),
    linear-gradient(180deg, rgba(18, 22, 15, 0.14), rgba(18, 22, 15, 0.58));
}

.fx-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: end;
  padding: 160px 0 120px;
}

.fx-hero-copy {
  max-width: 820px;
}

.fx-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fx-hero h1 {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(46px, 5.7vw, 78px);
  line-height: 0.98;
  max-width: 880px;
}

.fx-hero p {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.6;
}

.fx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.fx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 600;
  text-decoration: none;
}

.fx-btn-gold {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--green);
}

.fx-btn-glass {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.fx-hero-panel {
  border: 1px solid rgba(202, 181, 151, 0.4);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.12);
  color: var(--white);
  padding: 26px;
  backdrop-filter: blur(14px);
}

.fx-hero-panel strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.fx-hero-panel span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.fx-hero-panel ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.fx-hero-panel li {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.fx-intro,
.fx-feature-cards,
.fx-faq,
.fx-gallery-page {
  padding: 96px 0;
}

.fx-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 74px;
  align-items: end;
}

.fx-intro h2,
.fx-section-head h2,
.fx-gallery-head h1,
.fx-showcase h2,
.fx-contact-info h2,
.fx-final-cta h2 {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
}

.fx-intro-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.fx-card-grid article,
.fx-faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 30px;
  box-shadow: 0 20px 60px rgba(31, 36, 28, 0.07);
}

.fx-card-grid i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border: 1px solid rgba(202, 181, 151, 0.55);
  border-radius: 50%;
  color: var(--gold-dark);
}

.fx-card-grid svg {
  width: 27px;
  height: 27px;
}

.fx-card-grid h3,
.fx-faq-grid h3 {
  color: var(--green);
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.06;
}

.fx-card-grid p,
.fx-faq-grid p,
.fx-showcase p,
.fx-showcase li,
.fx-contact-info p {
  color: var(--muted);
}

.fx-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  padding: 100px max(22px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.fx-showcase-image img {
  width: 100%;
  height: min(620px, 58vw);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fx-showcase ul {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.fx-showcase li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  font-weight: 700;
}

.fx-showcase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.fx-text-link {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.fx-facilities {
  padding: 100px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(51, 61, 41, 0.94), rgba(51, 61, 41, 0.94)),
    url("https://www.lafiluta.ro/wp-content/uploads/2025/05/Photo00016-scaled-1536x1024.jpg") center/cover fixed;
}

.fx-facilities .fx-section-head h2 {
  color: var(--white);
}

.fx-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.fx-facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fx-facility-grid article {
  min-height: 150px;
  border: 1px solid rgba(202, 181, 151, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.fx-facility-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--gold);
}

.fx-facility-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.fx-contact-section {
  padding: 86px 0 104px;
  background: linear-gradient(90deg, var(--paper) 0%, var(--paper) 55%, rgba(202, 181, 151, 0.18) 55%, rgba(202, 181, 151, 0.18) 100%);
}

.fx-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.fx-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.fx-contact-list a {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
  box-shadow: 0 16px 44px rgba(31, 36, 28, 0.06);
}

.fx-contact-list svg {
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
}

.fx-contact-list b,
.fx-contact-list span {
  display: block;
}

.fx-contact-list b {
  color: var(--green);
  font-size: 13px;
  text-transform: uppercase;
}

.fx-form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.fx-form-card-head {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.fx-form-card-head span {
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fx-form-card-head h3 {
  margin: 8px 0 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.02;
}

.fx-form-card-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.fx-final-cta {
  padding: 88px 0;
  background: var(--gold);
  text-align: center;
}

.fx-final-cta .fx-kicker,
.fx-final-cta h2 {
  color: var(--green);
}

.fx-final-cta h2 {
  max-width: 760px;
  margin: 0 auto 26px;
}

.fx-final-cta .fx-btn {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

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

.fx-gallery-page {
  padding-top: 170px;
  background: var(--paper);
}

.fx-gallery-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.fx-gallery-head p:not(.fx-kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.fx-gallery-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  grid-auto-rows: 210px;
  gap: 16px;
}

.fx-gallery-mosaic button {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--green);
  cursor: zoom-in;
}

.fx-gallery-mosaic button:nth-child(10n + 1),
.fx-gallery-mosaic button:nth-child(10n + 8) {
  grid-row: span 2;
}

.fx-gallery-mosaic button:nth-child(10n + 6),
.fx-gallery-mosaic button:nth-child(14n + 12) {
  grid-column: span 2;
}

.fx-gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.fx-gallery-mosaic button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(16, 20, 14, 0.64));
}

.fx-gallery-mosaic span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  border-radius: 999px;
  background: rgba(51, 61, 41, 0.86);
  color: var(--white);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.fx-gallery-mosaic button:hover img {
  transform: scale(1.05);
}

h1,
h2,
h3,
.brand-text,
.seo-hero h1,
.filuta-premium-hero h1,
.filuta-premium-head h2,
.filuta-premium-showcase h2,
.filuta-premium-contact h2,
.fx-hero h1,
.fx-intro h2,
.fx-section-head h2,
.fx-gallery-head h1,
.fx-showcase h2,
.fx-contact-info h2,
.fx-final-cta h2 {
  font-weight: 600;
}

.eyebrow,
.fx-kicker,
.primary-nav,
.primary-nav a,
.btn,
.fx-btn,
.nav-cta,
.filuta-gallery-actions .filuta-gallery-open,
.filuta-premium-kicker,
.fx-form-card-head span,
.wpcf7-submit {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 980px) {
  .fx-hero-grid,
  .fx-intro-grid,
  .fx-showcase,
  .fx-contact-grid {
    grid-template-columns: 1fr;
  }

  .fx-hero-panel {
    max-width: 520px;
  }

  .fx-card-grid,
  .fx-faq-grid {
    grid-template-columns: 1fr;
  }

  .fx-facility-grid,
  .fx-gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fx-container {
    width: min(100% - 28px, 760px);
  }

  .fx-hero,
  .fx-hero-contact {
    min-height: auto;
  }

  .fx-hero-grid {
    padding: 124px 0 76px;
  }

  .fx-hero h1 {
    font-size: 44px;
  }

  .fx-hero p {
    font-size: 17px;
  }

  .fx-facility-grid,
  .fx-gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .fx-gallery-mosaic button:nth-child(10n + 1),
  .fx-gallery-mosaic button:nth-child(10n + 8),
  .fx-gallery-mosaic button:nth-child(10n + 6),
  .fx-gallery-mosaic button:nth-child(14n + 12) {
    grid-row: auto;
    grid-column: auto;
  }
}
