.material-symbols-outlined {
      font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    }

.sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

.hero-signature {
      display: block;
      max-width: 500px;
      width: 100%;
      height: auto;
      opacity: 0.85;
      background: transparent;
      mix-blend-mode: screen;
      isolation: isolate;
      filter: brightness(1.25) contrast(1.2);
    }

    /* Navegación principal */
    .nav-logo {
      height: 80px;
      max-height: 96px;
      width: auto;
      object-fit: contain;
    }

    .brushstroke-gradient {
      background: linear-gradient(90deg, transparent, #f2ca50, transparent);
      height: 12px;
      width: 140px;
      transform: skewX(-20deg);
      opacity: 0.8;
    }

    /* Simple Language Toggle CSS */
    [lang="en"] .lang-es {
      display: none;
    }

    [lang="es"] .lang-en {
      display: none;
    }

    /* Texture Overlay */
    .texture-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.05;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    /* Artistic Background Strokes */
    .artistic-bg-overlay {
      position: fixed;
      inset: 0;
      background-image: url('../images/fondo-web.png');
      background-size: 1400px;
      background-repeat: repeat;
      background-attachment: fixed;
      opacity: 0.08;
      pointer-events: none;
      z-index: 9998; /* Below the noise texture (9999) but above everything else */
      mix-blend-mode: screen; /* Brighter strokes show through */
    }

    /* Brush Cursor Styles */
    #custom-cursor {
      position: fixed;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      pointer-events: none;
      z-index: 999999;
    }

    @media (hover: none) and (pointer: coarse) {
      #custom-cursor {
        display: none;
      }
      body {
        cursor: auto !important;
      }
    }

    #cursor-item {
      position: absolute;
      width: 40px;
      height: 40px;
      pointer-events: none;
      transform: translate(-2%, -98%);
      /* Tip calibration */
      transition: transform 0.1s ease-out;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8));
    }

    #cursor-item svg {
      transform: rotate(0deg);
    }

    /* Disable standard pointers */
    a,
    button,
    [onclick],
    .cursor-pointer,
    .group {
      cursor: none !important;
    }

    /* Reveal Animations */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Balanced gradients for sections */
    section {
      background: radial-gradient(circle at center, #1a1a1a 0%, #131313 100%);
    }

    .bg-surface-container-low {
      background: radial-gradient(circle at center, #242424 0%, #1c1b1b 100%) !important;
    }

    .bg-surface-container-highest {
      background: radial-gradient(circle at center, #3d3d3d 0%, #353534 100%) !important;
    }

    .hero-background {
      background-image: url("../images/fondo header.png");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    .hero-background-layer {
      background-color: #131313;
      background-image: url("../images/fondo header.png");
      background-size: cover;
      background-position: 52% 46%;
      background-repeat: no-repeat;
      background-attachment: fixed;
      overflow: hidden;
    }

    .hero-background-image {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 52% 46%;
      transform: scale(1.02);
      transform-origin: center center;
      will-change: transform;
      display: none;
    }

    @media (max-width: 1024px) {
      .hero-background {
        background-attachment: scroll;
      }
      .hero-background-layer {
        background-image: none;
        background-color: #131313;
        background-attachment: scroll;
      }
      .hero-background-image {
        display: block;
        object-position: 56% 42%;
        transform: scale(1.08);
      }
      .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
    }

    /* Mobile navigation overlay */
    .mobile-nav-panel {
      position: fixed;
      inset: 0;
      background: rgba(19, 19, 19, 0.95);
      display: flex;
      justify-content: center;
      align-items: center;
      transform: translateY(-100%);
      transition: transform 0.4s ease;
      z-index: 20001;
      backdrop-filter: blur(10px);
      pointer-events: none;
    }

    .mobile-nav-panel.active {
      transform: translateY(0);
      pointer-events: auto;
    }

    .mobile-nav-panel__content {
      width: min(90vw, 420px);
      text-align: center;
      padding: 2rem;
      border: 1px solid rgba(242, 202, 80, 0.25);
      border-radius: 0;
      position: relative;
    }

    .mobile-nav-panel__links {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .mobile-nav-panel__links a {
      color: #e5e2e1;
      font-family: var(--font-body, Manrope);
      text-transform: uppercase;
      letter-spacing: 0.5em;
      font-size: 12px;
      text-decoration: none;
    }

    .mobile-nav-panel__cta {
      display: inline-flex;
      margin-top: 2rem;
      padding: 0.8rem 1.5rem;
      background: linear-gradient(90deg, #f2ca50, #d4af37);
      color: #131313;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-family: var(--font-label, Manrope);
      text-decoration: none;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
    }

    .mobile-nav-panel__close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      background: transparent;
      border: 1px solid rgba(242, 202, 80, 0.5);
      color: #f2ca50;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cookie-banner {
      position: fixed;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 40000;
      opacity: 0;
      transform: translateY(32px);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .cookie-banner.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .cookie-banner.is-hidden {
      display: none;
    }

    .cookie-banner__inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 1.5rem;
      align-items: center;
      max-width: 1120px;
      margin: 0 auto;
      padding: 1.5rem 1.75rem;
      border: 1px solid rgba(242, 202, 80, 0.28);
      background: rgba(14, 14, 14, 0.94);
      backdrop-filter: blur(18px);
      box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }

    .cookie-banner__copy {
      min-width: 0;
    }

    .cookie-banner__eyebrow {
      margin: 0 0 0.65rem;
      color: #f2ca50;
      font-size: 10px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
    }

    .cookie-banner__text {
      margin: 0;
      color: #e5e2e1;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .cookie-banner__text a {
      color: #f2ca50;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-banner__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: flex-end;
    }

    .cookie-banner__button {
      min-width: 168px;
      padding: 0.95rem 1.25rem;
      border: 1px solid rgba(242, 202, 80, 0.6);
      font-size: 10px;
      font-family: var(--font-label, Manrope);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .cookie-banner__button--primary {
      background: #f2ca50;
      color: #131313;
    }

    .cookie-banner__button--primary:hover {
      background: #e5bd42;
      border-color: #e5bd42;
    }

    .cookie-banner__button--secondary {
      background: transparent;
      color: #f2ca50;
    }

    .cookie-banner__button--secondary:hover {
      background: rgba(242, 202, 80, 0.12);
    }

    .pricing-table-wrap {
      width: 100%;
    }

    .pricing-table {
      width: 100%;
    }

    .pricing-table__concept {
      min-width: 0;
    }


    /* Typographic Glow */
    .font-elegant,
    .font-headline.text-primary {
      text-shadow: 0 0 40px rgba(242, 202, 80, 0.1), 0 0 80px rgba(242, 202, 80, 0.05);
    }

    /* Elegant Gallery Label */
    .gallery-label {
      border-left: 2px solid #f2ca50;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(-10px);
      opacity: 0;
    }

    .group:hover .gallery-label {
      transform: translateX(0);
      opacity: 1;
    }

    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Lightbox Modal */
    #lightbox-modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 10, 0.98);
      z-index: 30000;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(20px);
    }

    #lightbox-modal.active {
      display: flex;
    }

    .lightbox-img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
    }

    /* Deckle Edge (Torn Paper Effect) */
.deckle-edge, .deckle-edge img, .deckle-edge-container {
      /* Jagged clip-path for a "hand-cut" or "torn" look */
      clip-path: polygon(
          /* Top edge */
          0% 2%, 3% 0%, 15% 1%, 28% 0%, 42% 1.5%, 58% 0.5%, 72% 2%, 86% 0.5%, 98% 1.5%, 100% 0%,
          /* Right edge */
          99% 12%, 100% 28%, 98.5% 42%, 99.5% 58%, 98% 72%, 99% 86%, 100% 98%,
          /* Bottom edge */
          98% 100%, 86% 98.5%, 72% 99.5%, 58% 98%, 42% 100%, 28% 98.5%, 15% 99.5%, 3% 98%, 0% 100%,
          /* Left edge */
          1.5% 86%, 0.5% 72%, 1.5% 58%, 0% 42%, 1% 28%, 0% 12%);
      border: none;
      background: transparent;
      padding: 0;
      /* Image fills the clipped area directly */
    }

.about-portrait {
      width: clamp(432px, 40vw, 518px);
      max-width: 100%;
      aspect-ratio: 0.9 / 1;
      max-height: 606px;
      margin-left: 0;
      position: relative;
      overflow: visible;
    }

.about-portrait::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 9px solid #f2ca50;
      border-radius: 2px;
      pointer-events: none;
      mix-blend-mode: screen;
      box-shadow: 0 0 35px rgba(242, 202, 80, 0.9), 0 0 70px rgba(242, 202, 80, 0.6);
    }

.lume-shadow {
      position: relative;
      filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2)) 
              drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2)) 
              drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
      transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
      z-index: 1;
    }

    .lume-shadow::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
      opacity: 0;
      transition: opacity 0.8s ease;
      pointer-events: none;
      z-index: 10;
      clip-path: polygon(
          0% 2%, 3% 0%, 15% 1%, 28% 0%, 42% 1.5%, 58% 0.5%, 72% 2%, 86% 0.5%, 98% 1.5%, 100% 0%,
          99% 12%, 100% 28%, 98.5% 42%, 99.5% 58%, 98% 72%, 99% 86%, 100% 98%,
          98% 100%, 86% 98.5%, 72% 99.5%, 58% 98%, 42% 100%, 28% 98.5%, 15% 99.5%, 3% 98%, 0% 100%,
          1.5% 86%, 0.5% 72%, 1.5% 58%, 0% 42%, 1% 28%, 0% 12%);
    }

.lume-shadow:hover {
      transform: translateY(-25px) rotate(1.5deg) scale(1.05);
      filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.3)) 
              drop-shadow(0 35px 60px rgba(0, 0, 0, 0.3)) 
              drop-shadow(0 55px 100px rgba(0, 0, 0, 0.3));
      z-index: 50;
    }

    .lume-shadow:nth-child(even):hover {
      transform: translateY(-25px) rotate(-1.5deg) scale(1.05);
    }

    .lume-shadow:hover::before {
      opacity: 1;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: #131313; }
    ::-webkit-scrollbar-thumb { background: #f2ca50; }

    @media (max-width: 768px) {
      .pricing-table-wrap {
        overflow-x: visible;
      }

      .pricing-table {
        display: block;
      }

      .pricing-table thead {
        display: none;
      }

      .pricing-table tbody {
        display: grid;
        gap: 1rem;
      }

      .pricing-table tbody tr {
        display: grid;
        gap: 0.75rem;
        padding: 1.25rem;
        border: 1px solid rgba(242, 202, 80, 0.18);
        background: rgba(19, 19, 19, 0.35);
      }

      .pricing-table tbody td {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
        width: 100%;
        padding: 0;
        font-size: 1.5rem;
        line-height: 1.2;
        text-align: right;
      }

      .pricing-table tbody td::before {
        content: attr(data-label);
        color: #d0c5af;
        font-family: var(--font-label, Manrope);
        font-size: 0.7rem;
        letter-spacing: 0.24em;
        text-transform: uppercase;
        font-style: normal;
        text-align: left;
      }

      .pricing-table tbody td.pricing-table__concept {
        display: block;
        text-align: left;
        padding-bottom: 0.75rem;
        margin-bottom: 0.25rem;
        border-bottom: 1px solid rgba(242, 202, 80, 0.14);
      }

      .pricing-table tbody td.pricing-table__concept::before {
        content: none;
      }

      .pricing-table tbody td.pricing-table__concept span:first-child {
        font-size: 1.45rem;
        line-height: 1.15;
        margin-bottom: 0.4rem;
      }

      .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
      }

      .cookie-banner__inner {
        grid-template-columns: 1fr;
        padding: 1.25rem;
      }

      .cookie-banner__actions {
        width: 100%;
        justify-content: stretch;
      }

      .cookie-banner__button {
        width: 100%;
      }

      .hero-signature {
        padding-top: 30px;
      }

      .hero-role {
        gap: 0.75rem;
        width: 100%;
        justify-content: center;
      }

      .hero-role__text-wrap {
        display: flex;
        flex: 0 1 auto;
        min-width: 0;
        justify-content: center;
      }

      .hero-role__text {
        display: inline-block;
        white-space: nowrap;
        font-size: 1.85rem;
        line-height: 1;
      }

      html[lang="es"] .hero-role__text.lang-es {
        font-size: 2.15rem;
      }

      .hero-section {
        align-items: center;
        padding-bottom: 2rem;
      }

      .hero-background-layer,
      .hero-background-image {
        min-height: 100%;
      }

      .hero-background-image {
        object-position: 51% 38%;
        transform: scale(1.14) translateY(-40px);
      }

      .gallery-grid {
        gap: 1.25rem;
      }

      .gallery-grid img,
      .about-portrait img {
        display: block;
        width: 100%;
        height: auto;
      }

      .about-portrait {
        width: 100%;
        max-height: none;
        margin: 0 auto;
      }

      .about-portrait img {
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
      }

      .about-portrait::after {
        border-radius: 2px;
      }

      .deckle-edge,
      .deckle-edge img,
      .deckle-edge-container {
        clip-path: polygon(
          0% 2%, 3% 0%, 15% 1%, 28% 0%, 42% 1.5%, 58% 0.5%, 72% 2%, 86% 0.5%, 98% 1.5%, 100% 0%,
          99% 12%, 100% 28%, 98.5% 42%, 99.5% 58%, 98% 72%, 99% 86%, 100% 98%,
          98% 100%, 86% 98.5%, 72% 99.5%, 58% 98%, 42% 100%, 28% 98.5%, 15% 99.5%, 3% 98%, 0% 100%,
          1.5% 86%, 0.5% 72%, 1.5% 58%, 0% 42%, 1% 28%, 0% 12%
        );
        border-radius: 0;
      }

      .gallery-grid > div {
        position: relative;
        overflow: hidden;
      }

      .gallery-grid > div::after {
        content: none;
      }

      .lume-shadow,
      .lume-shadow:hover {
        transform: none;
        filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
      }
    }

    @media (hover: none) and (pointer: coarse) {
      .reveal {
        opacity: 1;
        transform: none;
      }

      .gallery-grid > div {
        opacity: 1;
        visibility: visible;
      }
    }
