
  :root {
    --charcoal: #1a1a18;
    --charcoal-mid: #252520;
    --charcoal-light: #2e2e28;
    --gold: #c9a84c;
    --gold-light: #e2c47a;
    --gold-dim: #9a7a34;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --white: #fafaf7;
    --text-muted: #8a8478;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--charcoal);
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.6;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 3rem;
    background: linear-gradient(to bottom, rgba(26,26,24,0.98) 0%, rgba(26,26,24,0) 100%);
    transition: background 0.4s;
  }

  nav.scrolled {
    background: rgba(26,26,24,0.97);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    backdrop-filter: blur(12px);
  }

  .nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
  }

  .nav-logo span {
    color: var(--cream);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    color: var(--cream-dark);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

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

  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    padding: 0.5rem 1.4rem !important;
    transition: all 0.3s !important;
  }

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

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

  .hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s;
  }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%),
      var(--charcoal);
  }

  .hero-line {
    position: absolute;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
    animation: lineFloat 8s ease-in-out infinite;
  }

  .hero-line:nth-child(1) { left: 20%; animation-delay: 0s; }
  .hero-line:nth-child(2) { left: 80%; animation-delay: 3s; }

  @keyframes lineFloat {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
  }

  .hero-content {
    position: relative;
    text-align: center;
    max-width: 860px;
    animation: fadeUp 1.2s cubic-bezier(0.22,1,0.36,1) both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    animation: fadeUp 1.2s 0.2s cubic-bezier(0.22,1,0.36,1) both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 0.3rem;
    animation: fadeUp 1.2s 0.35s cubic-bezier(0.22,1,0.36,1) both;
  }

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

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin: 1.8rem 0 3rem;
    line-height: 1.6;
    animation: fadeUp 1.2s 0.5s cubic-bezier(0.22,1,0.36,1) both;
  }

  .hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 1.8rem;
    animation: expand 1.2s 0.7s cubic-bezier(0.22,1,0.36,1) both;
  }

  @keyframes expand { from { width: 0; opacity: 0; } to { width: 60px; opacity: 1; } }

  .hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.2s 0.65s cubic-bezier(0.22,1,0.36,1) both;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.25);
  }

  .btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245,240,232,0.3);
    padding: 1rem 2.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  .hero-social {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeUp 1.2s 0.9s cubic-bezier(0.22,1,0.36,1) both;
  }

  .hero-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transition: color 0.3s;
  }

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

  .hero-social::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 1.2s 1s cubic-bezier(0.22,1,0.36,1) both;
  }

  .scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gold-dim);
    position: relative;
    overflow: hidden;
  }

  .scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: scrollAnim 2s ease-in-out infinite;
  }

  @keyframes scrollAnim {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
  }

  /* ── SECTION BASE ── */
  section { padding: 7rem 3rem; }

  .section-label {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

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

  .section-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 2rem;
  }

  /* ── SOBRE MÍ ── */
  #sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
  }

  .sobre-visual {
    position: relative;
  }

  .sobre-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--charcoal-mid);
    border: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sobre-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    text-align: center;
    padding: 2rem;
    line-height: 1.8;
  }

  .sobre-frame::before {
    content: '';
    position: absolute;
    top: -1px; right: -1px;
    width: 40px; height: 40px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  }

  .sobre-frame::after {
    content: '';
    position: absolute;
    bottom: -1px; left: -1px;
    width: 40px; height: 40px;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
  }

  .sobre-tag {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--charcoal);
    padding: 1rem 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .sobre-text p {
    color: var(--cream-dark);
    line-height: 1.9;
    margin-bottom: 1.4rem;
    font-size: 1rem;
  }

  .sobre-text p:first-of-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--cream);
  }

  .stats-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
  }

  .stat-item {}

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
    display: block;
  }

  /* ── RECETAS / BLOG ── */
  #recetas {
    background: var(--charcoal-mid);
    position: relative;
  }

  #recetas::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  }

  .recetas-header {
    max-width: 1100px;
    margin: 0 auto 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .recetas-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .recipe-card {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--charcoal-light);
    overflow: hidden;
    cursor: pointer;
    group: true;
  }

  .recipe-card:first-child {
    grid-column: span 2;
    aspect-ratio: 8/5;
  }

  .recipe-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--charcoal-light) 0%, #1e1e1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: rgba(201,168,76,0.15);
  }

  .recipe-card:hover .recipe-thumb { transform: scale(1.04); }

  .recipe-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,24,0.92) 0%, rgba(26,26,24,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    transition: all 0.3s;
  }

  .recipe-cat {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .recipe-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .recipe-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
  }

  .recipe-card:first-child .recipe-title { font-size: 1.9rem; }

  /* ── CATEGORÍAS ── */
  .cats-row {
    max-width: 1100px;
    margin: 4rem auto 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .cat-tag {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }

  .cat-tag:hover, .cat-tag.active {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ── FILOSOFIA ── */
  #filosofia {
    position: relative;
    overflow: hidden;
  }

  .filosofia-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .filosofia-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    line-height: 1.5;
    margin: 2rem 0;
  }

  .filosofia-quote strong {
    font-style: normal;
    font-weight: 600;
    color: var(--gold-light);
  }

  .filosofia-body {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto 3rem;
  }

  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 5rem auto 0;
  }

  .pillar {
    background: var(--charcoal-mid);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .pillar::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
  }

  .pillar:hover::before { transform: scaleX(1); }

  .pillar-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201,168,76,0.12);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
  }

  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
  }

  .pillar-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── COLABS / TRABAJA ── */
  #colabs {
    background: var(--charcoal-light);
    position: relative;
  }

  #colabs::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  }

  .colabs-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .colabs-text {}

  .colabs-text p {
    color: var(--cream-dark);
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
  }

  .services-list {
    list-style: none;
    margin: 2rem 0 2.5rem;
  }

  .services-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.88rem;
    color: var(--cream-dark);
  }

  .services-list li::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .colabs-form {
    background: var(--charcoal-mid);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 3rem;
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 2rem;
    font-style: italic;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201,168,76,0.2);
    color: var(--cream);
    padding: 0.8rem 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-bottom-color: var(--gold);
  }

  .form-group textarea { resize: none; height: 80px; }

  .form-group select option { background: var(--charcoal); }

  /* ── NEWSLETTER ── */
  #newsletter {
    text-align: center;
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
  }

  #newsletter::before {
    content: 'G';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 30vw;
    color: rgba(201,168,76,0.03);
    pointer-events: none;
    line-height: 1;
  }

  .newsletter-inner {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
  }

  .newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    margin: 1rem 0 0.5rem;
    line-height: 1.2;
  }

  .newsletter-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(201,168,76,0.3);
  }

  .newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--cream);
    padding: 1rem 1.5rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
  }

  .newsletter-form input::placeholder { color: var(--text-muted); }

  .newsletter-form button {
    background: var(--gold);
    border: none;
    color: var(--charcoal);
    padding: 1rem 1.8rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
  }

  .newsletter-form button:hover { background: var(--gold-light); }

  /* ── FOOTER ── */
  footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 4rem 3rem 2rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .footer-brand {}

  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.8rem;
  }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
  }

  .footer-links h4 {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--cream); }

  .footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .social-icon {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s;
  }

  .social-icon:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 5rem 1.5rem; }

    #sobre {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 5rem 1.5rem;
    }

    .sobre-frame { max-width: 340px; }
    .sobre-tag { display: none; }
    .stats-row { gap: 1.5rem; }

    .recetas-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .recetas-grid { grid-template-columns: 1fr; }
    .recipe-card:first-child { grid-column: span 1; aspect-ratio: 4/3; }

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

    .colabs-inner { grid-template-columns: 1fr; gap: 3rem; }
    .colabs-form { padding: 2rem; }

    .newsletter-form { flex-direction: column; }
    .newsletter-form button { width: 100%; }

    .footer-top { flex-direction: column; }
    .footer-social { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .hero-social, .hero-scroll { display: none; }
  }

/* ── WOOCOMMERCE INTEGRATION ── */
.woo-section {
  background: var(--charcoal-mid);
  padding: 7rem 3rem;
  position: relative;
}

.woo-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.woocommerce .woocommerce-products-header h1,
.woocommerce-page h1.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 3rem;
  text-align: center;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  list-style: none;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.woocommerce ul.products li.product {
  background: var(--charcoal-light);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  padding: 1.2rem 1.5rem 0.5rem;
  margin: 0;
}

.woocommerce ul.products li.product .price {
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0 1.5rem 1rem;
  display: block;
}

.woocommerce ul.products li.product .button {
  display: block;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.8rem 1.5rem;
  margin: 0 1.5rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

/* Single product */
.woocommerce div.product .product_title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}

.woocommerce div.product p.price {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--cream-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  border: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 1rem 2.5rem !important;
  border-radius: 0 !important;
  transition: all 0.3s !important;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px) !important;
}

/* Cart & Checkout */
.woocommerce-cart table.cart,
.woocommerce-checkout #order_review {
  background: var(--charcoal-light);
  border: 1px solid rgba(201,168,76,0.12);
  color: var(--cream);
}

.woocommerce table.shop_table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 1.5rem;
}

.woocommerce table.shop_table td {
  color: var(--cream-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.5rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  padding: 0.8rem 0;
  font-family: 'DM Sans', sans-serif;
  border-radius: 0;
  box-shadow: none;
}

.woocommerce form .form-row label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Tienda nav link */
.nav-links a[href*="tienda"],
.nav-links a[href*="shop"] {
  color: var(--gold) !important;
}

/* ── DOSIER DE VIAJES ── */
@media (max-width: 768px) {
  #viajes > div > div:last-child {
    grid-template-columns: 1fr !important;
  }
  #viajes > div > div:last-child > div:first-child {
    grid-column: span 1 !important;
    height: 320px !important;
  }
  #viajes > div > div:last-child > div {
    height: 220px !important;
  }
  #despensa > div > div:nth-child(3) {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  #despensa > div > div:nth-child(3) {
    grid-template-columns: 1fr !important;
  }
}

/* Custom cursor */
body { cursor: crosshair; }
a, button { cursor: pointer; }

/* Ink reveal effect on section titles */
.section-title {
  background: linear-gradient(to right, var(--cream) 0%, var(--cream) 50%, rgba(245,240,232,0.3) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: background-position 0.6s ease;
}

.reveal.visible .section-title {
  background-position: right center;
}

/* Manuscript-style blockquote */
.despensa-quote {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream-dark);
  line-height: 1.8;
}

/* Travel card hover */
#viajes [style*="position:relative"] {
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
#viajes [style*="position:relative"]:hover {
  transform: scale(1.01);
  z-index: 2;
}

/* ── RADAR GASTRONÓMADA ── */
#radar [style*="display:grid"][style*="grid-template-columns:1fr 1fr 1fr"] {
  transition: all 0.3s;
}

@media (max-width: 768px) {
  #radar > div > div:last-child [style*="display:grid"] {
    grid-template-columns: 1fr !important;
  }
  #clases > div > div {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
}

/* ── CLASES ── */
#clases .form-group input:focus,
#clases .form-group textarea:focus,
#clases .form-group select:focus {
  border-bottom-color: var(--gold);
  outline: none;
}

#clases select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  padding: 0.8rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
}

#clases select option {
  background: var(--charcoal);
  color: var(--cream);
}


/* ── WOOCOMMERCE SHOP FIX ── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 2rem !important;
  padding: 3rem !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  list-style: none !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  background: var(--charcoal-mid) !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
  padding: 0 0 1.5rem !important;
  transition: transform 0.3s, border-color 0.3s !important;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(201,168,76,0.4) !important;
}

.woocommerce ul.products li.product img {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  display: block !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.2rem !important;
  color: var(--cream) !important;
  padding: 1rem 1.5rem 0.5rem !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
}

.woocommerce ul.products li.product .price {
  color: var(--gold) !important;
  font-size: 1.3rem !important;
  font-weight: 500 !important;
  padding: 0 1.5rem 1rem !important;
  display: block !important;
}

.woocommerce ul.products li.product .button {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  border: none !important;
  padding: 0.8rem 1.5rem !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  margin: 0 1.5rem !important;
  display: block !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: background 0.3s !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 500 !important;
}

.woocommerce ul.products li.product .button:hover {
  background: var(--gold-light) !important;
}

/* Shop page header */
.woocommerce .woocommerce-products-header {
  text-align: center !important;
  padding: 4rem 3rem 1rem !important;
}

.woocommerce .woocommerce-products-header h1 {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 3rem !important;
  color: var(--cream) !important;
  font-weight: 300 !important;
}

/* Single product page */
.woocommerce div.product .product_title {
  font-family: 'Cormorant Garamond', serif !important;
  color: var(--cream) !important;
  font-weight: 300 !important;
  font-size: 2.5rem !important;
}

.woocommerce div.product .price {
  color: var(--gold) !important;
  font-size: 2rem !important;
}

.woocommerce div.product .single_add_to_cart_button {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  border: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  padding: 1rem 2rem !important;
}

.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--gold-light) !important;
}

/* Fix shop page background */
.woocommerce, .woocommerce-page {
  background: var(--charcoal) !important;
  min-height: 100vh !important;
}

@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
  }
}
