
    /* ================================================
       DESIGN TOKENS
       Palette:
         --pine    #1E3A2F  (deep forest green — primary)
         --fern    #2D5A3D  (mid green — secondary)
         --moss    #4A7C59  (lighter green — accents)
         --amber   #C8832A  (warm amber — CTA / highlight)
         --cream   #F9F5EE  (off-white — backgrounds)
         --bark    #3B2A1A  (dark brown — text)
         --mist    #E8EDE6  (pale green-grey — alt bg)
         --white   #FFFFFF
       Typography:
         Display: Playfair Display 600/700
         Body:    Inter 300/400/500/600
    ================================================ */
 
    :root {
      --pine:   #1E3A2F;
      --fern:   #2D5A3D;
      --moss:   #4A7C59;
      --amber:  #C8832A;
      --cream:  #F9F5EE;
      --bark:   #3B2A1A;
      --mist:   #E8EDE6;
      --white:  #FFFFFF;
      --shadow: 0 4px 24px rgba(30,58,47,0.10);
      --radius: 12px;
    }
 
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    html { scroll-behavior: smooth; 
        font-size: 14px; }
 
    body {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      color: var(--bark);
      background: var(--cream);
      line-height: 1.75;
    }
 
    h1, h2, h3, h4 {
      font-family: 'Playfair Display', serif;
      line-height: 1.2;
    }
 
    /* ---- LANGUAGE SWITCHER ---- */
    .lang-bar {
      background: var(--pine);
      padding: 8px 0;
      text-align: right;
    }
    .lang-bar .container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 6px;
    }
    .lang-btn {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.35);
      color: rgba(255,255,255,0.75);
      border-radius: 4px;
      padding: 4px 13px;
      font-size: 0.85rem;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      letter-spacing: 0.06em;
      cursor: pointer;
      transition: all 0.2s;
    }
    .lang-btn:hover, .lang-btn.active {
      background: var(--amber);
      border-color: var(--amber);
      color: var(--white);
    }
 
    /* ---- NAVBAR ---- */
    .navbar-ct {
      background: var(--pine);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    }
    .navbar-ct .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      padding-bottom: 14px;
    }
    .navbar-brand-ct {
      display: flex;
      flex-direction: column;
      text-decoration: none;
    }
    .navbar-brand-ct .site-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.01em;
    }
    .navbar-brand-ct .site-sub {
      font-size: 0.78rem;
      color: var(--amber);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
    }
    /* Knaus Tabbert external link in nav */
    .knaus-link {
      color: var(--amber);
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(200,131,42,0.4);
      border-radius: 4px;
      padding: 5px 12px;
      transition: all 0.2s;
    }
    .knaus-link:hover {
      background: var(--amber);
      color: var(--white);
      text-decoration: none;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .nav-links li a {
      color: rgba(255,255,255,0.82);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .nav-links li a:hover { color: var(--amber); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }
    .mobile-menu {
      display: none;
      background: var(--fern);
      padding: 16px 0;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu ul {
      list-style: none;
      padding: 0 20px;
    }
    .mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .mobile-menu ul li a {
      display: block;
      padding: 10px 0;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 1.05rem;
      font-weight: 500;
    }
 
    /* ---- HERO ---- */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      background:
        linear-gradient(160deg, rgba(30,58,47,0.78) 0%, rgba(30,58,47,0.45) 60%, rgba(200,131,42,0.18) 100%),
        url('../img/hero-camping.jpg') center center / cover no-repeat;
      overflow: hidden;
    }
    /* Decorative pine-needle SVG overlay */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23F9F5EE' fill-opacity='1' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,120L1360,120C1280,120,1120,120,960,120C800,120,640,120,480,120C320,120,160,120,80,120L0,120Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 60px 0;
    }
    .hero-eyebrow {
      display: inline-block;
      background: var(--amber);
      color: var(--white);
      font-size: 0.84rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 3px;
      margin-bottom: 22px;
    }
    .hero h1 {
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      color: var(--white);
      font-weight: 700;
      margin-bottom: 24px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }
    .hero-lead {
      font-size: clamp(1.15rem, 2vw, 1.35rem);
      color: rgba(255,255,255,0.88);
      max-width: 580px;
      margin-bottom: 40px;
      font-weight: 300;
    }
    .hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary-ct {
      display: inline-block;
      background: var(--amber);
      color: var(--white);
      padding: 16px 34px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: all 0.25s;
      border: 2px solid var(--amber);
    }
    .btn-primary-ct:hover {
      background: transparent;
      color: var(--white);
      text-decoration: none;
    }
    .btn-outline-ct {
      display: inline-block;
      background: transparent;
      color: var(--white);
      padding: 14px 30px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.55);
      transition: all 0.25s;
    }
    .btn-outline-ct:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.1);
      color: var(--white);
      text-decoration: none;
    }
 
    /* ---- FEATURES STRIP ---- */
    .features-strip {
      background: var(--pine);
      padding: 36px 0;
    }
    .features-strip .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 28px;
      justify-content: center;
    }
    .feature-item {
      text-align: center;
      color: var(--white);
    }
    .feature-item i {
      font-size: 1.6rem;
      color: var(--amber);
      margin-bottom: 10px;
      display: block;
    }
    .feature-item strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
    .feature-item span {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.6);
    }
 
    /* ---- SECTION SHARED ---- */
    section { padding: 90px 0; }
    .section-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--moss);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--pine);
      margin-bottom: 18px;
    }
    .section-lead {
      font-size: 1.05rem;
      color: #5a6e5e;
      max-width: 600px;
      font-weight: 300;
    }
    .divider {
      width: 48px;
      height: 3px;
      background: var(--amber);
      margin: 18px 0 28px;
      border-radius: 2px;
    }
 
    /* ---- ABOUT / CAMPING DESCRIPTION ---- */
    .about-section { background: var(--cream); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
      margin-top: 50px;
    }
    .about-img-wrap {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .about-img-wrap img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }
    .about-img-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: var(--amber);
      color: var(--white);
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.06em;
    }
    .amenity-list {
      list-style: none;
      margin-top: 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 20px;
    }
    .amenity-list li {
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--bark);
    }
    .amenity-list li i {
      color: var(--moss);
      font-size: 0.85rem;
      flex-shrink: 0;
    }
 
    /* ---- GALLERY STRIP ---- */
    .gallery-strip { background: var(--mist); padding: 60px 0; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 36px;
    }
    .gallery-grid img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.35s, box-shadow 0.35s;
      cursor: pointer;
    }
    .gallery-grid img:hover {
      transform: scale(1.03);
      box-shadow: 0 8px 28px rgba(30,58,47,0.18);
    }
 
    /* ---- TESTIMONIALS ---- */
    .testimonials-section { background: var(--cream); }
    .stars { color: #F5A623; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 10px; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
      margin-top: 48px;
    }
    .review-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      border-left: 4px solid var(--moss);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(30,58,47,0.14);
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
    }
    .review-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--mist);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--pine);
      flex-shrink: 0;
    }
    .review-name { font-weight: 600; font-size: 0.9rem; color: var(--pine); }
    .review-flag { font-size: 0.78rem; color: #888; }
    .review-text { font-size: 0.92rem; line-height: 1.65; color: #4a5a4e; font-style: italic; }
    .google-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 40px;
      justify-content: center;
    }
    .google-badge a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 10px 20px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--bark);
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
      transition: box-shadow 0.2s;
    }
    .google-badge a:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
    .google-g {
      width: 20px; height: 20px;
      background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
      border-radius: 50%;
      display: inline-block;
    }
 
    /* ---- DEALERSHIP SECTION ---- */
    .dealership-section { background: var(--pine); color: var(--white); }
    .dealership-section .section-title { color: var(--white); }
    .dealership-section .section-lead { color: rgba(255,255,255,0.72); max-width: 620px; }
    .dealership-section .divider { background: var(--amber); }
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      margin-top: 44px;
    }
    .brand-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: 28px 24px;
      text-align: center;
      transition: all 0.25s;
    }
    .brand-card:hover {
      background: rgba(255,255,255,0.11);
      border-color: var(--amber);
      transform: translateY(-3px);
    }
    .brand-card i {
      font-size: 2rem;
      color: var(--amber);
      margin-bottom: 14px;
      display: block;
    }
    .brand-card h4 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      color: var(--white);
      margin-bottom: 8px;
    }
    .brand-card p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.55;
    }
    .services-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 50px;
    }
    .service-pill {
      background: rgba(200,131,42,0.15);
      border: 1px solid rgba(200,131,42,0.35);
      border-radius: 8px;
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .service-pill i { color: var(--amber); font-size: 1.3rem; flex-shrink: 0; }
    .service-pill span { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.9); }
 
    /* Forum badge */
    .forum-badge {
      margin-top: 60px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }
    .forum-badge-inner {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 40px;
      padding: 10px 22px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.06em;
    }
    .forum-badge-inner i { color: var(--amber); font-size: 0.9rem; }
    .forum-badge-inner strong { color: rgba(255,255,255,0.8); }
 
    /* ---- MAP SECTION ---- */
    .map-section { background: var(--mist); padding: 80px 0; }
    .map-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-top: 36px;
    }
    .map-wrapper iframe {
      width: 100%;
      height: 420px;
      border: none;
      display: block;
    }
 
    /* ---- CONTACT SECTION ---- */
    .contact-section { background: var(--cream); padding: 80px 0; }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 28px;
      margin-top: 40px;
    }
    .contact-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow);
      text-align: center;
      transition: transform 0.2s;
    }
    .contact-card:hover { transform: translateY(-3px); }
    .contact-card i {
      font-size: 1.8rem;
      color: var(--moss);
      margin-bottom: 14px;
    }
    .contact-card h4 {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--moss);
      margin-bottom: 8px;
      font-family: 'Inter', sans-serif;
    }
    .contact-card a, .contact-card p {
      font-size: 0.95rem;
      color: var(--bark);
      text-decoration: none;
      font-weight: 500;
    }
    .contact-card a:hover { color: var(--amber); }
 
    /* ---- FOOTER ---- */
    footer {
      background: var(--bark);
      color: rgba(255,255,255,0.65);
      padding: 44px 0 28px;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
    }
    .footer-brand .site-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--white);
    }
    .footer-brand .site-sub {
      font-size: 0.7rem;
      color: var(--amber);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .footer-brand p {
      font-size: 0.8rem;
      margin-top: 12px;
      max-width: 240px;
      line-height: 1.6;
    }
    .footer-social { display: flex; gap: 12px; margin-top: 16px; }
    .footer-social a {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.2s;
    }
    .footer-social a:hover { background: var(--amber); color: var(--white); }
    .footer-links h5 {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      margin-bottom: 14px;
      font-family: 'Inter', sans-serif;
    }
    .footer-links ul { list-style: none; }
    .footer-links ul li { margin-bottom: 8px; }
    .footer-links ul li a {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links ul li a:hover { color: var(--amber); }
    .footer-bottom {
      text-align: center;
      font-size: 0.76rem;
      margin-top: 36px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.35);
    }
 
    /* Floating WhatsApp */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(37,211,102,0.45);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 22px rgba(37,211,102,0.55);
    }
    .whatsapp-float i { color: var(--white); font-size: 1.5rem; }
 
    /* ---- RESPONSIVE ---- */
    @media (max-width: 900px) {
      .about-grid { grid-template-columns: 1fr; gap: 32px; }
      .contact-grid { grid-template-columns: 1fr; }
      .services-row { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }
    @media (max-width: 600px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .brands-grid { grid-template-columns: 1fr; }
      .hero-content { padding: 40px 0; }
      .footer-inner { flex-direction: column; }
    }
 
    /* ---- LANGUAGE VISIBILITY ---- */
    [data-lang] { display: none; }
    [data-lang="ro"] { display: block; }
    span[data-lang] { display: none; }
    span[data-lang="ro"] { display: inline; }

     /* ============================================================
       FEATURE 1 — PARTIALLY CLOSED ALERT BANNER
    ============================================================ */
    .alert-banner {
      background: linear-gradient(90deg, #7a2e0e 0%, #9a3a12 50%, #7a2e0e 100%);
      color: #fff;
      padding: 0;
      position: relative;
      z-index: 1100;
      border-bottom: 3px solid #C8832A;
    }
    .alert-banner-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 11px 20px;
      flex-wrap: wrap;
    }
    .alert-banner-icon {
      font-size: 1.1rem;
      flex-shrink: 0;
      animation: alert-pulse 2.4s ease-in-out infinite;
    }
    @keyframes alert-pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.7; transform: scale(1.15); }
    }
    .alert-banner-text {
      font-size: 0.88rem;
      font-weight: 500;
      line-height: 1.45;
      text-align: center;
      letter-spacing: 0.01em;
    }
    .alert-banner-text strong {
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(255,255,255,0.45);
      text-underline-offset: 3px;
    }
    .alert-banner-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.4);
      border-radius: 5px;
      padding: 5px 14px;
      font-size: 0.82rem;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s, border-color 0.2s;
      flex-shrink: 0;
    }
    .alert-banner-cta:hover {
      background: rgba(255,255,255,0.28);
      border-color: rgba(255,255,255,0.7);
      color: #fff;
      text-decoration: none;
    }
    .alert-banner-dismiss {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      font-size: 1.1rem;
      cursor: pointer;
      line-height: 1;
      padding: 4px 6px;
      transition: color 0.2s;
    }
    .alert-banner-dismiss:hover { color: #fff; }
    @media (max-width: 600px) {
      .alert-banner-inner { gap: 8px; padding: 10px 36px 10px 16px; }
      .alert-banner-text { font-size: 0.8rem; }
    }
 
    /* ============================================================
       FEATURE 2 — FACEBOOK ICON IN NAVBAR
    ============================================================ */
    .nav-fb-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.22);
      color: rgba(255,255,255,0.82);
      font-size: 1rem;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
      flex-shrink: 0;
    }
    .nav-fb-link:hover {
      background: #1877F2;
      border-color: #1877F2;
      color: #fff;
      text-decoration: none;
    }
  
 
    /* ============================================================
       FEATURE 3 — CLUBS & ASSOCIATIONS GRID
    ============================================================ */
    .clubs-section-header {
      margin-top: 70px;
      padding-top: 50px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .clubs-section-eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 10px;
    }
    .clubs-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.55rem;
      color: rgb(0, 0, 0);
      margin-bottom: 6px;
    }
    .clubs-section-lead {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.55);
      margin-bottom: 32px;
      max-width: 560px;
    }
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 16px;
    }
    .partner-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 18px 20px;
      text-decoration: none;
      transition: background 0.22s, border-color 0.22s, transform 0.22s;
    }
    .partner-card:hover {
      background: rgba(255,255,255,0.10);
      border-color: var(--amber);
      transform: translateY(-3px);
      text-decoration: none;
    }
    .partner-icon {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }
    /* Real logo image */
    .partner-logo {
      width: 32px;
      height: 32px;
      object-fit: contain;
      display: block;
      border-radius: 4px;
    }
    /* FA icon fallback (shown only if image errors) */
    .partner-icon-fallback {
      font-size: 1.2rem;
      color: var(--amber);
    }
    /* No-website cards keep the amber icon style */
    .partner-icon-nologo {
      background: rgba(200,131,42,0.18);
      border-color: rgba(200,131,42,0.3);
      font-size: 1.2rem;
      color: var(--amber);
    }
    
    .partner-info { flex: 1; min-width: 0; }
    .partner-name {
      font-size: 0.92rem;
      font-weight: 600;
      color: rgba(0, 0, 0, 0.92);
      line-height: 1.3;
      margin-bottom: 3px;
    }
    .partner-meta {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.42);
      letter-spacing: 0.03em;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .partner-meta i { font-size: 0.68rem; }
    .partner-card.no-link { cursor: default; pointer-events: none; }
    .partner-card.no-link:hover { transform: none; border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); }
    @media (max-width: 700px) {
      .partners-grid { grid-template-columns: 1fr; }
    }
 