/* ============================================================
   PÁFRÁNY GREENS — Oldal stílusok (pafrany.css)
   Onepager — design tokenek, layout, szekciók.
   Az alaprajz-modul stílusai külön fájlban: alaprajz.css
   FONTOS: ez a fájl töltődik be ELŐSZÖR — a :root változókra
   és a resetre az alaprajz.css is támaszkodik.
   ============================================================ */

  :root {
      /* ── Colours ── */
      --gold: #A9915B;           /* bronz-arany — fa/réz akcentus az épületen.
                                  4,54:1 a --dark-mid kártyaháttéren (WCAG AA) */
      --gold-light: #C4AB7A;     /* világosabb bronz hover/em */
      --cream: #F2EDE4;          /* mészkő fehér — homlokzat világos tónus */
      --dark: #1E2022;           /* antracit — sötét homlokzat, B épület */
      --dark-mid: #2A2D30;       /* antracit mid — kártyák, szekcióváltó */
      --stone: #868784;          /* semleges szürke — másodlagos szöveg.
                                  4,52:1 a --dark háttéren (WCAG AA) */
      --stone-light: #9B9C99;    /* világos szürke — muted szöveg */
      --border: rgba(168,144,90,0.22); /* bronz border */

      /* ── Fonts ── */
      --font-display: 'Jost', sans-serif;
      --font-body: 'Jost', sans-serif;

      /* ── Type scale (Bootstrap 5 base = 1rem / 16px) ──
         Bootstrap 5 uses a modular scale. 4px grid throughout.
         xs   : 0.625rem  — 10px  nav labels, eyebrows, table headers, buttons
         sm   : 0.875rem  — 14px  captions, meta, table cells, amenity sub (Bootstrap .small)
         base : 1rem      — 16px  body copy  ← Bootstrap $font-size-base
         md   : 1.125rem  — 18px  lead / intro paragraphs
         lg   : 1.25rem   — 20px  loc-card h5, subheadings
         xl   : 1.375rem  — 22px  nav logo, footer logo, contact phone
      ── */
      --fs-xs:   0.625rem;
      --fs-sm:   0.875rem;
      --fs-base: 1rem;
      --fs-md:   1.125rem;
      --fs-lg:   1.25rem;
      --fs-xl:   1.375rem;

      /* ── Line heights — Bootstrap 5 standards ──
         Bootstrap $line-height-base = 1.5
         tight  : 1.2   display headings (Cormorant)
         normal : 1.5   body default  ← Bootstrap standard
         relaxed: 1.625 body copy in content sections (26px @ 16px)
      ── */
      --lh-tight:   1.2;
      --lh-normal:  1.5;
      --lh-relaxed: 1.625;

      /* ── Spacing — 4px grid (0.25rem steps) ──
         All margins/paddings snap to multiples of 0.25rem (4px)
      ── */
      --space-1: 0.25rem;   /*  4px */
      --space-2: 0.5rem;    /*  8px */
      --space-3: 0.75rem;   /* 12px */
      --space-4: 1rem;      /* 16px */
      --space-5: 1.25rem;   /* 20px */
      --space-6: 1.5rem;    /* 24px */
      --space-7: 1.75rem;   /* 28px */
      --space-8: 2rem;      /* 32px */
      --space-10: 2.5rem;   /* 40px */
      --space-12: 3rem;     /* 48px */

      /* ── Letter spacing ── */
      --ls-wide:   0.18em;
      --ls-wider:  0.22em;
    }

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

  /* ── UTILS ── */
  .gold { color: var(--gold); }
  .label-sm {
      font-family: var(--font-body);
      font-size: var(--fs-xs);
      font-weight: 500;
      letter-spacing: var(--ls-wider);
      text-transform: uppercase;
      color: var(--gold);
    }
  .section-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 200;
      line-height: var(--lh-tight);
      color: var(--cream);
    }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .body-copy {
      font-size: var(--fs-base);
      font-weight: 300;
      line-height: var(--lh-relaxed);
      color: var(--stone-light);
    }
  .divider-gold {
      width: 3rem;      /* 48px */
      height: 1px;
      background: var(--gold);
      margin: var(--space-5) 0;  /* 20px top/bottom — 4px grid */
    }
  .btn-outline-gold, .btn-solid-gold {
      font-family: var(--font-body);
      font-size: var(--fs-xs);
      font-weight: 500;
      letter-spacing: var(--ls-wide);
      text-transform: uppercase;
      padding: 0.75rem 2rem;             /* 12px 32px — 4px grid */
      text-decoration: none;
      display: inline-block;
      transition: background .3s, color .3s;
      cursor: pointer;
      border: 1px solid var(--gold);
    }
  .btn-outline-gold { color: var(--gold); background: transparent; }
  .btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
  .btn-solid-gold { color: var(--dark); background: var(--gold); }
  .btn-solid-gold:hover { background: var(--gold-light); color: var(--dark); }

  /* ── NAV ── */
  #navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      padding: 0 calc(var(--bs-gutter-x, 1.5rem) * .5);
      background: rgba(30,32,34,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
  .nav-logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      text-decoration: none;
      cursor: pointer;
      line-height: 1;
    }
  .nav-logo-img {
      display: block;
      height: 44px;
      width: auto;
    }
  .nav-logo:hover { opacity: .85; }
  .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;                         /* 32px — 4px grid */
      list-style: none;
      margin: 0;
      padding: 0;
      flex: 1;
      justify-content: center;
    }
  .nav-links li { display: flex; align-items: center; }
  .nav-links a {
      font-size: var(--fs-xs);
      font-weight: 500;
      letter-spacing: var(--ls-wide);
      text-transform: uppercase;
      color: var(--stone-light);
      text-decoration: none;
      transition: color .2s;
      line-height: 54px;
      display: block;
    }
  .nav-links a:hover { color: var(--gold); }
  .nav-right {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      flex-shrink: 0;
    }
  .nav-lang {
      font-size: var(--fs-xs);
      font-weight: 500;
      letter-spacing: .14em;
      color: var(--stone-light);
      cursor: pointer;
      display: flex;
      align-items: center;
      line-height: 1;
    }
  .nav-lang .active { color: var(--gold); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; position: relative; }
  .hamburger span {
      display: block; width: 22px; height: 1.5px;
      background: var(--cream);
      transition: transform .3s ease, opacity .3s ease;
      transform-origin: center;
    }
  .hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  #mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 998;
      background: var(--dark);
      flex-direction: column;
      padding-top: 54px;           /* navbar height */
    }
  #mobile-menu.is-open { display: flex; }
  .mobile-menu-inner {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: var(--space-8) calc(var(--bs-gutter-x, 1.5rem) * .5);
    }
  .mobile-nav-links {
      list-style: none;
      padding: 0; margin: 0;
    }
  .mobile-nav-links li {
      border-bottom: 1px solid var(--border);
    }
  .mobile-nav-links li:first-child {
      border-top: 1px solid var(--border);
    }
  .mobile-nav-links a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--space-5) 0;
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 6vw, 2rem);
      font-weight: 200;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: .04em;
      transition: color .2s;
    }
  .mobile-nav-links a:hover { color: var(--gold); }
  .mobile-nav-links a::after {
      content: '→';
      font-family: var(--font-body);
      font-size: var(--fs-sm);
      color: var(--gold);
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity .2s, transform .2s;
    }
  .mobile-nav-links a:hover::after {
      opacity: 1;
      transform: translateX(0);
    }
  .mobile-menu-footer {
      padding: var(--space-8) calc(var(--bs-gutter-x, 1.5rem) * .5);
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-4);
    }
  .mobile-menu-footer .nav-lang { font-size: var(--fs-sm); }
  section, nav, footer { max-width: 100%; }

  /* ── HERO ── */
  #hero {
      height: 100vh;
      height: 100dvh;
      min-height: 640px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-top: 54px;
      padding-bottom: 5rem;
      overflow: hidden;
    }
  #hero .container { margin-top: -4vh; }
  .hero-video-bg {
      position: absolute; inset: 0;
      background: var(--dark);
      overflow: hidden;
    }
  .hero-video-bg video {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
  .hero-video-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(0, 0, 0, 0.70);
    }
  .hero-content { position: relative; z-index: 2; }
  .hero-eyebrow {
      font-size: var(--fs-xs);
      font-weight: 500;
      letter-spacing: var(--ls-wider);
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: var(--space-5);   /* 20px */
    }
  .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: 200;
      line-height: var(--lh-tight);
      color: var(--cream);
      margin-bottom: var(--space-6);   /* 24px */
    }
  .hero-title em { font-style: italic; color: var(--gold-light); }
  .hero-subtitle {
      font-size: var(--fs-base);
      font-weight: 300;
      line-height: var(--lh-relaxed);
      letter-spacing: .04em;
      color: rgba(245,240,232,.6);
      margin-bottom: var(--space-10);  /* 40px */
      max-width: 440px;
    }
  .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%;  /* 40px — 4px grid */
      transform: translateX(-50%);
      z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
    }
  .hero-scroll span {
      font-size: var(--fs-xs);
      letter-spacing: var(--ls-wide);
      color: var(--stone-light);
      text-transform: uppercase;
    }
  .scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

  /* ── SECTIONS BASE ── */
  section { padding: 6rem 0; }
  section.dark { background: var(--dark); }
  section.darker { background: var(--dark-mid); }
  section.light { background: #EDEAE2; color: var(--dark); }
  section.light .section-title { color: var(--dark); }
  section.light p { color: var(--dark-mid); }
  section.light .divider-gold { background: var(--gold); }

  /* ── Szövegszínek világos háttéren ────────────────────────────
     A --gold és a --stone sötét háttérre van hangolva. Krém alapon
     az arany 2,53:1, a szürke 3,09:1 — mindkettő megbukik a WCAG AA
     4,5:1 küszöbén. Itt csak a SZÖVEG kap sötétebb tónust; a vonalak,
     keretek és kitöltések maradnak a márka aranyán.
     A --stone felülírása azért változó szinten történik, mert az
     oldalon inline style="color:var(--stone)" is előfordul, amit
     osztályszintű szabállyal nem lehetne elérni.
     ──────────────────────────────────────────────────────────── */
  section.light {
      --stone: #63645F;        /* 4,96:1 a #EDEAE2 alapon */
      --stone-light: #6E6F6A;  /* 4,32:1 — csak kiegészítő szöveghez */
    }
  section.light .label-sm { color: #7A6431; }              /* 4,73:1 */
  section.light .section-title em { color: #7A6431; }      /* 4,73:1 */
  section.light .apt-filter-btn:hover:not(.active) { color: #7A6431; }

  /* ── ABOUT / PROJEKT ── */
  .feature-list { list-style: none; padding: 0; margin: var(--space-8) 0; }
  .feature-list li {
      display: flex; align-items: center; gap: var(--space-3);
      font-size: var(--fs-sm);
      font-weight: 400;
      letter-spacing: .08em;
      color: var(--stone-light);
      padding: var(--space-3) 0;        /* 12px — 4px grid */
      border-bottom: 1px solid rgba(255,255,255,.04);
    }
  .feature-list li::before {
      content: '';
      width: 16px; height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

  /* ── GALLERY ── */
  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: 320px;
      gap: 4px;
      max-width: 100%;
      overflow: hidden;
    }
  .gallery-item {
      overflow: hidden;
      cursor: pointer;
      position: relative;
      transition: opacity .3s ease;
    }
  .gallery-item img, .gallery-item .real-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  .gallery-item.is-hidden { display: none; }
  .gallery-item.is-fading { opacity: 0; }
  .gallery-item:first-child:not(.is-hidden) { grid-row: span 2; }
  .gallery-item::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(30,32,34,0);
      transition: .3s;
      pointer-events: none;
    }
  .gallery-item:hover::after { background: rgba(30,32,34,.35); }

  /* ── GALÉRIA LIGHTBOX ── */
  .gal-modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 2100;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--space-5);
      padding: var(--space-6) var(--space-4);
      background: rgba(20,22,24,.94);
      backdrop-filter: blur(4px);
    }
  .gal-modal-overlay.is-open { display: flex; }
  .gal-stage {
      position: relative;
      flex: 1;
      min-height: 0;
      width: 100%;
      max-width: 1200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--space-3);
    }
  .gal-main {
      max-width: 100%;
      max-height: 72vh;
      object-fit: contain;
      display: block;
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }
  .gal-counter {
      font-size: var(--fs-sm);
      letter-spacing: .1em;
      color: var(--stone-light);
      margin: 0;
    }
  .gal-modal-close {
      position: absolute;
      top: var(--space-5);
      right: var(--space-5);
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.2);
      color: var(--cream);
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      transition: background .2s, border-color .2s;
    }
  .gal-modal-close:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
  .gal-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.2);
      color: var(--cream);
      font-size: 2rem;
      line-height: 1;
      cursor: pointer;
      z-index: 2;
      transition: background .2s, border-color .2s;
    }
  .gal-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
  .gal-prev { left: var(--space-5); }
  .gal-next { right: var(--space-5); }
  .gal-thumbs {
      display: flex;
      gap: var(--space-2);
      overflow-x: auto;
      max-width: 100%;
      padding: var(--space-2);
      scrollbar-width: thin;
    }
  .gal-thumb {
      flex: 0 0 auto;
      width: 76px;
      height: 76px;
      object-fit: cover;
      cursor: pointer;
      opacity: .5;
      border: 2px solid transparent;
      transition: opacity .2s, border-color .2s;
    }
  .gal-thumb:hover { opacity: .85; }
  .gal-thumb.is-active { opacity: 1; border-color: var(--gold); }

  /* ── Mikrocímkék mobilon: 10px helyett 11px ──
     A 0.625rem nagybetűs, ritkított feliratok kis kijelzőn
     nehezen olvashatók. Csak mobilon emeljük, a desktop
     tipográfiai ritmusa változatlan marad. ── */
  @media (max-width: 767px) {
    :root { --fs-xs: 0.6875rem; }
  }

  @media (max-width: 575px) {
    .gal-nav { width: 42px; height: 42px; font-size: 1.5rem; }
    .gal-prev { left: var(--space-2); }
    .gal-next { right: var(--space-2); }
    .gal-main { max-height: 60vh; }
    .gal-thumb { width: 60px; height: 60px; }
  }

  /* ── AMENITIES ── */
  .amenity-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      border: 1px solid var(--border);
      padding: var(--space-8) var(--space-6);  /* 32px 24px */
      text-align: center;
      transition: border-color .3s, background .3s;
    }
  .amenity-card:hover { border-color: var(--gold); background: rgba(184,151,90,.04); }
  .amenity-icon {
      width: 112px; height: 112px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto var(--space-5);
      font-size: 16px;
      color: var(--gold);
    }
  .amenity-icon svg {
      width: 56px; height: 56px;
      fill: currentColor;
      display: block;
      flex-shrink: 0;
    }
  .amenity-card h3 {
      font-family: var(--font-body);
      font-size: var(--fs-xs);
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: var(--space-2);     /* 8px */
    }
  .amenity-card p {
      font-size: var(--fs-sm);
      line-height: var(--lh-normal);
      color: var(--stone-light);
      margin: 0;
    }

  /* ── LOCATION ── */
  .loc-map { height: 420px; background: var(--dark-mid); border: 1px solid var(--border); position: relative; overflow: hidden; }
  .loc-card {
      background: var(--dark);
      border: 1px solid var(--border);
      padding: var(--space-6);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
  .loc-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      flex-shrink: 0;
    }
  .loc-card h3 {
      font-family: var(--font-display);
      font-size: var(--fs-lg);           /* 20px — fixed, no clamp */
      font-weight: 200;
      line-height: var(--lh-tight);
      color: var(--cream);
      margin-bottom: var(--space-3);     /* 12px */
    }
  .loc-card p {
      font-size: var(--fs-base);
      color: var(--stone-light);
      line-height: var(--lh-relaxed);
      margin: 0;
    }
  .dev-stat {
      border-left: 1px solid var(--gold);
      padding-left: var(--space-5);      /* 20px */
    }
  .dev-stat .num {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.5rem);
      font-weight: 200;
      color: var(--cream);
      line-height: 1;
    }
  .dev-stat .desc {
      font-size: var(--fs-sm);
      color: var(--stone-light);
      margin-top: var(--space-1);        /* 4px */
      letter-spacing: .06em;
      line-height: var(--lh-normal);
    }

  /* ── CONTACT ── */
  .contact-form input, .contact-form select, .contact-form textarea {
      width: 100%;
      background: transparent;
      border: none; border-bottom: 1px solid var(--border);
      padding: var(--space-3) 0;         /* 12px — 4px grid */
      font-family: var(--font-body);
      font-size: var(--fs-base);
      font-weight: 300;
      color: var(--cream);
      outline: none;
      transition: border-color .2s;
      appearance: none;
    }
  .contact-form select { cursor: pointer; }
  .contact-form select option { background: var(--dark-mid); color: var(--cream); }
  .contact-form input:focus, .contact-form select:focus { border-bottom-color: var(--gold); }
  .contact-form input::placeholder {
      color: var(--stone);
      font-size: var(--fs-sm);
      letter-spacing: .06em;
    }
  .contact-form .form-group { margin-bottom: var(--space-6); }
  .contact-form label {
      font-size: var(--fs-xs);
      font-weight: 500;
      letter-spacing: var(--ls-wide);
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: .4rem;
    }
  .contact-info p {
      font-size: var(--fs-base);
      color: var(--stone-light);
      margin-bottom: .5rem;
    }
  .contact-info a { color: var(--cream); text-decoration: none; }
  .contact-info a:hover { color: var(--gold); }
  .privacy-check {
      display: flex; align-items: flex-start; gap: var(--space-3);  /* 12px */
      font-size: var(--fs-sm);
      color: var(--stone-light);
      margin-bottom: var(--space-6);     /* 24px */
    }
  .privacy-check input[type=checkbox] {
      width: 16px; min-width: 16px; height: 16px;  /* 16px — 4px grid */
      border: 1px solid var(--border);
      background: transparent;
      accent-color: var(--gold);
      margin-top: 2px;
    }

  /* ── VIDEO ── */
  .video-thumb {
      position: relative; cursor: pointer;
      overflow: hidden;
    }
  .video-thumb .img-placeholder { height: 460px; }
  .video-play {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 72px; height: 72px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      z-index: 2;
      transition: background .3s;
    }
  .video-thumb:hover .video-play { background: var(--gold); }
  .video-play svg { width: 20px; height: 20px; fill: var(--gold); margin-left: 3px; }
  .video-thumb:hover .video-play svg { fill: var(--dark); }
  .video-thumb::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(30,32,34,.5);
      pointer-events: none;
    }
  img, video { max-width: 100%; }

  /* ── FOOTER ── */
  footer {
      background: var(--dark);
      border-top: 1px solid var(--border);
      padding: var(--space-12) 0;        /* 48px — 4px grid */
    }
  footer .footer-logo {
      font-family: var(--font-display);
      font-size: var(--fs-xl);
      font-weight: 200;
      color: var(--cream);
      margin-bottom: var(--space-4);     /* 16px */
    }
  footer .footer-logo span { color: var(--gold); }
  footer p {
      font-size: var(--fs-sm);
      color: var(--stone);
      margin: 0;
    }
  footer a {
      color: var(--stone);
      text-decoration: none;
      font-size: var(--fs-sm);
      letter-spacing: .04em;
    }
  footer a:hover { color: var(--gold); }

  /* ── REAL IMAGES ── */
  .real-img {
      display: block;
      width: 100%;
      object-fit: cover;
      object-position: center;
    }

  /* ── EGYÉB ── */
  html { overflow-x: clip; }
  body {
      font-family: var(--font-body);
      font-size: var(--fs-base);
      font-weight: 300;
      line-height: var(--lh-normal);
      background: var(--dark);
      color: var(--cream);
      overflow-x: clip;
    }

  /* ── RESPONSIVE — mobile-first, min 375px ── */

  @media (max-width: 575px) {
    #navbar { padding: 0 calc(var(--bs-gutter-x, 1.5rem) * .5); height: 54px; }
    section { padding: 3rem 0; }
    #hero { min-height: 100svh; padding-top: 54px; }
    .hero-title    { font-size: clamp(1.875rem, 11vw, 2.5rem); line-height: 1.1; margin-bottom: var(--space-5); }
    .hero-eyebrow  { font-size: var(--fs-xs); margin-bottom: var(--space-4); }
    .hero-subtitle { font-size: var(--fs-sm); max-width: 100%; margin-bottom: var(--space-8); }
    .section-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .nav-logo-img { height: 30px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-lang  { font-size: 11px; }
    .btn-outline-gold:not(.btn-inline),
        .btn-solid-gold:not(.btn-inline) { display: block; width: 100%; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery-item:first-child:not(.is-hidden) { grid-row: span 1; }
    .gallery-item img { height: 100% !important; min-height: unset !important; }
    .feature-list li { font-size: var(--fs-sm); }
    .loc-card { padding: var(--space-4); }
    .loc-card h3 { font-size: 1.1rem; }
    .contact-form input, .contact-form select { font-size: 1rem; }
    .dev-stat .num { font-size: 1.75rem; }
  }

  @media (min-width: 576px) and (max-width: 767px) {
    #navbar { padding: 0 calc(var(--bs-gutter-x, 1.5rem) * .5); height: 54px; }
    section { padding: 3.5rem 0; }
    #hero { padding-top: 54px; }
    .hero-title    { font-size: clamp(2.25rem, 9vw, 3.25rem); }
    .section-title { font-size: clamp(2rem, 6vw, 2.75rem); }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
    .gallery-item:first-child:not(.is-hidden) { grid-row: span 1; }
    .gallery-item img { height: 100% !important; min-height: unset !important; }
  }

  @media (min-width: 768px) and (max-width: 991px) {
    #navbar { padding: 0 calc(var(--bs-gutter-x, 1.5rem) * .5); height: 54px; gap: 1rem; }
    section { padding: 4rem 0; }
    .hero-title    { font-size: clamp(2.5rem, 6vw, 4rem); }
    .section-title { font-size: clamp(2rem, 4vw, 3rem); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
    .gallery-item:first-child:not(.is-hidden) { grid-row: span 1; }
    .gallery-item:first-child img { min-height: unset !important; height: 100% !important; }
    .gallery-item img { height: 100% !important; }
  }

  /* Navbar: a hamburger menü 1199px-ig érvényes, mert a 7 menüelem +
     logo + AJÁNLATKÉRÉS gomb csak 1200px-től fér el túlcsordulás nélkül. */
  @media (max-width: 1199px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }
  @media (min-width: 1200px) {
    .hamburger { display: none; }
    .nav-links { display: flex; }
  }
