:root {
      --bg: #f5f5f2;
      --surface: #ffffff;
      --primary: #1d2733;
      --accent: #c62828;
      --muted: #6f7280;
      --border: #d8d8d4;
      --shadow: 0 18px 45px rgba(26, 30, 40, 0.08);
      /* font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;  */
      /* font-family: "Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
      /* font-family: 'Open Sans', 'Open Sans Regular', sans-serif; */
      /* font-family: Inter, Arial size-adjust, Arial, sans-serif; */
      font-family: "Google Sans Text", Roboto, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      padding: 40px;
      min-height: 100vh;
      background: linear-gradient(180deg, #eef1f4 0%, #f5f5f2 100%);
      color: var(--primary);
    }

    .page-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      width: min(100%, 1200px);
      /* width: calc(100% - 600px); */
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      padding: 0 0 18px;
      border-bottom: 1px solid rgba(31, 41, 55, 0.08);
      min-height: 72px;
    }

    .header-left,
    .header-center,
    .header-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-center {
      flex: 1;
      justify-content: left; /* keep logo and nav aligned to the left */
    }

    .header-left {
      min-width: 0;
    }

    .menu-button {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
    }

    .menu-button span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--primary);
    }

    .logo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      /* background: #0058d2; */
      color: #fff;
      border-radius: 0;
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .logo img {
      min-width: 45px;
    }

    .main-nav, .main-menu {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 24px;
      /* justify-content: center; */
      width: min(100%, 900px);
      overflow-x: auto;
      scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
      display: none;
    }

    .main-nav li {
      flex-shrink: 0;
      list-style: none;
      display: inline-flex;
      white-space: nowrap;
    }

    .main-nav a {
      text-decoration: none;
      color: var(--primary);
      font-size: 0.95rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0.92;
    }

    .main-nav a:hover {
      opacity: 1;
    }

    .header-right {
      gap: 14px;
      justify-content: flex-end;
      min-width: 220px;
    }

    .weather-chip {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
      padding: 8px 10px;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--primary);
      font-size: 0.85rem;
    }

    .weather-chip small {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
    }

    .profile-link {
      text-decoration: none;
      color: var(--primary);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .live-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      background: #d32f2f;
      border-radius: 8px;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .live-pill .dot {
      width: 6px;
      height: 6px;
      background: #fff;
      border-radius: 50%;
      animation: pulse-dot 1.5s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }
    .radio-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      background: #0d3c73;
      border-radius: 8px;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }
    .live-pill i, .radio-pill i, .live-pill .dot {
      margin-right: 6px;
    }

    .social-buttons,
    .social-button,
    .header-actions,
    .weather-card,
    .weather-icon,
    .weather-info,
    .weather-info strong {
      display: none;
    }

    .category-menu {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin: 10px 0 0px;
    }

    .nav-checkbox {
      display: none;
    }

    .nav-toggle {
      display: none;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 260px;
      padding: 12px 16px;
      border-radius: 0;
      background: #fff;
      border: 1px solid var(--border);
      color: var(--primary);
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    }

    .hamburger-lines {
      display: grid;
      gap: 5px;
    }

    .hamburger-lines span {
      width: 20px;
      height: 2px;
      border-radius: 0;
      background: var(--primary);
      display: block;
    }

    .category-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      width: 100%;
    }

    .category-nav a {
      text-decoration: none;
      color: var(--primary);
      padding: 6px 16px;
      border-radius: 0;
      background: #fff;
      border: 1px solid rgba(31, 41, 55, 0.08);
      transition: background 0.2s ease;
    }

    .category-nav a:hover {
      background: #f3f4f6;
    }

    .top-hero {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 18px;
      margin: 28px 0;
      background-color: var(--surface);
      border-radius: 18px;
      /* border: 1px solid var(--border); */
      box-shadow: var(--shadow);
    }

    .top-hero > * {
      padding: 16px;
      font-size: clamp(0.5rem, 4vw, 0.9rem);
    }

    /* Base panel styles (hidden off-screen to the left) */
    .nav-panel {
        position: fixed;
        top: 0;
        left: -100%; /* Completely hidden off-screen */
        width: 100%;
        height: 100vh;
        background-color: var(--surface); /* Dark background */
        z-index: 9999; /* Ensures it stays on top of everything */
        transition: left 0.4s ease-in-out; /* Smooth slide animation */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Class to slide the panel into view */
    .nav-panel.is-active {
        left: 0;
    }

    /* Close button positioning (Top Right) */
    .menu-close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        background: none;
        border: none;
        color: var(--primary);
        font-size: 45px;
        cursor: pointer;
        line-height: 1;
    }

    /* Navigation Links layout */
    .nav-links {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .nav-links a {
        color: var(--primary);
        font-size: 28px;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }

    .nav-links a:hover {
        color: #0073aa; /* WordPress Blue accent color */
    }

    /* Trigger Button Styling */
    .menu-open-btn {
        padding: 10px 20px;
        font-size: 18px;
        cursor: pointer;
    }

    .app-banner {
      margin-bottom: 24px;
      min-height: 100px;
      background: linear-gradient(135deg, #0f4c6e, #1a7a6e) !important;
      color: var(--surface) !important;
    }

    .app-banner-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 16px;
    }
    .app-banner-text p {
      text-transform: none;
    }
    .app-btns
    {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }
    .app-btn {
        background: #fff;
        border-radius: 6px;
        margin: 8px 16px;
        font-size: 12px;
        font-weight: 700;
        color: #000;
        display: flex;
        /* align-items: center; */
        gap: 6px;
        transition: opacity .15s;
    }
    /* Spinner container */
    #pullToRefresh {
      position: fixed;
      top: -60px; /* hidden by default */
      left: 0;
      right: 0;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: top 0.25s ease;
      z-index: 9999;
      background: white;
    }

    /* Rotate animation */
    .spin {
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      100% { transform: rotate(360deg); }
    }


    @media (max-width: 1024px) {
      .main-menu {
        justify-content: flex-start;
        display: none;
      }
      .top-hero {
        grid-template-columns: 1fr;
      }

      .category-menu {
        align-items: flex-start;
      }

      .featured-block {
        order: -1;
        padding: 16px !important;
      }

      .banner-row,
      .section-grid,
      .video-grid {
        grid-template-columns: 1fr;
      }

      .section-grid {
        grid-template-columns: auto !important;
        gap: 20px;
      }

      .news-section {
        display: block !important;
        grid-template-columns: 1fr;
      }

      .section-main img {
        min-height: 260px;
      }
      .footer-links { grid-template-columns: repeat(3, 1fr); }
    }

      /* Weather widget */
      #weather-badge { cursor: pointer; transition: all 0.2s; }
      #weather-badge:hover { background: rgba(40,162,40,0.2); }
      #weather-popup { transform-origin: top right; transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease; }
      #weather-popup.hidden { transform: scale(0.9); opacity: 0; pointer-events: none; }

    /* --- Responsive Mobile Layout (Below 768px) --- */
    @media (max-width: 768px) {
      body {
        padding: 18px;
      }

      header {
        /* flex-direction: column; */
        align-items: stretch;
        padding-bottom: 18px;
        gap: 0px;
      }

      .header-actions {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
      }

      .brand {
        width: 100%;
        justify-content: space-between;
      }

      .nav-toggle {
        display: flex;
      }

      .category-nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        margin-top: 12px;
      }

      .nav-checkbox:checked + .nav-toggle + .category-nav {
        display: flex;
      }

      .live-pill i, .radio-pill i {
        display: none;
      }

      .top-hero {
        margin: 20px 0;
      }

      .weather-card {
        width: 100%;
        justify-content: space-between;
      }

      .social-buttons {
        width: 100%;
        justify-content: flex-start;
        order: 1;
      }

      .banner-row,
      .video-grid {
        gap: 16px;
      }

      .video-panel {
        padding: 18px;
      }
      .video-grid {
        display: block !important;
        grid-auto-flow: row;
      }

      .section-grid {
        grid-template-columns: 1fr;
      }

      .news-section {
        display: block;
        grid-template-columns: 1fr;
      }

      .section-main,
      .section-list {
        width: 100%;
        margin-bottom: 16px;
      }
      .featured-block {
        padding: 16px !important;
      }

      .featured-item {
        grid-template-columns: 1fr;
        align-items: flex-start;
      }

      .hero-summary, .featured-item p {
        display: none;
      }

      .featured-item img {
        width: 100%;
        height: auto;
      }

      .section-list {
        padding: 22px;
      }

      .section-list-item {
        padding: 8px 0 !important;
      }

      .video-item {
        min-height: auto;
      }
      .app-banner-inner {
        display: block;
      }
      .column-row {
          display: block !important;
      }
      .footer-links { grid-template-columns: repeat(2, 1fr) !important; }
      .footer-top { grid-template-columns: 1fr !important; }

    }

    .main-article,
    .featured-block {
      /* background: var(--surface);
      border-radius: 18px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow); */
      overflow: hidden;
    }

    .main-article img,
    .featured-item img,
    .category-card img,
    .video-item img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    .hero-overlay {
          position: absolute;
          inset: 0;
          background: linear-gradient(170deg, rgba(12, 15, 12, 0.65) 0%, rgba(12, 15, 12, 0.2) 45%, rgba(12, 15, 12, 0.8) 100%);
      }

    .hero-media {
      /* min-height: 520px; */
      /* background: linear-gradient(180deg, #0f243a 0%, #192f47 100%); */
      /* padding: 16px 16px 0; */
      /* display: grid;
      align-content: end;
      position: relative; */
    }
    .hero-media img {
      border-radius: 9px;
       /* border: 1px solid rgba(31, 41, 55, 0.06); */
       /* box-shadow: var(--shadow); */
    }

    /* .hero-media::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 35%);
      pointer-events: none;
    } */

    .hero-content {
      position: relative;
      z-index: 1;
      /* padding: 16px; */
    }

    .hero-label {
      display: inline-flex;
      /* padding: 8px 14px; */
      border-radius: 0;
      background: rgba(255,255,255,0.14);
      /* color: #e6edf7; */
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.78rem;
    }

    .hero-title {
      /* font-size: clamp(1.5rem, 2vw, 2.4rem); */
      font-size: 1.25rem;
      line-height: 1.20;
      font-weight: normal;
      margin: 0 0 6px;
    }

    .hero-meta {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.75rem;
    }

    .hero-summary {
      /* margin: 22px 0 0; */
      margin: 5px 0 0;
      max-width: 620px;
      /* color: rgba(255,255,255,0.88); */
      line-height: 1.75;
      font-size: 0.9rem;
    }

    .featured-block {
      /* display: grid; */
      grid-template-rows: auto 1fr;
      gap: 0;
      padding: 16px 0;
    }

    .featured-header {
      /* padding-bottom: 16px; */
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .featured-header h2 {
      margin: 0;
      letter-spacing: 0.02em;
      font-size: clamp(0.5rem, 4vw, 1.25rem);
      
      font-weight: 400;
    }

    .featured-list {
      display: grid;
      /* gap: 16px;
      padding: 0 16px 16px; */
    }

    .featured-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 10px 0px;
      border-radius: 0;
      border-top: 1px solid var(--border);
      /* background: #fbfbfb;
      border: 1px solid rgba(31, 41, 55, 0.06); */
    }

    .featured-item img {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      object-fit: cover;
    }

    .featured-item h3 {
      /* margin: 0 0 6px;
      font-size: 0.9rem; */
      line-height: 1.25;
      font-size: clamp(0.5rem, 4vw, 0.9rem);
      font-weight: 400;
      margin: 0 0 6px;
    }

    .featured-item span {
      margin: 0;
      color: var(--muted);
      font-size: 0.75rem;
    }

    .section-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 18px;
      margin: 16px 0;
      background-color: var(--surface);
      border-radius: 18px;
      /* border: 1px solid var(--border); */
      box-shadow: var(--shadow);
    }
    .section-grid > * {
      padding: 16px;
      font-size: clamp(0.5rem, 4vw, 0.9rem);
    }
    .section-header {
      display: block;
      font-size: 1.5em;
      font-weight: 400;
    }
    .section-header p {
      color: var(--muted);
      font-size: 0.95rem;
    }

    .news-section {
      /* background: var(--surface);
      border-radius: 18px;
      border: 1px solid var(--border); */
      /* box-shadow: var(--shadow); */
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      min-height: 320px;
    }

    .section-main {
      position: relative;
      overflow: hidden;
      /* padding: 16px; */
    }

    .section-main img {
      width: 100%;
      height: auto;
      object-fit: cover;
      max-height: 200px;
      border-radius: 8px;
    }

    .section-overlay {
      /* position: absolute; */
      /* inset: 0; */
      /* background: linear-gradient(180deg, rgba(6, 12, 21, 0.16), rgba(6, 12, 21, 0.64)); */
      /* display: flex; */
      /* align-items: flex-end; */
      /* padding: 16px; */
    }
    .section-overlay span {
      display: block;
      color: var(--muted);
      font-size: 0.75rem;
    }

    .section-overlay h3 {
      margin: 6px 0 6px;
      /* color: #fff; */
      font-size: 1.25rem;
      line-height: 1.20;
    }

    .section-label {
      display: inline-flex;
      padding: 8px 14px;
      border-radius: 0;
      background: rgba(13, 14, 31, 0.642);
      color: #ffffff;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.78rem;
      margin-bottom: 18px;
      position: absolute;
    }

    .section-list {
      padding: 0;
      /* display: grid; */
      gap: 18px;
    }

    .section-list-item {
      display: grid;
      gap: 6px;
      /* padding: 0 16px 16px; */
      padding: 0 0 26px 16px;
    }

    .section-list-item p {
      font-size: 0.9rem;
      line-height: 1.3;
    }

    .section-list-item span {
      color: var(--muted);
      font-size: 0.75rem;
    }

    .column-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 18px
    }
    
    .column-grid {
      padding: 16px;
      margin: 16px 0;
      background-color: var(--surface);
      border-radius: 18px;
      /* border: 1px solid var(--border); */
      box-shadow: var(--shadow);
      min-height: 650px;
    }
    .column-row .news-section {
          display: block !important;
    }
    .column-row .news-section .section-list-item {
      padding: 0 0 26px 0;
      display: grid;
      grid-template-columns: 1fr auto;
    }
    .column-row .section-list-item img {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        object-fit: cover;
    }

    .column-row .news-section .section-overlay {
      margin: 6px 0 16px;
    }
    

    .banner-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }

    .indicators-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-bottom: 24px;
    }

    .video-row {
      margin: 16px 0;
      /* background-color: var(--primary); */
      background-color: #0c0c0c;
      padding: 16px;
      border-radius: 18px;
    }

    .opinion-row {
      margin-bottom: 24px;
    }

    .ad-banner,
    .video-panel,
    .opinion-panel,
    .app-banner {
      background: var(--surface);
      border-radius: 18px;
      /* border: 1px solid var(--border); */
      box-shadow: var(--shadow);
      /* min-height: 180px; */
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .opinion-panel {
      align-items: start;
      min-height: auto;
      padding: 24px;
      display: grid;
      gap: 20px;
      place-items: unset;
      text-transform: none;
    }

    .opinion-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      flex-wrap: wrap;
    }

    .opinion-header h2 {
      margin: 0;
      font-size: 1.5rem;
      letter-spacing: 0.01em;
      text-transform: none;
      color: var(--primary);
    }

    .opinion-header p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 0.95rem;
      max-width: 560px;
    }

    .opinion-controls {
      display: flex;
      gap: 12px;
    }

    .carousel-button {
      padding: 10px 16px;
      border: 1px solid var(--border);
      background: #fff;
      color: var(--primary);
      font-size: 0.9rem;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .opinion-carousel {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(274px, 1fr);
      gap: 18px;
      overflow-x: auto;
      padding-bottom: 6px;
      scroll-snap-type: x mandatory;
    }

    .opinion-carousel::-webkit-scrollbar {
      height: 8px;
    }

    .opinion-carousel::-webkit-scrollbar-thumb {
      background: rgba(31, 41, 55, 0.16);
      border-radius: 999px;
    }

    .opinion-card {
      min-width: 274px;
      scroll-snap-align: start;
      /* background: #fafafa; */
      /* border: 1px solid rgba(31, 41, 55, 0.06); */
      display: grid;
      gap: 12px;
      /* padding: 16px; */
      text-transform: none;
      color: var(--primary);
    }

    .opinion-card img {
      width: 100%;
      height: 164px;
      object-fit: cover;
      border-radius: 18px;
    }

    .opinion-card h3 {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.35;
      font-weight: 400;
      padding: 0 8px;
    }

    .opinion-card span {
      color: var(--muted);
      font-size: 0.9rem;
      padding: 0 8px 8px;
    }

    .ad-banner {
      position: relative;
      /* min-height: 148px; */
    }

    .ad-banner::after {
      content: "Google Ad Placeholder";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: var(--muted);
    }

    .ad-banner-box {
      max-width: 300px;
      margin: auto auto 16px;
    }
    .ad-banner-box::before {
      font-size: 0.6rem;
      content: "--Publicidad--";
      position: relative;
      inset: 0;
      display: grid;
      place-items: center;
      color: var(--muted);
    }
    .ad-banner-box img {
      border: 1px solid var(--border);
    }

    /* .video-panel {
      padding: 24px;
      display: grid;
      gap: 10px;
      align-content: start;
      background-color: var(--primary);
      color: #fff;
    }

    .video-panel h2 {
      margin: 0;
      font-size: 1.5rem;
      letter-spacing: 0.01em;
    } */

    .video-grid {
      display: grid;
      grid-auto-flow: column;
      /* grid-auto-columns: minmax(274px, 1fr); */
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 18px;
      
    }

    .video-card {
      display: grid;
      color: #fff;
      gap: 6px;
      padding: 0 0 16px 0;
      /* border: 1px solid #ddd; 
      border-radius: 8px;  */
      overflow: hidden; 
      /* background: #fff; */
      transition: 0.3s;
    }
    .video-card h3 {
      text-transform: none;
    }

    .video-card:hover {
        transform: translateY(-4px);
        box-shadow: rgba(0, 0, 0, 0.5) 0px 16px 40px;
    }

    .video-grid .video-item {
      border-radius: 0;
      overflow: hidden;
      background: #fafafa;
      border: 1px solid rgba(31, 41, 55, 0.06);
      min-height: 124px;
      display: grid;
      gap: 12px;
      padding: 12px;
    }

    .video-item img {
      min-height: 92px;
    }

    .video-meta {
      display: flex;
      justify-content: space-between;
      color: var(--muted);
      font-size: 0.88rem;
    }
    .video-grid .video-play {
        /* position: absolute; */
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, .92);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: var(--accent);
        pointer-events: none;
        z-index: 9999;
    }

    /* ── FOOTER ── */
  footer {
    /* background: var(--color-linieros-blue); */
    /* color: rgba(255,255,255,.8); */
    padding: 40px 0 20px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,.15);
    margin-bottom: 20px;
  }
  .footer-logo {
    font-size: 40px;
    font-weight: 900;
    font-style: italic;
    /* color: #fff; */
    letter-spacing: -2px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .footer-col h4 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* color: #fff; */
    margin-bottom: 10px;
  }
  .footer-col a {
    display: block;
    font-size: 12px;
    /* color: rgba(255,255,255,.65); */
    margin-bottom: 5px;
  }
  .footer-col a:hover { color: var(--primary); text-decoration: none; }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    /* color: rgba(255,255,255,.45); */
  }
  .footer-bottom .social { display: flex; gap: 12px; }
  .footer-bottom .social a {
    color: var(--primary);
    font-size: 16px;
  }

    .footer-strip {
      margin-top: 24px;
      padding: 18px 24px;
      background: #fff;
      border-radius: 0;
      border: 1px solid rgba(31, 41, 55, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: var(--muted);
      font-size: 0.95rem;
      box-shadow: var(--shadow);
    }

    .footer-strip strong {
      color: var(--primary);
    }