    /* =====================
   TOKENS
   ===================== */
    :root {
      --sand: #F5F0E8;
      --cream: #FAF7F2;
      --cream-2: #F2EDE4;
      --ink: #1A1814;
      --ink-soft: #2E2B26;
      --gold: #C4A35A;
      --gold-dark: #9B7D36;
      --gold-light: #E8D5A3;
      --ocean: #2B4A6B;
      --ocean-light: #4A7BA7;
      --stone: #8B8478;
      --stone-light: #C8C0B5;
      --white: #FFFFFF;

      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'Outfit', sans-serif;

      --pad: clamp(80px, 9vw, 130px);
      --wrap: 1300px;

      --shadow-card: 0 4px 24px rgba(26, 24, 20, 0.09);
      --shadow-hover: 0 20px 56px rgba(26, 24, 20, 0.18), 0 4px 12px rgba(26, 24, 20, 0.08);
      --shadow-gold: 0 8px 32px rgba(196, 163, 90, 0.28);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
      font-weight: 300;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ::-webkit-scrollbar {
      width: 3px;
    }

    ::-webkit-scrollbar-track {
      background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold);
    }

    .wrap {
      width: 100%;
      max-width: var(--wrap);
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 64px);
    }

    /* =====================
   REVEAL
   ===================== */
    .r {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.85s cubic-bezier(.16, 1, .3, 1), transform 0.85s cubic-bezier(.16, 1, .3, 1);
    }

    .r.on {
      opacity: 1;
      transform: none;
    }

    .r1 {
      transition-delay: .10s;
    }

    .r2 {
      transition-delay: .22s;
    }

    .r3 {
      transition-delay: .34s;
    }

    .r4 {
      transition-delay: .46s;
    }

    /* =====================
   LOADER
   ===================== */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--ink);
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      transition: opacity .9s ease, visibility .9s ease;
    }

    #loader.out {
      opacity: 0;
      visibility: hidden;
    }

    .loader-logo-wrap {
      animation: rise .9s cubic-bezier(.16, 1, .3, 1) .3s both;
    }

    .loader-logo-wrap img {
      height: 72px;
      width: auto;
      filter: invert(1);
    }

    .loader-bar-bg {
      width: 120px;
      height: 1px;
      background: rgba(255, 255, 255, .1);
      animation: rise .9s .6s both;
    }

    .loader-bar {
      height: 1px;
      background: var(--gold);
      animation: barGrow 1.4s .6s cubic-bezier(.4, 0, .2, 1) forwards;
      width: 0;
    }

    @keyframes barGrow {
      to {
        width: 100%;
      }
    }

    @keyframes rise {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    /* =====================
   HEADER
   ===================== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 20px 0;
      transition: all .4s cubic-bezier(.16, 1, .3, 1);
    }

    header.s {
      background: rgba(250, 247, 242, .97);
      backdrop-filter: blur(16px);
      padding: 12px 0;
      box-shadow: 0 1px 0 rgba(0, 0, 0, .07);
    }

    .hdr {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .site-logo {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .site-logo img {
      height: clamp(40px, 5vw, 68px);
      width: auto;
      filter: invert(1);
      transition: filter .35s, opacity .35s;
      display: block;
    }

    header.s .site-logo img {
      filter: none;
    }

    .site-logo:hover img {
      opacity: .82;
    }

    nav {
      display: flex;
      align-items: center;
      gap: clamp(16px, 2vw, 32px);
    }

    nav a {
      font-size: .72rem;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .8);
      text-decoration: none;
      transition: color .3s;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width .35s;
    }

    nav a:hover::after {
      width: 100%;
    }

    header.s nav a {
      color: var(--ink-soft);
    }

    nav a:hover {
      color: var(--gold);
    }

    .nav-cta {
      background: var(--gold);
      color: var(--ink) !important;
      padding: 9px 22px;
      font-size: .68rem !important;
      letter-spacing: .16em;
      transition: background .3s !important;
    }

    .nav-cta::after {
      display: none !important;
    }

    .nav-cta:hover {
      background: var(--ink);
      color: var(--white) !important;
    }

    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .ham span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: .3s;
    }

    header.s .ham span {
      background: var(--ink);
    }

    /* =====================
   MOBILE NAV
   ===================== */
    .mob-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: min(300px, 100vw);
      height: 100svh;
      background: var(--ink);
      z-index: 998;
      transition: right .45s cubic-bezier(.16, 1, .3, 1);
      display: flex;
      flex-direction: column;
      padding: 84px 40px 40px;
    }

    .mob-nav.open {
      right: 0;
    }

    .mob-nav a {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--sand);
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      font-weight: 300;
      transition: color .3s;
    }

    .mob-nav a:hover {
      color: var(--gold);
    }

    .mob-close {
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      color: var(--sand);
      font-size: 1.5rem;
      cursor: pointer;
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .6);
      z-index: 997;
      opacity: 0;
      pointer-events: none;
      transition: opacity .4s;
    }

    .overlay.on {
      opacity: 1;
      pointer-events: all;
    }

    /* =====================
   HERO
   ===================== */
    .hero {
      position: relative;
      height: 100svh;
      min-height: 640px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(ellipse at 16% 55%, rgba(43, 74, 107, .42) 0%, transparent 52%),
        radial-gradient(ellipse at 80% 15%, rgba(196, 163, 90, .1) 0%, transparent 46%),
        linear-gradient(148deg, #141210 0%, #0d1820 35%, #1a1410 62%, #09090b 100%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      opacity: .018;
      background:
        repeating-linear-gradient(90deg, #fff 0, #fff 1px, transparent 1px, transparent calc(100% / 12)),
        repeating-linear-gradient(0deg, #fff 0, #fff 1px, transparent 1px, transparent 80px);
    }

    .hero-grain {
      position: absolute;
      inset: 0;
      z-index: 2;
      opacity: .04;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 200px;
    }

    .hero-num {
      position: absolute;
      right: -1%;
      top: 4%;
      z-index: 2;
      pointer-events: none;
      font-family: var(--font-display);
      font-size: clamp(180px, 26vw, 380px);
      font-weight: 300;
      color: rgba(255, 255, 255, .035);
      line-height: 1;
      letter-spacing: -.04em;
      user-select: none;
    }

    /* Floating covers */
    .hero-floaters {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      overflow: hidden;
    }

    .floater {
      position: absolute;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 4px 16px rgba(0, 0, 0, .4);
    }

    .floater img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .f1 {
      width: clamp(120px, 13vw, 195px);
      aspect-ratio: 3/4;
      right: clamp(260px, 21vw, 370px);
      top: 12%;
      transform: rotate(-5deg);
      opacity: 0;
      animation: fReveal 1s cubic-bezier(.16, 1, .3, 1) 1.5s forwards;
    }

    .f2 {
      width: clamp(105px, 11vw, 165px);
      aspect-ratio: 3/4;
      right: clamp(110px, 9vw, 190px);
      top: 26%;
      transform: rotate(3deg);
      opacity: 0;
      animation: fReveal 1s cubic-bezier(.16, 1, .3, 1) 1.7s forwards;
    }

    .f3 {
      width: clamp(92px, 9.5vw, 145px);
      aspect-ratio: 3/4;
      right: clamp(16px, 3vw, 50px);
      top: 16%;
      transform: rotate(-2deg);
      opacity: 0;
      animation: fReveal 1s cubic-bezier(.16, 1, .3, 1) 1.9s forwards;
    }

    @keyframes fReveal {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: .75;
        transform: translateY(0);
      }
    }

    @media (max-width: 860px) {
      .hero-floaters {
        display: none;
      }
    }

    .hero-content {
      position: relative;
      z-index: 4;
      padding-bottom: clamp(60px, 8vw, 100px);
      width: 100%;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      position: absolute;
      top: 110px;
      left: max(clamp(20px, 4vw, 64px), calc((100% - var(--wrap)) / 2 + clamp(20px, 4vw, 64px)));
      opacity: 0;
      animation: up .9s cubic-bezier(.16, 1, .3, 1) .6s forwards;
    }

    .eline {
      width: 44px;
      height: 1px;
      background: var(--gold);
    }

    .etext {
      font-size: .55rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 6vw, 7rem);
      font-weight: 300;
      line-height: .93;
      color: var(--white);
      letter-spacing: -.025em;
      margin-bottom: 24px;
      opacity: 0;
      animation: up 1s cubic-bezier(.16, 1, .3, 1) .8s forwards;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
      text-shadow: 0 2px 40px rgba(196, 163, 90, .25);
    }

    .hero-sub {
      font-size: clamp(.8rem, 1.2vw, .95rem);
      font-weight: 300;
      color: rgba(255, 255, 255, .65);
      max-width: 480px;
      line-height: 1.75;
      margin-top: 80px;
      margin-bottom: 36px;
      letter-spacing: .02em;
      opacity: 0;
      animation: up 1s cubic-bezier(.16, 1, .3, 1) 1s forwards;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: up 1s cubic-bezier(.16, 1, .3, 1) 1.2s forwards;
    }

    @keyframes up {
      from {
        opacity: 0;
        transform: translateY(26px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    /* Buttons */
    .btn-gold {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--gold);
      color: var(--ink);
      padding: 14px 32px;
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: color .35s;
    }

    .btn-gold::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--ink);
      transform: translateX(-101%);
      transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    }

    .btn-gold:hover::before {
      transform: none;
    }

    .btn-gold:hover {
      color: var(--white);
    }

    .btn-gold span,
    .btn-gold svg {
      position: relative;
      z-index: 1;
    }

    .btn-gold svg {
      transition: transform .3s;
    }

    .btn-gold:hover svg {
      transform: translateX(4px);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid rgba(255, 255, 255, .28);
      color: rgba(255, 255, 255, .82);
      padding: 13px 28px;
      font-size: .62rem;
      font-weight: 400;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .35s;
      backdrop-filter: blur(4px);
    }

    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* Scroll indicator */
    .scroll-ind {
      position: absolute;
      bottom: 34px;
      right: clamp(24px, 4vw, 64px);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeIn 1s 2s forwards;
    }

    .scroll-ind span {
      writing-mode: vertical-rl;
      font-size: .56rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, transparent, var(--gold));
      animation: pulse 2.2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%,
      100% {
        opacity: .7;
        transform: scaleY(1);
      }

      50% {
        opacity: 1;
        transform: scaleY(.6);
      }
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    /* Ticker */
    .ticker {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 5;
      background: var(--gold);
      padding: 10px 0;
      overflow: hidden;
    }

    .ticker-t {
      display: flex;
      white-space: nowrap;
      animation: tick 32s linear infinite;
    }

    .ticker-t:hover {
      animation-play-state: paused;
    }

    .ticker-t span {
      font-size: .62rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--ink);
      padding: 0 32px;
    }

    .td {
      color: rgba(26, 24, 20, .3) !important;
      padding: 0 4px !important;
    }

    @keyframes tick {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* =====================
   SECTION HEADER
   ===================== */
    .sec-ey {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .ey-line {
      width: 26px;
      height: 1px;
      background: var(--gold);
    }

    .ey-txt {
      font-size: .62rem;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    .sec-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4.4vw, 4rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--ink);
      letter-spacing: -.01em;
    }

    .sec-title em {
      font-style: italic;
      color: var(--ocean);
    }

    .sec-sub {
      margin-top: 16px;
      font-size: .92rem;
      color: var(--stone);
      max-width: 470px;
      font-weight: 300;
      line-height: 1.75;
    }

    .sec-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: clamp(44px, 5vw, 68px);
    }

    .btn-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .65rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
      transition: color .3s;
    }

    .btn-link:hover {
      color: var(--gold-dark);
    }

    .btn-link-w {
      color: rgba(255, 255, 255, .6);
      border-bottom-color: rgba(255, 255, 255, .25);
    }

    .btn-link-w:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
    }

    /* =====================
   ABOUT
   ===================== */
    .about {
      padding: var(--pad) 0;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .about::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -5%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196, 163, 90, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .about::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -5%;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(43, 74, 107, .14) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(44px, 7vw, 110px);
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .about-lbl {
      font-size: .62rem;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-lbl::before {
      content: '';
      width: 26px;
      height: 1px;
      background: var(--gold);
    }

    .about-ttl {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 4rem);
      font-weight: 300;
      color: var(--sand);
      line-height: 1.05;
      letter-spacing: -.015em;
      margin-bottom: 28px;
    }

    .about-ttl em {
      font-style: italic;
      color: var(--gold-light);
    }

    .about-body {
      font-size: .92rem;
      color: var(--stone-light);
      line-height: 1.88;
      font-weight: 300;
    }

    .about-body p+p {
      margin-top: 16px;
    }

    .stats {
      margin-top: 50px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .stat-n {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.02em;
    }

    .stat-l {
      font-size: .66rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--stone);
      margin-top: 6px;
    }

    .about-img-wrap {
      position: relative;
      aspect-ratio: 3/4;
      max-width: 400px;
      margin: 0 auto;
      overflow: hidden;
    }

    .about-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .8s cubic-bezier(.16, 1, .3, 1);
    }

    .about-img-wrap:hover img {
      transform: scale(1.20) rotate(8deg);
    }

    .about-badge {
      position: absolute;
      bottom: -16px;
      right: -16px;
      z-index: 3;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      box-shadow: var(--shadow-gold);
    }

    .badge-n {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 300;
      color: var(--ink);
      line-height: 1;
      letter-spacing: -.03em;
    }

    .badge-l {
      font-size: .5rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(26, 24, 20, .6);
      margin-top: 2px;
    }

    /* =====================
   EDITIONS
   ===================== */
    .editions {
      padding: var(--pad) 0;
      background: var(--cream);
    }

    .editions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    @media (max-width: 1000px) {
      .editions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .editions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
    }

    .ecard {
      background: var(--white);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s cubic-bezier(.16, 1, .3, 1);
      cursor: pointer;
    }

    .ecard:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
    }

    .ecard-cover {
      aspect-ratio: 3/4;
      overflow: hidden;
      position: relative;
    }

    .ecard-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s cubic-bezier(.16, 1, .3, 1);
    }

    .ecard:hover .ecard-cover img {
      transform: scale(1.06);
    }

    .ecard-ov {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(10, 10, 8, .5) 0%, rgba(10, 10, 8, .1) 30%, transparent 50%);
    }

    .ecard-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      background: rgba(26, 24, 20, .7);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(196, 163, 90, .4);
      font-size: .56rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      padding: 4px 9px;
      font-weight: 500;
    }

    .ecard-logo {
      position: absolute;
      top: 12px;
      left: 14px;
      z-index: 2;
      font-family: var(--font-display);
      font-size: .82rem;
      color: rgba(255, 255, 255, .88);
      letter-spacing: .08em;
      text-transform: lowercase;
      font-weight: 300;
      text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
    }

    .ecard-meta {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 2;
      padding: 18px 16px 14px;
    }

    .ecard-theme {
      font-size: .55rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
      font-weight: 500;
    }

    .ecard-hl {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: rgba(255, 255, 255, .92);
      line-height: 1.1;
      font-weight: 300;
    }

    .ecard-info {
      padding: 18px 18px 22px;
      border-top: 2px solid var(--gold);
    }

    .ecard-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 10px;
    }

    .ecard-title {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 400;
      color: var(--ink);
    }

    .ecard-date {
      font-size: .6rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--stone);
      white-space: nowrap;
      margin-top: 2px;
    }

    .ecard-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 14px;
    }

    .etag {
      font-size: .57rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ocean);
      border: 1px solid rgba(43, 74, 107, .22);
      padding: 3px 8px;
    }

    .btn-ed {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .6rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
      font-weight: 500;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
      transition: color .3s;
    }

    .btn-ed:hover {
      color: var(--gold-dark);
    }

    .ecard-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .btn-ed-dl {
      color: var(--stone);
      border-bottom-color: var(--stone-light);
    }

    .btn-ed-dl:hover {
      color: var(--ocean);
      border-bottom-color: var(--ocean);
    }

    /* =====================
   SECCIONES
   ===================== */
    .secciones {
      padding: var(--pad) 0;
      background: var(--cream-2);
    }

    .sec-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 250px;
      gap: 16px;
      margin-top: 50px;
    }

    @media (max-width: 900px) {
      .sec-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
      }
    }

    @media (max-width: 560px) {
      .sec-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
      }
    }

    .scard {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 24px;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .scard:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }

    .scard:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .scard:nth-child(2) { grid-column: span 1; grid-row: span 1; }
    .scard:nth-child(3) { grid-column: span 1; grid-row: span 1; }
    .scard:nth-child(4) { grid-column: span 2; grid-row: span 1; }
    .scard:nth-child(5) { grid-column: span 2; grid-row: span 1; }
    .scard:nth-child(6) { grid-column: span 1; grid-row: span 1; }
    .scard:nth-child(7) { grid-column: span 1; grid-row: span 1; }

    @media (max-width: 900px) {
      .scard:nth-child(1) { grid-column: span 2; grid-row: span 2; }
      .scard:nth-child(2),
      .scard:nth-child(3),
      .scard:nth-child(6),
      .scard:nth-child(7) { grid-column: span 1; grid-row: span 1; }
      .scard:nth-child(4),
      .scard:nth-child(5) { grid-column: span 2; grid-row: span 1; }
    }

    @media (max-width: 560px) {
      .scard:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    }

    .scard-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: saturate(0.8) brightness(0.65);
      transition: filter 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .scard:hover .scard-bg {
      filter: saturate(1.1) brightness(0.5);
      transform: scale(1.05);
    }

    .scard::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(16, 14, 12, 0.85) 0%, rgba(16, 14, 12, 0.2) 60%, transparent 100%);
      transition: background 0.4s;
    }

    .scard:hover::after {
      background: linear-gradient(to top, rgba(196, 163, 90, 0.4) 0%, rgba(26, 24, 20, 0.65) 100%);
    }

    .scard-c {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      width: 100%;
    }
    
    .scard-main {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .scard-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 4px;
    }

    .scard-ico {
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .scard-ct {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 500;
      transition: color 0.3s;
    }

    .scard:hover .scard-ct {
      color: var(--white);
    }

    .scard-nm {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--white);
      font-weight: 400;
      line-height: 1.1;
      transition: color 0.3s;
    }

    .scard:hover .scard-nm {
      color: var(--gold-light);
    }

    .scard-arrow {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateX(-15px);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .scard:hover .scard-arrow {
      opacity: 1;
      transform: translateX(0);
    }

    /* =====================
   PLANS
   ===================== */
    .plans-sec {
      padding: var(--pad) 0;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .plans-grid-bg {
      position: absolute;
      inset: 0;
      opacity: .03;
      background-image: linear-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .5) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .plans-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196, 163, 90, .065) 0%, transparent 70%);
      pointer-events: none;
    }

    .plans-hdr {
      text-align: center;
      margin-bottom: 44px;
      position: relative;
      z-index: 1;
    }

    .plans-hdr .sec-title {
      color: var(--sand);
    }

    .plans-hdr .sec-title em {
      color: var(--gold-light);
    }

    .plans-hdr .sec-sub {
      color: var(--stone);
      max-width: 520px;
      margin: 16px auto 0;
    }

    .plans-hdr .sec-ey {
      justify-content: center;
    }

    .toggle-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 40px;
      padding: 5px;
      width: fit-content;
      margin: 0 auto 52px;
      position: relative;
      z-index: 1;
    }

    .tbtn {
      padding: 9px 26px;
      border-radius: 40px;
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .44);
      cursor: pointer;
      background: none;
      border: none;
      font-family: var(--font-body);
      font-weight: 400;
      transition: all .3s;
    }

    .tbtn.act {
      background: var(--gold);
      color: var(--ink);
      font-weight: 600;
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 860px) {
      .plans-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
      }
    }

    .pcard {
      border: 1px solid rgba(255, 255, 255, .1);
      background: rgba(255, 255, 255, .03);
      position: relative;
      overflow: hidden;
      transition: all .45s cubic-bezier(.16, 1, .3, 1);
      display: flex;
      flex-direction: column;
    }

    .pcard:hover {
      border-color: rgba(196, 163, 90, .48);
      transform: translateY(-5px);
    }

    .pcard.feat {
      border-color: var(--gold);
      background: rgba(196, 163, 90, .07);
    }

    .pcard-vis {
      padding: 32px 30px 24px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      min-height: 148px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      position: relative;
      overflow: hidden;
    }

    .pcard-vis::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, .025) 0%, transparent 100%);
    }

    .pbadge {
      position: absolute;
      top: 0;
      right: 0;
      background: var(--gold);
      color: var(--ink);
      font-size: .57rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      padding: 6px 18px 6px 22px;
      font-weight: 600;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 14% 100%);
    }

    .pcard-body {
      padding: 28px 30px 32px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .pname {
      font-family: var(--font-display);
      font-size: 1.9rem;
      color: var(--sand);
      font-weight: 300;
      margin-bottom: 3px;
    }

    .ptag {
      font-size: .67rem;
      color: var(--stone);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .pprice-row {
      display: flex;
      align-items: flex-start;
      gap: 2px;
      margin-bottom: 4px;
    }

    .pcurrency {
      font-size: .86rem;
      color: var(--stone);
      margin-top: 9px;
      font-weight: 300;
    }

    .pprice {
      font-family: var(--font-display);
      font-size: clamp(3rem, 5vw, 4rem);
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -.04em;
    }

    .pnote {
      font-size: .6rem;
      color: var(--stone);
      margin-bottom: 26px;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .pdiv {
      height: 1px;
      background: rgba(255, 255, 255, .07);
      margin-bottom: 24px;
    }

    .pfeats {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .pfeat {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      font-size: .82rem;
      color: rgba(255, 255, 255, .65);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
      font-weight: 300;
      line-height: 1.4;
    }

    .pfeat:last-child {
      border-bottom: none;
    }

    .pcheck {
      width: 17px;
      height: 17px;
      flex-shrink: 0;
      background: rgba(196, 163, 90, .14);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
    }

    .pcheck svg {
      width: 9px;
    }

    .fpills {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 3px;
    }

    .fpill {
      font-size: .54rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      border: 1px solid rgba(196, 163, 90, .25);
      color: var(--gold);
      padding: 2px 7px;
    }

    .spills {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .spill {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 100px;
      padding: 2px 9px;
      font-size: .6rem;
      color: rgba(255, 255, 255, .5);
    }

    .pbtn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 14px;
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all .3s;
      font-family: var(--font-body);
      margin-top: auto;
    }

    .pbtn-out {
      border: 1px solid rgba(255, 255, 255, .2);
      color: rgba(255, 255, 255, .65);
      background: none;
    }

    .pbtn-out:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .pbtn-solid {
      background: var(--gold);
      color: var(--ink);
    }

    .pbtn-solid:hover {
      background: var(--white);
    }

    /* =====================
   ADVERTISERS — REDESIGN
   ===================== */
    .adv {
      padding: var(--pad) 0 0;
      background: var(--ink);
      position: relative;
      overflow: hidden;
    }

    .adv-hero {
      text-align: center;
      padding-bottom: clamp(52px, 7vw, 90px);
      position: relative;
      z-index: 1;
    }

    .adv-hero .sec-ey {
      justify-content: center;
      margin-bottom: 16px;
    }

    .adv-hero .sec-title {
      color: var(--sand);
      margin-bottom: 20px;
    }

    .adv-hero .sec-title em {
      color: var(--gold);
    }

    .adv-intro {
      font-family: var(--font-display);
      font-size: clamp(1rem, 1.6vw, 1.22rem);
      font-style: italic;
      color: rgba(245, 240, 232, .62);
      max-width: 680px;
      margin: 0 auto 36px;
      line-height: 1.75;
    }

    .adv-bg-decor {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(ellipse at 10% 30%, rgba(43, 74, 107, .28) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 70%, rgba(196, 163, 90, .08) 0%, transparent 45%);
    }

    .adv-cats {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: clamp(44px, 6vw, 72px);
      position: relative;
      z-index: 1;
    }

    .adv-cat-btn {
      background: none;
      border: 1px solid rgba(255, 255, 255, .12);
      color: rgba(245, 240, 232, .55);
      font-family: var(--font-body);
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 9px 22px;
      cursor: pointer;
      transition: all .3s;
    }

    .adv-cat-btn:hover,
    .adv-cat-btn.act {
      border-color: var(--gold);
      color: var(--gold);
    }

    .adv-category {
      position: relative;
      z-index: 1;
      margin-bottom: clamp(56px, 8vw, 100px);
    }

    .adv-cat-header {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 32px;
      cursor: pointer;
      user-select: none;
      transition: all 0.3s;
      padding: 5px 0;
    }

    .adv-cat-header:hover {
      opacity: 0.8;
    }

    .adv-cat-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(196, 163, 90, .4), transparent);
    }

    .adv-cat-ico {
      font-size: 1.1rem;
      line-height: 1;
    }

    .adv-cat-name {
      font-size: 1.15rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      white-space: nowrap;
      font-family: var(--font-display);
      font-style: italic;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .adv-chevron {
      color: var(--gold);
      display: flex;
      align-items: center;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .adv-chevron svg {
      width: 20px;
      height: 20px;
    }

    .adv-cat-line-r {
      flex: 1;
      height: 1px;
      background: linear-gradient(to left, rgba(196, 163, 90, .4), transparent);
    }

    .adv-category .adv-grid-wrapper {
      display: grid;
      grid-template-rows: 1fr;
      transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-bottom 0.4s;
    }

    .adv-category .adv-grid-inner {
      overflow: hidden;
    }

    .adv-category.is-collapsed .adv-grid-wrapper {
      grid-template-rows: 0fr;
    }

    .adv-category.is-collapsed .adv-cat-header {
      margin-bottom: 0;
    }

    .adv-category.is-collapsed .adv-chevron {
      transform: rotate(-180deg);
    }

    .adv-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    @media (max-width: 1100px) {
      .adv-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 760px) {
      .adv-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .adv-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
      }
    }

    .acard {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      overflow: hidden;
      transition: all .45s cubic-bezier(.16, 1, .3, 1);
      display: flex;
      flex-direction: column;
    }

    .acard:hover {
      border-color: rgba(196, 163, 90, .4);
      transform: translateY(-4px);
      background: rgba(255, 255, 255, .07);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .35);
    }

    .acard-img {
      aspect-ratio: 4/3;
      overflow: hidden;
      position: relative;
      background: rgba(255, 255, 255, .04);
    }

    .acard-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s cubic-bezier(.16, 1, .3, 1);
      filter: brightness(.85) saturate(.9);
    }

    .acard:hover .acard-img img {
      transform: scale(1.06);
      filter: brightness(.95) saturate(1.1);
    }

    .acard-img-ph {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(43, 74, 107, .25) 0%, rgba(26, 24, 20, .6) 100%);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.35rem;
      color: rgba(245, 240, 232, .25);
      letter-spacing: .06em;
      text-align: center;
      padding: 16px;
    }

    .acard-img-ph svg,
    .acard-img-ph img {
      width: 68%;
      max-width: 200px;
      height: auto;
      max-height: 82%;
      opacity: .72;
      transition: opacity .5s cubic-bezier(.16, 1, .3, 1), transform .5s cubic-bezier(.16, 1, .3, 1);
      filter: grayscale(1); /* Ensure PNGs are also grayscale */
    }

    .acard:hover .acard-img-ph svg,
    .acard:hover .acard-img-ph img {
      opacity: 1;
      transform: scale(1.04);
      filter: grayscale(0); /* Brighten on hover */
    }

    /* Larger logos that need more space to avoid clipping */
    .acard-img-ph img.logo-full {
      width: auto;
      height: auto;
      max-width: 85%;
      max-height: 75%;
    }

    .acard-ov {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(26, 24, 20, .85), transparent);
      pointer-events: none;
    }

    .acard-body {
      padding: 18px 20px 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .acard-name {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 300;
      color: var(--sand);
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .acard-loc {
      font-size: .6rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .acard-desc {
      font-size: .8rem;
      color: rgba(245, 240, 232, .5);
      line-height: 1.65;
      font-weight: 300;
      flex: 1;
    }

    .acard-link {
      display: inline-block;
      margin-top: 14px;
      font-size: .6rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      transition: opacity .3s;
      border-bottom: 1px solid rgba(196, 163, 90, .3);
      padding-bottom: 2px;
      align-self: flex-start;
    }

    .acard-link:hover {
      opacity: .7;
    }

    .adv-cta-strip {
      background: rgba(196, 163, 90, .08);
      border-top: 1px solid rgba(196, 163, 90, .18);
      padding: clamp(44px, 6vw, 72px) 0;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .adv-cta-strip p {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2.4vw, 2rem);
      font-style: italic;
      color: var(--sand);
      margin-bottom: 28px;
      font-weight: 300;
    }

    .adv-cta-strip p em {
      color: var(--gold);
      font-style: italic;
    }

    /* =====================
   TESTIMONIALS
   ===================== */
    .testis {
      padding: var(--pad) 0;
      background: var(--cream-2);
      overflow: hidden;
    }

    .tslider-outwrap {
      position: relative;
      margin-top: 52px;
    }

    .tnav {
      position: absolute;
      top: 50%;
      left: -85px;
      right: -85px;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      z-index: 2;
      pointer-events: none;
    }

    .tarrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(196, 163, 90, .25);
      background: var(--white);
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: auto;
      transition: all .35s;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
      padding: 0;
    }

    .tarrow:hover {
      background: var(--gold);
      color: var(--white);
      transform: scale(1.08);
      box-shadow: 0 8px 24px rgba(196, 163, 90, .3);
    }

    .tarrow svg {
      width: 22px;
      stroke: var(--gold);
      fill: none;
      transition: all .35s;
      display: block;
    }

    .tarrow:hover svg {
      stroke: var(--white);
    }

    .tslider-wrap {
      overflow: hidden;
    }

    .tslider {
      display: flex;
      gap: 22px;
      transition: transform .6s cubic-bezier(.16, 1, .3, 1);
    }

    .tcard {
      flex: 0 0 calc(33.333% - 14.66px);
      background: var(--white);
      padding: 42px;
      position: relative;
      box-shadow: var(--shadow-card);
    }

    .tcard::before {
      content: '\201C';
      font-family: var(--font-display);
      font-size: 7rem;
      color: var(--gold);
      opacity: .18;
      position: absolute;
      top: 14px;
      left: 28px;
      line-height: 1;
    }

    .ttext {
      font-family: var(--font-display);
      font-size: 1.02rem;
      color: var(--ink-soft);
      line-height: 1.65;
      font-style: italic;
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }

    .tauthor {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .tav {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--white);
      flex-shrink: 0;
    }

    .tname {
      font-weight: 500;
      font-size: .85rem;
      color: var(--ink);
    }

    .trole {
      font-size: .66rem;
      color: var(--stone);
      margin-top: 2px;
    }

    .tdots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }

    .tdot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--stone-light);
      cursor: pointer;
      border: none;
      transition: all .3s;
    }

    .tdot.act {
      background: var(--gold);
      width: 26px;
      border-radius: 4px;
    }

    /* =====================
   CONTACT
   ===================== */
    .contact {
      padding: var(--pad) 0;
      background: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: clamp(40px, 7vw, 110px);
      align-items: start;
    }

    @media (max-width: 820px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    .cinfo-item {
      display: flex;
      gap: 16px;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(0, 0, 0, .07);
    }

    .cinfo-item:last-child {
      border-bottom: none;
    }

    .cico {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cico svg {
      width: 17px;
      color: var(--white);
    }

    .clbl {
      font-size: .58rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 3px;
    }

    .cval {
      font-size: .88rem;
      color: var(--ink);
      font-weight: 300;
    }

    .cform {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .fg {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .fg.full {
      grid-column: 1/-1;
    }

    .fg label {
      font-size: .6rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--stone);
    }

    .fg input,
    .fg textarea,
    .fg select {
      border: 1px solid rgba(0, 0, 0, .1);
      background: var(--cream);
      padding: 11px 14px;
      font-family: var(--font-body);
      font-size: .87rem;
      color: var(--ink);
      outline: none;
      transition: border-color .3s, box-shadow .3s;
      font-weight: 300;
      border-radius: 0;
      -webkit-appearance: none;
    }

    .fg input:focus,
    .fg textarea:focus,
    .fg select:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(196, 163, 90, .1);
    }

    .fg textarea {
      resize: vertical;
      min-height: 112px;
    }

    .btn-sub {
      grid-column: 1/-1;
      background: var(--ink);
      color: var(--white);
      border: none;
      padding: 15px 40px;
      font-family: var(--font-body);
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .35s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 11px;
    }

    .btn-sub:hover {
      background: var(--gold);
      color: var(--ink);
    }

    .fsuccess {
      grid-column: 1/-1;
      text-align: center;
      padding: 16px;
      background: rgba(45, 106, 79, .1);
      color: #2D6A4F;
      font-size: .86rem;
      display: none;
      border: 1px solid rgba(45, 106, 79, .2);
    }

    .fsuccess.on {
      display: block;
    }

    /* =====================
   FOOTER
   ===================== */
    footer {
      background: var(--ink);
      padding: 68px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: clamp(24px, 4vw, 60px);
      padding-bottom: 52px;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    @media (max-width: 860px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 520px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-logo img {
      height: 36px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: .9;
    }

    .fdesc {
      font-size: .79rem;
      color: var(--stone);
      line-height: 1.75;
      font-weight: 300;
      max-width: 260px;
      margin-top: 16px;
    }

    .fsocials {
      display: flex;
      gap: 9px;
      margin-top: 24px;
    }

    .fsoc {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .4);
      text-decoration: none;
      transition: all .3s;
    }

    .fsoc:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .fctitle {
      font-size: .6rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      font-weight: 500;
    }

    .fclinks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .fclinks a {
      font-size: .78rem;
      color: rgba(255, 255, 255, .44);
      text-decoration: none;
      transition: color .3s;
      font-weight: 300;
    }

    .fclinks a:hover {
      color: var(--sand);
    }

    .fbot {
      padding: 22px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .fcopy {
      font-size: .66rem;
      color: rgba(255, 255, 255, .27);
      letter-spacing: .06em;
    }

    .flegal {
      display: flex;
      gap: 20px;
    }

    .flegal a {
      font-size: .62rem;
      color: rgba(255, 255, 255, .27);
      text-decoration: none;
      transition: color .3s;
    }

    .flegal a:hover {
      color: var(--gold);
    }

    /* =====================
   WHATSAPP
   ===================== */
    .wa {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 28px rgba(37, 211, 102, .42);
      text-decoration: none;
      transition: all .3s;
      animation: waP 3s ease infinite;
    }

    .wa:hover {
      transform: scale(1.08);
      box-shadow: 0 14px 40px rgba(37, 211, 102, .6);
    }

    .wa svg {
      width: 28px;
      fill: white;
    }

    @keyframes waP {
      0%,
      100% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, .42);
      }

      50% {
        box-shadow: 0 8px 28px rgba(37, 211, 102, .42), 0 0 0 9px rgba(37, 211, 102, .08);
      }
    }

    .wa-tip {
      position: absolute;
      right: calc(100% + 12px);
      top: 50%;
      transform: translateY(-50%);
      background: var(--ink);
      color: var(--white);
      font-size: .66rem;
      padding: 8px 13px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .wa-tip::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 100%;
      transform: translateY(-50%);
      border: 5px solid transparent;
      border-left-color: var(--ink);
    }

    .wa:hover .wa-tip {
      opacity: 1;
    }

    /* =====================
   RESPONSIVE
   ===================== */
    @media (max-width: 860px) {
      header nav {
        display: none;
      }

      .ham {
        display: flex;
      }

      .tnav {
        display: none;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .about-img-wrap {
        max-width: 280px;
        margin: 0 auto;
        order: -1;
      }

      .tcard {
        flex: 0 0 100%;
      }
    }

    @media (max-width: 1024px) and (min-width: 768px) {
      .tcard {
        flex: 0 0 calc(50% - 11px);
      }
    }

    @media (max-width: 767px) {
      .tcard {
        flex: 0 0 100%;
      }
    }

    @media (max-width: 520px) {
      .hero-title {
        font-size: clamp(3rem, 12vw, 5rem);
      }

      .cform {
        grid-template-columns: 1fr;
      }

      .fg.full {
        grid-column: 1;
      }
    }

    /* =====================
    ARTICLE MODAL
    ===================== */
    .article-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .article-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 8, 0.85);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .modal-content {
      position: relative;
      width: 100%;
      max-width: 800px;
      max-height: 90vh;
      background: var(--cream);
      border-radius: 12px;
      box-shadow: var(--shadow-hover);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: translateY(20px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .article-modal.active .modal-content {
      transform: translateY(0);
    }

    .modal-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(26, 24, 20, 0.06);
      border: none;
      color: var(--ink);
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s;
    }

    .modal-close:hover {
      background: var(--gold);
      color: var(--white);
      transform: rotate(90deg);
    }

    .modal-header {
      padding: 48px 48px 32px;
      border-bottom: 1px solid rgba(26, 24, 20, 0.08);
      background: var(--white);
    }

    .modal-category {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-dark);
      font-weight: 600;
      margin-bottom: 16px;
      display: inline-block;
    }

    .modal-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      color: var(--ink);
      font-weight: 300;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }

    .modal-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 0.8rem;
      color: var(--stone);
    }

    .modal-author {
      font-weight: 500;
      color: var(--ink-soft);
    }

    .modal-date::before {
      content: "•";
      margin-right: 16px;
      color: var(--stone-light);
    }

    .modal-body {
      padding: 40px 48px;
      overflow-y: auto;
      flex: 1;
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--ink-soft);
      font-weight: 300;
    }

    .modal-body p {
      margin-bottom: 24px;
    }

    .modal-body strong {
      font-weight: 500;
      color: var(--ink);
    }

    .modal-body p:first-of-type::first-letter {
      font-family: var(--font-display);
      font-size: 3.5rem;
      float: left;
      line-height: 0.8;
      margin-right: 12px;
      margin-top: 6px;
      color: var(--gold-dark);
    }

    /* Imágenes y Galería en Modal */
    .modal-body img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin: 32px 0;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    }

    .modal-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin: 32px 0;
    }

    .modal-gallery img {
      margin: 0;
    }

    .modal-footer {
      padding: 24px 48px;
      background: var(--white);
      border-top: 1px solid rgba(26, 24, 20, 0.08);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .modal-footer p {
      font-size: 0.8rem;
      color: var(--stone);
      font-weight: 500;
      letter-spacing: 0.05em;
    }

    .modal-share a {
      color: var(--ink);
      border-color: rgba(26, 24, 20, 0.2);
    }

    .modal-share a:hover {
      background: var(--ink);
      color: var(--white);
      border-color: var(--ink);
    }

    /* Modal Views & Back Button */
    .modal-view {
      display: flex;
      flex-direction: column;
      flex: 1;
      height: 100%;
      overflow: hidden;
    }

    .modal-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      color: var(--stone);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      cursor: pointer;
      margin-bottom: 24px;
      padding: 0;
      transition: color 0.3s;
    }

    .modal-back:hover {
      color: var(--ink);
    }

    /* Category Grid in Modal */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }

    .cat-card {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(26, 24, 20, 0.05);
      border: 1px solid rgba(26, 24, 20, 0.05);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
      cursor: pointer;
    }

    .cat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(26, 24, 20, 0.08);
      border-color: rgba(224, 195, 127, 0.4);
    }

    .cat-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      background-size: cover;
      background-position: center;
      background-color: var(--cream);
      border-bottom: 1px solid rgba(26, 24, 20, 0.05);
    }

    .cat-card-c {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .cat-card-meta {
      font-size: 0.65rem;
      color: var(--stone);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 12px;
    }

    .cat-card-title {
      font-size: 1.25rem;
      color: var(--ink);
      font-weight: 400;
      line-height: 1.3;
      margin-bottom: auto;
      font-family: var(--font-display);
    }

    .cat-card-read {
      margin-top: 20px;
      font-size: 0.75rem;
      color: var(--gold-dark);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: color 0.3s;
    }

    .cat-card:hover .cat-card-read {
      color: var(--ink);
    }

    @media (max-width: 768px) {
      .modal-header, .modal-body, .modal-footer {
        padding: 32px 24px;
      }
      .modal-close {
        top: 16px;
        right: 16px;
      }
      .modal-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
    }

