

    /* ── RESET & BASE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream: #f5f0e8;
      --cream-light: #faf7f2;
      --dark: #1a1a18;
      --dark-mid: #2c2c28;
      --accent: #3d5c2e;
      --accent-light: #6b8a55;
      --green: #4a5e3a;
      --green-light: #6b8a55;
      --text: #3a3832;
      --text-muted: #7a7568;
      --white: #ffffff;
      --nav-h: 72px;
      --section-pad: clamp(60px, 8vw, 120px);
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans: 'Jost', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-sans);
      background: var(--cream-light);
      color: var(--text);
      line-height: 1.8;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ── UTILITY ── */
    .section-eyebrow {
      display: block;
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 300;
      line-height: 1.2;
      color: var(--dark);
    }
    .section-title em { font-style: italic; color: var(--accent); }
    .section-body {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--text-muted);
      font-weight: 300;
    }
    .btn-outline {
      display: inline-block;
      padding: 0.85rem 2.2rem;
      border: 1px solid var(--accent);
      color: var(--accent);
      font-family: var(--font-sans);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      margin-top: 2rem;
    }
    .btn-outline:hover { background: var(--accent); color: var(--white); }

    /* ── REVEAL ANIMATION ── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  /* Culoarea oficială WhatsApp */
  background: #25D366; 
  color: white;
  /* Îl facem rotund */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  
  /* Centrarea iconiței */
  display: flex;
  align-items: center;
  justify-content: center;
  
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  padding: 0; /* Resetăm padding-ul anterior */
}

.sticky-cta:hover {
  background: #128C7E; /* Verde mai închis la hover */
  transform: scale(1.1); /* Efect de mărire ușoară */
}

.sticky-cta svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 480px) {
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .sticky-cta svg {
    width: 26px;
    height: 26px;
  }
}
    /* ══════════════════════════════════
       NAV
    ══════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(20px, 4vw, 60px);
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    #nav.scrolled {
      background: rgba(250,247,242,0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    }
    .nav-logo {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      font-weight: 400;
      color: var(--white);
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
      z-index: 901;
    }
    #nav.scrolled .nav-logo { color: var(--dark); }
    .nav-links {
      display: flex;
      gap: clamp(2.5rem, 3vw, 2.5rem);
      align-items: center;
    }
    .nav-links a {
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      transition: color 0.3s ease;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--accent-light);
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    #nav.scrolled .nav-links a { color: var(--text-muted); }
    #nav.scrolled .nav-links a:hover { color: var(--accent); }

    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      z-index: 901;
      background: none;
      border: none;
    }
    .nav-burger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: center;
    }
    #nav.scrolled .nav-burger span { background: var(--dark); }
    .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

    .nav-mobile-overlay {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 899;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .nav-mobile-overlay.open { opacity: 1; pointer-events: all; }
    .nav-mobile-overlay a {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 8vw, 3rem);
      color: var(--cream);
      font-weight: 300;
      letter-spacing: 0.05em;
      transition: color 0.2s ease;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
    }
    .nav-mobile-overlay.open a { opacity: 1; transform: none; }
    .nav-mobile-overlay.open a:nth-child(1) { transition-delay: 0.1s; }
    .nav-mobile-overlay.open a:nth-child(2) { transition-delay: 0.15s; }
    .nav-mobile-overlay.open a:nth-child(3) { transition-delay: 0.2s; }
    .nav-mobile-overlay.open a:nth-child(4) { transition-delay: 0.25s; }
    .nav-mobile-overlay a:hover { color: var(--accent-light); }
    .nav-mobile-sub {
      position: absolute;
      bottom: 40px;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-family: var(--font-sans);
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
    }


    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    footer#contact { background: var(--dark); padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 80px) 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem); max-width: 1100px; margin: 0 auto 4rem; }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / 3; } }
    @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: 1; } }
    .footer-brand h2 { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400; color: var(--cream); margin-bottom: 0.75rem; }
    .footer-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.7; max-width: 280px; }
    .footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
    .footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: all 0.2s; border-radius: 50%; }
    .footer-social a:hover { border-color: var(--accent); color: var(--accent-light); }
    .footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
    .footer-col li { margin-bottom: 0.6rem; }
    .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 300; transition: color 0.2s; }
    .footer-col a:hover { color: var(--accent-light); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; max-width: 1100px; margin: 0 auto; font-size: 0.72rem; color: rgba(255,255,255,0.3); }
    .footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--accent-light); }



  /* ══════════════════════════════════
       NAV
    ══════════════════════════════════ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 900;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(20px, 4vw, 60px);
      transition: background 0.4s ease, box-shadow 0.4s ease;
    }
    #nav.scrolled {
      background: rgba(250,247,242,0.96);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(0,0,0,0.08);
    }
    .nav-logo {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      font-weight: 400;
      color: var(--white);
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
      z-index: 901;
    }
    #nav.scrolled .nav-logo { color: var(--dark); }
    .nav-links {
      display: flex;
      gap: clamp(2.5rem, 3vw, 2.5rem);
      align-items: center;
    }
    .nav-links a {
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      transition: color 0.3s ease;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--accent-light);
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    #nav.scrolled .nav-links a { color: var(--text-muted); }
    #nav.scrolled .nav-links a:hover { color: var(--accent); }

    .nav-burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      z-index: 901;
      background: none;
      border: none;
    }
    .nav-burger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: center;
    }
    #nav.scrolled .nav-burger span { background: var(--dark); }
    .nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
    .nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

    .nav-mobile-overlay {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 899;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .nav-mobile-overlay.open { opacity: 1; pointer-events: all; }
    .nav-mobile-overlay a {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 8vw, 3rem);
      color: var(--cream);
      font-weight: 300;
      letter-spacing: 0.05em;
      transition: color 0.2s ease;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
    }
    .nav-mobile-overlay.open a { opacity: 1; transform: none; }
    .nav-mobile-overlay.open a:nth-child(1) { transition-delay: 0.1s; }
    .nav-mobile-overlay.open a:nth-child(2) { transition-delay: 0.15s; }
    .nav-mobile-overlay.open a:nth-child(3) { transition-delay: 0.2s; }
    .nav-mobile-overlay.open a:nth-child(4) { transition-delay: 0.25s; }
    .nav-mobile-overlay a:hover { color: var(--accent-light); }
    .nav-mobile-sub {
      position: absolute;
      bottom: 40px;
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-family: var(--font-sans);
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
    }
    /* ══════════════════════════════════════════════════════════════
       PAGE HERO
    ══════════════════════════════════════════════════════════════ */

    .page-hero {
      position: relative;
      padding: 12rem 4rem 6rem;
      background: var(--darker);
      text-align: center;
      overflow: hidden;
    }

    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url('assets/hero.webp') center / cover no-repeat;
    }

    .page-hero::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(0, 0, 0, 0.55);
      z-index: 0;
    }

    .page-hero-inner { position: relative; z-index: 1; }

    .page-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.6rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: #ffffff;      /* Modificat din var(--white) */
      font-weight: bold;   /* Adăugat pentru îngroșare */
      margin-bottom: 1.2rem;
    }

    .page-hero-eyebrow::before,
    .page-hero-eyebrow::after {
      content: '';
      display: block;
      width: 32px; height: 1px;
      background: var(--white);
      opacity: 0.5;
    }

    .page-hero h1 {
      font-size: clamp(3rem, 5.5vw, 4.8rem);
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 1rem;
    }

    .page-hero h1 em { color: rgba(90, 128, 64, 0.9); }

    .page-hero-sub {
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.8);
      font-weight: bold;
      line-height: 1.75;
    }



    /* ══════════════════════════════════════════════════════════════
       WHATSAPP STICKY CTA
    ══════════════════════════════════════════════════════════════ */

    .sticky-cta {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      background: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
      padding: 0;
    }

    .sticky-cta:hover {
      background: #128C7E;
      transform: scale(1.1);
    }

    .sticky-cta svg {
      width: 32px;
      height: 32px;
    }

    @media (max-width: 480px) {
      .sticky-cta       { bottom: 16px; right: 16px; width: 50px; height: 50px; }
      .sticky-cta svg   { width: 26px; height: 26px; }
    }


    /* ══════════════════════════════════════════════════════════════
       STEP BAR
    ══════════════════════════════════════════════════════════════ */

    .step-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.25rem 4rem;
      background: var(--white);
      border-bottom: 1px solid var(--mid-grey);
      position: sticky;
      top: 0;
      z-index: 90;
      box-shadow: var(--shadow-sm);
    }

    .step-item {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0 1.4rem;
    }

    .step-num {
      width: 28px; height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem;
      font-weight: 500;
      flex-shrink: 0;
      transition: all 0.3s;
    }

    .step-item.s-active .step-num { background: var(--green); color: #fff; box-shadow: 0 0 0 4px rgba(45, 74, 45, 0.12); }
    .step-item.s-wait   .step-num { border: 1px solid var(--mid-grey); color: var(--grey); }

    .step-label {
      font-family: 'Jost', sans-serif;
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .step-item.s-active .step-label { color: var(--dark-grey); }
    .step-item.s-wait   .step-label { color: var(--mid-grey); }

    .step-line {
      width: 56px; height: 1px;
      background: var(--mid-grey);
    }


    /* ══════════════════════════════════════════════════════════════
       MAIN / REZ SECTION
    ══════════════════════════════════════════════════════════════ */

    .rez-main {
      background: var(--off-white, #f9f7f4);
      padding: 5rem 4rem 0;
    }

    .rez-heading {
      text-align: center;
      margin-bottom: 4rem;
    }

    .rez-heading .section-eyebrow { margin-bottom: 1rem; }

    .rez-heading h2 {
      font-size: clamp(2.2rem, 3.5vw, 3.2rem);
      font-weight: 300;
      font-style: italic;
      color: var(--dark-grey);
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }

    .rez-heading h2 em { color: var(--green); }

    .rez-heading p {
      font-size: 0.88rem;
      color: var(--grey);
      line-height: 1.7;
    }


    /* ══════════════════════════════════════════════════════════════
       CABINS GRID
    ══════════════════════════════════════════════════════════════ */

    .rez-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 1300px;
      margin: 0 auto 3rem;
    }


    /* ══════════════════════════════════════════════════════════════
       CABIN CARD — override complet fata de style.css
       style.css pune .cabin-info { position: absolute } pentru
       cardurile de pe homepage; aici avem layout diferit (flow normal)
    ══════════════════════════════════════════════════════════════ */

    .rez-grid .cabin-card {
      position: relative !important;
      border-radius: 20px !important;
      cursor: pointer !important;
      background: #fff !important;
      border: 1px solid rgba(0, 0, 0, 0.08) !important;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.05) !important;
      display: flex !important;
      flex-direction: column !important;
      overflow: visible !important;  /* nu tăia imaginea */
    }

    /* Resetăm complet .cabin-img (background-div) din style.css — nu-l folosim */
    .rez-grid .cabin-img { display: none !important; }

    /* Wrap-ul imaginii <img> — forțat în flow normal */
    .rez-grid .cabin-img-wrap {
      position: relative !important;
      width: 100% !important;
      height: 300px !important;
      flex-shrink: 0 !important;
      overflow: hidden !important;
      border-radius: 20px 20px 0 0 !important;
    }

    /* Imaginea efectivă */
    .rez-grid .rez-cabin-img {
      position: absolute !important;
      top: 0; left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      object-position: center !important;
      display: block !important;
      transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1) !important;
    }

    .rez-grid .cabin-card:hover .rez-cabin-img { transform: scale(1.05) !important; }

    /* Info-ul cardului — în flow normal, NU absolute */
    .rez-grid .cabin-info {
      position: relative !important;    /* anulăm position:absolute din style.css */
      bottom: auto !important;
      left: auto !important;
      right: auto !important;
      padding: 1.8rem 2rem 2rem !important;
      display: flex !important;
      flex-direction: column !important;
      flex: 1 !important;
      background: #fff !important;
      border-radius: 0 0 20px 20px !important;
      color: inherit !important;        /* anulăm color:white din style.css */
    }

    /* Resetăm culorile textului care în style.css sunt albe (pt homepage dark cards) */
    .rez-grid .cabin-number  { color: #999 !important; }
    .rez-grid .cabin-name    { color: #1c1c1c !important; font-size: 2rem !important; font-style: italic !important; }
    .rez-grid .cabin-capacity { color: #999 !important; }

    .rez-grid .cabin-feature {
      border-color: rgba(45, 74, 45, 0.11) !important;
      color: #777 !important;
      background: rgba(45, 74, 45, 0.04) !important;
    }

    .rez-grid .cabin-card:hover .cabin-feature {
      color: #777 !important;
      background: rgba(45, 74, 45, 0.06) !important;
      border-color: rgba(45, 74, 45, 0.15) !important;
    }

    /* ── Hidden Elements ── */

    .cabin-divider { display: none; }
    .cabin-ideal   { display: none; }

    /* ── Section Label (Compartimentare / Dotări) ── */

    .cabin-section-label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.58rem;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      font-weight: 500;
      color: #2d4a2d;
      opacity: 0.8;
      margin-bottom: 0.65rem;
    }

    .cabin-section-label i {
      font-size: 0.72rem;
      opacity: 0.7;
    }

    /* ── Floors (Compartimentare) ── */

    .cabin-floors {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
      margin-bottom: 0.5rem;
    }

    .cabin-floor {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 300;
      color: #6a6a6a;
      line-height: 1.5;
    }

    .cabin-floor-badge {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 6px;
      background: rgba(45, 74, 45, 0.07);
      border: 1px solid rgba(45, 74, 45, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Jost', sans-serif;
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: #2d4a2d;
    }

    /* ── Amenities Grid (Dotări) ── */

    .cabin-amenities {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.4rem 0.75rem;
      margin-bottom: 1.2rem;
    }

    .cabin-amenity {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 300;
      color: #6a6a6a;
    }

    .cabin-amenity i {
      font-size: 0.78rem;
      color: #2d4a2d;
      opacity: 0.55;
      width: 14px;
      text-align: center;
      flex-shrink: 0;
    }

    .cabin-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: auto;
    }

    .cabin-price-wrap {
      display: flex;
      align-items: baseline;
      gap: 0.4rem;
    }

    .cabin-price-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      color: #1c1c1c;
      line-height: 1;
    }

    .cabin-price-unit {
      font-family: 'Jost', sans-serif;
      font-size: 0.67rem;
      color: #aaa;
      letter-spacing: 0.04em;
      line-height: 1.4;
      font-weight: 300;
    }

    .cabin-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      padding: 0.78rem 1.6rem;
      border-radius: 100px;
      background: #2d4a2d;
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(45, 74, 45, 0.2);
      transition: background 0.25s, box-shadow 0.25s, gap 0.3s, transform 0.2s;
      white-space: nowrap;
    }

    .cabin-cta:hover {
      background: #3a6040;
      box-shadow: 0 8px 28px rgba(45, 74, 45, 0.28);
      gap: 1rem;
      transform: translateY(-1px);
    }

    .cabin-card.selected .cabin-cta { background: #3a6040; }

    .cabin-cta svg             { transition: transform 0.3s; flex-shrink: 0; }
    .cabin-cta:hover svg       { transform: translateX(3px); }


    /* ══════════════════════════════════════════════════════════════
       TRUST ROW
    ══════════════════════════════════════════════════════════════ */

    .trust-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      max-width: 1300px;
      margin: 0 auto;
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.07);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.8rem;
      border-right: 1px solid var(--mid-grey, #e8e8e8);
      transition: background 0.25s;
    }

    .trust-item:last-child       { border-right: none; }
    .trust-item:hover            { background: rgba(45, 74, 45, 0.03); }

    .trust-icon { font-size: 1.3rem; flex-shrink: 0; opacity: 0.55; }

    .trust-label {
      font-family: 'Jost', sans-serif;
      font-size: 0.57rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--grey, #888);
      margin-bottom: 0.2rem;
    }

    .trust-val {
      font-family: 'Jost', sans-serif;
      font-size: 0.83rem;
      color: var(--dark-grey, #1a1a1a);
      font-weight: 400;
    }

    .page-spacer { height: 5rem; background: var(--off-white, #f9f7f4); }

    /* ══════════════════════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════════════════════ */

    @media (max-width: 900px) {
      .page-hero  { padding: 9rem 1.5rem 4rem; }
      .step-bar   { padding: 1rem; overflow-x: auto; justify-content: flex-start; }
      .step-item  { padding: 0 0.75rem; }
      .step-line  { width: 24px; }
      .rez-main   { padding: 3rem 1.5rem 0; }
      .rez-heading { margin-bottom: 2.5rem; }
      .rez-grid   { grid-template-columns: 1fr; gap: 1.5rem; }

      .trust-row  { grid-template-columns: 1fr 1fr; }
      .trust-item:nth-child(2) { border-right: none; }
      .trust-item:nth-child(3) { border-top: 1px solid var(--mid-grey, #e8e8e8); }
      .trust-item:nth-child(4) { border-top: 1px solid var(--mid-grey, #e8e8e8); border-right: none; }

    }

    @media (max-width: 580px) {
      .cabin-img-wrap  { height: 240px; }
      .cabin-footer    { flex-direction: column; align-items: flex-start; gap: 1rem; }
      .cabin-cta       { width: 100%; justify-content: center; }

      .trust-row                    { grid-template-columns: 1fr; }
      .trust-item                   { border-right: none !important; border-top: 1px solid var(--mid-grey, #e8e8e8); }
      .trust-item:first-child       { border-top: none; }

      .step-label                   { display: none; }
      .step-item.s-active .step-label { display: block; }
    }

    /* ══════════════════════════════════════════════════════════════
       REVEAL ANIMATION
    ══════════════════════════════════════════════════════════════ */

    .reveal {
      opacity: 1 !important;
      transform: none !important;
      visibility: visible !important;
    }


    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    footer#contact { background: var(--dark); padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 80px) 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem); max-width: 1100px; margin: 0 auto 4rem; }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / 3; } }
    @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: 1; } }
    .footer-brand h2 { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 400; color: var(--cream); margin-bottom: 0.75rem; }
    .footer-brand p { font-size: 0.95rem; color: rgba(255,255,255,0.45); font-weight: 300; line-height: 1.7; max-width: 280px; }
    .footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
    .footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: all 0.2s; border-radius: 50%; }
    .footer-social a:hover { border-color: var(--accent); color: var(--accent-light); }
    .footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; }
    .footer-col li { margin-bottom: 0.6rem; }
    .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 300; transition: color 0.2s; }
    .footer-col a:hover { color: var(--accent-light); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; max-width: 1100px; margin: 0 auto; font-size: 0.72rem; color: rgba(255,255,255,0.3); }
    .footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--accent-light); }




.blog-page-hero {
  position: relative;
  margin-top: 0;  /* sau șterge linia complet */
  padding: calc(var(--nav-h) + 6rem) 2rem 5rem;
  background: #1a1a1a;
  overflow: hidden;
}


.blog-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/hero.webp') center/cover no-repeat;
  opacity: 0.14;
}
.blog-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.blog-eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: 'Inter', sans-serif;
  font-size: .6rem; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(90,128,64,.9); margin-bottom: 1rem;
}
.blog-eyebrow::before, .blog-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px;
  background: rgba(90,128,64,.6);
}
.blog-page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; font-style: italic;
  color: #fff; line-height: 1.1; margin-bottom: .75rem;
}
.blog-meta-hero {
  font-family: 'Inter', sans-serif;
  font-size: .75rem; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.blog-meta-hero span { display: flex; align-items: center; gap: .35rem; }

/* ── Blog content – lărgit ── */
.blog-content-wrap {
  padding: 3rem 2rem;          /* mai puțin padding lateral */
}

.blog-content-inner {
  max-width: 900px;            /* era probabil ~600-680px, acum 900px */
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 3rem 4rem;          /* spațiu interior generos */
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
}

@media (max-width: 768px) {
  .blog-content-inner {
    padding: 2rem 1.5rem;
  }
  .blog-content-wrap {
    padding: 1.5rem 1rem;
  }
}

/* ── BACK LINK ─────────────────────────────────────────────── */
.blog-back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: .75rem; font-weight: 500;
  color: #2D4A2D; text-decoration: none;
  margin-bottom: 2rem; opacity: .7;
  transition: opacity .2s;
}
.blog-back:hover { opacity: 1; }

/* ── ARTICLE DEFAULTS (fallback pentru conținut HTML liber) ── */
.blog-article-body {
  font-family: 'Inter', sans-serif;
  font-size: .92rem; line-height: 1.8; color: #3a3a3a;
}
.blog-article-body h1 { font-size: 2rem; color: #1a1a1a; margin: 1.75rem 0 .75rem; font-weight: 700; line-height: 1.15; }
.blog-article-body h2 { font-size: 1.4rem; color: #2D4A2D; margin: 1.5rem 0 .6rem; font-weight: 600; }
.blog-article-body h3 { font-size: 1.15rem; color: #1a1a1a; margin: 1.25rem 0 .5rem; font-weight: 600; }
.blog-article-body p  { margin: 0 0 1rem; }
.blog-article-body ul, .blog-article-body ol { margin: 0 0 1rem 1.5rem; }
.blog-article-body li { margin-bottom: .35rem; }
.blog-article-body a  { color: #2D4A2D; font-weight: 500; }
.blog-article-body a:hover { color: #3D6B3D; }
.blog-article-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 1rem 0; display: block; }
.blog-article-body blockquote {
  border-left: 3px solid #2D4A2D; margin: 1.25rem 0;
  padding: .75rem 1.25rem; background: #EDF5ED;
  border-radius: 0 6px 6px 0; font-style: italic; color: #2D4A2D;
}
.blog-article-body hr { border: none; border-top: 1px solid #e8e8e8; margin: 1.75rem 0; }
.blog-article-body strong { font-weight: 600; }
.blog-article-body code {
  background: #f0f0f0; padding: .1rem .4rem; border-radius: 3px;
  font-family: 'Consolas','Monaco',monospace; font-size: .85em;
}
.blog-article-body pre {
  background: #1a1a1a; color: #e8e8e8; padding: 1.25rem 1.5rem;
  border-radius: 8px; overflow-x: auto; margin: 1rem 0;
}
.blog-article-body pre code { background: none; padding: 0; color: inherit; }
.blog-article-body table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.blog-article-body th { background: #2D4A2D; color: #fff; padding: .6rem 1rem; text-align: left; font-size: .82rem; }
.blog-article-body td { padding: .6rem 1rem; border-bottom: 1px solid #e8e8e8; font-size: .85rem; }

/* ── FOOTER ARTICLE ───────────────────────────────────────── */
.blog-footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8; flex-wrap: wrap; gap: 1rem;
  font-family: 'Inter', sans-serif; font-size: .78rem; color: #999;
}
.blog-share { display: flex; gap: .5rem; }
.blog-share a {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .45rem 1rem; border-radius: 100px;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; transition: background .2s;
  border: 1px solid #e0e0e0; color: #555;
}
.blog-share a:hover { background: #f0f0f0; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .blog-page-hero { padding: 9rem 1.5rem 3.5rem; }
  .blog-content-wrap { padding: 2rem 1rem 4rem; }
  .blog-content-inner { padding: 1.75rem 1.5rem; border-radius: 10px; }
  .blog-article-body h1 { font-size: 1.6rem; }
  .blog-article-body h2 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .blog-content-inner { padding: 1.25rem 1rem; }
  .blog-page-hero h1 { font-size: 1.9rem; }
}
