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

    :root {
      --black: #0a0a0a;
      --off-black: #111111;
      --dark-gray: #1a1a1a;
      --mid-gray: #2e2e2e;
      --light-gray: #9a9a9a;
      --silver: #bbb;
      --white: #f5f5f0;
      --pure-white: #ffffff;
      --accent: #c8a96e;
      --hu-red: #cd2a3e;
      --hu-white: #f5f5f0;
      --hu-green: #007849;
      --en-blue: #012169;
      --en-white: #f5f5f0;
      --en-red: #cf142b;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--black);
      color: var(--white);
      font-family: 'Noto Sans', 'Lato', 'Segoe UI', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      font-kerning: normal;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    /* ── NAVIGATION ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid #222;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .nav-logo {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--white);
      text-decoration: none;
    }
    .nav-logo span { color: var(--accent); }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      color: var(--silver);
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    .nav-links a:hover { color: var(--white); }
    .menu-toggle {
      display: none;
      width: 34px;
      height: 34px;
      border: 1px solid #3a3a3a;
      background: #0f0f0f;
      color: var(--pure-white);
      cursor: pointer;
      align-items: center;
      justify-content: center;
    }
    .menu-toggle span {
      display: block;
      width: 14px;
      height: 2px;
      background: var(--pure-white);
      position: relative;
    }
    .menu-toggle span::before,
    .menu-toggle span::after {
      content: '';
      position: absolute;
      left: 0;
      width: 14px;
      height: 2px;
      background: var(--pure-white);
    }
    .menu-toggle span::before { top: -5px; }
    .menu-toggle span::after { top: 5px; }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .lang-switch {
      display: inline-flex;
      border: 2px solid #4a4a4a;
      border-radius: 0;
      overflow: hidden;
      background: #0b0b0b;
      box-shadow: 0 0 0 1px #1a1a1a;
    }
    .lang-btn {
      border: 0;
      background: transparent;
      color: #d5d5d5;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 8px 12px;
      cursor: pointer;
      transition: background 0.25s;
    }
    .lang-btn:hover { color: var(--white); }
    .lang-btn.active {
      color: var(--black);
      text-shadow: 0 0 2px rgba(255,255,255,0.45);
      font-weight: 700;
      transition: none;
    }
    .lang-btn.active[data-lang="hu"] {
      background: linear-gradient(180deg,
        var(--hu-red) 0%,
        var(--hu-red) 33.333%,
        var(--hu-white) 33.333%,
        var(--hu-white) 66.666%,
        var(--hu-green) 66.666%,
        var(--hu-green) 100%
      );
    }
    .lang-btn.active[data-lang="en"] {
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M 0 0 L 30 15 L 60 0 M 0 30 L 30 15 L 60 30' stroke='%23fff' stroke-width='3' fill='none'/%3E%3Cpath d='M 0 0 L 30 15 L 60 0 M 0 30 L 30 15 L 60 30' stroke='%23cf142b' stroke-width='1.5' fill='none' stroke-dasharray='0'/%3E%3Crect x='27' y='0' width='6' height='30' fill='%23fff'/%3E%3Crect x='0' y='13' width='60' height='4' fill='%23fff'/%3E%3Crect x='28' y='0' width='4' height='30' fill='%23cf142b'/%3E%3Crect x='0' y='14' width='60' height='2' fill='%23cf142b'/%3E%3C/svg%3E") center/cover no-repeat;
      color: #f5f5f0;
      text-shadow: 0 0 3px rgba(0,0,0,0.8);
      font-weight: 700;
    }

    /* ── HERO ── */
    #hero {
      min-height: calc(100svh - 40px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 90px 40px 36px;
      position: relative;
      background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          90deg,
          transparent,
          transparent 27px,
          rgba(255,255,255,0.015) 27px,
          rgba(255,255,255,0.015) 28px
        );
      pointer-events: none;
    }
    .hero-tag {
      font-size: 1.3rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
      font-weight: 400;
    }
    .hero-title {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(3.5rem, 9vw, 7.5rem);
      font-weight: 900;
      line-height: 1.05;
      color: var(--pure-white);
      letter-spacing: -1px;
      margin-bottom: 8px;
    }
    .hero-title .amp {
      font-style: italic;
      font-weight: 400;
      color: var(--accent);
    }
    .hero-subtitle {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(1.3rem, 2.5vw, 1.7rem);
      font-style: italic;
      color: var(--silver);
      margin-bottom: 20px;
      letter-spacing: 1px;
    }
    .hero-divider {
      width: 80px;
      height: 1px;
      background: var(--accent);
      margin: 0 auto 20px;
    }
    .hero-desc {
      width: min(100%, 920px);
      color: var(--silver);
      font-size: 1.05rem;
      line-height: 1.65;
      margin-bottom: 24px;
      text-align: justify;
      text-align-last: left;
      hyphens: auto;
    }
    .btn-primary {
      display: inline-block;
      padding: 10px 30px;
      border: 1px solid var(--white);
      color: var(--white);
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      transition: background 0.3s, color 0.3s;
    }
    .btn-primary:hover {
      background: var(--white);
      color: var(--black);
    }

    /* ── SECTION STYLES ── */
    section { padding: 64px 28px; }
    section[id] { scroll-margin-top: 95px; }
    #galeria { scroll-margin-top: 120px; }
    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-tag {
      font-size: 1.3rem;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      font-weight: 700;
      color: var(--pure-white);
      margin-bottom: 14px;
      line-height: 1.15;
    }
    .section-title em {
      font-style: italic;
      color: var(--accent);
    }
    .section-line {
      width: 50px;
      height: 1px;
      background: var(--accent);
      margin-bottom: 26px;
    }

    /* ── ABOUT ── */
    #rolunk {
      background: var(--off-black);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 42px;
      align-items: center;
    }
    .about-text p {
      color: var(--silver);
      font-size: 1.3rem;
      line-height: 1.55;
      margin-bottom: 14px;
    }
    .about-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .feature-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .feature-icon {
      width: 34px;
      height: 34px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--pure-white);
      opacity: 0.95;
    }
    .feature-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .feature-title {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: 1.3rem;
      color: var(--pure-white);
      margin-bottom: 6px;
    }
    .feature-desc {
      font-size: 1.3rem;
      color: var(--silver);
      line-height: 1.45;
    }

    .gallery-block {
      margin-top: 36px;
      display: grid;
      gap: 18px;
      grid-column: 1 / -1;
    }
    .gallery-title {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(1.6rem, 2.8vw, 2.3rem);
      color: var(--pure-white);
      margin-bottom: 14px;
    }
    .gallery-desc {
      color: var(--silver);
      font-size: 1.2rem;
      line-height: 1.65;
      margin-bottom: 20px;
      max-width: 760px;
    }
    .gallery-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }
    .gallery-nav {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }
    .gallery-nav-btn {
      width: 44px;
      height: 44px;
      border: 1px solid #2a2a2a;
      background: transparent;
      color: var(--pure-white);
      font-size: 1.6rem;
      line-height: 1;
      cursor: pointer;
      transition: border-color 0.25s, color 0.25s, transform 0.25s;
    }
    .gallery-nav-btn:hover:not(:disabled) {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-1px);
    }
    .gallery-nav-btn:disabled {
      border-color: #222;
      color: #555;
      cursor: not-allowed;
    }
    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
    }
    .gallery-thumb {
      aspect-ratio: 4 / 3;
      border: 1px solid #2a2a2a;
      background: transparent;
      padding: 0;
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.25s, transform 0.25s;
    }
    .gallery-thumb:hover,
    .gallery-thumb.active {
      border-color: var(--accent);
      transform: translateY(-2px);
    }
    .gallery-thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
    .gallery-lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.92);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 200;
      touch-action: none;
    }
    .gallery-lightbox.open {
      display: flex;
    }
    .gallery-lightbox img {
      max-width: 100%;
      max-height: 100%;
      border: 1px solid #333;
      box-shadow: 0 0 40px rgba(0,0,0,0.6);
    }
    .gallery-lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(15,15,15,0.85);
      color: var(--white);
      font-size: 2rem;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
      z-index: 201;
      transition: border-color 0.25s, background 0.25s, transform 0.25s;
    }
    .gallery-lightbox-prev {
      left: 18px;
    }
    .gallery-lightbox-next {
      right: 18px;
    }
    .gallery-lightbox-nav:hover {
      border-color: var(--accent);
      background: rgba(15,15,15,0.95);
      transform: translateY(-50%) scale(1.05);
    }
    .gallery-lightbox-close {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,255,255,0.2);
      background: rgba(15,15,15,0.95);
      color: var(--white);
      font-size: 1.5rem;
      line-height: 1;
      display: grid;
      place-items: center;
      cursor: pointer;
      z-index: 201;
    }
    .gallery-lightbox-close:hover {
      border-color: var(--accent);
    }
    .gallery-lightbox.can-pan img { cursor: grab; }
    .gallery-lightbox.can-pan img.panning { cursor: grabbing; }

    /* ── SERVICES ── */
    #szolgaltatasok {
      background: var(--black);
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 28px;
    }
    .service-card {
      background: var(--dark-gray);
      padding: 28px 20px;
      border-bottom: 2px solid transparent;
      transition: border-color 0.3s, background 0.3s;
      cursor: default;
    }
    .service-card:hover {
      border-color: var(--accent);
      background: #1f1f1f;
    }
    .service-num {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: 2.2rem;
      font-weight: 900;
      color: #222;
      margin-bottom: 10px;
      line-height: 1;
    }
    .service-name {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: 1.3rem;
      color: var(--pure-white);
      margin-bottom: 14px;
    }
    .service-desc {
      font-size: 1.3rem;
      color: var(--silver);
      line-height: 1.45;
    }

    /* ── YAMAHA BADGE ── */
    .yamaha-strip {
      background: var(--mid-gray);
      padding: 38px 24px;
      text-align: center;
    }
    .yamaha-strip .section-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    .yamaha-logo-text {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(1.7rem, 4vw, 3rem);
      font-weight: 900;
      letter-spacing: 6px;
      color: var(--pure-white);
      text-transform: uppercase;
      opacity: 0.12;
    }
    .yamaha-headline {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-style: italic;
      color: var(--white);
    }
    .yamaha-sub {
      font-size: 1.3rem;
      color: var(--silver);
      max-width: 600px;
      line-height: 1.5;
      text-align: center;
    }

    /* ── PRICES ── */
    #arak {
      background: var(--off-black);
    }
    .price-notice {
      display: inline-block;
      border: 1px solid #333;
      padding: 8px 20px;
      font-size: 1.3rem;
      letter-spacing: 1px;
      color: var(--light-gray);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .price-table {
      width: 100%;
      border-collapse: collapse;
      font-size: calc(1.3rem - 2px);
    }
    .price-table thead th {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: calc(1.3rem - 2px);
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--accent);
      padding: 10px 12px;
      text-align: left;
      border-bottom: 1px solid #2a2a2a;
    }
    .price-table tbody tr {
      border-bottom: 1px solid #1e1e1e;
      transition: background 0.2s;
    }
    .price-table tbody tr:hover { background: #161616; }
    .price-table tbody td {
      padding: 12px 12px;
      color: var(--silver);
      vertical-align: top;
      line-height: 1.35;
      word-break: break-word;
    }
    .price-table .service-col {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      color: var(--pure-white);
      font-size: calc(1.3rem - 2px);
    }
    .price-table .price-col {
      color: var(--accent);
      font-weight: 700;
      white-space: normal;
      font-size: calc(1.3rem - 2px);
    }
    .price-table .note-col {
      color: var(--silver);
      font-size: calc(1.3rem - 2px);
    }
    .price-surcharge {
      margin-top: 20px;
      font-size: 1.3rem;
      color: var(--accent);
      letter-spacing: 0;
    }
    .price-notes {
      margin-top: 20px;
      padding-left: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .price-notes li {
      font-size: 1.3rem;
      color: var(--accent);
      line-height: 1.4;
    }
    .price-notes li::before {
      content: '•';
      margin-right: 8px;
      font-size: 1.2em;
    }
    .price-disclaimer {
      margin-top: 30px;
      font-size: 1.3rem;
      color: var(--silver);
      font-style: italic;
      line-height: 1.45;
    }

    /* ── NATIONWIDE ── */
    #orszagszerte {
      background: var(--black);
      text-align: center;
    }
    #orszagszerte .section-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    #orszagszerte .section-line { margin: 0 auto 40px; }
    .cities-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      justify-content: center;
      margin-top: 24px;
      border: 1px solid #1e1e1e;
    }
    .city-item {
      padding: 12px 16px;
      font-size: 1.3rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--silver);
      border: 1px solid #1a1a1a;
      transition: color 0.3s, background 0.3s;
    }
    .city-item:hover {
      color: var(--white);
      background: #141414;
    }
    .nationwide-desc {
      max-width: 620px;
      color: var(--silver);
      font-size: 1.3rem;
      line-height: 1.5;
      margin-top: 14px;
    }

    /* ── PARTNER STRIP ── */
    .partner-strip {
      background: var(--off-black);
      padding: 64px 28px;
      border-top: 1px solid #1c1c1c;
      border-bottom: 1px solid #1c1c1c;
      text-align: center;
    }
    .partner-strip .section-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .partner-strip .section-tag {
      margin-bottom: 0;
      font-size: 1.8rem;
    }
    .partner-logo-box {
      display: inline-block;
      margin: 0px 0;
    }
    .partner-logo-img {
      display: block;
      max-width: min(320px, 80vw);
      height: auto;
    }
    .partner-headline {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-style: italic;
      color: var(--white);
    }
    .partner-desc {
      font-size: 1.3rem;
      color: var(--silver);
      max-width: 660px;
      line-height: 1.6;
      text-align: center;
    }
    .partner-link {
      font-size: 1.1rem;
      color: var(--accent);
      text-decoration: none;
      letter-spacing: 1px;
      transition: opacity 0.3s;
    }
    .partner-link:hover { opacity: 0.7; }

    /* ── CONTACT ── */
    #kapcsolat {
      background: var(--off-black);
      border-top: 1px solid #1c1c1c;
    }
    .contact-inner { text-align: center; }
    .contact-stack {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
      padding: 28px 16px;
    }
    .contact-line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      text-decoration: none;
      width: 100%;
      color: var(--pure-white);
      transition: opacity 0.3s;
    }
    .contact-line:hover { opacity: 0.78; }
    .contact-logo {
      width: 28px;
      height: 28px;
      flex-shrink: 0;
      opacity: 0.9;
    }
    .contact-logo svg {
      width: 100%;
      height: 100%;
      display: block;
    }
    .contact-text {
      text-align: left;
    }
    .contact-value-big {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(1.35rem, 3vw, 2.3rem);
      font-weight: 700;
      color: var(--pure-white);
      letter-spacing: 1px;
      line-height: 1.1;
    }
    @media (max-width: 760px) {
      .contact-stack {
        gap: 22px;
        padding: 36px 18px;
      }
      .contact-value-big {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
      }
    }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid #1a1a1a;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-logo {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: 1.3rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: #555;
    }
    .footer-logo span { color: #666; font-style: italic; }
    .footer-copy {
      font-size: 1.3rem;
      letter-spacing: 1px;
      color: #444;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1000px) {
      .menu-toggle { display: inline-flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid #222;
        padding: 16px 20px 18px;
        flex-direction: column;
        gap: 14px;
      }
      nav.menu-open .nav-links { display: flex; }
      .nav-links a {
        display: block;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: 1.2px;
      }
      .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
    }
    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      section { padding: 46px 16px; }
      #hero {
        min-height: calc(100svh - 40px);
        padding: 74px 16px 20px;
      }
      .hero-title {
        font-size: clamp(2.4rem, 11vw, 4.2rem);
      }
      .hero-desc {
        max-width: 100%;
      }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 600px) {
      .hero-title,
      .hero-subtitle,
      .section-title,
      .feature-title,
      .contact-value-big,
      .footer-copy,
      .nav-links a {
        line-height: 1.45;
      }
      .about-text p,
      .feature-desc,
      .price-surcharge,
      .price-disclaimer,
      .price-table thead th,
      .price-table tbody td,
      .btn-primary,
      .lang-btn {
        line-height: 1.45;
      }
      .lang-btn {
        font-size: 0.85rem;
        padding: 4px 6px;
        letter-spacing: 0.5px;
      }
      .hero-tag,
      .section-tag,
      .btn-primary,
      .city-item,
      .price-notice {
        text-transform: none;
      }
      .hero-title {
        font-size: clamp(2rem, 12vw, 3.1rem);
      }
      .section-title {
        font-size: clamp(1.6rem, 7vw, 2.1rem);
      }
      .lang-switch {
        border-width: 1px;
      }
      .services-grid { grid-template-columns: 1fr; }
      .price-table {
        table-layout: fixed;
        font-size: calc(1.02rem - 2px);
      }
      .price-table thead th,
      .price-table tbody td {
        padding: 8px 6px;
      }
      .price-table thead th {
        font-size: calc(0.9rem - 2px);
        letter-spacing: 0.3px;
        line-height: 1.2;
      }
      .price-table .service-col,
      .price-table .price-col,
      .price-table .note-col {
        font-size: calc(1.02rem - 2px);
        line-height: 1.3;
      }
      .price-surcharge {
        font-size: 1rem;
        line-height: 1.3;
      }
      .price-notes li {
        font-size: 0.88rem;
        line-height: 1.3;
      }
      .price-disclaimer {
        font-size: 0.92rem;
        line-height: 1.35;
      }
      .footer-copy {
        font-size: 0.75rem;
        line-height: 1.3;
      }
      #rolunk .section-tag {
        font-size: 1rem;
      }
      #rolunk .section-title {
        font-size: 1.35rem;
        line-height: 1.2;
      }
      #rolunk .about-text p {
        font-size: 0.95rem;
        line-height: 1.4;
      }
      #rolunk .feature-title {
        font-size: 0.98rem;
      }
      #rolunk .feature-desc {
        font-size: 0.9rem;
        line-height: 1.35;
      }
      .gallery-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      footer { flex-direction: column; gap: 10px; text-align: center; }
      .partner-strip { padding: 28px 16px; }
      .partner-logo-img { max-width: min(180px, 60vw); }
      .partner-strip .section-tag { font-size: 1.1rem; }
    }

    /* ── SUBPAGE LAYOUT (landing pages) ── */
    .subpage-hero {
      padding: 130px 28px 50px;
      text-align: center;
      background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
    }
    .breadcrumb {
      max-width: 1100px;
      margin: 0 auto 22px;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      color: var(--light-gray);
    }
    .breadcrumb a { color: var(--light-gray); text-decoration: none; }
    .breadcrumb a:hover { color: var(--accent); }
    .breadcrumb span { color: #555; margin: 0 6px; }
    .subpage-hero h1 {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: clamp(2.1rem, 5vw, 3.6rem);
      font-weight: 700;
      color: var(--pure-white);
      line-height: 1.15;
      max-width: 900px;
      margin: 0 auto 18px;
    }
    .subpage-hero .hero-divider { margin: 0 auto 22px; }
    .subpage-lead {
      max-width: 760px;
      margin: 0 auto;
      color: var(--silver);
      font-size: 1.3rem;
      line-height: 1.6;
    }
    .prose { color: var(--silver); font-size: 1.3rem; line-height: 1.6; }
    .prose p { margin-bottom: 16px; }
    .prose ul { margin: 0 0 16px 22px; }
    .prose li { margin-bottom: 8px; }
    .prose h3 {
      font-family: 'Noto Serif', 'Playfair Display', Georgia, serif;
      font-size: 1.5rem;
      color: var(--pure-white);
      margin: 30px 0 12px;
    }
    .prose h3:first-child { margin-top: 0; }
    .subpage-cta {
      margin-top: 40px;
      padding: 32px;
      border: 1px solid #2a2a2a;
      background: var(--dark-gray);
      text-align: center;
    }
    .subpage-cta p {
      color: var(--silver);
      font-size: 1.3rem;
      margin-bottom: 18px;
    }
    .footer-linkrow {
      background: var(--off-black);
      border-top: 1px solid #1a1a1a;
      padding: 22px 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 22px;
      justify-content: center;
    }
    .footer-linkrow a {
      color: var(--light-gray);
      font-size: 1.05rem;
      text-decoration: none;
      letter-spacing: 0.3px;
    }
    .footer-linkrow a:hover { color: var(--accent); }
    @media (max-width: 600px) {
      .subpage-hero { padding: 100px 16px 36px; }
      .subpage-lead, .prose { font-size: 1.05rem; }
      .subpage-cta p { font-size: 1.05rem; }
    }
